/* ===========================
   LINDSEY'S DOGGY DAYCARE
   Fresh & Clean Green Theme
   =========================== */

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

:root {
  --green-dark:    #1e5c35;
  --green-main:    #2d8653;
  --green-light:   #4aad73;
  --green-pale:    #e8f5ed;
  --green-mint:    #f0faf4;
  --white:         #ffffff;
  --off-white:     #f8fdf9;
  --text-dark:     #1a2d20;
  --text-mid:      #3d5c45;
  --text-light:    #6b8872;
  --gold:          #f5a623;
  --shadow-sm:     0 2px 8px rgba(45,134,83,0.08);
  --shadow-md:     0 8px 32px rgba(45,134,83,0.12);
  --shadow-lg:     0 20px 60px rgba(45,134,83,0.15);
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- UTILITY ---- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-alt { background: var(--off-white); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-label {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-main);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary  { background: var(--green-main); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline  { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.8); }
.btn-outline:hover { background: rgba(255,255,255,0.2); color: var(--white); border-color: var(--white); transform: translateY(-2px); }
/* Green outline variant — used outside the hero */
.btn-outline-green { background: transparent; color: var(--green-main); border-color: var(--green-main); }
.btn-outline-green:hover { background: var(--green-main); color: var(--white); transform: translateY(-2px); }
.btn-white    { background: var(--white); color: var(--green-main); }
.btn-white:hover { background: var(--green-pale); transform: translateY(-2px); }
.btn-sm       { padding: 10px 20px; font-size: 0.85rem; }
.btn-full     { width: 100%; justify-content: center; }

/* ---- NAVBAR ---- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}
.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-paw { font-size: 1.8rem; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-weight: 700; font-size: 1.1rem; color: var(--white); text-shadow: 0 1px 4px rgba(0,0,0,0.3); }
.logo-sub  { font-size: 0.7rem; color: rgba(255,255,255,0.85); letter-spacing: 0.05em; text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-link {
  text-decoration: none;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.15); }
.nav-cta {
  background: var(--white);
  color: var(--green-dark) !important;
  padding: 10px 20px;
  border-radius: 50px;
}
.nav-cta:hover { background: var(--green-pale) !important; }

/* When scrolled — switch to dark text */
#navbar.scrolled .nav-link { color: var(--text-dark); }
#navbar.scrolled .nav-link:hover { color: var(--green-main); background: var(--green-pale); }
#navbar.scrolled .nav-cta { background: var(--green-main); color: var(--white) !important; }
#navbar.scrolled .nav-cta:hover { background: var(--green-dark) !important; }
#navbar.scrolled .logo-name { color: var(--green-dark); }
#navbar.scrolled .logo-sub  { color: var(--green-light); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,60,30,0.75) 0%, rgba(45,134,83,0.4) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  color: var(--white);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.hero-badge-link {
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.hero-badge-link:hover { opacity: 0.8; text-decoration: underline; }
.hero-badge-sep { opacity: 0.7; }
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 540px;
  opacity: 0.92;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 20px 32px;
  width: fit-content;
}
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-num { font-size: 1.5rem; font-weight: 700; }
.stat-label { font-size: 0.75rem; opacity: 0.8; letter-spacing: 0.05em; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.3); }

/* ---- ABOUT ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  max-width: 200px;
}
.about-badge span { font-size: 1.8rem; }
.about-content .section-label { display: inline-block; }
.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin: 16px 0 20px;
  line-height: 1.2;
}
.about-content p { color: var(--text-light); margin-bottom: 16px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.feature-icon { font-size: 1.4rem; flex-shrink: 0; }
.feature-item strong { display: block; font-size: 0.9rem; color: var(--text-dark); margin-bottom: 2px; }
.feature-item p { font-size: 0.82rem; color: var(--text-light); margin: 0; }

/* ---- SERVICES ---- */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(45,134,83,0.1);
  transition: var(--transition);
  position: relative;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card-featured {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-main) 100%);
  color: var(--white);
  border-color: transparent;
}
.service-badge-top {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}
.service-icon { font-size: 2.5rem; margin-bottom: 20px; }
.service-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.service-card p { font-size: 0.95rem; opacity: 0.85; margin-bottom: 20px; }
.service-list { list-style: none; margin-bottom: 24px; }
.service-list li { font-size: 0.9rem; padding: 6px 0; opacity: 0.9; }
.service-price { font-size: 1rem; font-weight: 600; margin-bottom: 24px; }
.service-price strong { font-size: 1.5rem; }
.service-card-featured .service-price { color: var(--white); }

/* ---- PRICING ---- */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 800px; margin: 0 auto; }
.pricing-card {
  background: var(--white);
  border: 2px solid var(--green-pale);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.pricing-card:hover { border-color: var(--green-main); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-card-featured {
  border-color: var(--green-main);
  background: linear-gradient(135deg, var(--green-pale) 0%, var(--green-mint) 100%);
}
.pricing-icon { font-size: 2.5rem; margin-bottom: 16px; }
.pricing-card h3 { font-size: 1.3rem; margin-bottom: 24px; color: var(--text-dark); }
.price { margin-bottom: 32px; }
.price-amount { font-size: 3.5rem; font-weight: 700; color: var(--green-main); line-height: 1; }
.price-per { display: block; font-size: 0.85rem; color: var(--text-light); margin-top: 4px; }
.pricing-list { list-style: none; text-align: left; margin-bottom: 32px; }
.pricing-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--green-pale);
  font-size: 0.9rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-list li::before { content: "✓"; color: var(--green-main); font-weight: 700; }
.pricing-note {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background: var(--green-pale);
  border-radius: var(--radius-md);
}
.pricing-note a { color: var(--green-main); font-weight: 600; }

/* ---- GALLERY ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
  grid-auto-flow: dense;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}
/* First photo spans 2 columns and 2 rows for visual impact */
.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,92,53,0.75) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-weight: 600; font-size: 0.88rem; }
.gallery-cta { text-align: center; margin-top: 40px; }
.gallery-cta p { color: var(--text-light); margin-bottom: 16px; }
.gallery-empty {
  text-align: center;
  padding: 64px 24px;
  color: var(--text-light);
  font-size: 1rem;
  background: var(--green-pale);
  border-radius: var(--radius-md);
  margin-bottom: 32px;
}


