/* ============================================
   Mertosh Cleaning & Fumigation — Main Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --green-dark:   #004d2e;
  --green-mid:    #006b3f;
  --green-light:  #1a8a52;
  --gold:         #f0b90b;
  --gold-light:   #f7d060;
  --white:        #ffffff;
  --off-white:    #f8faf9;
  --gray-light:   #e8eeeb;
  --gray:         #9ab0a3;
  --text-dark:    #0d1f17;
  --text-mid:     #2e4d3a;
  --text-light:   #6b8a78;
  --shadow-sm:    0 2px 12px rgba(0,77,46,0.1);
  --shadow-md:    0 8px 32px rgba(0,77,46,0.15);
  --shadow-lg:    0 20px 60px rgba(0,77,46,0.2);
  --radius:       12px;
  --radius-lg:    20px;
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
/* ===== PAGE LOADER ===== */
.page-loader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* The three spinning orbs */
.loader-orb {
  position: relative;
  width: 80px;
  height: 80px;
}

.loader-orb span {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  mix-blend-mode: multiply;
  opacity: 0.85;
}

.loader-orb span:nth-child(1) {
  background: #004d2e;
  top: 0; left: 50%;
  transform: translateX(-50%);
  animation: orbFloat 1.6s ease-in-out infinite;
}

.loader-orb span:nth-child(2) {
  background: #f0b90b;
  bottom: 0; left: 0;
  animation: orbFloat 1.6s ease-in-out infinite 0.53s;
}

.loader-orb span:nth-child(3) {
  background: #006b3f;
  bottom: 0; right: 0;
  animation: orbFloat 1.6s ease-in-out infinite 1.06s;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-10px) scale(1.08); }
}
/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-light); }
::-webkit-scrollbar-thumb { background: var(--green-mid); border-radius: 3px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
p  { color: var(--text-light); line-height: 1.75; }

a { text-decoration: none; color: inherit; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 90px 0; }
.section-sm { padding: 60px 0; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header p { max-width: 600px; margin: 16px auto 0; font-size: 1.05rem; }

.section-tag {
  display: inline-block;
  background: rgba(240,185,11,0.15);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid rgba(240,185,11,0.4);
  margin-bottom: 16px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--text-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240,185,11,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-green {
  background: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
}
.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: all 0.4s ease;
  padding: 20px 0;
}

.navbar.scrolled {
  background: var(--green-dark);
  padding: 12px 0;
  box-shadow: var(--shadow-md);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo img {
  height: 52px;
  width: auto;
  border-radius: 8px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-text strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}

.nav-logo-text span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-menu a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--gold);
  background: rgba(255,255,255,0.08);
}

.nav-cta { margin-left: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-cta a {
  background: var(--gold) !important;
  color: var(--text-dark) !important;
  border-color: var(--gold) !important;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--green-dark) 0%, #002d1b 50%, #001a10 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.12;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,185,11,0.15);
  border: 1px solid rgba(240,185,11,0.35);
  color: var(--gold);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease both;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero h1 span { color: var(--gold); }

.hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 36px;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-stat span {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
}

.hero-stat p {
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  margin: 0;
  letter-spacing: 0.05em;
}

.hero-visual {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  height: 80%;
  z-index: 1;
}

.hero-visual-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,107,63,0.4), rgba(0,77,46,0.2));
  border-radius: 40px 0 0 40px;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  color: rgba(240,185,11,0.15);
}

/* ===== SERVICES ===== */
.services { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green-mid), var(--gold));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--text-dark);
  transform: scale(1.1);
}

.service-card h3 { margin-bottom: 12px; font-size: 1.2rem; color: var(--text-dark); }
.service-card p  { font-size: 0.9rem; margin-bottom: 20px; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-mid);
  font-weight: 600;
  font-size: 0.875rem;
  transition: var(--transition);
}

.service-link:hover { color: var(--gold); gap: 10px; }

