/* ============================================
   Harris County Septic — Powered by Enviro-Pal, Inc.
   Global Stylesheet
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700;900&family=Source+Sans+3:wght@300;400;600;700&family=Oswald:wght@400;500;600;700&display=swap');

/* CSS Variables */
:root {
  --navy: #1B3A5C;
  --navy-dark: #0F2640;
  --navy-light: #2A5A8C;
  --green: #2E7D32;
  --green-dark: #1B5E20;
  --green-light: #4CAF50;
  --earth: #5D4037;
  --earth-light: #8D6E63;
  --sand: #F5F0E8;
  --sand-dark: #E8DFD0;
  --cream: #FAFAF5;
  --orange: #E65100;
  --orange-light: #FF8F00;
  --red-alert: #C62828;
  --white: #FFFFFF;
  --gray-100: #F8F9FA;
  --gray-200: #E9ECEF;
  --gray-300: #DEE2E6;
  --gray-500: #6C757D;
  --gray-700: #495057;
  --gray-900: #212529;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 12px 40px rgba(0,0,0,0.15);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
  --max-width: 1200px;
}

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

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

body {
  font-family: 'Source Sans 3', -apple-system, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.5em;
}
h1 { font-size: 2.5rem; font-weight: 900; }
h2 { font-size: 2rem; font-weight: 700; }
h3 { font-size: 1.5rem; font-weight: 700; }
h4 { font-size: 1.2rem; font-weight: 700; }
p { margin-bottom: 1em; }

.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}

/* ============================================
   Top Bar
   ============================================ */
.top-bar {
  background: var(--navy-dark);
  color: var(--white);
  font-size: 0.85rem;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: var(--sand); }
.top-bar a:hover { color: var(--white); }
.top-bar-left { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.top-bar-right { display: flex; gap: 16px; align-items: center; }
.top-bar .emergency {
  background: var(--red-alert);
  color: var(--white);
  padding: 2px 10px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.8rem;
  animation: pulse-glow 2s infinite;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* ============================================
   Header / Navigation
   ============================================ */
.header {
  background: var(--white);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo {
  display: flex;
  flex-direction: column;
}
.logo-main {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 1px;
  line-height: 1.1;
}
.logo-sub {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.7rem;
  color: var(--gray-500);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav a:hover { color: var(--navy); background: var(--gray-100); }
.nav a.active { color: var(--green); }

.nav-dropdown { position: relative; }
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 8px 0;
  min-width: 220px;
  z-index: 100;
}
.dropdown-menu a {
  display: block;
  padding: 8px 20px;
  font-size: 0.85rem;
  border-radius: 0;
}
.dropdown-menu a:hover { background: var(--gray-100); }

.header-cta {
  background: var(--green);
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius-md) !important;
  font-weight: 700 !important;
}
.header-cta:hover { background: var(--green-dark) !important; color: var(--white) !important; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--navy);
  cursor: pointer;
  padding: 8px;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 {
  color: var(--white);
  font-size: 2.8rem;
  margin-bottom: 16px;
  line-height: 1.15;
}
.hero h1 span { color: var(--green-light); }
.hero-tagline {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 12px;
  font-weight: 500;
}
.hero p { font-size: 1.15rem; color: rgba(255,255,255,0.85); margin-bottom: 24px; line-height: 1.6; }
.hero-creds {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.hero-cred {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}
.hero-cred svg { flex-shrink: 0; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image {
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,0.1);
}
.hero-image .placeholder-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(46,125,50,0.3), rgba(27,58,92,0.5));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  text-align: center;
  padding: 20px;
}
.placeholder-img svg { margin-bottom: 12px; opacity: 0.4; }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: var(--white); color: var(--white); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-cta { background: var(--orange); color: var(--white); border-color: var(--orange); font-size: 1.1rem; padding: 16px 32px; }
.btn-cta:hover { background: var(--orange-light); border-color: var(--orange-light); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

/* ============================================
   Promo Banner
   ============================================ */
.promo-banner {
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  color: var(--white);
  text-align: center;
  padding: 20px;
}
.promo-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.promo-banner h3 { color: var(--white); font-size: 1.3rem; margin: 0; }
.promo-banner p { margin: 0; font-size: 1rem; opacity: 0.9; }

/* ============================================
   Services Grid
   ============================================ */
.services-section { padding: 80px 0; }
.services-section.alt-bg { background: var(--cream); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.section-header p { color: var(--gray-500); font-size: 1.1rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--green); }
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--white);
}
.service-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.service-card p { color: var(--gray-500); font-size: 0.95rem; margin-bottom: 16px; }
.service-card .learn-more {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card .learn-more:hover { gap: 10px; }

/* ============================================
   Why Choose Us / Trust Section
   ============================================ */
.trust-section {
  padding: 80px 0;
  background: var(--navy);
  color: var(--white);
}
.trust-section .section-header h2 { color: var(--white); }
.trust-section .section-header p { color: rgba(255,255,255,0.7); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.trust-item {
  text-align: center;
  padding: 24px 16px;
}
.trust-number {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 8px;
}
.trust-item h4 { color: var(--white); font-size: 1rem; margin-bottom: 8px; }
.trust-item p { color: rgba(255,255,255,0.6); font-size: 0.85rem; }

/* ============================================
   Service Area Section
   ============================================ */
.area-section { padding: 80px 0; background: var(--cream); }
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 32px;
}
.area-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.area-link:hover { border-color: var(--green); color: var(--green); transform: translateX(4px); }
.area-link svg { flex-shrink: 0; color: var(--green); }
.area-counties {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.area-county {
  flex: 1;
  min-width: 280px;
}
.area-county h3 { font-size: 1.2rem; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--green); }

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--white);
  text-align: center;
}
.cta-section h2 { color: var(--white); font-size: 2.2rem; margin-bottom: 16px; }
.cta-section p { font-size: 1.15rem; opacity: 0.9; max-width: 600px; margin: 0 auto 32px; }
.cta-section .btn-cta { background: var(--white); color: var(--green-dark); border-color: var(--white); }
.cta-section .btn-cta:hover { background: var(--sand); border-color: var(--sand); }
.cta-phone {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-top: 20px;
}

