/*
Theme Name: Peachtree Pups Retreat
Theme URI: https://peachtreepupsretreat.com
Author: Peachtree Pups Retreat
Description: A warm, modern theme for Peachtree Pups Retreat - dog walking and boarding in Peachtree City, GA
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: peachtree-pups
*/

/* ===========================
   CSS VARIABLES
=========================== */
:root {
  --cream: #FAF7F2;
  --cream-dark: #F2EDE4;
  --sage: #7A9E7E;
  --sage-dark: #5E8262;
  --sage-light: #A8C5AB;
  --peach: #E8A898;
  --peach-dark: #D4887A;
  --peach-light: #F5D0C8;
  --brown: #6B4C3B;
  --brown-light: #9B7560;
  --text: #3A2E28;
  --text-light: #7A6A5E;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(107, 76, 59, 0.10);
  --shadow-lg: 0 8px 40px rgba(107, 76, 59, 0.15);
  --radius: 16px;
  --radius-sm: 8px;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Nunito', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.25; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-dark);
  background: rgba(122, 158, 126, 0.12);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--brown);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 560px;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--sage);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(122, 158, 126, 0.4);
}

.btn-primary:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(122, 158, 126, 0.45);
}

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

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

.btn-peach {
  background: var(--peach);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(232, 168, 152, 0.4);
}

.btn-peach:hover {
  background: var(--peach-dark);
  transform: translateY(-2px);
}

/* ===========================
   HEADER / NAV
=========================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all 0.3s ease;
  background: rgba(250, 247, 242, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(107, 76, 59, 0.07);
}

.site-header.scrolled {
  background: rgba(250, 247, 242, 0.98);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(107, 76, 59, 0.11);
  padding: 16px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-logo .logo-icon {
  width: 54px;
  height: 54px;
  background: var(--sage);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  flex-shrink: 0;
}

.site-logo .logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brown);
  line-height: 1.2;
}

.site-logo .logo-text span {
  display: block;
  font-size: 0.75rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--sage);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.nav-links a:hover { color: var(--sage-dark); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { margin-left: 16px; font-size: 1rem !important; padding: 13px 28px !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  transition: all 0.3s;
}

/* ===========================
   MOBILE NAV
=========================== */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--brown);
  font-weight: 700;
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 2rem;
  cursor: pointer;
  color: var(--brown);
  background: none;
  border: none;
}

