/* ================ */
/* RESET & BASE STYLES */
/* ================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #333;
  overflow-x: hidden;
}


/* ================ */
/* ANIMATIONS */
/* ================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes goldShine {
  0%, 100% { filter: brightness(1) drop-shadow(0 0 2px #d4af37); }
  50% { filter: brightness(1.5) drop-shadow(0 0 12px #ffd700); }
}

@keyframes popupEntrance {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes waveBanner {
  0%, 100% { transform: rotateZ(0deg) translateY(0); }
  25% { transform: rotateZ(0.5deg) translateY(-1px); }
  50% { transform: rotateZ(0deg) translateY(1px); }
  75% { transform: rotateZ(-0.5deg) translateY(-1px); }
}

@keyframes spinGlobe {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes glowPulse {
  0%, 100% {
    filter: drop-shadow(0 0 6px #d4af37);
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 20px #ffd700);
    transform: scale(1.05);
  }
}

@keyframes fadeUpDelayed {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes flyInCard {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes flyPlane {
  0% { transform: translateX(-150px); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateX(110vw); opacity: 0; }
}

@keyframes flyAcross {
  0% { transform: translateX(-300px); opacity: 0; }
  5% { opacity: 1; }
  95% { opacity: 1; }
  100% { transform: translateX(120vw); opacity: 0; }
}

/* ================ */
/* HEADER & NAVIGATION */
/* ================ */
header {
  min-height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
              url('../images/dubai-night-desktop.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: scroll;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #f5f5f5;
  position: relative;
  padding-top: 6rem;
}



nav {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 0.8rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 10;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #D4AF37;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
}

.nav-links a {
  color: #f5f5f5;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #D4AF37;
}

.nav-btn {
  padding: 0.65rem 1.4rem;
  border-radius: 30px;
  background: linear-gradient(135deg, #D4AF37 0%, #f5e28d 100%);
  color: #111;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.8px;
  box-shadow: 0 6px 15px rgba(212, 175, 55, 0.25);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.nav-btn:hover::before {
  left: 100%;
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(212, 175, 55, 0.35);
  background: linear-gradient(135deg, #f9dd7a 0%, #d4af37 100%);
}

/* ================ */
/* HERO SECTION */
/* ================ */
.hero-content {
  max-width: 800px;
  padding: 2rem;
  padding-bottom: 5rem;
  animation: fadeIn 1.5s ease;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.hero-content p {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

.plan-btn {
  background: transparent;
  color: #fff;
  border: 2px solid #D4AF37;
  padding: 0.8rem 2rem;
  cursor: pointer;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.plan-btn:hover {
  background: #D4AF37;
  color: #000;
}

/* ================ */
/* BOOKING FORM */
/* ================ */
.booking-form {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  opacity: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 999;
  overflow-y: auto;
  transition: opacity 0.3s ease;
}

.booking-form.visible {
  display: block;
  opacity: 1;
}

.booking-form.visible .form-card {
  animation: flyInCard 0.8s ease-out;
}

/* ================ */
/* MODERN FORM CARD */
/* ================ */
.form-card {
  background: rgba(20, 18, 15, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 3.5rem 3rem;
  width: 100%;
  max-width: 580px;
  margin: 4rem auto;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5),
              0 0 20px rgba(212, 175, 55, 0.05);
  backdrop-filter: blur(10px);
  color: #f5f5f5;
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.form-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
    rgba(212, 175, 55, 0.1) 0%, 
    rgba(212, 175, 55, 0) 30%,
    rgba(212, 175, 55, 0) 70%,
    rgba(212, 175, 55, 0.1) 100%);
  border-radius: 24px;
  z-index: -1;
}

.form-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4),
              0 0 0 1px rgba(212, 175, 55, 0.2),
              0 0 60px rgba(212, 175, 55, 0.1);
}

.form-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
  color: #fff;
  text-align: center;
  position: relative;
  letter-spacing: 0.5px;
}

.form-card h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #d4af37, transparent);
  margin: 1.2rem auto 0;
  border-radius: 3px;
}

.form-group {
  margin-bottom: 1.8rem;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  color: #d4af37;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  padding-left: 0.5rem;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  background: rgba(15, 14, 13, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 1rem 1.2rem;
  border-radius: 12px;
  font-size: 0.95rem;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  font-family: 'Montserrat', sans-serif;
}

.form-card textarea {
  resize: none;
  height: 120px;
}

.form-card input::placeholder,
.form-card textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  border-color: #d4af37;
  background: rgba(25, 23, 20, 0.8);
  outline: none;
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.form-card select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d4af37'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #d4af37 0%, #f4d273 100%);
  color: #111;
  font-weight: 700;
  border: none;
  padding: 1.2rem;
  font-size: 1rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  margin-top: 2rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.2), 
    transparent);
  transition: 0.5s;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #f4d273 0%, #d4af37 100%);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

.submit-btn:hover::before {
  left: 100%;
}

