/* ============================================
   MANAL ELEGANT - LUXURY BEAUTY PARLOUR
   Design System & Global Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Cormorant+Garamond:wght@300;400;500;600&family=Cairo:wght@300;400;600;700&family=Amiri:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  /* Color Palette */
  --gold: #C9A84C;
  --gold-light: #E8C97E;
  --gold-dark: #9A7526;
  --rose: #B5527A;
  --rose-light: #E8A4C0;
  --rose-pale: #FFF0F5;
  --cream: #FDF8F2;
  --champagne: #F5E6D3;
  --deep-burgundy: #4A0E2C;
  --charcoal: #2D2D2D;
  --white: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-muted: #7A6E68;
  --border-light: rgba(201,168,76,0.25);
  --shadow-gold: 0 8px 40px rgba(201,168,76,0.18);
  --shadow-rose: 0 8px 40px rgba(181,82,122,0.15);

  /* Typography */
  --font-heading: 'Playfair Display', 'Amiri', serif;
  --font-sub: 'Cormorant Garamond', 'Cairo', serif;
  --font-body: 'Cairo', 'Cormorant Garamond', sans-serif;
  --font-arabic: 'Amiri', 'Cairo', serif;

  /* Spacing */
  --section-pad: 90px 0;
  --container-max: 1200px;

  /* Transitions */
  --trans: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ---- RTL Support ---- */
[dir="rtl"] {
  --font-heading: 'Amiri', 'Playfair Display', serif;
  --font-body: 'Cairo', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

body.rtl {
  direction: rtl;
  text-align: right;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(135deg, var(--deep-burgundy) 0%, #2D0A1A 100%);
  color: var(--white);
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 9999;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.35);
  border-top: 2px solid var(--gold);
  font-size: 0.9rem;
  flex-wrap: wrap;
}
#cookie-banner p { flex: 1; min-width: 200px; opacity: 0.92; }
#cookie-banner a { color: var(--gold-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-cookie-accept {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  border: none;
  padding: 10px 28px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-body);
  transition: var(--trans);
  font-size: 0.88rem;
}
.btn-cookie-accept:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,0.4); }
.btn-cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.88rem;
  transition: var(--trans);
  font-family: var(--font-body);
}
.btn-cookie-decline:hover { border-color: rgba(255,255,255,0.7); color: var(--white); }

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(253,248,242,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--trans);
}
header.scrolled {
  background: rgba(253,248,242,0.98);
  box-shadow: 0 4px 30px rgba(201,168,76,0.1);
}
.header-top {
  background: linear-gradient(90deg, var(--deep-burgundy) 0%, #7A1F45 50%, var(--deep-burgundy) 100%);
  color: var(--gold-light);
  text-align: center;
  padding: 7px 20px;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.header-top a { color: var(--gold-light); text-decoration: none; transition: var(--trans); }
.header-top a:hover { color: var(--white); }
.header-top span { opacity: 0.7; }

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--gold);
}
.logo-text { display: flex; flex-direction: column; }
.logo-text .name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--deep-burgundy);
  line-height: 1.1;
  letter-spacing: 0.03em;
}
.logo-text .tagline {
  font-size: 0.68rem;
  color: var(--gold-dark);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 6px;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 50px;
  transition: var(--trans);
  position: relative;
  letter-spacing: 0.03em;
}
.nav-links a::after {
  content:'';
  position: absolute;
  bottom: 4px; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--trans);
}
.nav-links a:hover::after,
.nav-links a.active::after { left: 14px; right: 14px; }
.nav-links a:hover, .nav-links a.active { color: var(--deep-burgundy); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.lang-toggle {
  display: flex;
  background: var(--champagne);
  border-radius: 50px;
  padding: 3px;
  border: 1px solid var(--border-light);
}
.lang-btn {
  padding: 6px 16px;
  border: none;
  background: transparent;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--trans);
  font-family: var(--font-body);
}
.lang-btn.active {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(201,168,76,0.4);
}

