/* ============================================================
   Atal's Pet Clinic, Jaipur — Premium Design System 2025
   Modern, conversion-optimized, SEO-friendly stylesheet
   ============================================================ */

/* ===== GOOGLE FONTS FALLBACK ===== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Lora:ital,wght@0,500;0,600;1,500&display=swap');

/* ===== DESIGN TOKENS ===== */
:root {
  /* Color Palette */
  --green-50: #f0fdf6;
  --green-100: #dcfce9;
  --green-200: #bbf7d1;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-800: #166534;
  --green-900: #14532d;

  --forest: #1a4731;
  /* Primary dark green */
  --emerald: #059669;
  /* accent CTA green */
  --sage: #6db885;
  /* soft mid green */
  --cream: #fefdf8;
  /* warm off-white bg */
  --parchment: #f5f0e8;
  /* warm section bg */
  --gold: #f59e0b;
  /* stars/highlights */
  --gold-light: #fef3c7;

  --text-900: #0c1a0f;
  --text-700: #1f3a25;
  --text-500: #4a7057;
  --text-400: #6b9a78;
  --text-300: #a3c4ad;
  --white: #ffffff;

  /* Semantic */
  --bg: var(--cream);
  --surface: var(--white);
  --surface-2: var(--green-50);
  --accent: var(--forest);
  --accent-h: var(--green-700);
  --cta: var(--emerald);
  --cta-h: var(--green-600);
  --muted: var(--text-500);
  --border: rgba(26, 71, 49, 0.1);
  --border-2: rgba(26, 71, 49, 0.18);
  --shadow-sm: 0 2px 8px rgba(10, 40, 20, 0.06);
  --shadow-md: 0 8px 32px rgba(10, 40, 20, 0.10);
  --shadow-lg: 0 20px 60px rgba(10, 40, 20, 0.14);
  --shadow-xl: 0 32px 80px rgba(10, 40, 20, 0.18);

  /* Layout */
  --maxw: 1200px;
  --radius: 16px;
  --radius-sm: 8px;
  --radius-xl: 24px;

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-serif: 'Lora', Georgia, 'Times New Roman', serif;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 1.875rem;
  --fs-4xl: 2.25rem;
  --fs-5xl: 3rem;
  --lh-tight: 1.15;
  --lh-snug: 1.3;
  --lh-base: 1.6;

  /* Animation */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 150ms;
  --dur-base: 250ms;
  --dur-slow: 400ms;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  color: var(--text-900);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur-fast) ease;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
select,
textarea {
  font-family: inherit;
}

/* ===== LAYOUT ===== */
.wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: var(--lh-tight);
  color: var(--text-900);
}

h1 {
  font-size: clamp(var(--fs-3xl), 5.5vw, var(--fs-5xl));
}

h2 {
  font-size: clamp(var(--fs-2xl), 3.5vw, var(--fs-4xl));
}

h3 {
  font-size: clamp(var(--fs-lg), 2.5vw, var(--fs-xl));
}

h1 em,
h2 em {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--emerald);
  font-weight: 500;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--emerald);
  margin-bottom: 0.75rem;
}

.eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--emerald);
  border-radius: 2px;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--muted);
  font-size: var(--fs-lg);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: var(--fs-base);
  font-weight: 700;
  border: 2px solid transparent;
  transition: all var(--dur-base) var(--ease-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-100%);
  transition: transform var(--dur-base) var(--ease-out);
}

.btn:hover::before {
  transform: translateX(0);
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: linear-gradient(135deg, var(--forest) 0%, var(--emerald) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(5, 150, 105, 0.3), 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(5, 150, 105, 0.45), 0 2px 6px rgba(0, 0, 0, 0.1);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  border-color: var(--forest);
  color: var(--forest);
}

.btn-outline:hover {
  background: var(--forest);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.95);
  color: var(--forest);
  border-color: var(--border);
}