/* ================ */
/* FORM VALIDATION STATES */
/* ================ */
.form-group.success input,
.form-group.success select,
.form-group.success textarea {
  border-color: #2ecc71;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #e74c3c;
}

.form-group .error-message {
  color: #e74c3c;
  font-size: 0.75rem;
  margin-top: 0.5rem;
  display: none;
}

.form-group.error .error-message {
  display: block;
}

/* ================ */
/* ABOUT PAGE */
/* ================ */
.about-page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  display: none;
  opacity: 0;
  overflow-y: auto;
  padding: 4rem 2rem;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}

.about-page.visible {
  display: block;
  opacity: 1;
  animation: fadeIn 0.5s ease-out;
}

.about-content {
  background: rgba(255, 255, 255, 0.95);
  color: #111;
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0,0,0,0.2);
}

.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #222;
  margin-bottom: 1.5rem;
}

.about-content p {
  color: #333;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ================ */
/* PACKAGE POPUP */
/* ================ */
.package-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(4px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
  overflow: hidden;
}

.package-popup.visible {
  display: flex;
  animation: fadeIn 0.4s ease-in-out;
}

.package-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: popupEntrance 0.6s ease-out;
}

.package-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.package-image-box {
  max-width: auto;
}

.package-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 12px 12px 0 0;
}



.package-logo img {
  height: 140px;
  filter: brightness(1.1) drop-shadow(0 0 4px #d4af37);
  animation: goldShine 2.5s ease-in-out infinite;
}

.popup-price {
  color: #FFD700;
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 1.2rem;
}

.popup-price span {
  font-size: 0.8rem;
  color: #ccc;
}

/* ================ */
/* SOCIAL LINKS */
/* ================ */
.social-links {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 100;
}

.social-links a {
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #D4AF37;
  color: #000;
}

/* ================ */
/* MISC ELEMENTS */
/* ================ */
.gold-logo {
  height: 200px;
  animation: goldShine 2.5s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.gold-logo:hover {
  transform: scale(1.05);
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2.5rem;
  color: #D4AF37;
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 1000;
}

.close-btn:hover {
  transform: scale(1.2);
  color: #fff;
}

#typed-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #111;
  font-weight: 500;
  white-space: pre-wrap;
}

.package-popup .close-btn {
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 2rem;
  color: #D4AF37;
  background: rgba(0, 0, 0, 0.4);
  padding: 4px 10px;
  border-radius: 8px;
  cursor: pointer;
  z-index: 1000;
}

.form-logo {
  text-align: center;
  margin-bottom: 1.5rem;
  animation: fadeUpDelayed 0.8s ease-in-out;
}

.form-logo img {
  height: 100px;
  animation: goldShine 2.5s ease-in-out infinite;
  filter: brightness(1.1) drop-shadow(0 0 5px #d4af37);
}

footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.85rem;
  color: #aaa;
  background: #111;
}

.plane-icon {
  width: 60px;
  margin-left: 14px;
  filter: drop-shadow(0 0 4px #d4af37);
}

/* LOADER STYLES */
#introLoader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 99999;
  transition: opacity 1s ease;
}

.globe-container {
  text-align: center;
  animation: fadeIn 1.2s ease-in-out;
}

.globe {
  width: 160px;
  height: 160px;
  animation: spinGlobe 6s linear infinite;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 6px #d4af37);
}

.intro-text {
  color: #d4af37;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  letter-spacing: 2px;
  animation: fadeIn 2.5s ease-in;
}

.globe-wrapper {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 1rem;
  animation: glowPulse 2.5s ease-in-out infinite;
}

.globe-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.logo-inside-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 5px #d4af37);
}

.intro-text {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1.5s ease, transform 1.5s ease;
}

.fade-in-delayed {
  animation: fadeUpDelayed 1.6s ease forwards;
  animation-delay: 1s;
}

/* FLOAT LABEL STYLES */
.float-label {
  position: relative;
  margin-bottom: 2rem;
}

.float-label input {
  width: 100%;
  padding: 1.2rem 1rem 0.6rem;
  background: rgba(15, 14, 13, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
}

.float-label label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: #d4af37;
  font-size: 0.9rem;
  pointer-events: none;
  transition: all 0.3s ease;
}

.float-label input:focus + label,
.float-label input:not(:placeholder-shown) + label {
  top: 0.4rem;
  font-size: 0.7rem;
  color: #f5d97f;
}

