 /* Progress bar */
    .progressbar {
      display: flex;
      justify-content: space-between;
      counter-reset: step;
      margin-bottom: 20px;
    }
    .progressbar li {
      list-style: none;
      width: 100%;
      text-align: center;
      position: relative;
      font-weight: bold;
      color: #ccc;
    }
    .progressbar li.active {
      color: #0077cc;
    }
    .progressbar li:before {
      counter-increment: step;
      content: counter(step);
      width: 30px;
      height: 30px;
      line-height: 30px;
      border: 2px solid #ccc;
      display: block;
      text-align: center;
      margin: 0 auto 10px auto;
      border-radius: 50%;
      background: #fff;
    }
    .progressbar li.active:before {
      border-color: #0077cc;
      color: #0077cc;
    }

    .step {
      display: none;
    }
    .step.active {
      display: block;
    }

    /* Stripe card input */
.StripeElement {
  background: #fff;
  padding: 16px 18px;
  border: 2px solid #ddd;
  border-radius: 10px;
  margin: 15px 0;
  font-size: 18px;
  color: #333;
  width: 100%;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);
}

.StripeElement.StripeElement--focus {
  border-color: #2ea78c;
  box-shadow: 0 0 8px rgba(46, 167, 140, 0.25);
}

.StripeElement.StripeElement--invalid {
  border-color: #e74c3c;
  box-shadow: 0 0 6px rgba(231, 76, 60, 0.3);
}

#card-errors {
  margin-top: 8px;
  font-size: 14px;
  color: #e74c3c;
  font-weight: 500;
}

/* Thank you / confirmation message */
/* Confirmation Box */
/* CONFIRMATION CARD */
.confirmation-card {
  max-width: 520px;
  margin: 30px auto;
  padding: 30px;
  border-radius: 18px;

  background: linear-gradient(135deg, #fff, #EAD7C5);
  border: 2px solid #D4A373;

  text-align: center;
  font-family: "Zain", "Inter", system-ui, sans-serif;

  box-shadow: 0 12px 30px rgba(139, 94, 60, 0.15);

  animation: fadeInUp 0.5s ease;
}

/* Heading */
.confirmation-card h2 {
  color: #8B5E3C;
  font-size: 26px;
  margin-bottom: 15px;
}

/* Text */
.confirmation-card p {
  font-size: 16px;
  color: #5a4636;
  margin: 6px 0;
}

/* Details section */
.confirmation-details {
  margin: 20px 0;
  padding: 15px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #EAD7C5;
}

/* Note */
.confirmation-note {
  margin-top: 15px;
  font-size: 14px;
  color: #8B5E3C;
  opacity: 0.8;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About Section */
.about-section {
  padding: 80px 20px;
}
.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #8B5E3C;
  position: relative;
}
.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #8B5E3C;
  margin: 12px auto 0;
  border-radius: 2px;
}

.about-card {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.about-image {
  flex: 1 1 300px;
}
.about-image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.about-text {
  flex: 2 1 500px;
  font-size: 17px;
  line-height: 1.9;
  color: #5a4636; /* warm readable brown */
}

/* Heading */
.about-text h3 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #8B5E3C; /* main spa brown */
  
}

/* Highlights */
.about-text .highlight {
  color: #D4A373; /* gold accent */
  font-weight: 700;
}

.about-text strong {
  color: #8B5E3C; /* consistent emphasis */
}

/* Quote box */
.about-text blockquote {
  background: #F6EFE7; /* soft warm beige */
  border-left: 5px solid #D4A373; /* gold accent */
  padding: 18px 22px;
  margin: 25px 0;
  font-style: italic;
  color: #4a3b2c;
  border-radius: 10px;

  /* subtle depth */
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

/* Links */
.about-text a {
  color: #8B5E3C;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.about-text a:hover {
  color: #D4A373;
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
  .about-card {
    flex-direction: column;
    padding: 25px;
  }
  .about-text {
    font-size: 16px;
  }
}


.service-prices {
  display: flex;
  gap: 10px;
  margin: 12px 0;
  flex-wrap: wrap;
}

.price-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
}

