:root {
  --cream: #FDF5EC;
  --cream-dark: #F0E0CC;
  --cream-light: #FFF9F2;
  --brown: #6B4226;
  --brown-light: #8B5E3C;
  --brown-dark: #4A2C17;
  --brown-muted: #A0714F;
  --black: #1A1A1A;
  --black-deep: #0D0D0D;
  --white: #FFFFFF;
  --off-white: #FAF7F2;
  --gold: #C9A96E;
  --gold-light: #D4B97A;
  --shadow: rgba(74, 44, 23, 0.1);
  --shadow-strong: rgba(74, 44, 23, 0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream-light);
  color: var(--black);
  overflow-x: hidden;
  line-height: 1.6;
}

::selection {
  background: var(--brown);
  color: var(--cream);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--brown-muted); border-radius: 3px; }

.font-display { font-family: 'Cormorant Garamond', serif; }
.font-body { font-family: 'Outfit', sans-serif; }

/* ── Navigation ── */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 20px 60px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(253, 245, 236, 0.95);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  padding: 14px 60px;
  box-shadow: 0 2px 30px var(--shadow);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 45px; font-weight: 600;
  color: var(--brown-muted);
  letter-spacing: 2px;
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--gold);
  font-size: 18px; font-weight: 400;
  letter-spacing: 2px; text-transform: uppercase;
  position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--brown);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--brown); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 10px 28px;
  background: var(--brown-dark);
  color: var(--cream) !important;
  border: 1px solid var(--brown-dark);
  letter-spacing: 2px !important;
  text-transform: uppercase;
  font-size: 12px !important;
  cursor: pointer;
  transition: all 0.3s !important;
  text-decoration: none;
}
.nav-cta:hover {
  background: transparent !important;
  color: var(--brown-dark) !important;
}
.nav-cta::after { display: none !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  width: 24px; height: 1.5px;
  background: var(--brown-dark);
  transition: all 0.3s;
}

/* ── Hero ── */
.hero {
  height: 100vh; position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--black-deep);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('pic/hai.png') center/cover;
  filter: brightness(0.90) contrast(1.1);
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(74, 44, 23, 0.4) 0%,
    rgba(26, 26, 26, 0.2) 50%,
    rgba(13, 13, 13, 0.6) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 60px; max-width: 750px;
}
.hero-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 12px; font-weight: 400;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300; line-height: 1.05;
  color: var(--cream);
  margin-bottom: 24px;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 0.8s 0.5s forwards;
}
.hero-title em {
  font-style: italic; font-weight: 400;
  color: var(--gold);
}
.hero-desc {
  font-size: 16px; font-weight: 300;
  color: rgba(253, 245, 236, 0.7);
  margin-bottom: 40px; max-width: 480px;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 0.8s 0.7s forwards;
}
.hero-buttons {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 0.8s 0.9s forwards;
}
.btn-primary {
  padding: 16px 40px;
  background: var(--brown);
  color: var(--cream); border: 1px solid var(--brown);
  font-family: 'Outfit', sans-serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s;
  text-decoration: none; display: inline-block;
}
.btn-primary:hover {
  background: var(--brown-dark);
  border-color: var(--brown-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(74, 44, 23, 0.3);
}
.btn-outline {
  padding: 16px 40px;
  background: transparent;
  color: var(--cream); border: 1px solid rgba(253, 245, 236, 0.3);
  font-family: 'Outfit', sans-serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s;
  text-decoration: none; display: inline-block;
}
.btn-outline:hover {
  border-color: var(--cream);
  background: rgba(253, 245, 236, 0.08);
  transform: translateY(-2px);
}
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  color: rgba(253, 245, 236, 0.4);
  font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase;
  animation: fadeUp 0.8s 1.2s forwards;
  opacity: 0;
}
.hero-scroll i { animation: bounce 2s infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Section base ── */
section { padding: 100px 60px; }
.section-tag {
  font-size: 11px; font-weight: 400;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--brown-muted);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400; line-height: 1.15;
  color: var(--black);
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic; color: var(--brown);
}

/* ── About ── */
.about {
  background: var(--cream-light);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-images { position: relative; height: 560px; }
.about-img-main {
  position: absolute; top: 0; left: 0;
  width: 70%; height: 75%;
  object-fit: cover;
  box-shadow: 0 20px 60px var(--shadow-strong);
}
.about-img-accent {
  position: absolute; bottom: 0; right: 0;
  width: 55%; height: 50%;
  object-fit: cover;
  box-shadow: 0 20px 60px var(--shadow-strong);
  border: 6px solid var(--cream-light);
}

.about-badge .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 600; line-height: 1;
}
.about-badge .label {
  font-size: 9px; letter-spacing: 2px;
  text-transform: uppercase; margin-top: 2px;
}
.about-text p {
  color: rgba(134, 74, 6, 0.746); font-weight: 300;
  font-size: 15px; margin-bottom: 20px;
  line-height: 1.8;
}
.about-stats {
  display: flex; gap: 40px; margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--cream-dark);
}
.about-stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 600;
  color: var(--brown);
}
.about-stat .label {
  font-size: 12px; color: #888;
  letter-spacing: 1px; text-transform: uppercase;
}

