/* ============================================
   Critter Watch Pet Sitting - Complete Stylesheet
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --teal: #4ECDC4;
  --teal-dark: #3BA89F;
  --teal-light: #7EDDD6;
  --coral: #FF6B6B;
  --coral-dark: #E55555;
  --coral-light: #FF9A9A;
  --cream: #FFF8DC;
  --cream-dark: #F5ECC8;
  --text: #2C3E50;
  --text-light: #5D6D7E;
  --bg: #FAFAFA;
  --white: #FFFFFF;
  --shadow: 0 2px 12px rgba(44,62,80,0.08);
  --shadow-lg: 0 8px 30px rgba(44,62,80,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
  --header-height: 72px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }

a { color: var(--teal-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--coral); }

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

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--teal);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 10000;
  font-weight: 600;
}
.skip-link:focus { top: 8px; }

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
}

.header-top {
  background: var(--teal);
  color: var(--white);
  padding: 6px 0;
  font-size: 0.85rem;
  text-align: center;
}
.header-top a { color: var(--white); font-weight: 600; }
.header-top a:hover { color: var(--cream); }

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  max-width: 1140px;
  margin: 0 auto;
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 48px; width: auto; border-radius: 8px; }
.logo-text { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.2rem; color: var(--text); line-height: 1.2; }
.logo-tagline { font-size: 0.7rem; color: var(--text-light); font-weight: 400; }

.nav-list { display: flex; gap: 28px; align-items: center; }
.nav-list a {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  position: relative;
  padding: 4px 0;
}
.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--teal);
  transition: width var(--transition);
}
.nav-list a:hover::after,
.nav-list a.active::after { width: 100%; }
.nav-list a:hover { color: var(--teal-dark); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--coral);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background var(--transition), transform var(--transition);
}
.header-cta:hover { background: var(--coral-dark); transform: translateY(-1px); color: var(--white) !important; }
.header-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 26px; height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* --- Hero --- */
.hero {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white);
  padding: 80px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '🐾';
  position: absolute;
  font-size: 200px;
  opacity: 0.06;
  top: -30px; right: -30px;
  transform: rotate(-15deg);
}
.hero::after {
  content: '🐾';
  position: absolute;
  font-size: 140px;
  opacity: 0.06;
  bottom: -20px; left: -20px;
  transform: rotate(25deg);
}
.hero h1 { font-size: 2.8rem; margin-bottom: 16px; color: var(--white); }
.hero p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.95; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-phone {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white) !important;
  display: inline-block;
  margin-bottom: 20px;
}
.hero-phone:hover { color: var(--cream) !important; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.btn-primary { background: var(--coral); color: var(--white); }
.btn-primary:hover { background: var(--coral-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(255,107,107,0.4); }
.btn-secondary { background: var(--white); color: var(--teal-dark); }
.btn-secondary:hover { background: var(--cream); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--teal-dark); border: 2px solid var(--teal); }
.btn-outline:hover { background: var(--teal); color: var(--white); }
.btn-white-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-white-outline:hover { background: var(--white); color: var(--teal-dark); }

/* --- Sections --- */
section { padding: 70px 0; }
.section-title { text-align: center; margin-bottom: 48px; }
.section-title h2 { margin-bottom: 12px; }
.section-title p { color: var(--text-light); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.section-alt { background: var(--white); }
.section-cream { background: var(--cream); }
.section-teal { background: var(--teal); color: var(--white); }
.section-teal h2, .section-teal h3 { color: var(--white); }

/* --- Service Cards --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--teal);
}
.service-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  display: block;
}
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--text-light); font-size: 0.95rem; }
.flat-rate-badge {
  display: inline-block;
  background: var(--cream);
  color: var(--teal-dark);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 12px;
}

/* --- Benefits Cards --- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 16px;
  transition: transform var(--transition);
}
.benefit-card:hover { transform: translateY(-2px); }
.benefit-icon { font-size: 2.2rem; flex-shrink: 0; }
.benefit-card h3 { margin-bottom: 8px; font-size: 1.15rem; }
.benefit-card p { color: var(--text-light); font-size: 0.92rem; }
.benefit-card ul { margin-top: 8px; }
.benefit-card ul li { color: var(--text-light); font-size: 0.92rem; padding: 2px 0; padding-left: 18px; position: relative; }
.benefit-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }

/* --- Trust Indicators --- */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 40px 0;
}
.trust-item { text-align: center; }
.trust-number { font-family: 'Poppins', sans-serif; font-size: 2.5rem; font-weight: 700; color: var(--teal); }
.trust-label { font-size: 0.9rem; color: var(--text-light); }

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: 'Poppins', sans-serif;
  font-size: 4rem;
  color: var(--teal-light);
  position: absolute;
  top: 8px; left: 20px;
  line-height: 1;
}
.testimonial-text { font-style: italic; color: var(--text-light); margin-bottom: 16px; padding-top: 28px; }
.testimonial-stars { color: #F4C430; margin-bottom: 8px; font-size: 1.1rem; }
.testimonial-author { font-weight: 600; font-size: 0.9rem; }
.testimonial-location { color: var(--text-light); font-size: 0.85rem; }

/* --- Service Areas List --- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.area-tag {
  background: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  font-weight: 500;
  text-align: center;
  transition: background var(--transition);
}
.area-tag:hover { background: var(--teal); color: var(--white); }

/* --- Area Detail Cards --- */
.area-detail-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.area-detail-card h3 { color: var(--teal-dark); margin-bottom: 8px; }

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 60px 0;
}
.cta-section h2 { color: var(--white); margin-bottom: 12px; }
.cta-section p { opacity: 0.95; margin-bottom: 24px; font-size: 1.1rem; }
.cta-phone {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white) !important;
  display: block;
  margin-bottom: 20px;
}
.cta-phone:hover { color: var(--cream) !important; }