/* ===========================
   HERO
=========================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-bg-circle-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(122, 158, 126, 0.15) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.hero-bg-circle-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 168, 152, 0.15) 0%, transparent 70%);
  bottom: -50px;
  left: -80px;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(122, 158, 126, 0.1);
  border: 1px solid rgba(122, 158, 126, 0.3);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--sage-dark);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.hero-badge::before { content: '📍'; }

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  color: var(--brown);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero h1 em {
  font-style: italic;
  color: var(--sage-dark);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-light);
}

.trust-chip::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: var(--sage);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 900;
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
}

.hero-image-wrap {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--peach-light) 100%);
  box-shadow: var(--shadow-lg);
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  gap: 16px;
}

.hero-image-placeholder p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 600;
}

.hero-stat-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-stat-card.card-1 {
  bottom: 32px;
  left: -24px;
}

.hero-stat-card.card-2 {
  top: 32px;
  right: -24px;
}

.stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.stat-icon.green { background: rgba(122, 158, 126, 0.15); }
.stat-icon.peach { background: rgba(232, 168, 152, 0.15); }

.stat-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--brown);
}

.stat-text span {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 600;
}

/* ===========================
   BENEFITS BAR
=========================== */
.benefits-bar {
  padding: 48px 0;
  background: var(--white);
  border-top: 1px solid rgba(107, 76, 59, 0.06);
  border-bottom: 1px solid rgba(107, 76, 59, 0.06);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.benefit-text strong {
  display: block;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 2px;
}

.benefit-text span {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ===========================
   SERVICES SECTION
=========================== */
.services-section {
  padding: 96px 0;
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-header .section-sub {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 64px;
}

.service-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card-header {
  padding: 32px 32px 24px;
  border-bottom: 1px solid rgba(107, 76, 59, 0.06);
}

.service-emoji {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.service-card-header h3 {
  font-size: 1.6rem;
  color: var(--brown);
  margin-bottom: 8px;
}

.service-card-header p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.service-card-body {
  padding: 24px 32px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

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

.service-features li::before {
  content: '🐾';
  font-size: 0.75rem;
}

.pricing-table {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.pricing-table h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(107, 76, 59, 0.06);
}

.price-row:last-child { border-bottom: none; }

.price-row span { font-size: 0.9rem; color: var(--text); font-weight: 600; }

.price-row strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--sage-dark);
}

.service-card-footer {
  padding: 0 32px 32px;
}

/* ===========================
   BOOKING SECTION
=========================== */
.booking-section {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  position: relative;
  overflow: hidden;
}

.booking-section::before {
  content: '🐾';
  position: absolute;
  font-size: 20rem;
  opacity: 0.04;
  top: -40px;
  right: -40px;
  transform: rotate(15deg);
}

.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}

.booking-info .section-tag {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}

.booking-info .section-title { color: var(--white); }
.booking-info .section-sub { color: rgba(255,255,255,0.8); }

.booking-perks {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  font-weight: 600;
}

.perk-item span:first-child {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.booking-form-wrap {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.booking-form-wrap h3 {
  font-size: 1.5rem;
  color: var(--brown);
  margin-bottom: 24px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid rgba(107, 76, 59, 0.1);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s;
  outline: none;
}

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

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

.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-light);
  cursor: pointer;
  grid-column: 1 / -1;
}

.form-check input { width: auto; }

.form-note {
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 12px;
}

/* ===========================
   MEET & GREET
=========================== */
.meetgreet-section {
  padding: 96px 0;
  background: var(--cream-dark);
}

.meetgreet-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.meetgreet-visual {
  position: relative;
}

.meetgreet-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.meetgreet-card .big-emoji {
  font-size: 5rem;
  margin-bottom: 16px;
  display: block;
}

.meetgreet-card h3 {
  font-size: 1.5rem;
  color: var(--brown);
  margin-bottom: 8px;
}

.meetgreet-card p {
  color: var(--text-light);
  margin-bottom: 24px;
}

.meetgreet-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

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

.step-num {
  width: 36px;
  height: 36px;
  background: var(--peach-light);
  color: var(--peach-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.step-text strong {
  display: block;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 2px;
}

.step-text span { font-size: 0.88rem; color: var(--text-light); }

/* ===========================
   GALLERY
=========================== */
.gallery-section {
  padding: 96px 0;
}

.gallery-header {
  text-align: center;
  margin-bottom: 48px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  position: relative;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--peach-light) 100%);
  transition: transform 0.3s;
}

.gallery-item:hover { transform: scale(1.02); }

.gallery-item:nth-child(1) { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-item:nth-child(6) { grid-column: span 2; aspect-ratio: 2/1; }

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 3rem;
}

.gallery-placeholder p {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 600;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(58, 46, 40, 0);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  transition: background 0.3s;
}

.gallery-item:hover .gallery-overlay {
  background: rgba(58, 46, 40, 0.4);
}

.gallery-caption {
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials-section {
  padding: 96px 0;
  background: var(--white);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--sage-light);
  line-height: 1;
  pointer-events: none;
}

.stars {
  color: #F5B731;
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-light), var(--peach-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--brown);
}

.author-info span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ===========================
   FAQ
=========================== */
.faq-section {
  padding: 96px 0;
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--brown);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--sage-dark); }

.faq-arrow {
  width: 28px;
  height: 28px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ===========================
   CONTACT
=========================== */
.contact-section {
  padding: 96px 0;
  background: var(--cream-dark);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

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

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

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: var(--shadow);
}

.contact-info-item strong {
  display: block;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 2px;
}

.contact-info-item span {
  font-size: 0.9rem;
  color: var(--text-light);
}

.contact-form-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-form-card h3 {
  font-size: 1.4rem;
  color: var(--brown);
  margin-bottom: 24px;
}

/* ===========================
   TRUST BAR
=========================== */
.trust-section {
  padding: 48px 0;
  background: var(--sage);
}

.trust-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
}

.trust-item span:first-child { font-size: 1.3rem; }

/* ===========================
   FOOTER
=========================== */
.site-footer {
  background: var(--brown);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 32px;
}

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

.footer-brand .logo-text {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 4px;
}

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

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 16px;
  color: rgba(255,255,255,0.6);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--white); }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background 0.2s;
}

.social-link:hover { background: var(--sage); }

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

.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); }

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

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

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero { padding-top: 80px; min-height: auto; padding-bottom: 48px; }

  .benefits-grid { grid-template-columns: 1fr; gap: 20px; }

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

  .booking-inner { grid-template-columns: 1fr; gap: 40px; }

  .meetgreet-inner { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) { grid-column: span 2; }

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

  .faq-inner { grid-template-columns: 1fr; gap: 40px; }

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

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

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

@media (max-width: 480px) {
  .trust-bar { gap: 20px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) { grid-column: span 1; aspect-ratio: 1; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