/* ===== WHY CHOOSE US ===== */
.why-us { background: var(--off-white); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-visual {
  position: relative;
}

.why-visual-main {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--green-dark), var(--green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: rgba(255,255,255,0.2);
  overflow: hidden;
}

.why-visual-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.why-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--text-dark);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.why-badge strong {
  display: block;
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.why-badge span { font-size: 0.75rem; font-weight: 600; }

.why-items { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-item-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(0,107,63,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-mid);
  font-size: 1.1rem;
}

.why-item h4 { font-size: 1rem; margin-bottom: 4px; color: var(--text-dark); font-family: 'DM Sans', sans-serif; font-weight: 600; }
.why-item p  { font-size: 0.875rem; margin: 0; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--green-dark); overflow: hidden; }
.testimonials .section-header h2 { color: var(--white); }
.testimonials .section-header p  { color: rgba(255,255,255,0.6); }
.testimonials .section-tag       { background: rgba(240,185,11,0.2); color: var(--gold); border-color: rgba(240,185,11,0.3); }

.testimonials-slider { position: relative; }

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.testimonial-card {
  min-width: calc(33.333% - 16px);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  flex-shrink: 0;
}

.testimonial-stars { color: var(--gold); margin-bottom: 16px; font-size: 0.9rem; }
.testimonial-card p { color: rgba(255,255,255,0.75); font-style: italic; font-size: 0.95rem; margin-bottom: 24px; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text-dark);
  font-size: 1.1rem;
}

.testimonial-author strong { color: var(--white); font-size: 0.95rem; display: block; }
.testimonial-author span   { color: rgba(255,255,255,0.5); font-size: 0.8rem; }

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 0.9rem;
}

.slider-btn:hover {
  background: var(--gold);
  color: var(--text-dark);
  border-color: var(--gold);
}

.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.slider-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  padding: 80px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-inner h2 { color: var(--text-dark); margin-bottom: 12px; }
.cta-inner p  { color: rgba(13,31,23,0.7); max-width: 500px; }

.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }


/* ===== FORM STYLES ===== */
.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group label span { color: #e53e3e; }

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s ease;
  outline: none;
  appearance: none;
}

.form-control:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(0,107,63,0.1);
}

.form-control::placeholder { color: var(--gray); }

textarea.form-control { resize: vertical; min-height: 120px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark), #002d1b);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(240,185,11,0.08) 0%, transparent 60%);
}

.page-hero h1 { color: var(--white); }
.page-hero p  { color: rgba(255,255,255,0.65); max-width: 560px; font-size: 1.05rem; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
}

.breadcrumb a     { color: var(--gold); }
.breadcrumb span  { color: rgba(255,255,255,0.4); }
.breadcrumb .curr { color: rgba(255,255,255,0.7); }

/* ===== FOOTER ===== */
.footer {
  background: #061210;
  color: rgba(255,255,255,0.65);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img   { height: 52px; margin-bottom: 16px; border-radius: 8px; }
.footer-brand p     { font-size: 0.875rem; line-height: 1.7; max-width: 280px; margin-bottom: 20px; }

.social-links { display: flex; gap: 10px; }

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gold);
  color: var(--text-dark);
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 1rem;
}

.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact { display: flex; flex-direction: column; gap: 14px; }

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-contact-item i {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 3px;
}