.btn-book-nav {
  background: linear-gradient(135deg, var(--rose) 0%, var(--deep-burgundy) 100%);
  color: var(--white);
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--trans);
  box-shadow: 0 4px 20px rgba(181,82,122,0.35);
  font-family: var(--font-body);
  letter-spacing: 0.03em;
}
.btn-book-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(181,82,122,0.5);
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--deep-burgundy);
  border-radius: 2px;
  transition: var(--trans);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 110px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.png');
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.12); } }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(74,14,44,0.7) 0%,
    rgba(181,82,122,0.3) 50%,
    rgba(201,168,76,0.2) 100%);
}

/* Arabic pattern overlay */
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  color: var(--white);
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.5);
  backdrop-filter: blur(10px);
  color: var(--gold-light);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 10px;
  animation: fadeInUp 0.9s ease 0.2s both;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-arabic {
  font-family: var(--font-arabic);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  color: var(--gold-light);
  margin-bottom: 22px;
  animation: fadeInUp 1s ease 0.35s both;
}
.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  opacity: 0.88;
  max-width: 650px;
  margin: 0 auto 40px;
  animation: fadeInUp 1s ease 0.5s both;
  line-height: 1.8;
}
.hero-ctas {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.65s both;
}

@keyframes fadeInDown { from{opacity:0;transform:translateY(-20px);} to{opacity:1;transform:translateY(0);} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px);} to{opacity:1;transform:translateY(0);} }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--trans);
  box-shadow: 0 6px 30px rgba(201,168,76,0.5);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.6);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--trans);
  border: 1.5px solid rgba(255,255,255,0.4);
  cursor: pointer;
  font-family: var(--font-body);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-3px);
}

.hero-stats {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0;
  background: rgba(253,248,242,0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 20px;
  overflow: hidden;
  animation: fadeInUp 1s ease 0.8s both;
}
.hero-stat {
  padding: 20px 35px;
  text-align: center;
  border-right: 1px solid rgba(201,168,76,0.2);
  color: var(--white);
}
.hero-stat:last-child { border-right: none; }
.hero-stat .number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
}
.hero-stat .label {
  font-size: 0.78rem;
  opacity: 0.8;
  letter-spacing: 0.08em;
}

/* ============================================
   SECTION UTILITIES
   ============================================ */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 40px; }
.section-pad { padding: var(--section-pad); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(181,82,122,0.08));
  border: 1px solid var(--border-light);
  color: var(--gold-dark);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--deep-burgundy);
  margin-bottom: 8px;
  line-height: 1.2;
}
.section-title-ar {
  font-family: var(--font-arabic);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 14px auto;
}
.section-divider::before, .section-divider::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.section-divider::after { background: linear-gradient(90deg, var(--gold), transparent); }
.section-divider .diamond {
  width: 10px; height: 10px;
  background: var(--gold);
  transform: rotate(45deg);
  border-radius: 2px;
}
.section-sub {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: var(--trans);
  position: relative;
  cursor: default;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(201,168,76,0.5);
}
.service-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img { transform: scale(1.06); }
.service-img-wrap { overflow: hidden; position: relative; }
.service-badge-overlay {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.service-card-body { padding: 24px 26px 28px; }
.service-icon { font-size: 2rem; margin-bottom: 10px; display: block; }
.service-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--deep-burgundy);
  margin-bottom: 4px;
  font-weight: 600;
}
.service-name-ar {
  font-family: var(--font-arabic);
  font-size: 1rem;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.service-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; }
.service-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}
.service-price .from { font-size: 0.78rem; color: var(--text-muted); }
.service-price .amount {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--rose);
  font-weight: 700;
}
.service-price .currency { font-size: 0.85rem; color: var(--text-muted); }

/* ============================================
   PACKAGES SECTION
   ============================================ */