/* ---- TRUST BANNER ---- */
.trust-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-main) 100%);
  padding: 36px 0;
}
.trust-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 40px;
  flex: 1;
  min-width: 220px;
  justify-content: center;
}
.trust-icon { font-size: 2rem; flex-shrink: 0; }
.trust-text { display: flex; flex-direction: column; }
.trust-text strong { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.trust-text span { color: rgba(255,255,255,0.82); font-size: 0.82rem; line-height: 1.4; }
.trust-text b { color: var(--white); font-weight: 700; letter-spacing: 0.04em; }
.trust-divider { width: 1px; height: 56px; background: rgba(255,255,255,0.25); flex-shrink: 0; }

/* ---- TESTIMONIALS ---- */
.overall-rating { display: flex; align-items: center; gap: 12px; justify-content: center; margin-top: 12px; }
.stars { color: var(--gold); font-size: 1.5rem; letter-spacing: 2px; }
.overall-rating span { color: var(--text-light); font-size: 0.95rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--green-pale);
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; display: block; }
a.testimonial-stars { text-decoration: none; cursor: pointer; transition: var(--transition); }
a.testimonial-stars:hover { text-shadow: 0 0 8px rgba(245,166,35,0.7); transform: scale(1.05); display: inline-block; }
.testimonial-card p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  background: var(--green-main);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span { font-size: 0.78rem; color: var(--text-light); }
.review-platform {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.review-platform--google { background: #f0f4ff; color: #4285F4; }
.review-platform--facebook { background: #eef3ff; color: #1877F2; }
.testimonials-cta { text-align: center; margin-top: 48px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }


/* ---- CONTACT ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; }
.contact-info h3 { font-size: 1.2rem; margin-bottom: 24px; }
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-detail strong { display: block; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 4px; }
.contact-detail a, .contact-detail span { font-size: 0.95rem; color: var(--text-dark); text-decoration: none; }
.contact-detail a:hover { color: var(--green-main); }
.map-wrap { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); margin-top: 32px; }

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
input, select, textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid #e5e9e6;
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--green-main); box-shadow: 0 0 0 3px rgba(45,134,83,0.1); }
textarea { resize: vertical; }
.form-success {
  margin-top: 16px;
  padding: 16px;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  color: var(--green-dark);
  font-weight: 600;
  text-align: center;
}

/* ---- FOOTER ---- */
.footer { background: var(--text-dark); color: rgba(255,255,255,0.8); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-sub { color: var(--green-light); }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--green-main); transform: translateY(-2px); }
.footer-links h4, .footer-contact h4 { font-size: 0.9rem; font-weight: 600; color: var(--white); margin-bottom: 20px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a, .footer-contact a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a:hover, .footer-contact a:hover { color: var(--green-light); }
.footer-contact p { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .about-grid     { grid-template-columns: 1fr; gap: 48px; }
  .about-img      { height: 380px; }
  .about-badge    { bottom: 16px; right: 16px; }
  .services-grid  { grid-template-columns: 1fr; }
  .contact-grid   { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid   { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--green-pale);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-link {
    display: block;
    padding: 12px 16px;
    color: var(--text-dark);
  }
  .nav-link:hover {
    color: var(--green-main);
    background: var(--green-pale);
  }
  .nav-cta {
    text-align: center;
    background: var(--green-main) !important;
    color: var(--white) !important;
  }
  .nav-cta:hover {
    background: var(--green-dark) !important;
  }
  .hamburger { display: flex; }
  #navbar {
    position: fixed;
    background: rgba(255,255,255,0.97);
    box-shadow: var(--shadow-sm);
  }
  #navbar .logo-name {
    color: var(--green-dark);
    text-shadow: none;
  }
  #navbar .logo-sub {
    color: var(--green-light);
  }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 80px; height: 1px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-item-large { grid-column: span 2; grid-row: span 1; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-content { padding: 100px 20px 60px; }
  .hero-stats { padding: 16px 20px; }
  .service-card { padding: 28px; }
  .pricing-card { padding: 32px 24px; }
}

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.6s ease forwards; }

/* ---- TERMS & CONDITIONS ---- */
.terms-section {
  padding: 140px 0 96px;
  background: var(--off-white);
  min-height: 80vh;
}
.terms-card {
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  max-width: 800px;
  margin: 0 auto;
}
.terms-card h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--text-dark);
  margin-bottom: 8px;
}
.terms-meta {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 32px;
  border-bottom: 1px solid var(--green-pale);
  padding-bottom: 16px;
}
.terms-content h2 {
  font-size: 1.3rem;
  color: var(--green-dark);
  margin: 32px 0 16px;
}
.terms-content p {
  color: var(--text-mid);
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.7;
}
.terms-content ul {
  margin-bottom: 24px;
  padding-left: 20px;
  color: var(--text-mid);
}
.terms-content li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .terms-section { padding: 100px 0 64px; }
  .terms-card { padding: 24px; border-radius: var(--radius-md); }
}
