/*
Theme Name: The Green Cat
Theme URI: https://thegreencat.co.uk
Author: The Green Cat Driving School
Author URI: https://thegreencat.co.uk
Description: A warm, friendly one-page theme for The Green Cat Driving School. Features sections for hero, about, pricing, reviews, team, birthday packages, green pledge, and contact.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: greencat
Tags: one-page, business, custom-colors, custom-logo, featured-images, full-width-template
*/

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --sage:       #5a8a6a;
  --sage-mid:   #7aab8a;
  --sage-light: #b2d4bc;
  --sage-pale:  #e8f2eb;
  --sage-super: #f3f9f5;
  --mint:       #d4ede0;
  --warm-white: #fdfbf8;
  --warm-off:   #f7f3ee;
  --bark:       #3d3228;
  --bark-mid:   #6b5c50;
  --bark-light: #a09085;
  --yellow:     #f5e6a3;
  --yellow-mid: #e8d070;
}

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

body {
  font-family: 'Nunito', sans-serif;
  background: var(--warm-white);
  color: var(--bark);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { transition: all 0.2s; }

/* ===== HEADER / NAV ===== */
header#topnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253, 251, 248, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(90,138,106,0.12);
}

/* WP admin bar: prevent overlap with fixed header */
body.admin-bar header#topnav {
  top: var(--wp-admin--admin-bar--height, 32px);
}

@media screen and (max-width: 782px) {
  body.admin-bar header#topnav {
    top: var(--wp-admin--admin-bar--height, 46px);
  }
}

.header-logo-bar {
  padding: 0.75rem 4%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(90,138,106,0.08);
  gap: 1rem;
}

.header-logo-left  { display: flex; justify-content: flex-start; align-items: center; }
.header-logo-right { display: flex; justify-content: flex-end;   align-items: center; }

.nav-logo { display: flex; align-items: center; justify-content: center; text-decoration: none; }
.nav-logo img,
.nav-logo-img { height: 56px; width: auto; display: block; }

.header-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.header-btn-outline {
  border: 2px solid var(--sage-light);
  color: var(--sage);
  background: transparent;
}
.header-btn-outline:hover { border-color: var(--sage); background: var(--sage-pale); color: var(--sage); }

.header-btn-solid {
  background: var(--sage);
  color: #fff;
  border: 2px solid var(--sage);
  box-shadow: 0 3px 12px rgba(90,138,106,0.25);
}
.header-btn-solid:hover { background: #4f7d5e; border-color: #4f7d5e; transform: translateY(-1px); color: #fff; }

nav { width: 100%; padding: 0 6%; }

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  list-style: none;
  width: 100%;
}

.nav-links li { flex: 1; display: flex; justify-content: center; }

.nav-links a {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--bark-mid);
  padding: 0.75rem 1rem;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--sage); background: var(--sage-pale); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.22s;
  cursor: pointer;
  border: none;
}

.btn-green {
  background: var(--sage);
  color: #fff;
  box-shadow: 0 4px 18px rgba(90,138,106,0.3);
}
.btn-green:hover { background: #4f7d5e; transform: translateY(-2px); color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--sage);
  border: 2px solid var(--sage-light);
}
.btn-outline:hover { border-color: var(--sage); background: var(--sage-pale); color: var(--sage); }

/* ===== SECTIONS ===== */
.section { padding: 5.5rem 6%; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  background: var(--sage-pale);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}

.section-title {
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  color: var(--bark);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--sage); }

.section-intro {
  font-size: 1rem;
  color: var(--bark-mid);
  line-height: 1.75;
  max-width: 560px;
  font-weight: 400;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--sage-super);
  display: flex;
  align-items: center;
  padding: 11rem 6% 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, #c8e6d0 0%, transparent 70%);
  top: -150px; right: -100px;
  opacity: 0.6;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, #f5e6a3 0%, transparent 70%);
  bottom: -100px; left: 10%;
  opacity: 0.4;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--mint);
  color: var(--sage);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.7s ease both;
}

