/* ============================================================
   NEW VETERINARY CLINIC ABU DHABI - MAIN STYLESHEET
   Design: Deep teal + warm cream + gold accent. Heritage editorial.
   ============================================================ */

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

:root {
  --teal: #0A6E5A;
  --teal-dark: #084D3F;
  --teal-light: #E8F5F1;
  --teal-mid: #1A8A72;
  --gold: #C8942A;
  --gold-light: #F5EDD6;
  --warm: #F8F6F1;
  --warm-dim: #EFEBE0;
  --dark: #1E2D2B;
  --dark-soft: #2E3E3C;
  --emergency: #C83A28;
  --emergency-dark: #A12E1F;
  --text: #1E2D2B;
  --text-muted: #5A6E6B;
  --text-light: #8A9E9B;
  --border: rgba(30,45,43,0.1);
  --border-strong: rgba(30,45,43,0.18);
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --maxw: 1240px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  background: var(--warm);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* =================== EMERGENCY TOP BAR =================== */
.emergency-bar {
  background: var(--emergency);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.emergency-bar a {
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.5);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  transition: background 0.2s;
}
.emergency-bar a:hover { background: rgba(255,255,255,0.2); }

/* =================== HEADER =================== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248,246,241,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
header.scrolled { box-shadow: 0 2px 20px rgba(30,45,43,0.08); }

.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--teal);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.logo-since {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 2px;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
nav.main-nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 400;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}
nav.main-nav a:hover,
nav.main-nav a.active { color: var(--teal); background: var(--teal-light); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 4px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: 0.3s;
}

/* =================== BUTTONS =================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: #fff;
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); }

.btn-emergency {
  background: var(--emergency);
  color: #fff;
  font-size: 13px;
  padding: 9px 16px;
}
.btn-emergency:hover { background: var(--emergency-dark); }

.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
}
.btn-outline:hover { background: var(--teal-light); }

.btn-white {
  background: #fff;
  color: var(--emergency);
  font-weight: 600;
  font-size: 16px;
  padding: 16px 32px;
}
.btn-white:hover { background: rgba(255,255,255,0.92); transform: translateY(-2px); }

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

/* =================== HERO (HOMEPAGE) =================== */
.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 80px 32px 100px;
  gap: 70px;
  align-items: center;
}

.hero-content { animation: fadeUp 0.8s ease both; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-light);
  border: 1px solid rgba(200,148,42,0.3);
  color: #8A6418;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 22px;
  letter-spacing: -0.025em;
}
.hero h1 em {
  font-style: italic;
  color: var(--teal);
  font-weight: 400;
}

.hero-desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}
.trust-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

/* Hero image stack */
.hero-visual {
  position: relative;
  height: 600px;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-img-main {
  position: absolute;
  right: 0; top: 0;
  width: 88%;
  height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(10,110,90,0.18);
}
.hero-img-main img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-img-secondary {
  position: absolute;
  bottom: 0; left: 0;
  width: 52%;
  height: 230px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 6px solid var(--warm);
  box-shadow: 0 20px 60px rgba(30,45,43,0.18);
}
.hero-img-secondary img { width: 100%; height: 100%; object-fit: cover; }

.hero-badge {
  position: absolute;
  top: 36px; left: -10px;
  background: var(--dark);
  color: #fff;
  padding: 18px 22px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 12px 40px rgba(30,45,43,0.28);
  z-index: 2;
}
.hero-badge-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  color: var(--gold);
}
.hero-badge-text {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* =================== PAGE HERO (NON-HOMEPAGE) =================== */
.page-hero {
  padding: 90px 32px 70px;
  max-width: var(--maxw);
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb span { color: var(--border-strong); }

.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--dark);
  letter-spacing: -0.025em;
  max-width: 900px;
  margin: 0 auto 24px;
}
.page-hero h1 em { color: var(--teal); font-style: italic; }

.page-hero p.lead {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
}

/* =================== STATS BAR =================== */
.stats-bar {
  background: var(--dark);
  padding: 50px 32px;
}
.stats-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
}
.stat {
  padding: 32px 28px;
  background: var(--dark);
  text-align: center;
  transition: background 0.25s;
}
.stat:hover { background: var(--dark-soft); }
.stat-num {
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* =================== SECTION STRUCTURE =================== */
section { padding: 100px 32px; }
.section-inner { max-width: var(--maxw); margin: 0 auto; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}
.section-label::before {
  content: '';
  width: 28px; height: 1.5px;
  background: var(--teal);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 600;
  line-height: 1.12;
  color: var(--dark);
  margin-bottom: 22px;
  letter-spacing: -0.025em;
}
.section-title em { font-style: italic; color: var(--teal); font-weight: 400; }

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 60px;
}

