/* ============================================================
   Agility Cleaning Services — brand system
   Blue  #123B7A / #1E56A0   Green #6FBE44 / #8FD14F   White
   ============================================================ */

:root {
  --navy: #0d2a5c;
  --blue: #1a4b96;
  --blue-light: #2f68c4;
  --green: #6fbe44;
  --green-light: #8fd14f;
  --green-dark: #4d8f2b;
  --ink: #0e1a2b;
  --paper: #f7faf5;
  --white: #ffffff;
  --line: rgba(13, 42, 92, 0.1);

  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow-soft: 0 20px 60px -20px rgba(13, 42, 92, 0.35);
  --shadow-card: 0 10px 30px -12px rgba(13, 42, 92, 0.25);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --container: 1220px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: rgba(111, 190, 68, 0.12);
  border: 1px solid rgba(111, 190, 68, 0.35);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(111, 190, 68, 0.25);
}

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-bottom: 16px; }
.section-head p { color: #45546b; font-size: 1.05rem; }

section { position: relative; padding: 110px 0; }
@media (max-width: 720px) { section { padding: 72px 0; } }

.section-tint { background: var(--white); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 16px 30px;
  border-radius: 999px;
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s ease, background 0.3s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: linear-gradient(135deg, var(--green-light), var(--green-dark));
  color: var(--white);
  box-shadow: 0 14px 30px -10px rgba(79, 143, 43, 0.55);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -8px rgba(79, 143, 43, 0.65); }

.btn-outline {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(6px);
}
.btn-outline:hover { background: rgba(255,255,255,0.2); transform: translateY(-3px); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 14px 30px -10px rgba(13,42,92,0.5);
}
.btn-navy:hover { transform: translateY(-3px); background: var(--blue); }

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 14px 30px -10px rgba(37,211,102,0.55);
}
.btn-whatsapp:hover { transform: translateY(-3px); }

.btn-ghost-sm {
  font-size: 0.85rem;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  color: var(--blue);
  font-weight: 600;
}
.btn-ghost-sm:hover { background: rgba(26,75,150,0.06); }

.btn-block { width: 100%; justify-content: center; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 16px 0;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.navbar.scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 8px 30px -18px rgba(13,42,92,0.4);
  padding: 10px 0;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 42px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--white);
  position: relative;
  transition: color 0.3s ease;
}
.navbar.scrolled .nav-links a { color: var(--navy); }
.nav-links a::after {
  content: '';
  position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--green);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  align-items: center; justify-content: center;
  background: rgba(255,255,255,0.15);
  color: var(--white);
}
.navbar.scrolled .nav-toggle { background: rgba(13,42,92,0.08); color: var(--navy); }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-actions .btn-outline { display: none; }
  .nav-toggle { display: flex; }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, var(--navy), var(--blue) 70%);
  z-index: 600;
  display: flex;
  flex-direction: column;
  padding: 28px 28px 40px;
  transform: translateY(-100%);
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.mobile-menu-head img { height: 38px; }
.mobile-close { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.15); color: #fff; display: flex; align-items: center; justify-content: center; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 6px; }
.mobile-menu nav a {
  font-family: var(--font-display);
  color: #fff; font-size: 1.3rem; font-weight: 600;
  padding: 14px 4px; border-bottom: 1px solid rgba(255,255,255,0.12);
}
.mobile-menu .btn { margin-top: 28px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 90px;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(115deg, rgba(9,26,58,0.94) 8%, rgba(13,42,92,0.75) 45%, rgba(24,63,42,0.55) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 1000'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' x2='1'%3E%3Cstop offset='0' stop-color='%230d2a5c'/%3E%3Cstop offset='1' stop-color='%23163f6e'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='1600' height='1000' fill='url(%23g)'/%3E%3Cg opacity='0.16' fill='%238fd14f'%3E%3Ccircle cx='220' cy='150' r='260'/%3E%3Ccircle cx='1380' cy='780' r='340'/%3E%3C/g%3E%3Cg opacity='0.1' fill='%23ffffff'%3E%3Crect x='120' y='560' width='260' height='420'/%3E%3Crect x='420' y='420' width='180' height='560'/%3E%3Crect x='640' y='500' width='220' height='480'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}
.hero-grain {
  position: absolute; inset: 0;
  opacity: 0.05; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px; align-items: center; }

.hero-copy .eyebrow { background: rgba(143,209,79,0.16); border-color: rgba(143,209,79,0.4); color: var(--green-light); }
.hero-copy h1 {
  color: var(--white);
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  margin-bottom: 22px;
}
.hero-copy h1 span { color: var(--green-light); }
.hero-copy p.lead {
  color: rgba(255,255,255,0.82);
  font-size: 1.12rem;
  max-width: 560px;
  margin-bottom: 34px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 42px; }

.rating-row {
  display: flex; align-items: center; gap: 14px;
  color: #fff; font-family: var(--font-display); font-size: 0.92rem; font-weight: 500;
}
.stars { color: var(--green-light); letter-spacing: 2px; font-size: 1.05rem; }

.trust-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin-top: 44px;
}
.trust-badges .badge {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #eef3ff;
}
.trust-badges svg { width: 20px; height: 20px; color: var(--green-light); flex-shrink: 0; }

.hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,0.2);
}
.hero-card img { width: 100%; height: 560px; object-fit: cover; }
.hero-float {
  position: absolute;
  bottom: 22px; left: 22px; right: 22px;
  background: rgba(13,42,92,0.55);
  backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex; align-items: center; gap: 16px;
  color: #fff;
}
.hero-float .count { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: var(--green-light); }
.hero-float .label { font-size: 0.8rem; color: rgba(255,255,255,0.75); }

@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-card img { height: 380px; }
  .trust-badges { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.about-media { position: relative; }
.about-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  width: 100%;
  height: 460px;
  object-fit: cover;
}
.about-tag {
  position: absolute;
  bottom: -26px; right: -26px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 20px 24px;
  border: 1px solid var(--line);
}
.about-tag .num { font-family: var(--font-display); font-size: 2.1rem; font-weight: 700; color: var(--green-dark); }
.about-tag .txt { font-size: 0.82rem; color: #55627a; max-width: 150px; }

.about-copy p.lead { font-size: 1.08rem; color: #384258; margin-bottom: 30px; }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pillar {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.pillar .icon-wrap {
  width: 46px; height: 46px; border-radius: 14px;
  background: linear-gradient(135deg, var(--green-light), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.pillar .icon-wrap svg { width: 22px; height: 22px; color: #fff; }
.pillar h4 { font-size: 1.02rem; margin-bottom: 8px; }
.pillar p { font-size: 0.87rem; color: #58637a; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .about-tag { right: 10px; bottom: -20px; }
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(111,190,68,0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); border-color: rgba(111,190,68,0.4); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 52px; height: 52px; border-radius: 16px;
  background: linear-gradient(135deg, var(--blue-light), var(--navy));
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.service-icon svg { width: 24px; height: 24px; color: #fff; }
.service-card h4 { font-size: 1.05rem; position: relative; z-index: 1; }
.service-card p { font-size: 0.87rem; color: #57647c; flex: 1; position: relative; z-index: 1; }
.service-card .btn-ghost-sm { align-self: flex-start; position: relative; z-index: 1; }

/* ---------- Gallery / BA slider ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
@media (max-width: 860px) { .gallery-grid { grid-template-columns: 1fr; } }

.ba-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
}
.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
}
.ba-slider .ba-before,
.ba-slider .ba-after {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.ba-slider .ba-before { z-index: 1; }
.ba-slider .ba-after { z-index: 2; clip-path: inset(0 50% 0 0); }
.ba-slider .ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 3px; background: var(--white);
  z-index: 3; transform: translateX(-50%);
  box-shadow: 0 0 0 100vh rgba(0,0,0,0);
}
.ba-slider .ba-handle::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 42px; height: 42px;
  background: var(--white);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  box-shadow: 0 6px 18px rgba(13,42,92,0.35);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a4b96' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 5l-5 7 5 7M16 5l5 7-5 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
}
.ba-tag { position: absolute; top: 14px; z-index: 4; font-family: var(--font-display); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; padding: 6px 12px; border-radius: 999px; text-transform: uppercase; }
.ba-tag.before { left: 14px; background: rgba(13,42,92,0.75); color: #fff; }
.ba-tag.after { right: 14px; background: rgba(111,190,68,0.9); color: #fff; }
.ba-caption { padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.ba-caption h4 { font-size: 1rem; }
.ba-caption span { font-size: 0.8rem; color: #6a7690; }

/* ---------- Why choose ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

.why-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: transform 0.3s ease, background 0.3s ease;
}
.why-item:hover { transform: translateY(-4px); background: rgba(255,255,255,0.9); }
.why-item .icon-wrap {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 12px;
  background: rgba(111,190,68,0.14);
  display: flex; align-items: center; justify-content: center;
}
.why-item .icon-wrap svg { width: 20px; height: 20px; color: var(--green-dark); }
.why-item h4 { font-size: 0.98rem; margin-bottom: 4px; }
.why-item p { font-size: 0.85rem; color: #59647c; }

.why-band {
  background: linear-gradient(120deg, var(--navy), var(--blue));
  border-radius: var(--radius-lg);
  padding: 46px;
  margin-top: 50px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
  color: #fff;
  flex-wrap: wrap;
}
.why-band h3 { color: #fff; font-size: 1.5rem; max-width: 480px; }
.why-band p { color: rgba(255,255,255,0.78); margin-top: 8px; max-width: 460px; font-size: 0.92rem; }

/* ---------- How it works ---------- */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
}
@media (max-width: 900px) { .steps-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .steps-row { grid-template-columns: 1fr; } }

.step-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  padding: 30px 24px;
  text-align: left;
  position: relative;
}
.step-card .step-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: rgba(26,75,150,0.12);
  line-height: 1;
  margin-bottom: 14px;
}
.step-card h4 { font-size: 1.02rem; margin-bottom: 8px; }
.step-card p { font-size: 0.86rem; color: #59647c; }
.step-card .icon-wrap {
  position: absolute; top: 26px; right: 24px;
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(111,190,68,0.14);
  display: flex; align-items: center; justify-content: center;
}
.step-card .icon-wrap svg { width: 18px; height: 18px; color: var(--green-dark); }

/* ---------- Testimonials ---------- */
.testi-track-wrap { position: relative; overflow: hidden; }
.testi-track {
  display: flex;
  gap: 22px;
  transition: transform 0.55s cubic-bezier(.2,.8,.2,1);
}
.testi-card {
  flex: 0 0 calc(33.333% - 15px);
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
}
@media (max-width: 980px) { .testi-card { flex: 0 0 calc(50% - 11px); } }
@media (max-width: 660px) { .testi-card { flex: 0 0 100%; } }

.testi-stars { color: var(--green-dark); letter-spacing: 2px; margin-bottom: 14px; }
.testi-card p.quote { font-size: 0.94rem; color: #3a4459; margin-bottom: 22px; min-height: 96px; }
.testi-person { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 0.95rem;
  flex-shrink: 0;
}
.testi-person .name { font-family: var(--font-display); font-size: 0.92rem; font-weight: 600; color: var(--navy); }
.testi-person .role { font-size: 0.78rem; color: #6a7690; }

.testi-controls { display: flex; justify-content: center; gap: 12px; margin-top: 34px; }
.testi-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--line); transition: background 0.3s, transform 0.3s; }
.testi-dot.active { background: var(--green); transform: scale(1.3); }
.testi-arrow {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  transition: background 0.3s, color 0.3s;
}
.testi-arrow:hover { background: var(--navy); color: #fff; }
.testi-arrow svg { width: 18px; height: 18px; }

/* ---------- Booking ---------- */
.booking-section { background: linear-gradient(160deg, var(--navy) 0%, var(--blue) 60%, var(--green-dark) 130%); position: relative; overflow: hidden; }
.booking-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 15% 20%, rgba(255,255,255,0.08), transparent 40%), radial-gradient(circle at 85% 80%, rgba(143,209,79,0.18), transparent 45%);
}
.booking-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 50px; align-items: flex-start; }
.booking-intro .eyebrow { background: rgba(143,209,79,0.18); border-color: rgba(143,209,79,0.4); color: var(--green-light); }
.booking-intro h2 { color: #fff; font-size: clamp(1.9rem, 3.2vw, 2.6rem); margin-bottom: 18px; }
.booking-intro p { color: rgba(255,255,255,0.78); margin-bottom: 30px; }
.booking-contact-line { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; color: #fff; }
.booking-contact-line .icon-wrap { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.booking-contact-line .icon-wrap svg { width: 20px; height: 20px; color: var(--green-light); }
.booking-contact-line .lbl { font-size: 0.76rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.06em; }
.booking-contact-line .val { font-family: var(--font-display); font-weight: 600; }

.booking-card {
  background: rgba(255,255,255,0.96);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.4);
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } .booking-grid { grid-template-columns: 1fr; } .booking-card { padding: 26px; } }

.field label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--navy); margin-bottom: 7px; font-family: var(--font-display); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(13,42,92,0.14);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.field textarea { resize: vertical; min-height: 90px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(111,190,68,0.15);
}
.field.checkbox { display: none; }

.form-confirm {
  display: none;
  align-items: center; gap: 14px;
  background: rgba(111,190,68,0.12);
  border: 1px solid rgba(111,190,68,0.4);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-top: 18px;
  color: var(--green-dark);
  font-weight: 600;
  font-size: 0.9rem;
}
.form-confirm.show { display: flex; }
.form-confirm svg { width: 22px; height: 22px; flex-shrink: 0; }

.booking-form .btn { margin-top: 22px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 26px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  text-align: left;
}
.faq-q .plus { width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%; background: rgba(111,190,68,0.14); display: flex; align-items: center; justify-content: center; position: relative; transition: transform 0.35s ease, background 0.35s ease; }
.faq-q .plus::before, .faq-q .plus::after { content: ''; position: absolute; background: var(--green-dark); border-radius: 2px; }
.faq-q .plus::before { width: 12px; height: 2px; }
.faq-q .plus::after { width: 2px; height: 12px; transition: transform 0.35s ease; }
.faq-item.open .faq-q .plus { background: var(--green-dark); }
.faq-item.open .faq-q .plus::before, .faq-item.open .faq-q .plus::after { background: #fff; }
.faq-item.open .faq-q .plus::after { transform: rotate(90deg) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a p { padding: 0 26px 24px; font-size: 0.9rem; color: #57647c; max-width: 680px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-row { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-row:last-child { border-bottom: none; }
.contact-row .icon-wrap { width: 46px; height: 46px; border-radius: 13px; background: rgba(26,75,150,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-row .icon-wrap svg { width: 21px; height: 21px; color: var(--blue); }
.contact-row .lbl { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: #8a95ab; margin-bottom: 3px; }
.contact-row .val { font-family: var(--font-display); font-weight: 600; color: var(--navy); }
.contact-row .actions { margin-top: 10px; display: flex; gap: 10px; }

.contact-map { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); min-height: 340px; }
.contact-map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; filter: grayscale(15%) contrast(1.05); }

/* ---------- Footer ---------- */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand img { height: 46px; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.95; }
.footer-brand p { font-size: 0.87rem; max-width: 300px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: background 0.3s ease; }
.footer-social a:hover { background: var(--green); }
.footer-social svg { width: 18px; height: 18px; }

.footer-col h5 { font-family: var(--font-display); color: #fff; font-size: 0.95rem; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 0.87rem; transition: color 0.3s ease; }
.footer-col a:hover { color: var(--green-light); }

.footer-bottom { padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; }

/* ---------- Floating actions ---------- */
.floating-actions { position: fixed; right: 22px; bottom: 22px; z-index: 400; display: flex; flex-direction: column; gap: 14px; align-items: flex-end; }
.fab {
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px -8px rgba(13,42,92,0.45);
  color: #fff;
  transition: transform 0.3s ease;
  position: relative;
}
.fab:hover { transform: scale(1.08); }
.fab svg { width: 26px; height: 26px; }
.fab-whatsapp { background: #25d366; }
.fab-call { background: var(--blue); }
.fab-top {
  width: 48px; height: 48px; background: var(--navy);
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.fab-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.fab-top svg { width: 20px; height: 20px; }
.fab-pulse::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25d366; animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.7); opacity: 0; } }

@media (max-width: 600px) {
  .floating-actions { right: 14px; bottom: 14px; }
  .fab { width: 50px; height: 50px; }
  .fab svg { width: 22px; height: 22px; }
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(.2,.8,.2,1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > * { animation: none; }

/* ---------- Preloader ---------- */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hide { opacity: 0; visibility: hidden; }
.preloader-mark { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.preloader-mark img { height: 56px; animation: floatLogo 1.6s ease-in-out infinite; }
.preloader-ring { width: 46px; height: 46px; border-radius: 50%; border: 3px solid rgba(255,255,255,0.15); border-top-color: var(--green); animation: spin 0.9s linear infinite; }
@keyframes floatLogo { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes spin { to { transform: rotate(360deg); } }

::selection { background: var(--green); color: #fff; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy); color: #fff; padding: 12px 18px; z-index: 9999;
}
.skip-link:focus { left: 12px; top: 12px; }