.footer-contact-item span { font-size: 0.875rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p   { font-size: 0.8rem; }
.footer-bottom a   { color: var(--gold); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.whatsapp-btn {
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: pulse 2.5s ease infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  background: #20ba5c;
}

.whatsapp-tooltip {
  background: var(--text-dark);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ===== ALERT / TOAST ===== */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.alert-success { background: rgba(0,107,63,0.1); color: var(--green-mid); border: 1px solid rgba(0,107,63,0.2); }
.alert-error   { background: rgba(220,38,38,0.08); color: #dc2626; border: 1px solid rgba(220,38,38,0.15); }
.alert-info    { background: rgba(240,185,11,0.1); color: #b8860b; border: 1px solid rgba(240,185,11,0.2); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 4px 40px rgba(37,211,102,0.7); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== LOADING SPINNER ===== */
.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ===== MOBILE NAV ===== */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-menu {
    position: fixed;
    top: 0; left: -100%;
    width: 280px;
    height: 100vh;
    background: var(--green-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 40px;
    gap: 4px;
    transition: left 0.3s ease;
    box-shadow: 4px 0 24px rgba(0,0,0,0.3);
    z-index: 999;
  }

  .nav-menu.open { left: 0; }
  .nav-menu a { width: 100%; padding: 12px 16px; font-size: 1rem; }
  .nav-cta { width: 100%; margin: 12px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }

  .hero { padding-top: 100px; }
  .hero-visual { display: none; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }

  .form-row { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { text-align: center; justify-content: center; }

  .testimonial-card { min-width: calc(100% - 0px); }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { text-align: center; flex-direction: column; }
  .services-grid { grid-template-columns: 1fr; }
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 24px; }

.contact-info-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid var(--gray-light);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
}

.contact-info-card h4 { font-size: 0.9rem; font-family: 'DM Sans', sans-serif; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.contact-info-card p, .contact-info-card a { font-size: 0.9rem; margin: 0; color: var(--text-light); }
.contact-info-card a:hover { color: var(--green-mid); }

.form-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-card h3 { margin-bottom: 8px; font-size: 1.4rem; }
.form-card > p { margin-bottom: 28px; font-size: 0.9rem; }

/* ===== BOOKING PAGE ===== */
.booking-section { background: var(--off-white); }

.booking-form-container {
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--gray-light);
  box-shadow: var(--shadow-sm);
}

.booking-form-container h3 { margin-bottom: 8px; }
.booking-form-container > p { margin-bottom: 32px; }

/* ===== ABOUT PAGE ===== */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* ===== IMAGE SIDE ===== */
.about-visual {
  position: relative;
  width: 100%;
}

.about-img-main {
  width: 100%;
  height: 520px;
  overflow: hidden;
  border-radius: 20px;
  line-height: 0;
  background: #f5f5f5;
  box-shadow: var(--shadow-md);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  display: block;

  /* FIX IMAGE */
  object-fit: cover;
  object-position: center top;

  border-radius: 20px;
  transition: transform 0.5s ease;
}

/* HOVER EFFECT */
.about-img-main:hover img {
  transform: scale(1.03);
}

/* ===== CONTENT SIDE ===== */
.about-content {
  width: 100%;
}

.about-content h2 {
  margin-bottom: 18px;
}

.about-content p {
  font-size: 0.96rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* ===== VALUES ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(
    135deg,
    var(--green-mid),
    var(--green-light)
  );

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--white);
  font-size: 1.2rem;

  margin: 0 auto 16px;
}

.value-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 0;
}

/* ===== TABLET ===== */
@media (max-width: 992px) {

  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-img-main {
    height: 450px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .about-grid {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .about-visual,
  .about-content {
    width: 100%;
  }

  .about-img-main {
    width: 100%;
    height: auto;
    min-height: 240px;
    max-height: 340px;
    overflow: hidden;
    border-radius: 16px;
  }

  .about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 16px;
  }

  .about-content {
    margin: 0;
    padding: 0;
  }

  .about-content h2 {
    margin-bottom: 12px;
  }

  .about-content p {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 14px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 28px;
  }

  .value-card {
    padding: 22px 18px;
  }

  .section {
    padding: 60px 0;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 480px) {

  .about-img-main {
    min-height: 220px;
    max-height: 280px;
  }

  .about-content h2 {
    font-size: 1.9rem;
  }

  .about-content p {
    font-size: 0.9rem;
  }
}
  .values-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }

  .value-card {
    padding: 22px 18px;
  }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}

.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.value-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  margin: 0 auto 16px;
}

.value-card h4 { font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.value-card p  { font-size: 0.85rem; }

/* ===== SERVICES DETAIL PAGE ===== */

.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--gray-light);
}

.service-detail-card:last-child {
  border-bottom: none;
}

/* alternate layout */
.service-detail-card:nth-child(even) .service-detail-content {
  order: -1;
}

/* ===== IMAGE SECTION (same style as homepage) ===== */
.service-detail-visual {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-lg);
  background: #f5f5f5;
}

.service-detail-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

/* hover effect same as homepage */
.service-detail-card:hover .service-detail-visual img {
  transform: scale(1.07);
}

/* ===== CONTENT ===== */
.service-detail-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-category-tag {
  display: inline-block;
  background: var(--off-white);
  color: var(--green-mid);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
  border: 1px solid var(--gray-light);
}

.service-detail-content h2 {
  margin-bottom: 14px;
}

