/* =====================================================
   Anderson Junk Removal Pros — style.css
   Mobile-first responsive design
   Color scheme: dark #1C1C1C, white #FFFFFF, green accent #2E7D32
   ===================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #1C1C1C;
  background: #fff;
  overflow-x: hidden;
  min-width: 375px;
}

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

a {
  color: #2E7D32;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul, ol {
  padding-left: 1.5rem;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1C1C1C;
  line-height: 1.25;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 2rem;
  max-width: 680px;
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* --- CTA Buttons --- */
.btn {
  display: inline-block;
  min-height: 48px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  border: none;
  line-height: 1.3;
  transition: background 0.2s, transform 0.1s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: #2E7D32;
  color: #fff;
}

.btn-primary:hover {
  background: #1B5E20;
  color: #fff;
}

.btn-dark {
  background: #1C1C1C;
  color: #fff;
}

.btn-dark:hover {
  background: #333;
  color: #fff;
}

.btn-white {
  background: #fff;
  color: #2E7D32;
  border: 2px solid #2E7D32;
}

.btn-white:hover {
  background: #f1f8f1;
  color: #1B5E20;
}

.btn-lg {
  font-size: 1.1rem;
  padding: 1rem 2rem;
  min-height: 56px;
}

/* =====================================================
   STICKY HEADER
   ===================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #1C1C1C;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.header-logo {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1.2;
}

.header-logo:hover {
  color: #81C784;
  text-decoration: none;
}

.header-logo span {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: #aaa;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.5rem 1rem;
  background: #2E7D32;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.header-cta:hover {
  background: #1B5E20;
  color: #fff;
  text-decoration: none;
}

/* --- Desktop Nav --- */
.site-nav {
  display: none;
}

@media (min-width: 768px) {
  .site-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .site-nav > li {
    position: relative;
  }

  .site-nav > li > a {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #ddd;
    font-size: 0.92rem;
    font-weight: 500;
    padding: 0.5rem 0.65rem;
    border-radius: 3px;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s, background 0.2s;
  }

  .site-nav > li > a:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
    text-decoration: none;
  }

  /* Dropdown */
  .has-dropdown {
    position: relative;
  }

  .dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    min-width: 220px;
    z-index: 2000;
    list-style: none;
    padding: 0.5rem 0;
  }

  .dropdown-menu li a {
    display: block;
    padding: 0.6rem 1.25rem;
    color: #1C1C1C;
    font-size: 0.92rem;
    text-decoration: none;
    transition: background 0.15s;
  }

  .dropdown-menu li a:hover {
    background: #f4f4f4;
    color: #2E7D32;
    text-decoration: none;
  }

  .has-dropdown:hover .dropdown-menu {
    display: block;
  }

  .header-logo {
    font-size: 1.25rem;
  }
}

/* Mobile nav toggle — simple show/hide via checkbox hack or just display CTA */
.mobile-nav-toggle {
  display: none;
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
  background: linear-gradient(135deg, #1C1C1C 0%, #2d3a2d 100%);
  color: #fff;
  padding: 3.5rem 1.25rem 3rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.12;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr 420px;
  }
}

.hero-content h1 {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1rem;
}

@media (min-width: 600px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (min-width: 900px) {
  .hero-content h1 {
    font-size: 2.75rem;
  }
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 0.35rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: #e0e0e0;
  white-space: nowrap;
}

.trust-badge::before {
  content: '✓';
  color: #81C784;
  font-weight: 700;
}

/* =====================================================
   QUOTE FORM (Hero & Contact)
   ===================================================== */
.quote-form-box {
  background: #fff;
  border-radius: 8px;
  padding: 1.75rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  color: #1C1C1C;
}

.quote-form-box h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: #1C1C1C;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  border: 1.5px solid #ccc;
  border-radius: 4px;
  background: #fafafa;
  color: #1C1C1C;
  transition: border-color 0.2s;
  min-height: 44px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2E7D32;
  background: #fff;
}

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

.form-submit {
  width: 100%;
  min-height: 52px;
  font-size: 1.05rem;
  background: #2E7D32;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  padding: 0.85rem 1rem;
  transition: background 0.2s;
  font-family: 'Roboto', sans-serif;
}

.form-submit:hover {
  background: #1B5E20;
}

.form-note {
  font-size: 0.8rem;
  color: #777;
  margin-top: 0.6rem;
  text-align: center;
}

/* =====================================================
   TRUST BAR
   ===================================================== */
.trust-bar {
  background: #2E7D32;
  color: #fff;
  padding: 1rem 1.25rem;
}

.trust-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  justify-content: center;
  align-items: center;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
}

.trust-bar-item::before {
  content: '✓';
  font-weight: 900;
  font-size: 1rem;
}

/* =====================================================
   SERVICES SECTION (Homepage)
   ===================================================== */
.services-section {
  padding: 4rem 1.25rem;
  background: #fff;
}

