/* ============================================
   MEHVISH GUEST HOUSE — Design System & Styles
   ============================================ */

/* --- CSS Variables (Design Tokens) --- */
:root {
  /* Colors */
  --bg-cream: #FBF7F0;
  --bg-warm: #F5EDE0;
  --bg-dark: #2C1810;
  --bg-dark-soft: #3A2418;
  --text-primary: #2C1810;
  --text-secondary: #6B5344;
  --text-light: #9A8577;
  --text-white: #FBF7F0;
  --accent-gold: #C8872B;
  --accent-gold-hover: #B07620;
  --accent-gold-light: #E8C87A;
  --accent-amber: #D4943A;
  --border-light: rgba(200, 135, 43, 0.15);
  --border-medium: rgba(44, 24, 16, 0.1);
  --shadow-soft: 0 4px 24px rgba(44, 24, 16, 0.06);
  --shadow-medium: 0 8px 40px rgba(44, 24, 16, 0.1);
  --shadow-heavy: 0 16px 64px rgba(44, 24, 16, 0.14);
  --shadow-gold: 0 4px 20px rgba(200, 135, 43, 0.25);

  /* Typography */
  --font-body: 'Poppins', sans-serif;
  --font-display: 'Poppins', sans-serif;

  /* Spacing (8px system) */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 128px;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 200ms;
  --duration-normal: 350ms;
  --duration-slow: 600ms;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--duration-fast) var(--ease-smooth);
}

/* --- Scroll-based Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}
.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}
.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 95px;
  transition: all var(--duration-normal) var(--ease-smooth);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(251, 247, 240, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(44, 24, 16, 0.08);
}
.navbar.scrolled .nav-logo-text {
  color: var(--text-primary);
}
.navbar.scrolled .nav-link {
  color: var(--text-primary);
}
.navbar > .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.nav-logo {
  position: absolute;
  left: 24px;
  top: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
}
.nav-book-btn {
  position: absolute;
  right: 24px;
}
.nav-book-btn-mobile {
  display: none !important;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  transition: color var(--duration-normal) var(--ease-smooth);
}
.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.7;
  display: block;
  margin-top: -2px;
}
.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.9);
  position: relative;
  padding: 4px 0;
  transition: color var(--duration-fast) var(--ease-smooth);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width var(--duration-normal) var(--ease-smooth);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.navbar.scrolled .nav-link:hover {
  color: var(--accent-gold);
}

/* Mobile menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 4px;
}
.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all var(--duration-normal) var(--ease-smooth);
  border-radius: 2px;
}
.navbar.scrolled .mobile-menu-btn span {
  background: var(--text-primary);
}
.mobile-menu-btn.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-btn.open span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .navbar > .container {
    justify-content: space-between;
  }
  .nav-logo {
    position: relative;
    left: auto;
  }
  .nav-book-btn {
    display: none !important;
  }
  .nav-book-btn-mobile {
    display: block !important;
  }
  .nav-logo-img {
    height: 70px;
  }
  .navbar.scrolled .nav-logo-img {
    height: 55px;
  }
  .mobile-menu-btn { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-cream);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 24px;
    transition: right var(--duration-normal) var(--ease-smooth);
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
  }
  .nav-links.open {
    right: 0;
  }
  .nav-links .nav-link {
    color: var(--text-primary) !important;
    font-size: 1.1rem;
  }
  .mobile-overlay {
    display: none;
  }
  .mobile-overlay.show {
    display: none;
  }
}

/* --- Our Space --- */
.our-space-heading {
  margin-bottom: 36px;
}
.our-space-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 768px) {
  .our-space-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .our-space-grid .reveal-right {
    order: -1;
  }
  .our-space-grid .btn-primary {
    margin-inline: auto;
  }
}