.hero h1 {
  font-family: 'Lora', serif;
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--bark);
  margin-bottom: 1.4rem;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero h1 em { font-style: italic; color: var(--sage); }

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--bark-mid);
  max-width: 480px;
  margin-bottom: 2.5rem;
  font-weight: 400;
  animation: fadeUp 0.7s 0.15s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-phone {
  margin-top: 2.2rem;
  font-size: 0.875rem;
  color: var(--bark-light);
  animation: fadeUp 0.7s 0.25s ease both;
}
.hero-phone a { color: var(--sage); font-weight: 800; text-decoration: none; font-size: 1.1rem; }

/* Hero cards */
.hero-card-cluster { position: relative; height: 480px; animation: fadeUp 0.8s 0.3s ease both; }

.hcard {
  position: absolute;
  background: var(--warm-white);
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(61,50,40,0.08);
  padding: 1.5rem;
}

.hcard-main { top: 0; left: 0; width: 260px; background: var(--sage); color: white; }
.hcard-main .hcard-emoji { font-size: 2.5rem; margin-bottom: 0.8rem; display: block; }
.hcard-main h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 0.4rem; }
.hcard-main p { font-size: 0.825rem; opacity: 0.85; line-height: 1.5; }

.hcard-stars { top: 10px; right: 0; width: 210px; text-align: center; }
.hcard-stars .big-stars { font-size: 1.3rem; color: #f5a623; letter-spacing: 2px; }
.hcard-stars .star-count { font-size: 0.8rem; color: var(--bark-light); margin-top: 0.3rem; font-weight: 600; }
.hcard-stars .star-label { font-weight: 800; color: var(--bark); font-size: 0.95rem; margin-top: 0.2rem; }

.hcard-eco { bottom: 20px; left: 20px; width: 240px; background: var(--mint); }
.hcard-eco p { font-size: 0.8rem; font-weight: 700; color: var(--sage); }
.hcard-eco .eco-icon { font-size: 1.6rem; margin-bottom: 0.5rem; display: block; }

.hcard-area { bottom: 30px; right: 0; width: 180px; }
.hcard-area p { font-size: 0.75rem; color: var(--bark-light); font-weight: 600; line-height: 1.6; }
.hcard-area .area-title { font-weight: 800; color: var(--bark); font-size: 0.9rem; margin-bottom: 0.4rem; }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--sage);
  padding: 1.4rem 6%;
  overflow: hidden;
}

.trust-items {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0 2.5rem;
  border-right: 1px solid rgba(255,255,255,0.2);
}

/* ===== FEATURES / WHY ===== */
.features { background: var(--warm-white); }

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

.why-card {
  background: var(--warm-white);
  border: 1.5px solid #eae5de;
  border-radius: 22px;
  padding: 2.2rem 1.8rem;
  transition: all 0.25s;
}
.why-card:hover { border-color: var(--sage-light); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(90,138,106,0.1); }

.why-icon { width: 56px; height: 56px; border-radius: 16px; background: var(--sage-pale); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 1.3rem; }

.why-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--bark); margin-bottom: 0.6rem; }
.why-card p { font-size: 0.875rem; line-height: 1.7; color: var(--bark-mid); }

/* ===== AREAS ===== */
.areas { background: var(--warm-white); padding: 3rem 6%; text-align: center; border-top: 1px solid #eae5de; }
.areas p { font-size: 0.875rem; color: var(--bark-light); margin-bottom: 1rem; }
.area-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; }
.area-tag { background: var(--sage-pale); color: var(--sage-mid); padding: 0.4rem 1rem; border-radius: 100px; font-size: 0.825rem; font-weight: 500; }

/* ===== PRICES ===== */
.prices-section { background: var(--warm-off); }

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