.packages { background: linear-gradient(135deg, var(--deep-burgundy) 0%, #3D0920 100%); position: relative; overflow: hidden; }
.packages::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A84C' fill-opacity='0.05'%3E%3Cpath d='M40 40c0-11 9-20 20-20s20 9 20 20-9 20-20 20-20-9-20-20zm-40 0c0-11 9-20 20-20s20 9 20 20-9 20-20 20S0 51 0 40z'/%3E%3C/g%3E%3C/svg%3E");
}

.packages .section-title, .packages .section-title-ar { color: var(--white); }
.packages .section-badge { background: rgba(201,168,76,0.15); border-color: rgba(201,168,76,0.4); color: var(--gold-light); }
.packages .section-sub { color: rgba(255,255,255,0.7); }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  position: relative;
  z-index: 1;
}
.pkg-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 24px;
  padding: 36px 32px;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.pkg-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,168,76,0.6);
  background: rgba(255,255,255,0.09);
}
.pkg-card.featured {
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
}
.pkg-popular-badge {
  position: absolute;
  top: -1px; right: 28px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  padding: 6px 24px 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0 0 14px 14px;
}
.pkg-icon { font-size: 2.5rem; margin-bottom: 16px; }
.pkg-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.pkg-name-ar { font-family: var(--font-arabic); font-size: 1.1rem; color: rgba(255,255,255,0.7); margin-bottom: 18px; }
.pkg-price-wrap {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-bottom: 6px;
  padding: 16px 0;
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.pkg-price {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--gold-light);
  font-weight: 700;
  line-height: 1;
}
.pkg-currency { color: rgba(255,255,255,0.6); font-size: 1rem; margin-bottom: 6px; }
.pkg-note { color: rgba(255,255,255,0.5); font-size: 0.8rem; }
.pkg-features { list-style: none; margin: 20px 0 28px; display: flex; flex-direction: column; gap: 10px; }
.pkg-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
}
.pkg-features li .check { color: var(--gold-light); font-size: 1rem; }
.btn-pkg {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  border-radius: 50px;
  border: 1.5px solid var(--gold);
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 700;
  transition: var(--trans);
  font-family: var(--font-body);
  font-size: 0.92rem;
}
.btn-pkg:hover, .pkg-card.featured .btn-pkg {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 6px 25px rgba(201,168,76,0.4);
}

/* ============================================
   GALLERY / SERVICES SHOWCASE
   ============================================ */
.showcase { background: var(--champagne); }
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.showcase-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.showcase-card:first-child { grid-row: span 2; aspect-ratio: 3/4; }
.showcase-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.showcase-card:hover img { transform: scale(1.07); }
.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(74,14,44,0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.showcase-label {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
}

/* ============================================
   REVIEWS / TESTIMONIALS
   ============================================ */
.reviews { position: relative; overflow: hidden; }
.reviews-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/review-bg.png');
  background-size: cover;
  background-position: center;
  filter: brightness(0.18);
}
.reviews-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(253,248,242,0.96) 0%, rgba(245,230,211,0.95) 100%);
}
.reviews-content { position: relative; z-index: 1; }

.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.overall-score { text-align: center; }
.score-number {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 700;
  color: var(--deep-burgundy);
  line-height: 1;
}
.score-stars { color: var(--gold); font-size: 1.6rem; margin: 6px 0; }
.score-count { color: var(--text-muted); font-size: 0.88rem; }

.rating-bars { display: flex; flex-direction: column; gap: 8px; min-width: 220px; }
.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.bar-track {
  flex: 1;
  height: 8px;
  background: rgba(201,168,76,0.15);
  border-radius: 10px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--rose));
  border-radius: 10px;
  transition: width 1.5s ease;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 30px;
  border: 1px solid var(--border-light);
  transition: var(--trans);
  position: relative;
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-rose); }
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; right: 24px;
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--gold-light);
  line-height: 1;
  opacity: 0.5;
}
.review-stars { color: var(--gold); margin-bottom: 12px; font-size: 1rem; }
.review-text { color: var(--charcoal); font-size: 0.92rem; line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 14px; }
.reviewer-img {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-light), var(--champagne));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--deep-burgundy);
  font-weight: 700;
  font-family: var(--font-heading);
  flex-shrink: 0;
}
.reviewer-name { font-weight: 700; color: var(--deep-burgundy); font-size: 0.95rem; }
.reviewer-date { font-size: 0.78rem; color: var(--text-muted); }

/* ============================================
   BOOKING SECTION
   ============================================ */