/* SCROLLBAR STYLES */
* {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

*::-webkit-scrollbar {
  display: none;
}

/* PLANE ANIMATION STYLES */
.plane-banner-wrapper {
  position: absolute;
  top: 200px;
  left: -300px;
  display: flex;
  align-items: center;
  z-index: 3;
  animation: flyAcross 14s linear infinite;
  pointer-events: none;
}

.plane-banner-text {
  background: #d4af37;
  color: #111;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 20px;
  border-radius: 24px 0 0 24px;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  white-space: nowrap;
}

.plane-banner-img {
  width: 50px;
  margin-left: 12px;
  filter: drop-shadow(0 0 3px #d4af37);
}

/* Testimonials */
.testimonials-section {
  background: rgba(0, 0, 0, 0.9);
  padding: 3rem 1.5rem;
  color: #fff;
  text-align: center;
}

.section-title {
  font-family: 'Playfair Display', serif;
  color: #d4af37;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.testimonial-carousel {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  min-height: 130px;
}

.testimonial {
  opacity: 0;
  transition: opacity 1s ease-in-out;
  position: absolute;
  width: 100%;
  padding: 1rem;
  box-sizing: border-box;
}

.testimonial.active {
  opacity: 1;
  position: relative;
}

.testimonial p {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.testimonial h4 {
  color: #ffd700;
  font-weight: 400;
  font-size: 1rem;
}

/* ================ */
/* RESPONSIVE STYLES */
/* ================ */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
.nav-links a {
  margin: 0; /* remove horizontal spacing */
  font-size: 0.8rem;
}

.nav-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* or center / flex-start depending on alignment preference */
  gap: 1rem;
}

  
  .booking-form {
    padding: 2rem;
  }
  
  .social-links {
    right: 10px;
  }
  
  .form-card {
    padding: 2.5rem 1.8rem;
    margin: 2rem auto;
    border-radius: 18px;
  }
  
  .form-card h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .submit-btn {
    padding: 1rem;
  }
  
  .form-logo img {
    height: 70px;
  }

  .package-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  
  .package-logo img {
    height: 80px;
  }
  
  .package-img {
    max-height: 65vh;
  }
  
  .popup-price {
    font-size: 1.4rem;
  }
  
  .popup-price span {
    font-size: 0.8rem;
  }
}

/* ================ */
/* LUXURY PARTNERSHIP BADGE */
/* ================ */
.logo-partner-group {
  display: flex;
  align-items: center;
  gap: 0;
}

.partner-display {
  position: relative;
  margin-left: 25px;
}

.partner-glowing-line {
  position: absolute;
  left: -15px;
  top: 0;
  height: 100%;
  width: 1.5px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255,255,255,0.8),
    transparent
  );
  box-shadow: 0 0 10px 1px rgba(255,255,255,0.5);
}

.partner-text-container {
  display: flex;
  flex-direction: column;
}

.partner-label {
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(255,255,255,0.9);
  animation: textGlow 2s ease-in-out infinite alternate;
  margin-bottom: 2px;
}

.partner-name {
  color: black;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 1px;
  background: white;
  padding: 3px 10px;
  border-radius: 3px;
  box-shadow: 
    0 0 10px rgba(255,255,255,0.8),
    0 0 20px rgba(255,255,255,0.4);
  animation: 
    pulse 1.5s ease infinite alternate,
    float 3s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

/* Animations */
@keyframes textGlow {
  0% { opacity: 0.9; text-shadow: 0 0 8px rgba(255,255,255,0.7); }
  100% { opacity: 1; text-shadow: 0 0 15px rgba(255,255,255,1); }
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 10px rgba(255,255,255,0.8); }
  100% { transform: scale(1.03); box-shadow: 0 0 20px rgba(255,255,255,0.9); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .partner-display {
    margin-left: 15px;
  }
  .partner-label {
    font-size: 0.6rem;
    letter-spacing: 1px;
  }
  .partner-name {
    font-size: 0.9rem;
    padding: 2px 8px;
  }
}

.partner-logo {
  height: 36px;
  margin-top: 4px;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.6));
  transition: transform 0.3s ease;
}

.partner-logo:hover {
  transform: scale(1.05);
}

