/* BASE */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #f8f5f2;
  color: #2c2c2c;
}

/* NAVBAR WRAPPER */
.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;
}

/* CONTAINER (CRITICAL FOR ALIGNMENT) */
.nav-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo {
  font-family: "Zain", "Inter", system-ui, sans-serif;
  font-size: 32px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo i {
  font-size: 28px;
}

@media (max-width: 768px) {
  .logo {
    font-size: 22px;
  }
}

/* NAV LINKS (DESKTOP) */
/* NAV LINKS (EXACT HOMEPAGE CLONE) */
.nav-links {
  display: flex;
  gap: 20px; /* keep this */
}

.nav-links a {
  color: rgba(255,255,255,0.95);
  margin: 0 18px; /* ðŸ”¥ THIS is the key */
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}



/* HOVER EFFECT */
.nav-links a:hover {
  color: #fff;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  margin: 4px 0;
  background: #fff;
  display: block;
  transition: 0.3s;
}

/* HAMBURGER ACTIVE */
.hamburger.open span:nth-child(1),
.hamburger.open span:nth-child(3) {
  background: #D4A373;
}

/* MOBILE */
@media (max-width: 768px) {

  /* SHOW HAMBURGER */
  .hamburger {
    display: flex;
  }

  /* HIDE NAV BY DEFAULT */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 20px;
    background: linear-gradient(135deg, #8B5E3C, #2C2C2C);
    padding: 20px;
    border-radius: 16px;
    width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  }

  /* SHOW WHEN ACTIVE */
  .nav-links.show {
    display: flex;
    animation: fadeIn 0.3s ease;
  }

  /* MOBILE LINKS */
  .nav-links a {
    margin: 12px 0;
    font-size: 18px;
    text-align: right;
  }

  .nav-links a:hover {
    color: #D4A373;
    transform: translateX(-5px);
  }
}

/* OPTIONAL FADE ANIMATION */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* HERO */
.lux-hero {
  position: relative;
  padding: 120px 20px 140px;
  background: linear-gradient(135deg, #F6EFE7, #EAD7C5);
  overflow: hidden;
}

/* subtle texture */
.lux-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/arabesque.png");
  opacity: 0.05;
}

/* GRID LAYOUT */
.lux-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* IMAGE SIDE */
.lux-images {
  position: relative;
  max-width: 520px;
}

/* MAIN IMAGE */
.img-main img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* SMALL OVERLAY IMAGE (FIXED) */
.img-small {
  position: absolute;
  bottom: -20px;
  right: -30px;
  width: 60%;
  max-width: 300px;
}

.img-small img {
  width: 100%;
  border-radius: 14px;
  border: 6px solid #fff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* TEXT SIDE */
.lux-content {
  max-width: 520px;
  z-index: 2;
}

.lux-content h1 {
  font-size: 44px;
  line-height: 1.2;
  color: #8B5E3C;
  margin-bottom: 20px;
}

.lux-content p {
  font-size: 18px;
  color: #5a4636;
  margin-bottom: 30px;
}

/* BUTTONS */
.lux-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-main {
  background: linear-gradient(135deg, #D4A373, #8B5E3C);
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-main:hover {
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid #D4A373;
  color: #8B5E3C;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #D4A373;
  color: #fff;
}

/* INTRO */
.intro {
  padding: 80px 20px;
  text-align: center;
}

.container {
  max-width: 800px;
  margin: auto;
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
  padding: 60px 20px;
}

.feature-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

/* CTA */
.cta {
  position: relative;
  overflow: hidden;
  padding: 120px 20px 160px; /* 👈 space for wave */
  background: linear-gradient(135deg, #F6EFE7, #EAD7C5);
  text-align: center;
}

/* WAVE */
.cta-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 120px;
  pointer-events: none; /* prevents blocking clicks */
}

.cta-wave svg {
  width: 100%;
  height: 100%;
}

.cta-wave path {
  fill: #2c1e16; /* same as footer */
}

.cta-box {
  max-width: 700px;
  margin: auto;
  color: #2c2c2c;
}

.cta h2 {
  font-size: 34px;
  margin-bottom: 20px;
  color: #8B5E3C;
}

.cta p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #5a4636;
}

/* BUTTON UPGRADE */
.cta .btn-main {
  background: linear-gradient(135deg, #D4A373, #8B5E3C);
  color: #fff;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 40px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  position: relative;
}

/* HOVER LIFT */
.cta .btn-main:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* SOFT PULSE */
.cta .btn-main::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 40px;
  background: rgba(212,163,115,0.3);
  opacity: 0;
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.4; }
  70% { transform: scale(1.3); opacity: 0; }
  100% { opacity: 0; }
}

/* MOBILE */
@media (max-width: 768px){

  .lux-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lux-images {
    order: -1;
    max-width: 100%;
  }

  /* KEEP OVERLAY EFFECT */
  .img-small {
    position: absolute;
    bottom: -15px;
    right: 10px;
    width: 65%;
    max-width: 220px;
  }

  .lux-content h1 {
    font-size: 30px;
  }

  .features {
    grid-template-columns: 1fr;
  }

}

/* ===== MODERN BENEFITS (FIXED PREMIUM VERSION) ===== */

.benefits-modern {
  padding: 120px 20px;
  background: linear-gradient(135deg, #f8f5f2, #efe3d6);
}

/* CONTAINER WIDTH */
.benefits-modern {
  max-width: 1100px;
  margin: auto;
}

/* ROW */
.benefit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 80px;
}

/* REVERSE */
.benefit-row.reverse {
  flex-direction: row-reverse;
}

/* IMAGE */
.benefit-img {
  flex: 1;
}

.benefit-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  transition: 0.4s ease;
}

/* TEXT */
.benefit-text {
  flex: 1;
  background: #fff;
  padding: 45px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* HEADINGS */
.benefit-text h3 {
  font-size: 28px;
  color: #8B5E3C;
  margin-bottom: 15px;
}

/* PARAGRAPH */
.benefit-text p {
  font-size: 17px;
  line-height: 1.6;
  color: #5a4636;
}

/* HOVER (SUBTLE LUXURY, NOT CRAZY) */
.benefit-row:hover img {
  transform: scale(1.03);
}

/* SCROLL ANIMATION */
.benefit-row {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.benefit-row.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MOBILE FIX (THIS WAS MISSING ❗) ===== */
@media (max-width: 768px) {

  .benefit-row {
    flex-direction: column;
    gap: 25px;
    margin-bottom: 60px;
  }

  .benefit-row.reverse {
    flex-direction: column;
  }

  .benefit-text {
    padding: 25px;
  }

  .benefit-text h3 {
    font-size: 22px;
  }

}

.faq {
  padding: 120px 20px;
  background: linear-gradient(135deg, #f8f5f2, #efe3d6);
}

.faq-container {
  max-width: 800px;
  margin: auto;
}

.faq h2 {
  text-align: center;
  margin-bottom: 50px;
  color: #8B5E3C;
  font-size: 32px;
}

/* CARD */
.faq-item {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: 0.3s;
}

/* QUESTION */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 25px;
  font-size: 18px;
  text-align: left;
  font-weight: 600;
  cursor: pointer;

  display: flex;
  justify-content: space-between;
  align-items: center;

  /* 🔥 IMPORTANT RESETS */
  color: #2c2c2c;              /* force text color */
  -webkit-appearance: none;   /* remove iOS styling */
  appearance: none;
  outline: none;
}

/* REMOVE BLUE TAP HIGHLIGHT (iOS/Android) */
.faq-question:focus,
.faq-question:active {
  outline: none;
  background: none;
}

/* Optional: remove tap highlight flash */
.faq-question {
  -webkit-tap-highlight-color: transparent;
}

/* PLUS ICON */
.faq-question span {
  font-size: 22px;
  transition: 0.3s;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  padding: 0 25px;
}

.faq-answer p {
  padding-bottom: 20px;
  color: #5a4636;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* 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;
  }
}