.price-badge.incall {
  background: #e8f6ff;
  color: #8B5E3C;
  border: 1px solid #b3e0ff;
}

.price-badge.outcall {
  background: #eafaf1;
  color: #2ea78c;
  border: 1px solid #a3e5c7;
}

/* Hide nav on mobile by default */
.nav-links {
  display: flex;
  gap: 20px;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #2f3e46;
    position: absolute;
    top: 0px; 
    right: 20px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }

  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .nav-links a {
    color: #fff;
    margin: 10px 0;
    text-align: right;
  }
}


.navbar {
 background: linear-gradient(90deg, #EAD7C5, #D4A373);
  padding: 15px 20px;
  color: #2C2C2C;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: linear-gradient(135deg, #2c1e16, #5a3e2a);
  padding: 18px 20px;
  transition: all 0.3s ease;
  margin-top: 0px;
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


.nav-links a {
  color: rgba(255,255,255,0.95);
  margin: 0 18px;
  font-size: 17px;       /* ðŸ”¥ increased */
  font-weight: 500;
  letter-spacing: 0.5px; /* adds elegance */
  position: relative;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}



@media (max-width: 768px) {

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;

    /* ðŸ”¥ NEW SPA STYLE */
    background: linear-gradient(135deg, #8B5E3C, #2C2C2C);
    
    padding: 20px;
    border-radius: 16px;
    
    /* âœ¨ Soft glow */
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);

    width: 220px;
    backdrop-filter: blur(10px);
  }

  .nav-links.show {
    display: flex;
    animation: fadeIn 0.4s ease;
  }

  .nav-links a {
    color: #fff;
    margin: 14px 0;
    font-size: 18px;
    font-weight: 500;
    text-align: right;
    transition: all 0.3s ease;
  }

  .nav-links a:hover {
    color: #D4A373;
    transform: translateX(-5px);
  }
}
  .hamburger span {
  background: #fff;
  transition: 0.3s;
}

.hamburger.open span:nth-child(1),
.hamburger.open span:nth-child(3) {
  background: #D4A373; /* gold tone when open */
}




.logo {
  font-family: "Zain", sans-serif;
  font-size: 32px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo i {
  font-size: 28px;
  color: #fff;
}

@media (max-width: 768px) {
  .logo {
    font-size: 22px;
  }
}

/* BOOKING CARD */
.booking-section {
  width: 100%;
  padding: 100px 20px;

  background: linear-gradient(135deg, #F6EFE7, #EAD7C5);

  position: relative;
  overflow: hidden;
}

/* ðŸŒ¿ soft ornamental pattern */
.booking-section::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url("https://www.transparenttextures.com/patterns/arabesque.png");
  opacity: 0.05;

  pointer-events: none;
}

/* âœ¨ gold glow */
.booking-section::after {
  content: "";
  position: absolute;

  width: 300px;
  height: 300px;

  background: radial-gradient(circle, rgba(212,163,115,0.25), transparent);

  bottom: -80px;
  left: -80px;

  filter: blur(60px);
  pointer-events: none;
}

#booking-form {
  width: 100%;
  max-width: 1100px; /* match your container width */
  margin: auto;

  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);

  padding: 40px;
  border-radius: 20px;

  box-shadow: 0 20px 60px rgba(139,94,60,0.2);
  border: 1px solid rgba(212,163,115,0.3);

  position: relative;
  z-index: 2;
}

/* FORCE ALL SECTIONS SAME WIDTH */
.container {
  max-width: 1100px;   /* match your design */
  margin: 0 auto;
  width: 100%;
}

.booking-section h2 {
  font-size: 34px;
  color: #8B5E3C;
  margin-bottom: 40px;
  position: relative;
}

@media (max-width: 768px) {
  #booking-form {
    padding: 25px;
  }
}