.service-detail-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-mid);
}

/* ===== BENEFITS ===== */
.service-benefits {
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.service-benefit i {
  color: var(--green-mid);
  font-size: 0.8rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .service-detail-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-detail-card:nth-child(even) .service-detail-content {
    order: 0;
  }

  .service-detail-visual {
    height: auto;
  }
}

@media (max-width: 560px) {
  .service-detail-card {
    padding: 35px 0;
  }

  .service-detail-content h2 {
    font-size: 1.5rem;
  }
}

/* ===== ADMIN ===== */
.admin-body {
  font-family: 'DM Sans', sans-serif;
  background: #f0f4f2;
  min-height: 100vh;
}

.admin-sidebar {
  position: fixed;
  left: 0; top: 0;
  width: 260px;
  height: 100vh;
  background: var(--green-dark);
  padding: 28px 0;
  overflow-y: auto;
  z-index: 100;
}

.admin-logo {
  padding: 0 24px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-logo img { height: 40px; border-radius: 6px; }
.admin-logo strong { color: var(--gold); font-size: 0.95rem; }

.admin-nav { list-style: none; padding: 0 12px; }

.admin-nav li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  border-radius: 8px;
  transition: var(--transition);
  text-decoration: none;
}

.admin-nav li a:hover,
.admin-nav li a.active {
  background: rgba(255,255,255,0.08);
  color: var(--gold);
}

.admin-main {
  margin-left: 260px;
  padding: 32px;
  min-height: 100vh;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.admin-header h1 { font-size: 1.5rem; color: var(--text-dark); font-family: 'DM Sans', sans-serif; font-weight: 700; }

.stat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}

.stat-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
}

.stat-card-icon.green  { background: linear-gradient(135deg, var(--green-mid), var(--green-light)); }
.stat-card-icon.gold   { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--text-dark); }
.stat-card-icon.blue   { background: linear-gradient(135deg, #3b82f6, #60a5fa); }
.stat-card-icon.red    { background: linear-gradient(135deg, #ef4444, #f87171); }

.stat-card-info strong { font-size: 1.8rem; font-family: 'Playfair Display', serif; color: var(--text-dark); display: block; }
.stat-card-info span   { font-size: 0.8rem; color: var(--text-light); }

.data-table-container {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.data-table-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--gray-light);
}

.data-table-header h3 { font-size: 1rem; font-family: 'DM Sans', sans-serif; font-weight: 600; }

.data-table { width: 100%; border-collapse: collapse; }
.data-table th { background: var(--off-white); padding: 12px 16px; text-align: left; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-light); }
.data-table td { padding: 14px 16px; font-size: 0.875rem; border-bottom: 1px solid var(--gray-light); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--off-white); }

.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-pending   { background: rgba(240,185,11,0.15); color: #b8860b; }
.badge-confirmed { background: rgba(0,107,63,0.12); color: var(--green-mid); }
.badge-completed { background: rgba(37,99,235,0.1); color: #2563eb; }
.badge-cancelled { background: rgba(220,38,38,0.1); color: #dc2626; }

.admin-login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green-dark), #001a10);
}

.admin-login-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
}

.admin-login-logo {
  text-align: center;
  margin-bottom: 28px;
}

.admin-login-logo img   { height: 60px; border-radius: 10px; margin-bottom: 12px; }
.admin-login-logo h2    { font-size: 1.3rem; color: var(--text-dark); margin-bottom: 4px; }
.admin-login-logo span  { font-size: 0.85rem; color: var(--text-light); }
/* ============================================
   BOOKING SUCCESS MODAL
   ============================================ */
.booking-success-modal {
  position: fixed;
  inset: 0;
  z-index: 99998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.booking-success-modal.show {
  opacity: 1;
  pointer-events: all;
}
.booking-success-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 20, 10, 0.72);
  backdrop-filter: blur(4px);
}
.booking-success-card {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 52px 40px 44px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  transform: scale(0.88) translateY(30px);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-lg);
}
.booking-success-modal.show .booking-success-card {
  transform: scale(1) translateY(0);
}
.success-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}
@keyframes successPop {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}
.success-icon-wrap i {
  font-size: 2rem;
  color: var(--white);
}
.success-confetti {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 20px;
}
.success-confetti span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: confettiBounce 0.6s ease both;
}
.success-confetti span:nth-child(1) { background: var(--gold);        animation-delay: 0.4s; }
.success-confetti span:nth-child(2) { background: var(--green-mid);   animation-delay: 0.5s; }
.success-confetti span:nth-child(3) { background: var(--gold-light);  animation-delay: 0.45s; }
.success-confetti span:nth-child(4) { background: var(--green-light); animation-delay: 0.55s; }
.success-confetti span:nth-child(5) { background: var(--gold);        animation-delay: 0.5s; }
@keyframes confettiBounce {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.booking-success-card h3 {
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.booking-success-card .success-sub {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.success-ref {
  display: inline-block;
  background: rgba(0,107,63,0.08);
  border: 1px solid rgba(0,107,63,0.2);
  color: var(--green-mid);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 50px;
  margin: 12px 0 28px;
}
.booking-success-card .btn-close-success {
  background: var(--gold);
  color: var(--text-dark);
  border: none;
  padding: 14px 36px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}
.booking-success-card .btn-close-success:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(240,185,11,0.35);
}

/* ============================================
   GALLERY PAGE — Override broken gallery.css
   ============================================ */
.gallery-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, #002d1b 100%);
  padding: 120px 0 60px;
  text-align: center;
  color: var(--white);
}
.gallery-hero h1 { color: var(--white); margin-bottom: 16px; }
.gallery-hero p  { color: rgba(255,255,255,0.72); max-width: 600px; margin: 0 auto; }
.gallery-tag {
  display: inline-block;
  background: rgba(240,185,11,0.18);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid rgba(240,185,11,0.4);
  margin-bottom: 18px;
}

.gallery-section {
  padding: 80px 0;
  background: var(--off-white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-item:hover img {
  transform: scale(1.07);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,30,15,0.82) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h3 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.gallery-cta {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}
.gallery-cta h2 { color: var(--white); margin-bottom: 16px; }
.gallery-cta p  { color: rgba(255,255,255,0.75); max-width: 540px; margin: 0 auto 32px; }
.gallery-cta .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--text-dark);
  border: none;
  padding: 15px 36px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.gallery-cta .btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240,185,11,0.4);
}