.btn-ghost:hover {
  background: var(--white);
  border-color: var(--forest);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: var(--fs-lg);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ===== NAVIGATION ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(254, 253, 248, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--dur-base) ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(10, 40, 20, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-block: 0.875rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 1.5rem;
}

.logo-text {
  font-size: var(--fs-lg);
  font-weight: 800;
  color: var(--forest);
  line-height: 1.1;
}

.logo-text em {
  font-style: normal;
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--muted);
}

/* image version of the logo (used in header and footer) */
.logo-img {
  display: block;
  height: 3.5rem;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 0.25rem;
  margin-inline: auto;
}

.main-nav a {
  padding: 0.5rem 0.875rem;
  border-radius: 50px;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-700);
  transition: all var(--dur-fast) ease;
}

.main-nav a:hover {
  background: var(--green-50);
  color: var(--forest);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-cta {
  font-size: var(--fs-sm);
  padding: 0.5rem 1rem;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: all var(--dur-base) ease;
  display: block;
}

/* ===== BADGE ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  border-radius: 50px;
  font-size: var(--fs-sm);
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.badge-green {
  background: var(--green-100);
  color: var(--green-700);
  border: 1px solid var(--green-200);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-500);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--cream) 0%, #edf7f2 50%, #e8f5ee 100%);
  padding-block: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  top: -40%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--white));
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 600px;
}

.hero-text h1 {
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, var(--forest) 0%, var(--text-900) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  -webkit-text-fill-color: var(--emerald);
}

.hero-sub {
  font-size: var(--fs-lg);
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: var(--lh-base);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  width: fit-content;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-num {
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--forest);
  line-height: 1;
}

.stat-suffix {
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--emerald);
}

.stat-label {
  font-size: var(--fs-xs);
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hero-trust {
  font-size: var(--fs-sm);
  color: var(--text-400);
  font-weight: 500;
}

/* Hero Media */
.hero-media {
  position: relative;
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}

.hero-image-wrap img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.hero-pill {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: var(--white);
  border-radius: 50px;
  padding: 0.625rem 1rem;
  box-shadow: 0 8px 24px rgba(10, 40, 20, 0.15);
  border: 1px solid var(--border);
  animation: floatPill 3s ease-in-out infinite;
}

.hero-pill-1 {
  bottom: -1rem;
  left: -2rem;
  animation-delay: 0s;
}

.hero-pill-2 {
  top: 1.5rem;
  right: -1.5rem;
  animation-delay: 1.5s;
}

.pill-icon {
  font-size: 1.5rem;
}

.hero-pill div {
  display: flex;
  flex-direction: column;
}

.hero-pill strong {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--text-900);
  line-height: 1.2;
}

.hero-pill span {
  font-size: var(--fs-xs);
  color: var(--muted);
}

@keyframes floatPill {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--forest);
  padding-block: 1.25rem;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--fs-sm);
  font-weight: 600;
}

.trust-item svg {
  color: var(--sage);
  flex-shrink: 0;
}

/* ===== SERVICES ===== */
.services-section {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--dur-base) var(--ease-out);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--forest), var(--emerald));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
  border-radius: 3px 3px 0 0;
}

.service-card:hover,
.service-card:focus {
  border-color: var(--border-2);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  outline: none;
}

.service-card:hover::before,
.service-card:focus::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.service-card h3 {
  margin-bottom: 0.75rem;
  color: var(--forest);
}

.service-card p {
  color: var(--muted);
  font-size: var(--fs-sm);
  line-height: var(--lh-base);
  margin-bottom: 1.25rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--emerald);
  transition: gap var(--dur-fast) ease;
}

.service-link:hover {
  gap: 0.25rem;
}

.urgent-link {
  color: #dc2626;
}