/* ============================================
   Pricing Table
   ============================================ */
.pricing-section { padding: 80px 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 2px solid var(--gray-200);
  transition: all var(--transition);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.price-card.featured { border-color: var(--green); }
.price-card.featured .price-header { background: var(--green); }
.price-header {
  background: var(--navy);
  color: var(--white);
  padding: 28px;
  text-align: center;
}
.price-header h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 8px; }
.price-amount {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}
.price-amount small { font-size: 1rem; font-weight: 400; opacity: 0.8; }
.price-body { padding: 28px; }
.price-body ul { list-style: none; margin-bottom: 24px; }
.price-body li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--gray-100);
}
.price-body li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.price-body .btn { width: 100%; justify-content: center; }
.price-note { text-align: center; margin-top: 24px; color: var(--gray-500); font-size: 0.9rem; }

/* ============================================
   About / Bio Section
   ============================================ */
.about-section { padding: 80px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}
.about-photo {
  background: var(--sand);
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--gray-500);
  font-size: 0.9rem;
  border: 2px solid var(--gray-200);
}
.about-photo svg { margin-bottom: 12px; opacity: 0.3; }
.timeline { margin-top: 32px; }
.timeline-item {
  display: flex;
  gap: 20px;
  padding-bottom: 24px;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 32px;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
}
.timeline-item:last-child::before { display: none; }
.timeline-dot {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  z-index: 1;
}
.timeline-content h4 { font-size: 1rem; margin-bottom: 4px; }
.timeline-content p { color: var(--gray-500); font-size: 0.9rem; margin: 0; }
.timeline-content .timeline-year {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  color: var(--green);
  font-weight: 600;
  letter-spacing: 1px;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section { padding: 80px 0; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
}
.faq-question h3 { font-size: 1.1rem; margin: 0; transition: color var(--transition); }
.faq-question:hover h3 { color: var(--green); }
.faq-toggle {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-size: 1.2rem;
  color: var(--navy);
}
.faq-item.active .faq-toggle { background: var(--green); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer { max-height: 500px; padding-top: 16px; }
.faq-answer p { color: var(--gray-500); }

/* ============================================
   Contact Form
   ============================================ */
.contact-section { padding: 80px 0; background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--navy);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.contact-info-item h4 { margin-bottom: 4px; font-size: 1rem; }
.contact-info-item p { color: var(--gray-500); margin: 0; font-size: 0.95rem; }
.contact-info-item a { color: var(--navy); font-weight: 600; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--gray-700);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  transition: border-color var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer h4 {
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer p { font-size: 0.9rem; line-height: 1.6; }
.footer a { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer a:hover { color: var(--green-light); }
.footer ul { list-style: none; }
.footer li { margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
}
.footer-logo-text {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 8px;
}
.footer-tagline { font-style: italic; color: var(--orange-light); margin-bottom: 16px; font-size: 0.9rem; }

/* ============================================
   Page Hero (Inner Pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
  padding: 60px 0;
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: 2.4rem; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 600px; }
.breadcrumb { margin-bottom: 16px; font-size: 0.85rem; }
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.4); margin: 0 8px; }

/* ============================================
   Content Sections (Inner Pages)
   ============================================ */
.content-section { padding: 60px 0; }
.content-section.alt-bg { background: var(--cream); }
.content-two-col {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}
.content-main h2 { margin-top: 32px; }
.content-main h2:first-child { margin-top: 0; }
.content-main ul { margin: 16px 0; padding-left: 24px; }
.content-main li { margin-bottom: 8px; color: var(--gray-700); }

.sidebar-box {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}
.sidebar-box.highlight {
  border-color: var(--green);
  background: linear-gradient(to bottom, var(--green), var(--green-dark));
  color: var(--white);
}
.sidebar-box.highlight h3 { color: var(--white); }
.sidebar-box.highlight p { color: rgba(255,255,255,0.9); }
.sidebar-box h3 { font-size: 1.1rem; margin-bottom: 12px; }

/* ============================================
   Blog / Resources
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 32px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-image {
  height: 200px;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 0.85rem;
}
.blog-card-body { padding: 24px; }
.blog-card-body .blog-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
  display: block;
}
.blog-card-body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.blog-card-body h3 a { color: var(--navy); }
.blog-card-body h3 a:hover { color: var(--green); }
.blog-card-body p { color: var(--gray-500); font-size: 0.9rem; }

/* ============================================
   Schema / Structured Data Badge
   ============================================ */
.license-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sand);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  border: 1px solid var(--sand-dark);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero { padding: 48px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-image { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .content-two-col { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav { display: none; }
  .nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 16px;
    gap: 0;
  }
  .nav.active a { padding: 12px 16px; }
  .nav.active .dropdown-menu {
    display: block;
    position: static;
    box-shadow: none;
    padding-left: 16px;
  }
  .mobile-toggle { display: block; }
  .top-bar-right { display: none; }
}