.booking { background: var(--cream); }
.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: start;
}
.booking-info { padding: 10px 0; }
.booking-info h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--deep-burgundy);
  margin-bottom: 18px;
}
.booking-contact-list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-top: 30px; }
.booking-contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--charcoal);
}
.contact-icon-wrap {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-icon-wrap.gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--white); }
.contact-icon-wrap.rose { background: linear-gradient(135deg, var(--rose-light), var(--rose)); color: var(--white); }
.contact-icon-wrap.green { background: linear-gradient(135deg, #25D366, #128C7E); color: var(--white); }
.contact-icon-wrap.blue { background: linear-gradient(135deg, #0088cc, #005f8c); color: var(--white); }

.booking-form {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-gold);
}
.booking-form h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--deep-burgundy);
  margin-bottom: 6px;
  text-align: center;
}
.form-subtitle { text-align: center; color: var(--text-muted); font-size: 0.88rem; margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  background: var(--cream);
  color: var(--text-dark);
  transition: var(--trans);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e74c3c;
  background: #fff5f5;
}
.error-msg {
  color: #e74c3c;
  font-size: 0.78rem;
  margin-top: 4px;
  display: none;
}
.error-msg.show { display: block; }

/* CAPTCHA */
.captcha-box {
  background: linear-gradient(135deg, var(--champagne) 0%, #EDD9C5 100%);
  border: 1.5px solid var(--border-light);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.captcha-challenge {
  font-family: 'Courier New', monospace;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--deep-burgundy);
  letter-spacing: 0.25em;
  background: var(--white);
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  user-select: none;
  text-decoration: line-through wavy rgba(181,82,122,0.3);
}
.captcha-box input {
  flex: 1;
  max-width: 120px;
  padding: 10px 14px;
  border: 1.5px solid var(--border-light);
  border-radius: 8px;
  font-size: 1rem;
  text-align: center;
  font-family: var(--font-body);
  outline: none;
  transition: var(--trans);
}
.captcha-box input:focus { border-color: var(--gold); }
.captcha-refresh {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.3rem;
  color: var(--gold-dark);
  transition: var(--trans);
  padding: 4px;
}
.captcha-refresh:hover { transform: rotate(180deg); color: var(--rose); }

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--rose) 0%, var(--deep-burgundy) 100%);
  color: var(--white);
  border: none;
  padding: 16px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--trans);
  font-family: var(--font-body);
  letter-spacing: 0.04em;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(181,82,122,0.45); }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us { background: var(--rose-pale); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.feature-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--border-light);
  transition: var(--trans);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-rose); }
.feature-icon-wrap {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(181,82,122,0.1));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 2rem;
  border: 2px solid var(--border-light);
  transition: var(--trans);
}
.feature-card:hover .feature-icon-wrap {
  background: linear-gradient(135deg, var(--gold), var(--rose));
  border-color: transparent;
}
.feature-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--deep-burgundy);
  margin-bottom: 8px;
}
.feature-desc { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================
   CONTACT PAGE SPECIFIC
   ============================================ */
.contact-page { padding-top: 130px; min-height: 100vh; }
.contact-hero {
  background: linear-gradient(135deg, var(--deep-burgundy) 0%, #5A1535 100%);
  padding: 60px 40px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A84C' fill-opacity='0.07'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.contact-hero h1 { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 8px; position: relative; z-index:1; }
.contact-hero p { opacity: 0.8; position: relative; z-index:1; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: start;
  padding: 70px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-info-card {
  background: var(--white);
  border-radius: 24px;
  padding: 36px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-gold);
}
.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--border-light);
  align-items: flex-start;
}
.info-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.info-icon {
  width: 46px; height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.info-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 4px; font-weight: 600; }
.info-value { font-size: 0.95rem; color: var(--charcoal); font-weight: 600; }
.info-value a { color: var(--deep-burgundy); text-decoration: none; }
.info-value a:hover { color: var(--rose); }

.map-embed { border-radius: 16px; overflow: hidden; border: 2px solid var(--border-light); margin-top: 24px; }
.map-embed iframe { display: block; width: 100%; height: 220px; border: none; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: linear-gradient(135deg, var(--deep-burgundy) 0%, #1A0510 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M40 40c0-11 9-20 20-20s20 9 20 20-9 20-20 20-20-9-20-20zm-40 0c0-11 9-20 20-20s20 9 20 20-9 20-20 20S0 51 0 40z'/%3E%3C/g%3E%3C/svg%3E");
}
.footer-top {
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 70px 0 50px;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand .logo-text .name { color: var(--gold-light); }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.88rem; line-height: 1.8; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,168,76,0.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  text-decoration: none;
  font-size: 1rem;
  transition: var(--trans);
}
.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}
.footer-col h4 {
  font-family: var(--font-heading);
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links li a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--trans);
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-links li a::before { content: '›'; color: var(--gold); }
.footer-links li a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-hours { display: flex; flex-direction: column; gap: 8px; }
.hour-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hour-row .day { color: var(--gold-light); font-weight: 600; }

.footer-bottom {
  text-align: center;
  padding: 22px 40px;
  background: rgba(0,0,0,0.2);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  position: relative;
  z-index: 1;
}
.footer-bottom a { color: var(--gold-light); text-decoration: none; }

/* ============================================
   PAGE NAVIGATION & SCROLL ANIMATIONS
   ============================================ */
.page { display: none; }
.page.active { display: block; }

.fade-in {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 90px; right: 28px;
  width: 58px; height: 58px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 6px 25px rgba(37,211,102,0.4);
  transition: var(--trans);
  animation: bounce 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 10px 35px rgba(37,211,102,0.6); animation: none; }
@keyframes bounce { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-6px);} }