/* ── Services ── */
.services {
  background: var(--black-deep);
  color: var(--cream);
  position: relative;
}
.services .section-tag { color: var(--brown-muted); }
.services .section-title { color: var(--cream); }
.services .section-title em { color: var(--gold); }
.services-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 60px;
}
.services-header p {
  color: rgba(253, 245, 236, 0.5);
  font-weight: 300; max-width: 400px;
  font-size: 14px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  background: rgba(255,255,255,0.03);
  padding: 50px 40px;
  transition: all 0.4s ease;
  position: relative; overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.service-card:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-4px);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  font-size: 28px; color: var(--gold);
  margin-bottom: 28px;
}
.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 500;
  margin-bottom: 14px; color: var(--cream);
}
.service-desc {
  font-size: 13px; font-weight: 300;
  color: rgba(253, 245, 236, 0.45);
  line-height: 1.7; margin-bottom: 24px;
}
.service-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; color: var(--gold);
  font-weight: 500;
}
.service-price span {
  font-family: 'Outfit', sans-serif;
  font-size: 11px; color: rgba(253,245,236,0.3);
  font-weight: 300;
}

/* ── Gallery ── */
.gallery {
  background: var(--cream);
  position: relative;
}
.gallery-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 50px;
  flex-wrap: wrap; gap: 20px;
}
.gallery-header p {
  color: #888; font-weight: 300;
  max-width: 380px; font-size: 14px;
}
.gallery-filters {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 20px;
  background: transparent;
  border: 1px solid var(--cream-dark);
  color: #888;
  font-family: 'Outfit', sans-serif;
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer; transition: all 0.3s;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--brown);
  border-color: var(--brown);
  color: var(--cream);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 12px;
}
.gallery-item {
  position: relative; overflow: hidden;
  cursor: pointer;
  border-radius: 2px;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img,
.gallery-item video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.06);
}
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 26, 26, 0.7) 0%,
    transparent 50%
  );
  opacity: 0; transition: opacity 0.4s;
  display: flex; align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; color: var(--cream);
  font-weight: 500;
}
.gallery-item-info p {
  font-size: 11px; color: rgba(253,245,236,0.6);
  letter-spacing: 1px; text-transform: uppercase;
}
.gallery-item-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--brown);
  color: var(--cream);
  font-size: 9px; letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item-badge { opacity: 1; }

/* Video specific */
.video-indicator {
  position: absolute; top: 12px; left: 12px;
  display: flex; align-items: center; gap: 6px;
  background: rgba(0,0,0,0.5);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  padding: 5px 10px; border-radius: 2px;
  z-index: 3;
}
.video-indicator .dot {
  width: 6px; height: 6px;
  background: #ff4444;
  border-radius: 50%;
  animation: vidPulse 1.5s infinite;
}
@keyframes vidPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.video-indicator span {
  font-size: 9px; color: var(--cream);
  letter-spacing: 2px; text-transform: uppercase;
}