.booking-section h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 2px;
  background: #D4A373;
  margin: 12px auto 0;
}

/* Inputs */
#booking-form input,
#booking-form select {
  width: 100%;
  padding: 16px 18px;
  margin: 12px 0;
  border-radius: 14px;
  border: 2px solid #EAD7C5;
  font-size: 17px;
  background: #fff;
  transition: all 0.25s ease;
}

/* Focus state */
#booking-form input:focus,
#booking-form select:focus {
  border-color: #D4A373;
  box-shadow: 0 0 0 4px rgba(212,163,115,0.2);
  outline: none;
}

/* Buttons */
.btn-primary-1 {
  background: linear-gradient(135deg, #D4A373, #8B5E3C);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
  margin-top: 10px;
  transition: 0.3s;
}

.btn-primary-1:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(139, 94, 60, 0.25);
}

/* Progress bar */
.progressbar li.active {
  color: #8B5E3C;
}
.progressbar li.active:before {
  border-color: #D4A373;
  color: #D4A373;
}

/* Labels */
.form-label {
  font-weight: 600;
  color: #8B5E3C;
  margin-top: 10px;
  display: block;
}

/* Flatpickr disabled dates */
.flatpickr-day.disabled,
.flatpickr-day.disabled:hover {
  background: #eee !important;
  color: #bbb !important;
  cursor: not-allowed;
}

/* Selected date */
.flatpickr-day.selected {
  background: #D4A373 !important;
  border-color: #D4A373 !important;
  color: #fff;
}

/* Today highlight */
.flatpickr-day.today {
  border-color: #8B5E3C;
}


/* Booking button group */
.booking-btn-group {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* Base style */
.booking-btn-group button {
  min-width: 140px;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  border: none;
}

/* Next / Confirm */
.booking-btn-next {
  background: linear-gradient(135deg, #D4A373, #8B5E3C);
  color: #fff;
}

.booking-btn-next:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(139, 94, 60, 0.25);
}

/* Back */
.booking-btn-back {
  background: #EAD7C5;
  color: #8B5E3C;
  border: 2px solid #D4A373;
}

.booking-btn-back:hover {
  background: #D4A373;
  color: #fff;
}

.booking-btn-next {
  background: linear-gradient(135deg, #D4A373, #8B5E3C) !important;
  color: #fff !important;
}

/* FOOTER BASE */
.footer {
  position: relative;
  background: linear-gradient(135deg, #2c1e16, #5a3e2a);
  color: #fff;
  padding: 80px 20px 30px;
  overflow: hidden;
}

/* ðŸŒ¿ subtle spa pattern */
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/arabesque.png");
  opacity: 0.04;
}

/* âœ¨ golden glow */
.footer::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,163,115,0.25), transparent);
  bottom: -120px;
  right: -120px;
  filter: blur(80px);
}

/* layout */
.footer-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  max-width: 1100px;
  margin: auto;
}

/* logo */
.footer-logo {
  font-size: 26px;
  color: #D4A373;
  margin-bottom: 15px;
}

/* headings */
.footer-col h4 {
  color: #EAD7C5;
  font-size: 18px;
  margin-bottom: 18px;
  position: relative;
}

.footer-col h4::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #D4A373;
  position: absolute;
  bottom: -6px;
  left: 0;
}

/* text */
.footer-col p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
}

/* links */
.footer-col a {
  display: block;
  margin: 8px 0;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

/* âœ¨ hover animation */
.footer-col a::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  width: 6px;
  height: 6px;
  background: #D4A373;
  border-radius: 50%;
  transform: translateY(-50%) scale(0);
  transition: 0.3s;
}

.footer-col a:hover {
  color: #D4A373;
  transform: translateX(8px);
}

.footer-col a:hover::before {
  transform: translateY(-50%) scale(1);
}

/* icons */
.footer-col i {
  color: #D4A373;
  margin-right: 8px;
}

