/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --sage: #7C9A82;
  --sage-light: #a3bfa8;
  --sage-dark: #5f7d65;
  --cream: #F5F0E8;
  --navy: #1B2A4A;
  --navy-light: #2a3f6b;
  --terracotta: #C4704B;
  --terracotta-dark: #a85c3a;
  --white: #FEFEFE;
  --gray-100: #f7f7f7;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --red: #dc2626;
  --red-light: #fef2f2;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-xl: 0 12px 36px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  color: var(--navy);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--sage-dark);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--terracotta);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-sans);
  border: none;
  background: none;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  line-height: 1.3;
  color: var(--navy);
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* Focus visible */
:focus-visible {
  outline: 3px solid var(--sage);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ===== UTILITY CLASSES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: var(--gray-500);
  max-width: 640px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--sage);
  color: var(--white);
}

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

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-terracotta {
  background: var(--terracotta);
  color: var(--white);
}

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

.btn-white {
  background: var(--white);
  color: var(--navy);
}

.btn-white:hover {
  background: var(--cream);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

/* ===== PAW PRINT MOTIF (CSS only) ===== */
.paw-print {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
}

.paw-print::before {
  content: '🐾';
  font-size: 1.2rem;
}

/* ===== EMERGENCY BANNER ===== */
.emergency-banner {
  background: var(--terracotta);
  color: var(--white);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}

.emergency-banner a {
  color: var(--white);
  text-decoration: underline;
}

.emergency-banner a:hover {
  color: var(--cream);
}

/* ===== NAVIGATION ===== */
.nav-wrapper {
  position: sticky;
  top: 36px;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
}

.nav-logo span {
  color: var(--sage);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 4px;
  text-decoration: none;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sage);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--sage-dark);
  font-weight: 700;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1003;
}

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

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

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

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

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--white);
  box-shadow: var(--shadow-xl);
  z-index: 1002;
  transition: right 0.4s ease;
  padding: 5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer a {
  display: block;
  padding: 1rem 0;
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--gray-200);
  text-decoration: none;
}

.mobile-drawer a.active {
  color: var(--sage-dark);
  font-weight: 700;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
  padding: 4rem 0;
  max-height: 40vh;
  display: flex;
  align-items: center;
  text-align: center;
}

.page-hero .container {
  width: 100%;
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero p {
  color: var(--gray-600);
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto;
}

/* ===== HOME HERO ===== */
.home-hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 50%);
  padding: 4rem 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.home-hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.25rem;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* Trust Bar */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 1.5rem 0;
}

.trust-bar .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}

.trust-icon {
  width: 40px;
  height: 40px;
  background: var(--sage);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ===== WELCOME SECTION ===== */
.welcome {
  background: var(--white);
}

.welcome .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.welcome-text h2 {
  margin-bottom: 1.5rem;
}

.welcome-text blockquote {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.8;
  font-style: italic;
  border-left: 4px solid var(--sage);
  padding-left: 1.5rem;
}

.welcome-text .quote-author {
  margin-top: 1rem;
  font-style: normal;
  font-weight: 600;
  color: var(--navy);
}

.welcome-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ===== SERVICES OVERVIEW (Home) ===== */
.services-overview {
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
}

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

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--sage);
  color: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--gray-600);
  margin-bottom: 1.25rem;
}

.service-card .learn-more {
  font-weight: 600;
  color: var(--sage-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.service-card .learn-more:hover {
  color: var(--terracotta);
  gap: 0.5rem;
}

/* ===== BY THE NUMBERS ===== */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  font-family: var(--font-serif);
}

.stat-item p {
  color: var(--sage-light);
  font-size: 0.95rem;
}

/* ===== TESTIMONIALS CAROUSEL ===== */
.testimonials {
  background: var(--cream);
}

.carousel-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  padding: 0 1rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.testimonial-card .quote {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-card .quote::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--sage);
  opacity: 0.3;
  position: absolute;
  top: -1.5rem;
  left: -0.5rem;
  line-height: 1;
}

.testimonial-card .author {
  font-weight: 600;
  color: var(--navy);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--sage);
  color: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--transition);
}

.carousel-btn:hover {
  background: var(--sage);
  color: var(--white);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
  border: none;
  transition: all var(--transition);
  cursor: pointer;
}

.carousel-dot.active {
  background: var(--sage);
  transform: scale(1.2);
}

/* ===== INSTAGRAM TEASER ===== */
.instagram {
  background: var(--white);
}