/* =================== SERVICES GRID =================== */
.services { background: #fff; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: #fff;
  padding: 38px 30px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--teal);
  transition: width 0.35s;
}
.service-card:hover { background: var(--teal-light); }
.service-card:hover::after { width: 100%; }

.service-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.service-name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.service-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}
.service-link {
  font-size: 12px;
  font-weight: 500;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

/* =================== EMERGENCY BAND =================== */
.emergency-section {
  background: var(--emergency);
  padding: 80px 32px;
  position: relative;
  overflow: hidden;
}
.emergency-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.emergency-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.emergency-content h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.emergency-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  line-height: 1.65;
}
.emergency-actions {
  display: flex;
  gap: 12px;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
}
.emergency-hours {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  text-align: right;
  line-height: 1.7;
}

.open-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
}
.open-status.open { background: rgba(255,255,255,0.18); color: #fff; }
.open-status.closed { background: rgba(0,0,0,0.22); color: rgba(255,255,255,0.75); }
.open-status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.open-status.open .open-status-dot { background: #4ade80; }
.open-status.closed .open-status-dot { background: rgba(255,255,255,0.4); animation: none; }

/* =================== ABOUT SECTION =================== */
.about { background: var(--warm); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 620px;
}
.about-img-main {
  position: absolute;
  left: 0; top: 0;
  width: 75%;
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10,110,90,0.18);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }

.about-img-vintage {
  position: absolute;
  right: 0; bottom: 0;
  width: 55%;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 6px solid var(--warm);
  box-shadow: 0 15px 40px rgba(30,45,43,0.18);
}
.about-img-vintage img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: sepia(40%) contrast(1.05) saturate(0.85);
}
.vintage-label {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(30,45,43,0.88);
  color: rgba(255,255,255,0.9);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  z-index: 2;
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
  margin-bottom: 36px;
}
.credential-pill {
  background: var(--teal-light);
  border: 1px solid rgba(10,110,90,0.2);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
}

.long-prose p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 18px;
}
.long-prose p:last-child { margin-bottom: 0; }

/* =================== HERITAGE TIMELINE =================== */
.timeline-strip {
  background: var(--dark);
  padding: 90px 32px;
  position: relative;
  overflow: hidden;
}
.timeline-inner { max-width: var(--maxw); margin: 0 auto; position: relative; z-index: 1; }
.timeline-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 24px;
}
.timeline-title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.15;
  max-width: 620px;
}
.timeline-title em { color: var(--gold); font-style: italic; font-weight: 400; }

.timeline-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.timeline-item {
  padding: 36px 30px;
  background: var(--dark);
  border-top: 2px solid transparent;
  transition: all 0.3s;
}
.timeline-item:hover {
  background: var(--dark-soft);
  border-top-color: var(--gold);
}
.timeline-year {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.timeline-text {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

/* =================== EXOTIC ANIMALS =================== */
.exotic { background: #fff; }
.exotic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.exotic-content { order: 2; }
.exotic-images { order: 1; }

.exotic-img-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.exotic-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
}
.exotic-img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
  position: relative;
}
.exotic-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.exotic-img:hover img { transform: scale(1.04); }
.exotic-img.vintage img {
  filter: sepia(30%) contrast(1.05);
}

.exotic-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 36px;
}
.exotic-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}
.exotic-list li::before {
  content: '';
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--teal-light);
  border: 1.5px solid var(--teal);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A6E5A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 1px;
}

/* =================== PET TRAVEL =================== */
.pet-travel { background: var(--teal-light); }
.travel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.travel-steps {
  display: flex;
  flex-direction: column;
  margin-top: 36px;
}
.travel-step {
  display: flex;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(10,110,90,0.12);
}
.travel-step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 600;
  color: rgba(10,110,90,0.22);
  line-height: 1;
  min-width: 52px;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.step-content h4 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.step-content p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

.travel-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 540px;
  box-shadow: 0 20px 60px rgba(10,110,90,0.18);
}
.travel-img img { width: 100%; height: 100%; object-fit: cover; }

/* =================== TESTIMONIALS =================== */
.testimonials { background: var(--warm); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: all 0.3s;
}
.review-card:hover {
  box-shadow: 0 10px 40px rgba(10,110,90,0.1);
  border-color: rgba(10,110,90,0.2);
}
.review-stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 18px;
  letter-spacing: 3px;
}
.review-text {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 24px;
  font-style: italic;
  font-family: var(--serif);
  font-weight: 300;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--teal);
  font-family: var(--serif);
  flex-shrink: 0;
}
.review-name {
  font-weight: 500;
  font-size: 14px;
  color: var(--dark);
}
.review-meta {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px;
}
.google-link {
  margin-top: 50px;
  text-align: center;
}
.google-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--teal);
  text-decoration: none;
  font-weight: 500;
  border: 1.5px solid rgba(10,110,90,0.3);
  padding: 13px 26px;
  border-radius: 8px;
  transition: all 0.2s;
}
.google-link a:hover { background: var(--teal-light); border-color: var(--teal); }