/* bottom bar */
.footer-bottom {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

/* gold highlight link */
.footer-bottom a {
  color: #D4A373;
  font-weight: 500;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ðŸŒ¿ divider line glow */
.footer-bottom::before {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  background: linear-gradient(to right, transparent, #D4A373, transparent);
  margin: 0 auto 20px;
}

/* mobile */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-col a:hover {
    transform: none;
  }
}

/* FORCE FONT IN BOOKING FORM */
#booking-form,
#booking-form input,
#booking-form select,
#booking-form button {
  font-family: "Zain", "Inter", system-ui, sans-serif;
}

.booking-btn-group button:active {
  transform: scale(0.97);
}

@media (max-width: 768px) {

  #booking-form {
    padding: 20px;
  }

  #booking-form input,
  #booking-form select {
    font-size: 18px;        /* bigger text */
    padding: 18px;          /* easier tapping */
    border-radius: 16px;
  }

  .booking-btn-group button {
    font-size: 17px;
    padding: 16px;
    min-width: 160px;
  }

  /* Bigger labels */
  .form-label {
    font-size: 16px;
  }

}

html {
  scroll-behavior: smooth;
}

/* WRAPPER */
.services-luxury {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* ROW */
.service-row {
  position: relative; /* ðŸ”¥ REQUIRED */
  display: grid;
  grid-template-columns: 1fr 1fr;

  background: linear-gradient(135deg, #F6EFE7, #EFE3D7);
  
  border-radius: 20px;
  overflow: hidden;

  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: 0.4s;
}
/* ðŸŒ¿ ORNAMENT PATTERN */
.service-row::after {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url("https://www.transparenttextures.com/patterns/arabesque.png");

  opacity: 0.06; /* ðŸ”¥ keep LOW for luxury */
  pointer-events: none;
}

/* âœ¨ GOLD GLOW */
.service-row::before {
  content: "";
  position: absolute;

  width: 220px;
  height: 220px;

  background: radial-gradient(circle, rgba(212,163,115,0.25), transparent);

  top: -60px;
  right: -60px;

  filter: blur(50px);
  pointer-events: none;
}

.service-row:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(139,94,60,0.2);
}

/* ALTERNATE */
.service-row.reverse {
  direction: rtl;
}
.service-row.reverse * {
  direction: ltr;
}




/* IMAGE */
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */
.service-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ICON */
.service-icon {
  color: #D4A373;
  font-size: 20px;
  margin-bottom: 10px;
}

/* TITLE */
.service-content h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #5a3e2a;
}
.service-content h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: #D4A373;
  margin-top: 10px;
  border-radius: 2px;
}

/* TEXT */
.service-content p {
  color: #6b5a4a;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* PRICE */
.price-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 25px;
  background: #fff;
  border: 1px solid #D4A373;
  color: #8B5E3C;
  font-weight: 600;
  margin-bottom: 20px;
}

/* BUTTON */
.luxury-btn {
  display: inline-block;
  background: linear-gradient(135deg, #D4A373, #8B5E3C);
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.luxury-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(139,94,60,0.3);
}

/* MOBILE */
@media (max-width: 768px) {
  .service-row {
    grid-template-columns: 1fr;
  }

  .service-content {
    padding: 25px;
  }

  .service-content h3 {
    font-size: 22px;
  }
}
    
    .hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* SLIDES */
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;

  opacity: 0;
  transition: opacity 1.5s ease-in-out;

  display: flex;
  align-items: center;
}

/* ACTIVE SLIDE */
.slide.active {
  opacity: 1;
  z-index: 1;
}

/* DARK OVERLAY */
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(20,20,20,0.5),
    rgba(20,20,20,0.7)
  );
}

/* CONTENT */
.slide-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 0 20px 0 80px;
  color: #fff;
}

/* TAG */
.tag {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
}

/* TITLE */
.slide-content h1 {
  font-size: 45px;
  text-shadow: 0 5px 20px rgba(0,0,0,0.4);
  margin: 10px 0 10px 0; /* reduce top/bottom spacing */
  line-height: 1.2;
}