/* --- Hero Section --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
@media (min-width: 769px) {
  .hero-bg {
    background-image: url('../images/buildingLandscape.png') !important;
    background-position: center center;
  }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(44, 24, 16, 0.35) 0%,
    rgba(44, 24, 16, 0.5) 50%,
    rgba(44, 24, 16, 0.7) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 0 24px;
}
.hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-gold-light);
  border: 1px solid rgba(232, 200, 122, 0.4);
  padding: 8px 24px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s var(--ease-smooth) 0.3s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.8s var(--ease-smooth) 0.5s forwards;
}
.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 300;
  opacity: 0.85;
  max-width: 550px;
  margin: 0 auto 36px;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.8s var(--ease-smooth) 0.7s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.8s var(--ease-smooth) 0.9s forwards;
}

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

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: heroFadeUp 0.8s var(--ease-smooth) 1.2s forwards;
}
.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-gold);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-smooth);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(200, 135, 43, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 13px 36px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-smooth);
}
.btn-secondary:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-dark);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-smooth);
}
.btn-dark:hover {
  background: var(--text-secondary);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--accent-gold);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 13px 36px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--accent-gold);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-smooth);
}
.btn-outline:hover {
  background: var(--accent-gold);
  color: #fff;
  transform: translateY(-2px);
}

/* WhatsApp Button */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-smooth);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.4);
}
.btn-whatsapp svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

/* --- Section Styles --- */
.section {
  padding: var(--space-4xl) 0;
}
.section-sm {
  padding: var(--space-3xl) 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.8;
}

/* --- Highlights Section --- */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.highlight-card {
  text-align: center;
  padding: 40px 24px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-medium);
  transition: all var(--duration-normal) var(--ease-smooth);
}
.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
  border-color: transparent;
}
.highlight-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-amber));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
}
.highlight-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.highlight-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- Gallery Carousel --- */
.gallery-carousel {
  position: relative;
  margin-top: 40px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.gallery-carousel-track {
  display: flex;
  transition: transform 0.5s var(--ease-smooth);
}
.gallery-carousel-slide {
  min-width: 100%;
  aspect-ratio: 3/4;
  position: relative;
  cursor: pointer;
}
.gallery-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  transition: all var(--duration-fast) var(--ease-smooth);
  z-index: 2;
}
.gallery-carousel-btn:hover {
  background: #fff;
  box-shadow: var(--shadow-medium);
}
.gallery-carousel-prev {
  left: 16px;
}
.gallery-carousel-next {
  right: 16px;
}
.gallery-carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.gallery-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.8);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all var(--duration-fast) var(--ease-smooth);
}
.gallery-carousel-dot.active {
  background: #fff;
}

/* --- Amenities --- */
.amenities-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-medium);
  transition: all var(--duration-normal) var(--ease-smooth);
}
.amenity-item:hover {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-soft);
}
.amenity-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--bg-warm);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.1rem;
}
.amenity-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
}

/* --- Pricing Preview --- */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.pricing-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--border-medium);
  transition: all var(--duration-normal) var(--ease-smooth);
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-amber));
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-smooth);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}
.pricing-card:hover::before {
  opacity: 1;
}
.pricing-card.featured {
  border-color: var(--accent-gold);
}
.pricing-card.featured::before {
  opacity: 1;
}
.pricing-label {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-primary);
}
.pricing-amount span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-secondary);
}
.pricing-note {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 8px;
  margin-bottom: 24px;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-medium);
}
.pricing-features li:last-child {
  border-bottom: none;
}
.pricing-features li svg {
  width: 16px;
  height: 16px;
  color: var(--accent-gold);
  flex-shrink: 0;
}

/* --- Booking Form --- */
.booking-section {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.booking-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200, 135, 43, 0.08), transparent 60%);
  border-radius: 50%;
}
.booking-form-container {
  max-width: 700px;
  margin: 0 auto;
}
.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full-width {
  grid-column: 1 / -1;
}
.form-group label {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(251, 247, 240, 0.6);
  font-weight: 500;
}
.form-group input,
.form-group select {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: all var(--duration-fast) var(--ease-smooth);
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--accent-gold);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 3px rgba(200, 135, 43, 0.15);
}
.form-group input::placeholder {
  color: rgba(251, 247, 240, 0.35);
}
.form-group select option {
  background: var(--bg-dark);
  color: var(--text-white);
}
.form-submit-row {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

@media (max-width: 640px) {
  .booking-form {
    grid-template-columns: 1fr;
  }
}

/* --- Location Section --- */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  margin-top: 40px;
  aspect-ratio: 16/7;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .map-container {
    aspect-ratio: 4/3;
  }
}