/* ===== ABOUT ===== */
.about-section {
  background: linear-gradient(135deg, var(--green-50) 0%, var(--cream) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
  aspect-ratio: 4/3;
  width: 100%;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: linear-gradient(135deg, var(--forest), var(--emerald));
  color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-badge-num {
  display: block;
  font-size: var(--fs-3xl);
  font-weight: 800;
  line-height: 1;
}

.about-badge-label {
  display: block;
  font-size: var(--fs-xs);
  opacity: 0.85;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.about-text {
  padding-left: clamp(0rem, 2vw, 2rem);
}

.about-text h2 {
  margin-bottom: 1.25rem;
}

.about-text>p {
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: var(--lh-base);
}

.about-list {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: var(--fs-base);
  color: var(--text-700);
  font-weight: 500;
}

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--green-100);
  color: var(--forest);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===== WHY US ===== */
.why-section {
  background: var(--forest);
}

.why-section .section-header {
  color: var(--white);
}

.why-section .section-header h2 {
  color: var(--white);
}

.why-section .section-header h2 em {
  color: var(--sage);
}

.why-section .eyebrow {
  color: var(--sage);
}

.why-section .eyebrow::before {
  background: var(--sage);
}

.why-section .section-sub {
  color: rgba(255, 255, 255, 0.7);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 2rem;
  backdrop-filter: blur(8px);
  transition: background var(--dur-base) ease, transform var(--dur-base) ease;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.why-num {
  font-size: var(--fs-4xl);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
  margin-bottom: 1rem;
  font-style: italic;
}

.why-card h3 {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: var(--fs-lg);
}

.why-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--fs-sm);
  line-height: var(--lh-base);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--parchment);
}

.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.stars {
  color: var(--gold);
  font-size: var(--fs-xl);
  letter-spacing: 2px;
}

.rating-text {
  font-size: var(--fs-sm);
  color: var(--muted);
  font-weight: 600;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: box-shadow var(--dur-base) ease, transform var(--dur-base) ease;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 4rem;
  color: var(--green-100);
  font-family: var(--font-serif);
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--gold);
  font-size: var(--fs-base);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.testimonial-card>p {
  color: var(--text-700);
  line-height: var(--lh-base);
  margin-bottom: 1.5rem;
  font-size: var(--fs-base);
}

.testimonial-card footer {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-card footer strong {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--forest);
}

.testimonial-card footer span {
  font-size: var(--fs-xs);
  color: var(--muted);
}

.testimonials-cta {
  text-align: center;
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--white);
}

.faq-inner {
  max-width: 860px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--dur-fast) ease;
}

.faq-item[open] {
  border-color: var(--emerald);
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.08);
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--text-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  user-select: none;
  transition: background var(--dur-fast) ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--emerald);
  font-weight: 300;
  transition: transform var(--dur-base) var(--ease-out);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  background: var(--green-50);
}

.faq-body {
  padding: 0 1.5rem 1.25rem;
  border-top: 1px solid var(--border);
}

.faq-body p {
  color: var(--muted);
  line-height: var(--lh-base);
  padding-top: 1rem;
}

/* ===== CONTACT ===== */
.contact-section {
  background: linear-gradient(135deg, var(--green-50) 0%, var(--cream) 60%, var(--parchment) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-info>p {
  color: var(--muted);
  font-size: var(--fs-lg);
  margin-bottom: 2.5rem;
  line-height: var(--lh-base);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail-icon {
  font-size: 1.35rem;
  width: 3rem;
  height: 3rem;
  background: var(--green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-item>div {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.contact-detail-item strong {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--forest);
}

.contact-detail-item span,
.contact-detail-item a {
  font-size: var(--fs-sm);
  color: var(--muted);
}

.contact-detail-item a:hover {
  color: var(--forest);
}

/* Contact form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}

.contact-form h3 {
  font-size: var(--fs-xl);
  color: var(--forest);
  margin-bottom: 1.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

form label {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-700);
  margin-bottom: 1rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-2);
  background: var(--cream);
  color: var(--text-900);
  font-size: var(--fs-base);
  line-height: 1.5;
  transition: border-color var(--dur-fast) ease, box-shadow var(--dur-fast) ease, background var(--dur-fast) ease;
  appearance: none;
  -webkit-appearance: none;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234a7057' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-300);
  font-weight: 400;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--emerald);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.12);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.form-disclaimer {
  margin-top: 0.875rem;
  font-size: var(--fs-xs);
  color: var(--muted);
  text-align: center;
}

/* ===== GALLERY ===== */
.gallery-section {
  background: var(--parchment);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
  border-radius: var(--radius);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 71, 49, 0.6), transparent);
  opacity: 0;
  transition: opacity var(--dur-base) ease;
  border-radius: var(--radius);
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* ===== MAP ===== */
.map-section {
  height: 420px;
  position: relative;
  overflow: hidden;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--green-50), var(--green-100));
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-loading {
  text-align: center;
  color: var(--muted);
}

.map-loading span {
  font-size: 3rem;
  display: block;
  margin-bottom: 0.5rem;
}

.map-placeholder iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* ===== FOOTER QUICK CONTACT ===== */
.footer-contact-quick {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.footer-phone,
.footer-maps {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--sage);
  transition: color var(--dur-fast) ease;
}

.footer-phone:hover,
.footer-maps:hover {
  color: var(--white);
}

/* ===== SOCIAL LINKS ===== */
.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-50);
  color: var(--forest);
  border: 1px solid var(--border);
  transition: all var(--dur-fast) ease;
}

.social-link:hover {
  background: var(--forest);
  color: var(--white);
  transform: translateY(-2px);
  border-color: var(--forest);
}

/* ===== WHATSAPP FAB ===== */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 300;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: #25d366;
  color: #fff;
  padding: 0.875rem 1.25rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: var(--fs-sm);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
  text-decoration: none;
  transition: all var(--dur-base) var(--ease-out);
  animation: fabEntrance 0.6s var(--ease-out) 1s both;
}