.services-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: #f8f8f8;
  border-radius: 8px;
  padding: 1.5rem;
  border-left: 4px solid #2E7D32;
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.service-card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: #1C1C1C;
}

.service-card p {
  font-size: 0.92rem;
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.service-card a.learn-more {
  font-size: 0.9rem;
  font-weight: 700;
  color: #2E7D32;
  text-decoration: none;
}

.service-card a.learn-more:hover {
  text-decoration: underline;
}

/* =====================================================
   WHY CHOOSE US
   ===================================================== */
.why-section {
  background: #1C1C1C;
  color: #fff;
  padding: 4rem 1.25rem;
}

.why-section .section-title {
  color: #fff;
}

.why-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-card {
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 1.5rem;
  border-top: 3px solid #2E7D32;
}

.why-card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.92rem;
  color: #bbb;
  line-height: 1.6;
}

/* =====================================================
   SERVICE AREAS
   ===================================================== */
.areas-section {
  padding: 4rem 1.25rem;
  background: #f4f9f4;
}

.areas-grid {
  display: grid;
  gap: 0.5rem 2rem;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 1.5rem;
}

@media (min-width: 600px) {
  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .areas-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.areas-grid li {
  list-style: none;
  font-size: 0.95rem;
  color: #333;
  padding: 0.3rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.areas-grid li::before {
  content: '📍';
  position: absolute;
  left: 0;
  font-size: 0.8rem;
}

.areas-cta {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
  font-style: italic;
}

/* =====================================================
   FAQ SECTION
   ===================================================== */
.faq-section {
  padding: 4rem 1.25rem;
  background: #fff;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
  padding: 1.25rem 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1C1C1C;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.faq-item p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.65;
}

/* =====================================================
   FINAL CTA SECTION
   ===================================================== */
.final-cta {
  background: #2E7D32;
  color: #fff;
  padding: 4rem 1.25rem;
  text-align: center;
}

.final-cta h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #fff;
}

.final-cta .phone-link {
  display: inline-block;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  margin: 0.75rem 0 1rem;
  letter-spacing: 0.02em;
}

.final-cta .phone-link:hover {
  color: #c8e6c9;
  text-decoration: none;
}

.final-cta .subtext {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  margin-top: 0.5rem;
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: #111;
  color: #bbb;
  padding: 3rem 1.25rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #999;
  margin-top: 0.5rem;
}

.footer-brand a {
  color: #81C784;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
}

.footer-brand a:hover {
  text-decoration: underline;
}

.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.4rem;
}

.footer-col ul li a {
  color: #999;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid #222;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #666;
}

.footer-bottom a {
  color: #888;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #bbb;
}

/* =====================================================
   SERVICE PAGE LAYOUT
   ===================================================== */
.page-hero {
  background: linear-gradient(135deg, #1C1C1C 0%, #2d3a2d 100%);
  color: #fff;
  padding: 3rem 1.25rem;
}

.page-hero h1 {
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1.2;
  max-width: 700px;
}

@media (min-width: 600px) {
  .page-hero h1 {
    font-size: 2.25rem;
  }
}

.page-hero p {
  font-size: 1.05rem;
  color: #ccc;
  margin-top: 0.75rem;
  max-width: 620px;
}

.page-hero .breadcrumb {
  font-size: 0.82rem;
  color: #888;
  margin-bottom: 1rem;
}

.page-hero .breadcrumb a {
  color: #81C784;
  text-decoration: none;
}

.page-hero .breadcrumb a:hover {
  text-decoration: underline;
}

.content-section {
  padding: 3rem 1.25rem;
}

.content-section.alt {
  background: #f8f8f8;
}

.content-body {
  max-width: 780px;
}

.content-body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
  color: #1C1C1C;
  line-height: 1.3;
}

.content-body h2:first-child {
  margin-top: 0;
}

.content-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 1.5rem 0 0.5rem;
  color: #1C1C1C;
}

.content-body p {
  margin-bottom: 1rem;
  color: #333;
  line-height: 1.7;
}

.content-body ul,
.content-body ol {
  margin-bottom: 1.25rem;
  color: #333;
}

.content-body ul li,
.content-body ol li {
  margin-bottom: 0.4rem;
  line-height: 1.65;
}

.content-body strong {
  font-weight: 700;
  color: #1C1C1C;
}

/* Process steps */
.process-steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.process-steps li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  counter-increment: step;
}

.process-steps li::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
  background: #2E7D32;
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  font-size: 0.9rem;
  margin-top: 0.1rem;
}

/* Inline CTA box */
.inline-cta {
  background: #1C1C1C;
  color: #fff;
  border-radius: 8px;
  padding: 1.75rem;
  margin: 2.5rem 0;
  text-align: center;
}

.inline-cta h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.inline-cta .phone-link {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 900;
  color: #81C784;
  text-decoration: none;
  margin: 0.5rem 0;
}