.partner-banner {
  max-width: 320px;
  width: 90%;
  height: auto;
  display: block;
  margin: 0 auto;
  padding-top: 1rem;
  filter: drop-shadow(0 0 6px #d4af37);
}

.glow-logo {
  height: 250px;
  display: block;
  margin: 0 auto;
  position: relative;
  top: -35px; /* move upward */
  animation: glowPulse 2.5s ease-in-out infinite;
  filter: drop-shadow(0 0 6px #d4af37);
  transition: transform 0.3s ease;
}



.glow-logo:hover {
  transform: scale(1.05);
}

@keyframes glowPulse {
  0%, 100% {
    filter: drop-shadow(0 0 6px #d4af37);
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 20px #ffd700);
    transform: scale(1.05);
  }
}

/* ================ */
/* NEWSLETTER POPUP */
/* ================ */
.newsletter-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(4px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
  overflow: hidden;
}

.newsletter-popup.visible {
  display: flex;
  animation: fadeIn 0.4s ease-in-out;
}

.newsletter-content {
  background: rgba(20, 18, 15, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 3rem;
  width: 100%;
  max-width: 500px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5),
              0 0 20px rgba(212, 175, 55, 0.05);
  backdrop-filter: blur(10px);
  color: #f5f5f5;
  position: relative;
  animation: popupEntrance 0.6s ease-out;
}

.newsletter-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #fff;
  text-align: center;
}

.newsletter-content p {
  text-align: center;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

.newsletter-logo {
  text-align: center;
  margin-bottom: 1.5rem;
}

.newsletter-logo img {
  height: 80px;
  animation: goldShine 2.5s ease-in-out infinite;
  filter: brightness(1.1) drop-shadow(0 0 5px #d4af37);
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  background: #111;
  color: #fff;
  overflow-x: hidden;
}

#newsletter-email {
  width: 400px;
  max-width: 90%;
  font-size: 1.1rem;
  padding: 1.2rem 1.4rem;
  border-radius: 14px;
  margin: 0 auto;
  display: block;
}


.news-promo-section {
  padding: 5rem 2rem;
  background: linear-gradient(to right, #0f0f0f, #1a1a1a);
  color: #f5f5f5;
  text-align: center;
}

.news-container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #d4af37;
  margin-bottom: 3rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.news-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 2rem;
  text-align: left;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.news-card:hover {
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3);
}

.news-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #ffeaa7;
  margin-bottom: 0.8rem;
}

.news-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #fdfdfd;
}

.news-date {
  font-size: 0.8rem;
  color: #ccc;
  font-style: italic;
  margin-top: 1rem;
  display: block;
}

.news-card .full-content {
  display: none;
  margin-top: 1rem;
  color: #ddd;
}

.news-card.expanded {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
  z-index: 10;
}

.news-card.expanded .full-content {
  display: block;
}

.news-card.expanded .summary {
  display: none;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.6rem;
  }

  .news-card {
    padding: 1.5rem;
  }
}

#newsletter-email {
  font-size: 1rem;
  padding: 1.2rem 1.4rem;
  border-radius: 14px;
}




#currency-converter {
  background: #1a1a1a;
  padding: 2rem;
  border-top: 1px solid #d4af37;
}

.currency-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.currency-card {
  background: #2a2a2a;
  border: 1px solid #d4af37;
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  align-items: center;
}

.currency-flag {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 1rem;
  background-size: cover;
}

.update-time {
  color: #aaa;
  text-align: center;
}

.currency-cards {
  flex-wrap: wrap;
  justify-content: center;
}
.currency-card {
  flex: 1 1 150px;
  max-width: 200px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1rem 0 1.5rem;
  justify-content: center;
}

.filter-bar button {
  background: transparent;
  border: 2px solid white;
  color: white;
  border-radius: 25px;
  padding: 0.4rem 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.filter-bar button.active,
.filter-bar button:hover {
  background: white;
  color: black;
}

.news-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  max-height: 65vh;
  overflow-y: auto;
  padding: 1rem 0;
}

.news-card {
  background: #1b1b1b;
  color: #fff;
  border-radius: 18px;
  padding: 1rem;
  width: 300px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.news-card h3 {
  margin-top: 0;
  font-size: 1rem;
}

.news-card p {
  font-size: 0.85rem;
  color: #ccc;
}

.news-card a {
  color: #1e90ff;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  margin-top: 0.5rem;
}

.news-card a:hover {
  text-decoration: underline;
}

.news-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(4px);
  display: none; /* 🔥 This hides it initially */
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.news-popup.visible {
  display: flex;
  animation: fadeIn 0.4s ease-in-out;
}

.news-content {
  background: #1a1a1a;
  border: 1px solid #d4af37;
  padding: 3rem;
  max-width: 600px;
  border-radius: 24px;
  color: #fff;
  overflow-y: auto;
  max-height: 80vh;
  box-shadow: 0 0 40px rgba(0,0,0,0.5);
}

.news-feed .news-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.news-feed .news-card h3 {
  color: #d4af37;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.news-feed .news-card p {
  font-size: 0.9rem;
  color: #ddd;
}

.news-feed .news-card a {
  display: inline-block;
  margin-top: 0.5rem;
  color: #1e90ff;
  text-decoration: none;
  font-size: 0.85rem;
}

.news-feed .news-card a:hover {
  text-decoration: underline;
}

#bookingForm h2 {
  font-family: 'Aileron', sans-serif;
}

.form-subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  margin-top: -10px;
  margin-bottom: 25px;
  line-height: 1.5;
  font-weight: 300;
  padding: 0 10px;
}

/* ================ */
/* LUXURY FEEDBACK SECTION */
/* ================ */
.luxury-feedback-section {
  padding: 5rem 2rem;
  background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.95)), 
              url('../images/texture-bg.jpg') center/cover;
  position: relative;
  overflow: hidden;
}

.luxury-feedback-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/gold-pattern.png') repeat;
  opacity: 0.03;
  pointer-events: none;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.gold-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  margin: 0 1.5rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #d4af37;
  text-align: center;
  letter-spacing: 1px;
}

.section-subtitle {
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  font-weight: 300;
}