.instagram-grid {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.instagram-grid::-webkit-scrollbar {
  height: 6px;
}

.instagram-grid::-webkit-scrollbar-thumb {
  background: var(--sage-light);
  border-radius: 3px;
}

.instagram-item {
  flex: 0 0 200px;
  height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  scroll-snap-align: start;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.instagram-item:hover img {
  transform: scale(1.08);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 4rem 0;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

/* ===== SERVICES PAGE: TABS ===== */
.tabs-container {
  background: var(--white);
}

.tab-bar {
  display: flex;
  border-bottom: 2px solid var(--gray-200);
  margin-bottom: 2.5rem;
  overflow-x: auto;
}

.tab-btn {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-500);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: all var(--transition);
  cursor: pointer;
}

.tab-btn:hover {
  color: var(--navy);
}

.tab-btn.active {
  color: var(--navy);
  font-weight: 700;
  border-bottom-color: var(--sage);
}

.tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.tab-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.tab-content ul li {
  margin-bottom: 0.75rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.callout-box {
  background: var(--cream);
  border-left: 4px solid var(--sage);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem 2rem;
  margin-top: 2rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.callout-box.emergency {
  background: #fef2f2;
  border-left-color: var(--terracotta);
}

/* Mobile accordion */
.accordion-header {
  display: none;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: var(--cream);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  transition: all var(--transition);
  justify-content: space-between;
  align-items: center;
}

.accordion-header .accordion-icon {
  transition: transform var(--transition);
  font-size: 1.2rem;
}

.accordion-header.active {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}

.accordion-header.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  display: none;
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  margin-bottom: 1rem;
  margin-top: -0.5rem;
}

.accordion-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* ===== PRICING TABLE ===== */
.pricing-section {
  background: var(--cream);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.pricing-table th {
  background: var(--navy);
  color: var(--white);
  padding: 1rem 1.5rem;
  text-align: left;
  font-family: var(--font-sans);
  font-weight: 600;
}

.pricing-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--gray-200);
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table tr:hover td {
  background: var(--cream);
}

.pricing-note {
  text-align: center;
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-top: 1.5rem;
  font-style: italic;
}

/* ===== TEAM PAGE ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.team-card:hover {
  box-shadow: var(--shadow-md);
}

.team-card-img {
  height: 280px;
  overflow: hidden;
}

.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-card:hover .team-card-img img {
  transform: scale(1.03);
}

.team-card-body {
  padding: 2rem;
}

.team-card-body h3 {
  margin-bottom: 0.25rem;
}

.team-card-body .title {
  color: var(--sage-dark);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.team-card-body .credentials {
  color: var(--gray-500);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.team-card-body .bio {
  color: var(--gray-600);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.team-card-body .fun-fact {
  background: var(--cream);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--terracotta);
  font-weight: 500;
}

.team-card-body .fun-fact strong {
  color: var(--terracotta-dark);
}

.team-photo {
  margin-top: 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.team-photo img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.team-photo figcaption {
  text-align: center;
  padding: 1rem;
  color: var(--gray-500);
  font-style: italic;
  font-size: 0.95rem;
}

/* ===== RESOURCES PAGE ===== */
.seasonal-alert {
  background: var(--terracotta);
  color: var(--white);
  padding: 1rem 1.5rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  position: sticky;
  top: 106px;
  z-index: 100;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.resource-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all var(--transition);
}

.resource-card:hover {
  box-shadow: var(--shadow-md);
}

.resource-card-header {
  padding: 2rem;
}

.resource-tag {
  display: inline-block;
  background: var(--sage);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.resource-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.resource-card p {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.6;
}

.resource-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  margin-bottom: 1rem;
}

.read-time {
  color: var(--gray-400);
  font-size: 0.85rem;
}

.expand-btn {
  color: var(--sage-dark);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem 0;
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.expand-btn:hover {
  color: var(--terracotta);
}

.expand-btn .expand-icon {
  transition: transform var(--transition);
  display: inline-block;
}

.expand-btn.active .expand-icon {
  transform: rotate(180deg);
}

.resource-expanded {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  padding: 0 2rem;
}

.resource-expanded.active {
  max-height: 1000px;
  padding: 1rem 2rem 2rem;
}

.resource-expanded ul {
  list-style: disc;
  padding-left: 1.25rem;
}

.resource-expanded ul li {
  margin-bottom: 0.5rem;
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Downloads section */
.downloads-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.download-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  transition: all var(--transition);
}

.download-card:hover {
  border-color: var(--sage);
  background: var(--cream);
  color: var(--navy);
  transform: translateY(-2px);
}

.download-icon {
  font-size: 1.5rem;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.contact-card h3 {
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

.contact-card a {
  color: var(--sage-dark);
  font-weight: 600;
}

.map-placeholder {
  width: 100%;
  height: 200px;
  background: var(--cream);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.hours-table {
  width: 100%;
  font-size: 0.9rem;
}

.hours-table td {
  padding: 0.4rem 0;
  color: var(--gray-600);
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--navy);
}

.emergency-phone {
  color: var(--terracotta) !important;
  font-weight: 700 !important;
}

/* ===== BOOKING FORM ===== */
.booking-section {
  background: var(--cream);
}

.booking-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.booking-form-wrapper h2 {
  margin-bottom: 0.5rem;
}

.form-note {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 0;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.form-group label .required {
  color: var(--terracotta);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--navy);
  transition: border-color var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  outline: none;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--red);
  background: var(--red-light);
}

.error-message {
  color: var(--red);
  font-size: 0.8rem;
  margin-top: 0.25rem;
  display: none;
}

.form-group input.error ~ .error-message,
.form-group select.error ~ .error-message,
.form-group textarea.error ~ .error-message {
  display: block;
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

/* Radio & Checkbox groups */
.radio-group,
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.radio-option,
.checkbox-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
}

.radio-option input,
.checkbox-option input {
  accent-color: var(--sage);
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* File upload zone */
.upload-zone {
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  color: var(--gray-500);
  transition: all var(--transition);
  cursor: pointer;
}

.upload-zone:hover,
.upload-zone.dragover {
  border-color: var(--sage);
  background: rgba(124, 154, 130, 0.05);
}

.upload-zone .upload-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.upload-zone p {
  font-size: 0.9rem;
}

.upload-zone .browse-link {
  color: var(--sage-dark);
  font-weight: 600;
  text-decoration: underline;
}

/* Form success */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}

.form-success.show {
  display: block;
  animation: fadeIn 0.5s ease;
}

.form-success .success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.form-success h3 {
  margin-bottom: 1rem;
  color: var(--sage-dark);
}

.form-success p {
  color: var(--gray-600);
}

/* FAQ Quick Links */
.faq-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.faq-card {
  display: block;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  text-decoration: none;
  color: var(--navy);
  transition: all var(--transition);
  text-align: center;
  font-weight: 600;
}

.faq-card:hover {
  border-color: var(--sage);
  color: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 3rem;
}

.footer h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-brand .footer-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-brand .footer-logo span {
  color: var(--sage-light);
}

.footer-brand .tagline {
  color: var(--sage-light);
  font-style: italic;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,0.7);
  padding: 0.35rem 0;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--sage-light);
}

.footer-contact p,
.footer-contact a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  display: block;
  margin-bottom: 0.35rem;
}

.footer-contact a:hover {
  color: var(--sage-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 3rem;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  
  .home-hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content p {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    max-width: 600px;
    margin: 0 auto;
  }

  .welcome .container {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

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

  .faq-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .stat-item h3 {
    font-size: 2.25rem;
  }

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

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

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  /* Services tabs -> accordion on mobile */
  .tab-bar {
    display: none;
  }

  .accordion-header {
    display: flex;
  }

  .tab-content {
    display: none !important;
  }

  .booking-form-wrapper {
    padding: 1.5rem;
  }

  .page-hero {
    max-height: none;
    padding: 3rem 0;
  }

  .seasonal-alert {
    top: 92px;
  }
}

@media (max-width: 640px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-image img {
    height: 300px;
  }

  .trust-bar .container {
    flex-direction: column;
    gap: 1rem;
  }

  .carousel-slide {
    padding: 0;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .instagram-item {
    flex: 0 0 160px;
    height: 160px;
  }

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

  .radio-group,
  .checkbox-group {
    flex-direction: column;
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  .emergency-banner,
  .nav-wrapper,
  .hamburger,
  .mobile-drawer,
  .mobile-overlay,
  .booking-form-wrapper form,
  .upload-zone,
  .faq-links,
  .cta-banner,
  .instagram {
    display: none !important;
  }

  .contact-card {
    border: 1px solid #ccc;
    box-shadow: none;
    break-inside: avoid;
  }

  .form-success {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  a {
    color: #000;
    text-decoration: underline;
  }
}