/* =================== CONTACT =================== */
.contact { background: #fff; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 4px;
}
.contact-value {
  font-size: 15px;
  color: var(--dark);
  line-height: 1.5;
}
.contact-value a { color: inherit; text-decoration: none; }
.contact-value a:hover { color: var(--teal); }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text);
  background: var(--warm);
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: #fff;
}
.form-group textarea { min-height: 110px; }

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.2s;
}
.whatsapp-btn:hover { background: #1eba57; transform: translateY(-1px); }

/* =================== FOOTER =================== */
footer {
  background: var(--dark);
  padding: 80px 32px 36px;
  color: rgba(255,255,255,0.6);
}
.footer-inner { max-width: var(--maxw); margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 36px;
}
.footer-logo-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.footer-logo-since {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-mission {
  font-size: 14px;
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 26px;
  color: rgba(255,255,255,0.55);
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s;
}
.social-link:hover { background: var(--teal); color: #fff; }

.footer-col h4 {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  margin-bottom: 22px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 18px;
}
.footer-contact-label {
  font-size: 10.5px;
  color: rgba(255,255,255,0.32);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer-contact-val {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
}
.footer-contact-val a { color: inherit; text-decoration: none; }
.footer-contact-val a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.32);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }

/* =================== WHATSAPP FLOAT =================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  z-index: 200;
  transition: all 0.3s;
  animation: pulse-wa 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }

/* =================== ANIMATIONS =================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 36px rgba(37,211,102,0.7); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =================== CONTENT PAGE STYLES =================== */
.content-page {
  background: var(--warm);
  padding: 60px 32px 100px;
}
.content-page-inner {
  max-width: 880px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 70px 70px;
}
.content-page-inner h2 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin: 40px 0 16px;
  line-height: 1.2;
}
.content-page-inner h2:first-child { margin-top: 0; }
.content-page-inner h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  margin: 32px 0 12px;
}
.content-page-inner p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 18px;
}
.content-page-inner ul, .content-page-inner ol {
  margin: 0 0 24px 22px;
  color: var(--text-muted);
}
.content-page-inner li {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 8px;
}
.content-page-inner a { color: var(--teal); }
.content-page-inner strong { color: var(--dark); font-weight: 500; }
.content-page-inner .callout {
  background: var(--teal-light);
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  padding: 20px 24px;
  margin: 28px 0;
}
.content-page-inner .callout p { margin: 0; color: var(--teal-dark); }

.service-feature-image {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
}

.cta-box {
  background: var(--teal);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  margin-top: 40px;
  text-align: center;
}
.cta-box h3 {
  font-family: var(--serif);
  font-size: 26px;
  color: #fff;
  margin: 0 0 10px;
  font-weight: 600;
}
.cta-box p {
  color: rgba(255,255,255,0.85);
  margin: 0 0 24px;
  font-size: 15px;
}
.cta-box .btn-white { background: #fff; color: var(--teal); }

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.faq-a {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =================== MOBILE NAV =================== */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--warm);
  z-index: 999;
  padding: 80px 32px 32px;
  display: none;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--dark);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--dark);
}

/* =================== RESPONSIVE =================== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 50px; padding: 50px 32px 80px; }
  .hero-visual { height: 480px; max-width: 600px; margin: 0 auto; width: 100%; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .exotic-grid, .travel-grid, .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-images { height: 480px; max-width: 600px; }
  .timeline-items { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .exotic-content { order: 1; }
  .exotic-images { order: 2; }
  .content-page-inner { padding: 50px 40px; }
}
@media (max-width: 720px) {
  nav.main-nav { display: none; }
  .menu-toggle { display: flex; }
  section { padding: 70px 24px; }
  .header-inner { padding: 0 20px; gap: 12px; }
  .header-actions .btn-emergency { padding: 8px 12px; font-size: 12px; }
  .header-actions .btn-primary { display: none; }
  .hero { padding: 40px 24px 60px; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .timeline-items { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .emergency-inner { flex-direction: column; align-items: flex-start; }
  .emergency-actions { align-items: flex-start; width: 100%; }
  .emergency-hours { text-align: left; }
  .content-page-inner { padding: 36px 24px; }
  .content-page-inner h2 { font-size: 24px; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
  .page-hero { padding: 50px 24px 40px; }
  .page-hero h1 { font-size: 32px; }
  .page-hero p.lead { font-size: 16px; }
  .hero-visual { height: 380px; }
  .hero-img-secondary { display: none; }
  .about-images { height: 360px; }
  .travel-img { height: 360px; }
}