.feedback-container {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.luxury-feedback-form {
  background: rgba(20, 18, 15, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  padding: 2.5rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.form-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.form-group {
  position: relative;
  flex: 1;
  margin-bottom: 2rem;
}

.luxury-input, .luxury-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.8rem 0;
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
}

.luxury-textarea {
  min-height: 120px;
  resize: vertical;
}

.luxury-input:focus, .luxury-textarea:focus {
  outline: none;
  border-bottom-color: #d4af37;
}

.luxury-input + label, .luxury-textarea + label {
  position: absolute;
  left: 0;
  top: 0.8rem;
  color: rgba(212, 175, 55, 0.8);
  font-size: 1rem;
  pointer-events: none;
  transition: all 0.3s ease;
}

.luxury-input:focus + label,
.luxury-input:not(:placeholder-shown) + label,
.luxury-textarea:focus + label,
.luxury-textarea:not(:placeholder-shown) + label {
  top: -1.2rem;
  font-size: 0.8rem;
  color: #f4d273;
}

.gold-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: width 0.4s ease;
}

.luxury-input:focus ~ .gold-underline,
.luxury-textarea:focus ~ .gold-underline {
  width: 100%;
}

.rating-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.8);
}

.star-rating {
  direction: rtl;
  display: flex;
}

.star-rating input {
  display: none;
}

.star-rating label {
  font-size: 1.8rem;
  color: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: color 0.2s;
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
  color: #f4d273;
}