.price-card {
  background: var(--warm-white);
  border-radius: 22px;
  padding: 2.5rem 2rem;
  border: 1.5px solid #eae5de;
  position: relative;
  transition: all 0.25s;
}
.price-card:hover { border-color: var(--sage-light); box-shadow: 0 12px 40px rgba(90,138,106,0.1); }
.price-card.highlight { background: var(--sage); border-color: var(--sage); color: white; }

.best-badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--yellow-mid);
  color: var(--bark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 50px;
}

.price-name { font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--sage); margin-bottom: 0.8rem; }
.price-card.highlight .price-name { color: rgba(255,255,255,0.8); }

.price-amount { font-family: 'Lora', serif; font-size: 3.2rem; font-weight: 500; color: var(--bark); line-height: 1; }
.price-card.highlight .price-amount { color: white; }
.price-amount sup { font-size: 1.2rem; vertical-align: top; margin-top: 0.6rem; }

.price-unit { font-size: 0.825rem; color: var(--bark-light); margin-top: 0.4rem; margin-bottom: 1.8rem; font-weight: 600; }
.price-card.highlight .price-unit { color: rgba(255,255,255,0.65); }

.price-list { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 2rem; }
.price-list li { font-size: 0.875rem; color: var(--bark-mid); display: flex; gap: 0.6rem; align-items: flex-start; }
.price-card.highlight .price-list li { color: rgba(255,255,255,0.85); }
.price-list li::before { content: '✓'; color: var(--sage); font-weight: 900; font-size: 0.8rem; margin-top: 0.1rem; flex-shrink: 0; }
.price-card.highlight .price-list li::before { color: var(--yellow); }

.price-cta { display: block; text-align: center; padding: 0.8rem; border-radius: 50px; font-weight: 700; font-size: 0.9rem; text-decoration: none; transition: all 0.2s; }
.price-cta-outline { border: 2px solid var(--sage-light); color: var(--sage); }
.price-cta-outline:hover { border-color: var(--sage); background: var(--sage-pale); color: var(--sage); }
.price-cta-solid { background: white; color: var(--sage); }
.price-cta-solid:hover { background: var(--sage-super); color: var(--sage); }

/* ===== REVIEWS ===== */
.reviews-section { background: var(--sage-super); }

.reviews-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 1.5rem; }