.inline-cta .phone-link:hover {
  color: #a5d6a7;
  text-decoration: none;
}

/* =====================================================
   TWO-COLUMN LAYOUT (Contact Page)
   ===================================================== */
.two-col-section {
  padding: 3rem 1.25rem;
}

.two-col-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .two-col-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-details h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1C1C1C;
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
}

.contact-details h3:first-child {
  margin-top: 0;
}

.contact-details p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0.5rem;
  line-height: 1.65;
}

.contact-details .phone-big {
  font-size: 1.6rem;
  font-weight: 900;
  color: #2E7D32;
  text-decoration: none;
  display: block;
  margin-bottom: 0.25rem;
}

.contact-details .phone-big:hover {
  color: #1B5E20;
  text-decoration: none;
}

.contact-details ul {
  list-style: none;
  padding: 0;
}

.contact-details ul li {
  font-size: 0.95rem;
  color: #555;
  padding: 0.2rem 0;
}

.contact-details ul li::before {
  content: '✓ ';
  color: #2E7D32;
  font-weight: 700;
}

.info-box {
  background: #f8f8f8;
  border-left: 4px solid #2E7D32;
  border-radius: 0 4px 4px 0;
  padding: 1rem 1.25rem;
  margin-top: 1.5rem;
  font-size: 0.92rem;
  color: #444;
  line-height: 1.6;
}

/* =====================================================
   BLOG / ARTICLE
   ===================================================== */
.article-hero {
  background: linear-gradient(135deg, #1C1C1C 0%, #2d3a2d 100%);
  color: #fff;
  padding: 3rem 1.25rem;
}

.article-hero .article-meta {
  font-size: 0.85rem;
  color: #aaa;
  margin-bottom: 1rem;
}

.article-hero .article-meta span {
  margin-right: 1rem;
}

.article-hero h1 {
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1.2;
  max-width: 720px;
}

@media (min-width: 600px) {
  .article-hero h1 {
    font-size: 2.1rem;
  }
}

.article-section {
  padding: 3rem 1.25rem;
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
}

.article-body h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
  color: #1C1C1C;
  line-height: 1.3;
  padding-top: 0.5rem;
  border-top: 2px solid #e0e0e0;
}

.article-body h2:first-child {
  border-top: none;
  margin-top: 0;
}

.article-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 1.5rem 0 0.5rem;
  color: #1C1C1C;
}

.article-body p {
  margin-bottom: 1.1rem;
  color: #333;
  line-height: 1.75;
}

.article-body ul, .article-body ol {
  margin-bottom: 1.25rem;
  color: #333;
}

.article-body li {
  margin-bottom: 0.4rem;
  line-height: 1.65;
}

.article-body strong {
  font-weight: 700;
  color: #1C1C1C;
}

.article-body hr {
  border: none;
  border-top: 1px solid #e8e8e8;
  margin: 2rem 0;
}

.article-cta-box {
  background: #2E7D32;
  color: #fff;
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
  text-align: center;
}

.article-cta-box h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.article-cta-box p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 1rem;
}

.article-cta-box .phone-link {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 1rem;
}

.article-footer-meta {
  font-size: 0.85rem;
  color: #888;
  border-top: 1px solid #e8e8e8;
  padding-top: 1.5rem;
  margin-top: 2rem;
  font-style: italic;
}

/* Related posts */
.related-posts {
  padding: 3rem 1.25rem;
  background: #f4f9f4;
}

.related-posts .section-title {
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}

.related-posts-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.related-post-card {
  background: #fff;
  border-radius: 6px;
  padding: 1.25rem;
  border: 1px solid #e0e0e0;
  transition: box-shadow 0.2s;
}

.related-post-card:hover {
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.related-post-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1C1C1C;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.related-post-card p {
  font-size: 0.88rem;
  color: #666;
  margin-bottom: 0.75rem;
  line-height: 1.55;
}

.related-post-card a.read-more {
  font-size: 0.88rem;
  font-weight: 700;
  color: #2E7D32;
  text-decoration: none;
}

.related-post-card a.read-more:hover {
  text-decoration: underline;
}

/* =====================================================
   OTHER SERVICES (sidebar/bottom)
   ===================================================== */
.other-services-section {
  background: #f4f4f4;
  padding: 3rem 1.25rem;
}

.other-services-list {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .other-services-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .other-services-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.other-services-list a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border-radius: 6px;
  padding: 0.85rem 1rem;
  color: #1C1C1C;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border: 1px solid #ddd;
  transition: border-color 0.2s, color 0.2s;
}

.other-services-list a:hover {
  border-color: #2E7D32;
  color: #2E7D32;
  text-decoration: none;
}

/* =====================================================
   MISC
   ===================================================== */
.section-padded {
  padding: 3.5rem 1.25rem;
}

.divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 2rem 0;
}

/* Skip to main content (accessibility) */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #2E7D32;
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 9999;
  font-size: 0.9rem;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