/* TEXT */
.slide-content p {
  font-size: 18px;
  margin-bottom: 30px;
   margin: 8px 0;
  line-height: 1.5;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn-gold {
  background: linear-gradient(135deg, #D4A373, #8B5E3C);
  color: #fff;
  padding: 14px 26px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212,163,115,0.4);
}

.btn-outline-light {
  border: 2px solid #fff;
  color: #fff;
  padding: 14px 26px;
  border-radius: 30px;
  text-decoration: none;
}

.btn-outline-light:hover {
  background: #fff;
  color: #000;
}

/* MOBILE */
@media (max-width: 768px) {
  .slide-content {
    padding: 20px;
  }

  .slide-content h1 {
    font-size: 36px;
  }
}
    
    
    /* ABOUT LUXURY SECTION */
.about-luxury {
  padding: 100px 20px;
  background: linear-gradient(135deg, #F6EFE7, #EAD7C5);
  position: relative;
  overflow: hidden;
}

/* subtle pattern */
.about-luxury::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/arabesque.png");
  opacity: 0.05;
}

/* layout */
.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* TEXT */
.about-text {
  color: #5a4636;
}

.about-tag {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  color: #D4A373;
}

.about-text h2 {
  font-size: 38px;
  margin: 20px 0;
  color: #8B5E3C;
}

.about-text p {
  line-height: 1.8;
  margin-bottom: 18px;
}

/* QUOTE */
.about-text blockquote {
  background: #fff;
  border-left: 4px solid #D4A373;
  padding: 18px;
  margin: 25px 0;
  border-radius: 10px;
  font-style: italic;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* FEATURES */
.about-features {
  margin-top: 20px;
}

.about-features div {
  margin-bottom: 10px;
  font-weight: 500;
}

/* IMAGE */
.about-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* MOBILE */
@media (max-width: 768px) {
  .about-wrapper {
    grid-template-columns: 1fr;
  }

  .about-text h2 {
    font-size: 28px;
  }
}

.about-features div {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-weight: 500;
  color: #5a4636;
}

/* âœ¨ Elegant gold dot */
.about-features div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;

  width: 8px;
  height: 8px;

  background: #D4A373;
  border-radius: 50%;

  box-shadow: 0 0 6px rgba(212,163,115,0.6);
}

.slide-content h2 {
  margin: 10px 0 10px 0; /* reduce top/bottom spacing */
  line-height: 1.2;
  text-align: left;
}

.slide-content p {
  margin: 8px 0;
  line-height: 1.5;
}

/* ===== PROMO OVERLAY ===== */
#promo-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 15, 10, 0.65);

  display: none;
  align-items: center;
  justify-content: center;

  z-index: 9999;

  backdrop-filter: blur(6px);
}

/* ===== POPUP BOX ===== */
.promo-box {
  position: relative;

  max-width: 420px;
  width: 90%;
  padding: 40px 30px;

  border-radius: 20px;

  background: linear-gradient(135deg, #fff, #EAD7C5);

  border: 2px solid #D4A373;

  text-align: center;

  font-family: "Zain", "Inter", system-ui, sans-serif;

  box-shadow: 0 25px 70px rgba(139, 94, 60, 0.35);

  animation: promoFadeIn 0.6s ease;
  overflow: hidden;
}

/* ðŸŒ¿ subtle pattern */
.promo-box::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url("https://www.transparenttextures.com/patterns/arabesque.png");
  opacity: 0.05;

  pointer-events: none;
}

/* âœ¨ glow effect */
.promo-box::after {
  content: "";
  position: absolute;

  width: 200px;
  height: 200px;

  background: radial-gradient(circle, rgba(212,163,115,0.25), transparent);

  top: -50px;
  right: -50px;

  filter: blur(40px);
  pointer-events: none;
}

/* ===== CLOSE BUTTON ===== */
.promo-close {
  position: absolute;
  top: 12px;
  right: 15px;

  font-size: 24px;
  color: #8B5E3C;

  cursor: pointer;
  transition: 0.3s;
}