/* ============================================
   PRIVACY POLICY PAGE
   ============================================ */
.privacy-page { padding-top: 130px; min-height: 100vh; }
.privacy-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 40px;
}
.privacy-content h1 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--deep-burgundy);
  margin-bottom: 8px;
}
.privacy-content .date { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 36px; }
.privacy-content h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--deep-burgundy);
  margin: 32px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border-light);
}
.privacy-content p, .privacy-content li { font-size: 0.93rem; color: var(--text-muted); line-height: 1.9; margin-bottom: 12px; }
.privacy-content ul { padding-left: 20px; }
.privacy-content a { color: var(--rose); }

/* ============================================
   SUCCESS MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(74,14,44,0.6);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: var(--trans);
}
.modal-overlay.show { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--white);
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
  max-width: 460px;
  width: 90%;
  transform: scale(0.85);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  border: 2px solid var(--border-light);
}
.modal-overlay.show .modal-box { transform: scale(1); }
.modal-icon { font-size: 3.5rem; margin-bottom: 16px; display: block; }
.modal-box h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--deep-burgundy);
  margin-bottom: 10px;
}
.modal-box p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.7; margin-bottom: 24px; }
.modal-close {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  border: none;
  padding: 12px 36px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--trans);
}
.modal-close:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,0.4); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .booking-wrap { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-card:first-child { grid-row: span 1; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 12px 20px; }
  .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(253,248,242,0.98); flex-direction: column; align-items: center; justify-content: center; gap: 20px; z-index: 2000; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.3rem; }
  .hamburger { display: flex; z-index: 2001; }
  .hero-stats { display: none; }
  .hero-content { padding: 40px 20px; }
  .container { padding: 0 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .rating-summary { flex-direction: column; }
  .header-top { font-size: 0.75rem; gap: 15px; }
  .btn-book-nav { display: none; }
  .packages-grid { grid-template-columns: 1fr; }
  .booking-form { padding: 26px 22px; }
  .contact-grid { padding: 40px 20px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
}

/* ============================================
   SERVICES TABS
   ============================================ */
.services-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.tab-btn {
  padding: 9px 22px;
  border-radius: 50px;
  border: 1.5px solid var(--border-light);
  background: var(--white);
  color: var(--text-muted);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--trans);
}
.tab-btn:hover, .tab-btn.active {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(201,168,76,0.35);
}

/* Opening Hours Banner */
.hours-banner {
  background: linear-gradient(90deg, var(--deep-burgundy), var(--rose), var(--deep-burgundy));
  color: var(--white);
  text-align: center;
  padding: 14px;
  font-size: 0.88rem;
}
.hours-banner strong { color: var(--gold-light); margin: 0 6px; }