.gold-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(135deg, #d4af37, #f4d273);
  color: #111;
  border: none;
  padding: 1.2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.gold-submit-btn:hover {
  background: linear-gradient(135deg, #f4d273, #d4af37);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

.arrow-icon {
  width: 24px;
  height: 24px;
  margin-left: 10px;
  stroke: #111;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}

.gold-submit-btn:hover .arrow-icon {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .luxury-feedback-form {
    padding: 1.5rem;
  }
}

/* ==================== */
/* COMPACT FEEDBACK FORM */
/* ==================== */
.compact-feedback-section {
  padding: 3rem 1.5rem;
  background: rgba(10, 9, 8, 0.9);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.compact-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.compact-gold-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  margin: 0 1rem;
}

.compact-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #d4af37;
  text-align: center;
  letter-spacing: 0.5px;
  margin: 0;
}

.compact-form {
  max-width: 500px;
  margin: 0 auto;
}

.compact-form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.compact-input, .compact-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.6rem 0;
  color: #fff;
  font-size: 0.95rem;
  font-family: 'Montserrat', sans-serif;
}

.compact-textarea {
  min-height: 80px;
  resize: vertical;
}

.compact-label {
  position: absolute;
  left: 0;
  top: 0.6rem;
  color: rgba(212, 175, 55, 0.8);
  font-size: 0.95rem;
  pointer-events: none;
  transition: all 0.3s ease;
}

.compact-input:focus + .compact-label,
.compact-input:not(:placeholder-shown) + .compact-label,
.compact-textarea:focus + .compact-label,
.compact-textarea:not(:placeholder-shown) + .compact-label {
  top: -1rem;
  font-size: 0.75rem;
  color: #f4d273;
}

.compact-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #d4af37;
  transition: width 0.3s ease;
}

.compact-input:focus ~ .compact-underline,
.compact-textarea:focus ~ .compact-underline {
  width: 100%;
}

.compact-rating {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 1.5rem 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.compact-stars {
  direction: rtl;
  display: flex;
}

.compact-stars input {
  display: none;
}

.compact-stars label {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}

.compact-stars input:checked ~ label,
.compact-stars label:hover,
.compact-stars label:hover ~ label {
  color: #f4d273;
}

.compact-submit-btn {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #d4af37, #f4d273);
  color: #111;
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.compact-submit-btn:hover {
  background: linear-gradient(135deg, #f4d273, #d4af37);
  transform: translateY(-2px);
  box-shadow: 0 3px 12px rgba(212, 175, 55, 0.3);
}

.compact-arrow {
  width: 18px;
  height: 18px;
  margin-left: 8px;
  stroke: #111;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}

.compact-submit-btn:hover .compact-arrow {
  transform: translateX(3px);
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
  .compact-feedback-section {
    padding: 2rem 1rem;
  }
  
  .compact-title {
    font-size: 1.5rem;
  }
  
  .compact-gold-line {
    width: 30px;
  }
  
  .compact-rating {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

/* ==================== */
/* COMPACT LUXURY VERSION */
/* ==================== */
.luxury-feedback-section.compact-version {
  padding: 0.50rem 0.25rem;
}

.luxury-feedback-section.compact-version .section-title {
  font-size: 2rem;
}

.luxury-feedback-section.compact-version .section-subtitle {
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.luxury-feedback-section.compact-version .gold-line {
  width: 50px;
}

.luxury-feedback-section.compact-version .feedback-container {
  max-width: 600px;
}

/* Compact Form Elements */
.compact-row {
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.compact-group {
  margin-bottom: 1.5rem;
}

.compact-input, .compact-textarea {
  padding: 0.7rem 0;
  font-size: 0.95rem;
}

.compact-input + label, 
.compact-textarea + label {
  top: 0.7rem;
  font-size: 0.95rem;
}

.compact-input:focus + label,
.compact-input:not(:placeholder-shown) + label,
.compact-textarea:focus + label,
.compact-textarea:not(:placeholder-shown) + label {
  top: -1rem;
  font-size: 0.75rem;
}

.compact-rating {
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.compact-stars label {
  font-size: 1.5rem;
}

.compact-textarea {
  min-height: 100px;
}

.compact-submit {
  padding: 0.9rem;
  font-size: 0.95rem;
}

.compact-arrow {
  width: 20px;
  height: 20px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .luxury-feedback-section.compact-version {
    padding: 2rem 1rem;
  }
  
  .luxury-feedback-section.compact-version .section-title {
    font-size: 1.8rem;
  }
  
  .compact-row {
    flex-direction: column;
    gap: 0;
  }
}

@media (max-width: 768px) {
  /* Section Container */
  .luxury-feedback-section {
    padding: 2rem 1rem !important;
    background: rgba(10,9,8,0.95) !important;
  }

  /* Header Elements */
  .section-header {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .gold-line {
    width: 60px !important;
    height: 1px;
  }

  .section-title {
    font-size: 1.8rem !important;
    margin: 0.5rem 0;
  }

  .section-subtitle {
    font-size: 0.9rem !important;
    margin-bottom: 1.5rem !important;
  }

  /* Form Layout */
  .form-row {
    flex-direction: column;
    gap: 0 !important;
  }

  /* Input Fields */
  .form-group {
    margin-bottom: 1.2rem;
  }

  .luxury-input, 
  .luxury-textarea {
    font-size: 0.9rem !important;
    padding: 0.6rem 0 !important;
  }

  /* Labels */
  .luxury-input + label,
  .luxury-textarea + label {
    font-size: 0.9rem !important;
    top: 0.6rem !important;
  }

  .luxury-input:focus + label,
  .luxury-textarea:focus + label {
    top: -0.8rem !important;
    font-size: 0.7rem !important;
  }

  /* Star Rating */
  .rating-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .star-rating label {
    font-size: 1.4rem !important;
  }

  /* Submit Button */
  .gold-submit-btn {
    padding: 0.8rem !important;
    font-size: 0.9rem !important;
  }

  .arrow-icon {
    width: 18px !important;
    height: 18px !important;
  }
}

/* ================ */
/* PACKAGE POPUP IMPROVEMENTS */
/* ================ */
.package-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  padding: 1rem;
}

.package-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 16/9;
}

.package-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.package-card:hover img {
  transform: scale(1.05);
}

.package-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: white;
}

.package-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #d4af37;
}

.package-price {
  font-weight: 600;
  font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .package-wrapper {
    grid-template-columns: 1fr;
    max-width: 90vw;
  }
  
  .package-card {
    aspect-ratio: 4/3;
  }
}

/* Package Popup Specific Styles */
.package-popup .package-content {
  max-width: 95vw;
  width: 100%;
  padding: 2rem;
}

.package-popup .package-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.package-card {
  background: rgba(20, 18, 15, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.package-img {
  width: 100%;
  height: 220px; /* or increase if image looks small */
  object-fit: contain;
  object-position: center;
  display: block;
  background-color: #000; /* fills background if image doesn't fill area */
  padding: 6px; /* optional for visual spacing */
  border-radius: 12px 12px 0 0;
}



.package-info {
  padding: 1.5rem;
}

.package-title {
  font-family: 'Playfair Display', serif;
  color: #d4af37;
  margin-bottom: 0.5rem;
}

.popup-price {
  color: #f4d273;
  font-weight: 600;
  margin-bottom: 1rem;
}

.popup-price span {
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
}

.package-features {
  margin: 1rem 0;
  padding-left: 1rem;
  color: rgba(255,255,255,0.8);
}

.package-features li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.package-btn {
  width: 100%;
  margin-top: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .package-popup .package-wrapper {
    grid-template-columns: 1fr;
  }
  
  .package-img {
    height: 180px;
  }
}

/* Star Rating Styles */
.rating-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

.star-rating {
  direction: rtl; /* Makes stars highlight from right to left */
  display: inline-flex;
}

.star-rating input {
  display: none;
}

.star-rating label {
  font-size: 1.8rem;
  color: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: color 0.2s;
  padding: 0 2px;
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
  color: #f4d273;
  text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

/* Specific for hotel stars if you need different sizing */
.hotel-rating .star-rating label {
  font-size: 1.5rem;
}

.loading-spinner {
  display: none;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top: 3px solid #d4af37;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
  margin-left: 10px;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.thankyou-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: url('../images/gold-pattern.png') no-repeat center center/cover;
  text-align: center;
  padding: 2rem;
}

.thankyou-logo {
  width: 120px;
  margin-bottom: 1rem;
}

.thankyou-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #d4af37;
  margin-bottom: 0.5rem;
}

.thankyou-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.thankyou-buttons .gold-btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  margin: 0 0.5rem;
  background-color: #d4af37;
  color: #000;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
}

.thankyou-buttons .gold-btn.secondary {
  background-color: transparent;
  border: 1px solid #d4af37;
  color: #d4af37;
}

.popup-message {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #111;
  color: #d4af37;
  padding: 1rem 2rem;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.popup-message.show {
  opacity: 1;
  pointer-events: auto;
}


.exchange-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(4px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.exchange-popup.visible {
  display: flex;
  animation: fadeIn 0.4s ease-in-out;
}

.exchange-content {
  background: #1a1a1a;
  border: 1px solid #d4af37;
  padding: 3rem;
  max-width: 600px;
  border-radius: 24px;
  color: #fff;
  overflow-y: auto;
  max-height: 80vh;
  box-shadow: 0 0 40px rgba(0,0,0,0.5);
}

/* ================ */
/* DARK THEME ABOUT POPUP */
/* ================ */
.about-page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 999;
  display: none;
  opacity: 0;
  overflow-y: auto;
  transition: opacity 0.4s ease;
}

.about-page.visible {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  animation: fadeIn 0.4s ease-out;
}

.about-content {
  background: rgba(15, 14, 13, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.3);
  width: 100%;
  max-width: 700px;
  padding: 3rem;
  margin: 2rem;
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5),
              0 0 0 1px rgba(212, 175, 55, 0.2);
  position: relative;
  color: #ffffff; /* White text */
}

.about-content::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
    rgba(212, 175, 55, 0.1) 0%, 
    rgba(212, 175, 55, 0) 30%,
    rgba(212, 175, 55, 0) 70%,
    rgba(212, 175, 55, 0.1) 100%);
  border-radius: 16px;
  z-index: -1;
}

.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #d4af37;
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: 0.5px;
}

.about-content h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, #d4af37, transparent);
  margin: 1.5rem auto;
}

#typed-text {
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 300;
}

#closeAboutBtn {
  background: linear-gradient(135deg, #d4af37 0%, #f4d273 100%);
  color: #111;
  border: none;
  padding: 0.9rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 2rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#closeAboutBtn:hover {
  background: linear-gradient(135deg, #f4d273 0%, #d4af37 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .about-content {
    padding: 2rem;
    margin: 1rem;
  }
  
  .about-content h2 {
    font-size: 1.8rem;
  }
  
  #typed-text {
    font-size: 1rem;
  }
}

#formPreview {
  animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =============================== */
/* ✈️  ELEGANT CABIN CLASS DROPDOWN */
/* =============================== */
select {
  background-color: #000;
  color: #fff;
  border: 1px solid #d4af37;
  padding: 0.6rem;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  appearance: none;
  background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" fill="%23d4af37" viewBox="0 0 4 5"><path d="M2 0L0 2h4z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 0.7rem center;
  background-size: 0.65rem;
}

select option {
  background-color: #000;
  color: #fff;
}

/* ============================= */
/* 📅 CUSTOM DATE PLACEHOLDER FIX */
/* ============================= */

/* Hide default "yyyy-mm-dd" text until selected */
input[type="date"]::-webkit-datetime-edit {
  color: transparent;
}
input[type="date"]:focus::-webkit-datetime-edit,
input[type="date"]:valid::-webkit-datetime-edit {
  color: #fff;
}

/* Make the calendar icon visible (gold) */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: brightness(0) saturate(100%) invert(73%) sepia(75%) saturate(500%) hue-rotate(10deg);
  cursor: pointer;
}


button.plan-btn,
a.plan-btn {
  background-color: transparent;
  color: #fff;
  border: 2px solid #d4af37;
  padding: 0.8rem 2rem;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

button.plan-btn:hover,
a.plan-btn:hover {
  background-color: #d4af37;
  color: #000;
}



/* ✨ Unified Gold Outline Style for All Navigation Buttons */

.nav-btn,
#exchangeNavBtn {
  background-color: transparent;
  color: #fff; /* Default: white text */
  border: 2px solid #d4af37;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  margin: 0 0.4rem;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: none;
}

.nav-btn:hover,
#exchangeNavBtn:hover {
  background-color: #d4af37;  /* Hover: gold fill */
  color: #000;                /* Hover: black text */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6); /* Lift + glow */
}