/* Gallery page nav (standalone header) */
.gallery-page .header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  padding: 0 24px;
}
.gallery-page .nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.gallery-page .logo-wrapper img {
  height: 44px;
  width: auto;
}
.gallery-page .navbar .nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0; padding: 0;
}
.gallery-page .navbar .nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}
.gallery-page .navbar .nav-links a:hover,
.gallery-page .navbar .nav-links a.active { color: var(--green-mid); }
.gallery-page .footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 28px 24px;
  font-size: 0.875rem;
}


/* ============================================
   MOBILE RESPONSIVE IMPROVEMENTS
   ============================================ */

/* Booking form mobile */
@media (max-width: 768px) {
  .booking-form-container {
    padding: 28px 20px;
    margin: 0 12px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* About page */
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-img-main {
    min-height: 300px;
  }

  /* Mission/Vision grid */
  .mission-vision-grid,
  div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Contact page */
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-card {
    padding: 24px 18px;
  }

  /* Hero */
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-stats {
    gap: 20px;
  }

  /* Services grid */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* CTA */
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Values grid */
  .values-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* Section spacing */
  .section { padding: 60px 0; }

  /* Page hero */
  .page-hero { padding: 110px 0 50px; }
  .page-hero h1 { font-size: 2rem; }

  /* Testimonials */
  .testimonials-slider { overflow: hidden; }

  /* Stat cards */
  .stat-cards {
    grid-template-columns: 1fr 1fr;
  }

  /* About story carousel */
  div[style*="grid-template-columns:1fr 1fr;gap:60px"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  div[style*="height:520px"] {
    height: 320px !important;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.6rem; }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .stat-cards {
    grid-template-columns: 1fr;
  }

  .booking-form-container {
    padding: 22px 16px;
    margin: 0 8px;
  }

  .whatsapp-float {
    bottom: 16px;
    right: 16px;
  }

  .whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  /* Nav logo text hide on very small */
  .nav-logo-text span {
    display: none;
  }
}