/* --- Service Detail (services page) --- */
.service-detail {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  margin-bottom: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.service-detail-icon { font-size: 3rem; flex-shrink: 0; }
.service-detail-content { flex: 1; }
.service-detail h3 { margin-bottom: 10px; font-size: 1.4rem; }
.service-detail p { color: var(--text-light); margin-bottom: 14px; }
.service-detail ul { margin-bottom: 14px; }
.service-detail ul li {
  padding: 4px 0 4px 22px;
  position: relative;
  color: var(--text-light);
}
.service-detail ul li::before {
  content: '🐾';
  position: absolute;
  left: 0;
  font-size: 0.75rem;
}

/* --- FAQ Accordion --- */
.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--cream); }
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--teal);
  transition: transform var(--transition);
  font-weight: 400;
}
.faq-item.active .faq-question::after { content: '−'; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
  color: var(--text-light);
  line-height: 1.7;
}
.faq-item.active .faq-answer { max-height: 500px; padding: 0 24px 18px; }

/* --- About Page --- */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.photo-placeholder {
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  padding: 20px;
}
.credentials-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 20px; }
.credential-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  font-weight: 500;
}
.credential-item span:first-child { font-size: 1.3rem; }

/* --- Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.9rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #E0E0E0;
  border-radius: var(--radius-sm);
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  transition: border-color var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group.error input,
.form-group.error textarea { border-color: var(--coral); }
.error-message { color: var(--coral); font-size: 0.8rem; margin-top: 4px; display: none; }
.form-group.error .error-message { display: block; }

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
}
.checkbox-group input[type="checkbox"] { width: auto; margin-top: 4px; accent-color: var(--teal); }
.checkbox-group label { font-weight: 400; font-size: 0.9rem; }

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #F0F0F0;
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item .icon { font-size: 1.4rem; }
.contact-info-item a { font-weight: 600; }

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-container iframe { width: 100%; height: 300px; border: 0; }

/* --- ZIP Checker --- */
.zip-checker {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  text-align: center;
  max-width: 500px;
  margin: 0 auto 40px;
}
.zip-input-group { display: flex; gap: 10px; justify-content: center; margin-top: 16px; }
.zip-input-group input {
  padding: 12px 16px;
  border: 2px solid #E0E0E0;
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  width: 160px;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
}
.zip-input-group input:focus { outline: none; border-color: var(--teal); }
.zip-result {
  margin-top: 16px;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  display: none;
}
.zip-result.success { display: block; background: #E8F8F5; color: var(--teal-dark); }
.zip-result.error { display: block; background: #FDEDEC; color: var(--coral-dark); }

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white);
  padding: 50px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { color: var(--white); margin-bottom: 8px; }
.page-hero p { opacity: 0.9; font-size: 1.1rem; }
.page-hero::before {
  content: '🐾';
  position: absolute;
  font-size: 120px;
  opacity: 0.06;
  top: -20px; right: 40px;
  transform: rotate(-20deg);
}

/* --- Footer --- */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.8);
  padding: 50px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}