/* --- Footer --- */
.footer {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: var(--space-3xl) 0 var(--space-lg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand {
  max-width: 300px;
}
.footer-logo-img {
  height: 140px;
  width: auto;
  object-fit: contain;
  margin-bottom: 12px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(251,247,240,0.6);
  line-height: 1.8;
}
.footer h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--accent-gold-light);
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(251,247,240,0.6);
  transition: color var(--duration-fast) var(--ease-smooth);
}
.footer-links a:hover {
  color: var(--accent-gold-light);
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.85rem;
  color: rgba(251,247,240,0.6);
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  color: var(--accent-gold);
  flex-shrink: 0;
}
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 24px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(251,247,240,0.4);
}
.footer-bottom a {
  color: var(--accent-gold);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    text-align: center;
  }
  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
    margin-inline: auto;
  }
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }
  .footer-logo-img {
    margin-inline: auto;
  }
  .footer-contact-item {
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* --- Sticky WhatsApp Button (Mobile) --- */
.sticky-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-smooth);
  border: none;
  animation: stickyPulse 3s ease-in-out infinite;
}
.sticky-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}
.sticky-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

@keyframes stickyPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

@media (min-width: 769px) {
  .sticky-whatsapp {
    bottom: 32px;
    right: 32px;
  }
}

/* --- Lightbox --- */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-smooth);
}
.lightbox-overlay.active {
  display: flex;
  opacity: 1;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration-fast) var(--ease-smooth);
}
.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration-fast) var(--ease-smooth);
}
.lightbox-nav:hover {
  background: rgba(255,255,255,0.2);
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* --- Full Gallery Page --- */
.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.gallery-full-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 3/4;
  cursor: pointer;
}
.gallery-full-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}
.gallery-full-item:hover img {
  transform: scale(1.06);
}

@media (max-width: 640px) {
  .gallery-full-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

/* --- Page Header (Subpages) --- */
.page-header {
  background: var(--bg-dark);
  padding: 140px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 135, 43, 0.06), transparent 60%);
  border-radius: 50%;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(200, 135, 43, 0.04), transparent 60%);
  border-radius: 50%;
}
.page-header .section-label {
  color: var(--accent-gold-light);
}
.page-header .section-title {
  color: var(--text-white);
}
.page-header .section-subtitle {
  color: rgba(251,247,240,0.6);
  margin: 0 auto;
}

/* --- Pricing Page Specific --- */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.rule-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-medium);
}
.rule-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.rule-card p,
.rule-card ul {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.8;
}
.rule-card ul {
  list-style: none;
  padding: 0;
}
.rule-card ul li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}
.rule-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: 700;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 40px;
}
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-medium);
  margin-bottom: 16px;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-amber));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.contact-info-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-info-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* --- FAQ --- */
.faq-list {
  margin-top: 40px;
}
.faq-item {
  border-bottom: 1px solid var(--border-medium);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
}
.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--accent-gold);
  transition: transform var(--duration-normal) var(--ease-smooth);
  flex-shrink: 0;
}
.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-normal) var(--ease-smooth);
}
.faq-answer-inner {
  padding-bottom: 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* --- Divider --- */
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-amber));
  border-radius: 2px;
  margin-top: 16px;
}

/* --- Texture / Decoration --- */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* --- Inner Page Utilities --- */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }

/* --- Loading / Skeleton --- */
.img-placeholder {
  background: linear-gradient(110deg, var(--bg-warm) 8%, #f0e8da 18%, var(--bg-warm) 33%);
  background-size: 200% 100%;
  animation: shimmer 1.5s linear infinite;
}
@keyframes shimmer {
  to { background-position: -200% 0; }
}