.promo-close:hover {
  color: #D4A373;
  transform: scale(1.2);
}

/* ===== HEADINGS ===== */
.promo-box h2 {
  font-size: 26px;
  color: #8B5E3C;
  margin-bottom: 10px;
}

/* MAIN TEXT */
.promo-main {
  font-size: 20px;
  color: #5a4636;
  margin: 10px 0;
}

/* DISCOUNT STYLE */
.promo-main strong {
  color: #D4A373;
  font-size: 26px;
}

/* DATES */
.promo-dates {
  font-size: 15px;
  color: #8B5E3C;
  margin-bottom: 20px;
  opacity: 0.9;
}

/* ===== BUTTON ===== */
.promo-btn {
  display: inline-block;

  background: linear-gradient(135deg, #D4A373, #8B5E3C);
  color: #fff;

  padding: 14px 28px;
  border-radius: 30px;

  font-weight: 600;
  text-decoration: none;

  transition: all 0.3s ease;
}

.promo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(139,94,60,0.3);
}

/* ===== ANIMATION ===== */
@keyframes promoFadeIn {
  from {
    opacity: 0;
    transform: translateY(25px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ===== MOBILE OPTIMISATION ===== */
@media (max-width: 768px) {

  .promo-box {
    padding: 30px 20px;
  }

  .promo-box h2 {
    font-size: 22px;
  }

  .promo-main {
    font-size: 18px;
  }

  .promo-main strong {
    font-size: 22px;
  }

  .promo-btn {
    width: 100%;
    text-align: center;
  }

}

/* ===== TOP BAR ===== */
.top-bar {
 position: fixed;   /* ðŸ”¥ change this */
  top: 0;
  left: 0;
  width: 100%;

  z-index: 2000;     /* above navbar */

  background: linear-gradient(135deg, #8B5E3C, #2c1e16);
  color: #fff;
  font-size: 14px;
  padding: 8px 20px;
}

/* CONTAINER */
.top-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LEFT SIDE */
.top-left {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.top-left a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}

.top-left a:hover {
  color: #D4A373;
}

/* ICON STYLE */
.top-left i {
  color: #D4A373;
  font-size: 13px;
}

/* RIGHT SOCIAL */
.top-right {
  display: flex;
  gap: 10px;
}

/* SOCIAL ICONS */
.social-icon {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s;
}

.social-icon:hover {
  background: #D4A373;
  color: #2c1e16;
  transform: translateY(-2px);
}

@media (max-width: 768px) {

  /* ðŸ”¥ Hide email */
  .top-left a:nth-child(2) {
    display: none;
  }

  /* ðŸ”¥ Force single row layout */
  .top-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  /* Reduce spacing */
  .top-left {
    gap: 10px;
  }

  /* Slightly smaller icons */
  .social-icon {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;

  width: 60px;
  height: 60px;

  background: #25D366;
  color: #fff;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.25);

  z-index: 3000;

  transition: all 0.3s ease;
}

/* Hover effect */
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0,0,0,0.35);
}

/* Pulse animation (subtle attention) */
@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-float {
  animation: whatsappPulse 2.5s infinite;
}

/* Mobile tweak */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 24px;
    bottom: 15px;
    right: 15px;
  }
}

/* ===== NAV FULL-WIDTH FIX ===== */
.navbar .container {
  max-width: 1400px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* stop link text wrapping onto two lines */
.nav-links {
  flex-wrap: nowrap;
}

.nav-links a {
  white-space: nowrap;
  margin: 0 14px; /* slightly tighter than 18px so 6 items fit comfortably */
}

/* give items a bit more breathing room before the mobile menu kicks in */
@media (min-width: 769px) and (max-width: 1150px) {
  .nav-links a {
    font-size: 15px;
    margin: 0 10px;
    letter-spacing: 0.2px;
  }
  .navbar .container {
    gap: 14px;
  }
}