.whatsapp-fab:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 48px rgba(37, 211, 102, 0.6);
  color: #fff;
}

@keyframes fabEntrance {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--forest);
  color: rgba(255, 255, 255, 0.8);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding-block: clamp(3rem, 6vw, 5rem);
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand .logo-text {
  color: var(--white);
}

.footer-brand .logo-text em {
  color: rgba(255, 255, 255, 0.6);
}

.footer-brand>p {
  font-size: var(--fs-sm);
  line-height: var(--lh-base);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
}

.footer-brand .social-link {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.15);
}

.footer-brand .social-link:hover {
  background: var(--emerald);
  color: var(--white);
  border-color: var(--emerald);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-links nav h4,
.footer-contact h4 {
  color: var(--white);
  font-size: var(--fs-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links nav a {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--dur-fast) ease;
}

.footer-links nav a:hover {
  color: var(--white);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact a {
  color: var(--sage);
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 1.25rem;
}

.footer-bottom .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--fs-sm);
  transition: color var(--dur-fast) ease;
}

.footer-legal a:hover {
  color: var(--white);
}

/* ===== FOCUS STYLES (Accessibility) ===== */
:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--emerald);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ===== MOBILE NAV ===== */
@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(340px, 80vw);
    flex-direction: column;
    background: var(--white);
    padding: 5rem 2rem 2rem;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform var(--dur-slow) var(--ease-out);
    z-index: 190;
    gap: 0.5rem;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav a {
    font-size: var(--fs-lg);
    padding: 0.875rem 1rem;
    border-radius: var(--radius-sm);
    border-bottom: 1px solid var(--border);
  }

  .mobile-menu-toggle {
    display: flex;
    z-index: 210;
    position: relative;
  }

  .nav-cta {
    display: none;
  }

  .mobile-menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
  }

  .hero-pill-1 {
    left: 0.5rem;
    bottom: 0.5rem;
  }

  .hero-pill-2 {
    right: 0.5rem;
    top: 0.5rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-badge {
    right: 1rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .trust-bar-inner {
    justify-content: center;
    gap: 0.75rem 1.5rem;
  }
}

@media (max-width: 640px) {
  .hero-stats {
    gap: 1rem;
    padding: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-pill {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-fab span {
    display: none;
  }

  .whatsapp-fab {
    border-radius: 50%;
    width: 58px;
    height: 58px;
    justify-content: center;
    padding: 0;
  }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ===== PRINT ===== */
@media print {

  .site-header,
  .hero-media,
  .whatsapp-fab,
  .map-section,
  .btn,
  .main-nav,
  .site-footer,
  .hero-pill,
  .trust-bar {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }

  .wrap {
    padding: 0;
  }

  h1,
  h2,
  h3 {
    color: #000;
  }
}