/* ── Testimonials ── */
.testimonials {
  background: var(--cream-light);
  position: relative;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px; margin-top: 50px;
}
.testimonial-card {
  background: var(--white);
  padding: 44px 36px;
  box-shadow: 0 4px 30px var(--shadow);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 50px var(--shadow-strong);
}
.testimonial-quote {
  font-size: 48px; color: var(--cream-dark);
  font-family: 'Cormorant Garamond', serif;
  line-height: 1; margin-bottom: 16px;
}
.testimonial-text {
  font-size: 14px; font-weight: 300;
  color: #666; line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--cream-dark);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%; object-fit: cover;
  border: 2px solid var(--cream-dark);
}
.testimonial-name {
  font-weight: 500; font-size: 14px;
  color: var(--black);
}
.testimonial-role {
  font-size: 11px; color: #999;
  letter-spacing: 1px;
}
.testimonial-stars {
  color: var(--gold); font-size: 12px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

/* ── Booking CTA ── */
/* Container styling */
.booking-container {
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #a75a5a;
    border-radius: 10px;
    font-family: Arial, sans-serif;
    background-color: #3d940e;
}

.input-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input {
    width: 100%;
    padding: 8px;
    border: 1px solid #aa0000;
    border-radius: 5px;
    box-sizing: border-box; /* Important for width */
}

.book-btn {
    width: 100%;
    padding: 10px;
    background-color: #25D366; /* WhatsApp Green */
    color: rgb(150, 40, 40);
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.book-btn:hover {
    background-color: #128C7E;
}
.section-title {
    text-align: center;      /* This moves the text to the middle */
    width: 100%;             /* Ensures it takes the full width to find the center */
    margin-top: 20px;        /* Adds some space above the title */
    margin-bottom: 20px;     /* Adds some space below the title */
    color: #2c3e50;          /* A nice professional dark blue/grey color */
    font-family: Arial, sans-serif;
}
.booking-container {
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
    background: #f9f9f9;
}

h2 { text-align: center; color: #333; }

form { display: flex; flex-direction: column; }

input, select, button {
    margin-bottom: 15px;
    padding: 12px;
    border: 1px solid #c9ab63;
    border-radius: 5px;
    font-size: 16px;
    color: rgb(147, 17, 17);
}

button {
    background-color: #25D366; /* WhatsApp Green */
    border: 3px solid #25D366;
    color: rgb(65, 181, 47);
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

button:hover { background-color: #128C7E; 
}

/* Toast Notification Styles */

#showToast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #333;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: none; /* Hidden by default */
  z-index: 1000;
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
/* ── Contact Info Bar ── */
.contact-bar {
  background: var(--cream);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.contact-item {
  padding: 50px 40px;
  text-align: center;
  background: var(--cream);
  transition: background 0.3s;
}
.contact-item:hover { background: var(--cream-dark); }
.contact-item i {
  font-size: 22px; color: var(--brown);
  margin-bottom: 16px;
}
.contact-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 500;
  color: var(--black); margin-bottom: 8px;
}
.contact-item p {
  font-size: 13px; color: #888;
  font-weight: 300; line-height: 1.6;
}

/* ── Footer ── */
footer {
  background: var(--black-deep);
  color: var(--cream);
  padding: 60px;
}
.footer-inner {
  display: flex; justify-content: space-between;
  align-items: flex-start; flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .nav-logo { color: var(--cream); font-size: 24px; }
.footer-brand p {
  color: rgba(253,245,236,0.4);
  font-size: 13px; font-weight: 300;
  margin-top: 12px; max-width: 280px;
  line-height: 1.7;
}
.footer-col h5 {
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col a {
  display: block; color: rgba(253,245,236,0.4);
  text-decoration: none; font-size: 13px;
  font-weight: 300; margin-bottom: 10px;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--cream); }
.footer-social {
  display: flex; gap: 12px; margin-top: 20px;
}
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(253,245,236,0.5);
  font-size: 14px; margin-bottom: 0;
  transition: all 0.3s;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,169,110,0.08);
}
.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center; padding-top: 24px;
  font-size: 12px; color: rgba(253,245,236,0.2);
  font-weight: 300;
}
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 20px;
}

.services-list h5 {
  grid-column: 1 / -1; /* heading spans both columns */
  margin-bottom: 10px;
}

.services-list a {
  display: block;
  text-decoration: none;
  color: rgba(253,245,236,0.2);
}

/* ── Lightbox ── */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(13,13,13,0.95);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  display: none; align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: zoom-out;
}
.lightbox.active { display: flex; }
.lightbox img,
.lightbox video {
  max-width: 90%; max-height: 85vh;
  object-fit: contain; border-radius: 2px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute; top: 24px; right: 28px;
  background: none; border: none;
  color: var(--cream); font-size: 24px;
  cursor: pointer; opacity: 0.6;
  transition: opacity 0.3s;
}
.lightbox-close:hover { opacity: 1; }

/* ── Toast ── */
.toast {
  position: fixed; bottom: 30px; right: 30px;
  z-index: 3000;
  background: var(--brown-dark);
  color: var(--cream);
  padding: 16px 28px;
  font-size: 14px; font-weight: 300;
  box-shadow: 0 10px 40px rgba(74,44,23,0.4);
  transform: translateY(100px); opacity: 0;
  transition: all 0.4s ease;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ── Reveal on scroll ── */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}

/* ── Mobile menu ── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: var(--cream-light);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 28px;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; color: var(--brown-dark);
  text-decoration: none; font-weight: 400;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute; top: 24px; right: 28px;
  background: none; border: none;
  font-size: 28px; color: var(--brown-dark);
  cursor: pointer;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  section { padding: 70px 30px; }
  nav { padding: 16px 30px; }
  nav.scrolled { padding: 12px 30px; }
  .nav-links, .nav-cta-wrap { display: none; }
  .hamburger { display: flex; }
  .about { grid-template-columns: 1fr; gap: 50px; }
  .about-images { height: 400px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  .gallery-item.wide { grid-column: span 1; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .contact-bar { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
}
@media (max-width: 600px) {
  section { padding: 50px 20px; }
  nav { padding: 14px 20px; }
  .hero-content { padding: 0 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .gallery-item.tall { grid-row: span 1; }
  .about-images { height: 320px; }
  .about-stats { gap: 24px; }
  .booking-form { flex-direction: column; }
  .booking-form input { min-width: unset; }
  footer { padding: 40px 20px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