.rating-summary { display: flex; align-items: center; gap: 1rem; background: white; padding: 1.2rem 1.8rem; border-radius: 16px; border: 1.5px solid #eae5de; }
.rating-big { font-family: 'Lora', serif; font-size: 3rem; font-weight: 500; color: var(--bark); line-height: 1; }
.rating-detail { font-size: 0.8rem; color: var(--bark-light); font-weight: 600; }
.rating-stars-sm { color: #f5a623; font-size: 1rem; letter-spacing: 2px; }

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

.review-card { background: white; border-radius: 20px; padding: 1.8rem; border: 1.5px solid #eae5de; display: flex; flex-direction: column; transition: all 0.25s; }
.review-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(61,50,40,0.08); }

.review-stars { color: #f5a623; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 0.9rem; }
.review-text { font-size: 0.875rem; line-height: 1.75; color: var(--bark-mid); flex: 1; margin-bottom: 1.4rem; font-style: italic; }

.reviewer { display: flex; align-items: center; gap: 0.8rem; padding-top: 1rem; border-top: 1px solid #f0ebe4; }
.reviewer-av { width: 36px; height: 36px; border-radius: 50%; background: var(--sage-pale); color: var(--sage); font-weight: 800; font-size: 0.85rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.reviewer-name { font-size: 0.875rem; font-weight: 800; color: var(--bark); }
.reviewer-meta { font-size: 0.75rem; color: var(--bark-light); margin-top: 0.1rem; }

/* ===== TEAM ===== */
.team-section { background: var(--warm-white); }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; margin-top: 3.5rem; }

.instructor-card { background: var(--warm-off); border: 1.5px solid #eae5de; border-radius: 24px; overflow: hidden; transition: all 0.25s; }
.instructor-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(90,138,106,0.12); border-color: var(--sage-light); }

.instructor-photo { height: 220px; position: relative; display: flex; align-items: flex-end; padding: 1rem; background-size: cover; background-position: center top; }
.instructor-photo-alex   { background: linear-gradient(160deg, #b2d4bc 0%, #7aab8a 100%); }
.instructor-photo-david  { background: linear-gradient(160deg, #c5ddc9 0%, #5a8a6a 100%); }
.instructor-photo-lauren { background: linear-gradient(160deg, #d4ede0 0%, #8ab89a 100%); }

.instructor-photo::before {
  content: attr(data-initial);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  width: 90px; height: 90px;
  background: rgba(255,255,255,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lora', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: white;
  backdrop-filter: blur(4px);
  border: 2px solid rgba(255,255,255,0.4);
}

.instructor-badge { position: relative; z-index: 1; background: rgba(255,255,255,0.9); color: var(--sage); font-size: 0.72rem; font-weight: 800; padding: 0.3rem 0.8rem; border-radius: 50px; letter-spacing: 0.05em; text-transform: uppercase; }

.instructor-info { padding: 1.6rem 1.8rem; }
.instructor-info h3 { font-family: 'Lora', serif; font-size: 1.5rem; font-weight: 500; color: var(--bark); margin-bottom: 0.2rem; }
.instructor-title { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--sage); margin-bottom: 0.9rem; }
.instructor-bio { font-size: 0.875rem; line-height: 1.7; color: var(--bark-mid); margin-bottom: 1.2rem; }

.instructor-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
.instructor-tags span { background: var(--sage-pale); color: var(--sage); font-size: 0.75rem; font-weight: 700; padding: 0.25rem 0.7rem; border-radius: 50px; }

.instructor-stars { font-size: 0.85rem; color: #f5a623; font-weight: 700; display: flex; align-items: center; gap: 0.4rem; }
.instructor-stars span { color: var(--bark-light); font-weight: 400; font-size: 0.8rem; }

.team-join { margin-top: 2.5rem; }
.team-join-inner { background: var(--sage-pale); border: 1.5px solid var(--sage-light); border-radius: 20px; padding: 2rem 2.5rem; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.team-join-icon { font-size: 2.5rem; flex-shrink: 0; }
.team-join-inner h3 { font-family: 'Lora', serif; font-size: 1.15rem; font-weight: 500; color: var(--bark); margin-bottom: 0.3rem; }
.team-join-inner p { font-size: 0.875rem; color: var(--bark-mid); line-height: 1.6; }
.team-join-inner > div { flex: 1; min-width: 200px; }

/* ===== BIRTHDAY ===== */
.birthday-section { background: var(--warm-off); }
.birthday-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.birthday-perks { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.perk { display: flex; gap: 1rem; align-items: flex-start; padding: 1.3rem 1.5rem; background: white; border-radius: 16px; border: 1.5px solid #eae5de; }
.perk-icon { font-size: 1.5rem; flex-shrink: 0; }
.perk h4 { font-size: 0.9rem; font-weight: 800; color: var(--bark); margin-bottom: 0.25rem; }
.perk p { font-size: 0.825rem; color: var(--bark-mid); line-height: 1.5; }

.birthday-banner { background: var(--sage); border-radius: 28px; padding: 3.5rem 2.5rem; text-align: center; position: relative; overflow: hidden; }
.birthday-banner::before { content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,0.06); top: -80px; right: -80px; }
.birthday-banner .emoji { font-size: 3.5rem; display: block; margin-bottom: 1.2rem; }
.birthday-banner h3 { font-family: 'Lora', serif; font-size: 2rem; color: white; font-weight: 500; margin-bottom: 1rem; }
.birthday-banner p { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 1.8rem; }
.birthday-badge { background: var(--yellow); color: var(--bark); font-size: 0.8rem; font-weight: 800; padding: 0.5rem 1.2rem; border-radius: 50px; display: inline-block; }

/* ===== PLEDGE ===== */
.pledge-section { background: var(--mint); text-align: center; padding: 5rem 6%; }
.pledge-section .section-title { max-width: 600px; margin: 0 auto 1rem; }
.pledge-section .section-intro { margin: 0 auto 3rem; text-align: center; max-width: 560px; }

.pledge-icons { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.pledge-icon-item { text-align: center; }
.pledge-icon-item .icon-circle { width: 64px; height: 64px; border-radius: 50%; background: white; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 0.6rem; box-shadow: 0 4px 16px rgba(90,138,106,0.15); }
.pledge-icon-item span { font-size: 0.8rem; font-weight: 700; color: var(--sage); text-transform: uppercase; letter-spacing: 0.06em; }

/* ===== CONTACT ===== */
.contact-section { background: var(--warm-white); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; align-items: start; }

.contact-left h2 { font-family: 'Lora', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 500; color: var(--bark); margin-bottom: 1rem; line-height: 1.2; }
.contact-left p { color: var(--bark-mid); font-size: 0.95rem; line-height: 1.75; margin-bottom: 2rem; }

.contact-detail { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.contact-detail-icon { width: 44px; height: 44px; background: var(--sage-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-detail strong { display: block; color: var(--bark); font-size: 0.95rem; }
.contact-detail span { font-size: 0.825rem; color: var(--bark-light); }
.contact-detail a { color: var(--sage); text-decoration: none; font-weight: 700; }

.contact-form { background: var(--sage-super); border: 1.5px solid #d9ede0; border-radius: 28px; padding: 2.8rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { margin-bottom: 1.1rem; }
.fg label { display: block; font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: var(--bark); margin-bottom: 0.4rem; }
.fg input, .fg textarea, .fg select { width: 100%; padding: 0.8rem 1rem; background: white; border: 1.5px solid #dde8e0; border-radius: 12px; font-family: 'Nunito', sans-serif; font-size: 0.9rem; color: var(--bark); outline: none; transition: border-color 0.2s; appearance: none; }
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--sage); }
.fg textarea { height: 100px; resize: none; }

.submit-btn { width: 100%; background: var(--sage); color: white; border: none; padding: 1rem; border-radius: 50px; font-family: 'Nunito', sans-serif; font-size: 1rem; font-weight: 800; cursor: pointer; transition: all 0.2s; margin-top: 0.5rem; }
.submit-btn:hover { background: #4f7d5e; transform: translateY(-2px); }

/* ===== FOOTER ===== */
footer { background: var(--bark); color: rgba(255,255,255,0.55); padding: 3rem 6%; display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; align-items: center; }
.footer-logo-img { height: 40px; width: auto; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-links { display: flex; gap: 2rem; list-style: none; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.825rem; font-weight: 600; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-socials { display: flex; gap: 0.6rem; }
.soc { width: 36px; height: 36px; background: rgba(255,255,255,0.07); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: all 0.2s; font-weight: 700; }
.soc:hover { background: rgba(255,255,255,0.15); color: white; }
.footer-copy { width: 100%; text-align: center; font-size: 0.78rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card-cluster { display: none; }
  .hero { padding: 9rem 6% 4rem; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .prices-grid { grid-template-columns: 1fr; max-width: 420px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .birthday-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .header-logo-bar { grid-template-columns: 1fr auto 1fr; gap: 0.5rem; padding: 0.75rem 3%; }
  .header-btn { padding: 0.5rem 1rem; font-size: 0.8rem; }
}

@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
  .section { padding: 4rem 5%; }
  .nav-links { flex-wrap: wrap; }
  .nav-links li { flex: none; }
  .header-btn span { display: none; }
}