.nav-btn:active,
#exchangeNavBtn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.popup-message {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #111;
  color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
  display: none;
  z-index: 9999;
}

.popup-message.show {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}


@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%, -60%); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}



header::before {
  content: "DUBAI";
  position: absolute;
  bottom: 16rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12vw;
  font-weight: 900;
  font-family: 'Playfair Display', serif;
  color: rgba(255, 255, 255, 0.08);
  letter-spacing: 1rem;
  z-index: 0;
  opacity: 0;
  animation: fadeDubai 3s ease-in-out forwards;
  pointer-events: none;
  user-select: none;
}

@keyframes fadeDubai {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Responsive tweak for mobile */
@media screen and (max-width: 768px) {
  header::before {
    font-size: 8vw;
    bottom: 3rem;
  }
}



/* style.css - Desktop Styles */
.video-showcase {
  padding: 4rem 0;
  background-color: #111;
}

.video-container {
  position: relative;
  max-width: 960px;
  margin: auto;
  border: 2px solid #d4af37;
  border-radius: 20px;
  overflow: hidden;
}

/* Clean play button styling */
.video-toggle-btn {
  background: transparent;
  border: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
  cursor: pointer;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-container:hover .video-toggle-btn {
  opacity: 1;
}

.video-toggle-btn svg {
  display: block;
  width: 56px;
  height: 56px;
}



.video-container video {
  max-height: 600px; /* Adjust to preferred height */
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.video-container {
  max-width: 960px;
  margin: auto;
  border: 2px solid #d4af37;
  border-radius: 20px;
  overflow: hidden;
  max-height: 600px; /* Optional height control */
}

.video-container video {
  max-height: 540px; /* Reduce slightly from 600px */
  object-fit: contain; /* Ensures entire poster fits without cropping */
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-showcase {
  background-image: url('/images/Video-background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}







/* ============================= */
/* CONTINENTS SECTION - FINAL & FIXED */
/* ============================= */


.continents-section {
  background: linear-gradient(135deg, #0e0e0e, #1a1a1a);
  color: #fff;
  padding: 4rem 1rem;
  font-family: 'Playfair Display', serif;
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  color: #d4af37;
  margin-bottom: 3rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.continent-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  margin: 3rem auto;
  max-width: 1200px;
  padding: 1.5rem;
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  z-index: 1;
  background: #111;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.continent-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.continent-card > * {
  position: relative;
  z-index: 2;
}

.continent-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 175, 55, 0.4);
  border-color: rgba(212, 175, 55, 0.8);
}

.continent-card.reverse {
  flex-direction: row-reverse;
}

.continent-text {
  flex: 1;
  max-width: 520px;
}

.continent-line {
  width: 50px;
  height: 3px;
  background: #d4af37;
  margin-bottom: 1rem;
  border-radius: 2px;
}

.continent-text h3 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  color: #fff;
}

.continent-text p {
  font-family: 'Montserrat', sans-serif;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.continent-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: #d4af37;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.continent-link:hover {
  border-color: #d4af37;
  padding-left: 6px;
}

.continent-image {
  position: relative;
}

.continent-image::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 10%;
  right: 10%;
  bottom: 10%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
  z-index: 0;
  border-radius: 12px;
}

.continent-image img {
  position: relative;
  z-index: 1;
  width: 320px;
  max-width: 90%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  border: 3px solid #d4af37;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.continent-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
}

/* Backgrounds for each continent */

.continent-card.africa {
  background: url('../images/Africa-Continent-background.jpg') center/contain no-repeat;
  background-color: #000;
}

.continent-card.europe {
  background: url('../images/Europe-Continent-background.jpg') center/contain no-repeat;
  background-color: #000;
}

.continent-card.asia {
  background: url('../images/Asia-Continent-background.jpg') center/contain no-repeat;
  background-color: #000;
}

.continent-card.middleeast {
  background: url('../images/MiddleEast-Continent-background.png') center/contain no-repeat;
  background-color: #000;
}

.continent-card.australia {
  background: url('../images/Australia-Continent-background.png') center/contain no-repeat;
  background-color: #000;
}

.continent-card.america {
  background: url('../images/America-Continent-background.png') center/contain no-repeat;
  background-color: #000;
}

.continent-card.antarctica {
  background: url('../images/Antarctica-Continent-background.png') center/contain no-repeat;
  background-color: #000;
}

/* Mobile */
@media (max-width: 768px) {
  .continent-card {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .continent-card.reverse {
    flex-direction: column;
  }

  .continent-text {
    max-width: 90%;
  }

  .continent-text h3 {
    font-size: 1.6rem;
  }

  .continent-text p {
    font-size: 0.95rem;
  }

  .continent-image img {
    width: 280px;
    max-width: 100%;
  }
}













.partners-loop {
  background: #000000;
  text-align: center;
  padding: 50px 0;
  color: #fff;
  overflow: hidden;
  font-family: 'Playfair Display', serif;
  border-top: 1px solid gold;
  border-bottom: 1px solid gold;
}

.partners-loop h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: gold;
}

.logo-loop {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  width: 600px;
  max-width: 90%;
}

.logo-track {
  display: flex;
  gap: 40px;
  width: max-content;
  white-space: nowrap; /* ✨ prevent wrapping */
  animation: seamless-scroll 30s linear infinite;
}

.logo-track img {
  height: 50px;
  flex-shrink: 0; /* ✨ don’t shrink */
}
  
@keyframes seamless-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}