.footer-col h4 { color: var(--white); margin-bottom: 16px; font-size: 1.05rem; }
.footer-col p, .footer-col li { font-size: 0.9rem; line-height: 1.8; }
.footer-col a { color: rgba(255,255,255,0.8); }
.footer-col a:hover { color: var(--teal-light); }
.footer-col ul li { padding: 2px 0; }
.footer-phone {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--teal-light) !important;
  display: block;
  margin: 10px 0;
}
.footer-social { display: flex; gap: 12px; margin-top: 12px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  font-size: 1.1rem;
  transition: background var(--transition);
}
.footer-social a:hover { background: var(--teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Paw Print Decorations --- */
.paw-divider {
  text-align: center;
  padding: 20px 0;
  font-size: 1.2rem;
  letter-spacing: 20px;
  opacity: 0.3;
}

/* --- Form Success --- */
.form-success {
  background: #E8F8F5;
  color: var(--teal-dark);
  padding: 20px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 600;
  display: none;
}

/* --- Hours Table --- */
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid #F0F0F0;
  font-size: 0.9rem;
}
.hours-list li:last-child { border-bottom: none; }

/* ============================================
   Responsive Breakpoints
   ============================================ */

@media (max-width: 1024px) {
  h1 { font-size: 2.2rem; }
  .hero h1 { font-size: 2.4rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .about-content { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --header-height: 64px; }

  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.6rem; }
  .hero h1 { font-size: 2rem; }
  .hero { padding: 50px 0 60px; }
  .hero-phone { font-size: 1.6rem; }

  section { padding: 50px 0; }

  /* Mobile Nav */
  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--white);
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    padding: 80px 30px 30px;
    transition: right var(--transition);
    z-index: 999;
  }
  .main-nav.open { right: 0; }
  .nav-list { flex-direction: column; gap: 0; }
  .nav-list li { border-bottom: 1px solid #F0F0F0; }
  .nav-list a { display: block; padding: 14px 0; font-size: 1.05rem; }
  .nav-list a::after { display: none; }
  .header-cta { margin-top: 16px; justify-content: center; }
  .hamburger { display: flex; z-index: 1001; }

  /* Grids */
  .services-grid,
  .testimonials-grid,
  .benefits-grid,
  .credentials-list { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-bar { gap: 24px; }

  .service-detail { flex-direction: column; }

  .cta-phone { font-size: 1.6rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
}

/* --- Owner Photo (About Page) --- */
.owner-photo {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-width: 100%;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* --- Glimpse Into Our Day Gallery --- */
.glimpse-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.glimpse-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.glimpse-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.glimpse-visual {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.glimpse-icon {
  font-size: 5rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
  transition: transform var(--transition);
}
.glimpse-card:hover .glimpse-icon {
  transform: scale(1.1);
}
.glimpse-dog, .glimpse-cat, .glimpse-feed {
  background: none;
}
.glimpse-caption {
  padding: 16px;
  text-align: center;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
}

@media (max-width: 768px) {
  .glimpse-grid { grid-template-columns: 1fr; }
}

/* --- Utility --- */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

/* --- Service Price Tag --- */
.service-price {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.2rem 0.75rem;
  border-radius: 20px;
  margin-left: 0.5rem;
  vertical-align: middle;
}

/* --- Pricing Section --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.pricing-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border-top: 4px solid var(--primary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.pricing-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.pricing-amount {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
}
.pricing-per {
  font-size: 0.9rem;
  color: #777;
  margin-top: 0.25rem;
}
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}
