/*
 * KCA Advisors - Addiction Treatment Center Website
 * Style: Nature Healing (#4) - Forest greens, natural healing energy
 * Architecture: Sidebar Navigation (#4) - Fixed left sidebar with expandable sections
 * Generated: 2026-02-13
 */

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

/* ========== ROOT VARIABLES (Nature Healing Style) ========== */
:root {
  /* Colors */
  --primary-color: #2D5A3D;      /* Forest Green */
  --secondary-color: #7CB083;    /* Leaf Green */
  --accent-color: #E8B84A;       /* Sunlight */
  --text-color: #1A2E1A;         /* Deep Forest */
  --bg-color: #F5F9F5;           /* Light Green */
  --white: #FFFFFF;

  /* Typography */
  --heading-font: 'Libre Baskerville', Georgia, serif;
  --body-font: 'Nunito', Arial, sans-serif;

  /* Spacing */
  --sidebar-width: 280px;
  --header-height: 70px;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;

  /* Border Radius (Rounded - warm feel) */
  --radius-sm: 16px;
  --radius-md: 20px;
  --radius-lg: 24px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(45, 90, 61, 0.1);
  --shadow-md: 0 4px 16px rgba(45, 90, 61, 0.15);
  --shadow-lg: 0 8px 24px rgba(45, 90, 61, 0.2);

  /* Transitions */
  --transition: all 0.3s ease;
}

/* ========== BASE STYLES ========== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background: var(--bg-color);
  overflow-x: hidden;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.3;
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

h1 { font-size: 2.5rem; font-weight: 600; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: var(--spacing-md);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

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

/* ========== SIDEBAR NAVIGATION (Architecture #4) ========== */
.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: var(--spacing-lg);
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 4px 0 20px rgba(45, 90, 61, 0.2);
  transition: var(--transition);
}

.sidebar::-webkit-scrollbar {
  width: 6px;
}

.sidebar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}

.sidebar__logo {
  margin-bottom: var(--spacing-xl);
  text-align: center;
}

.sidebar__logo a {
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 600;
  font-family: var(--heading-font);
  text-decoration: none;
  display: block;
}

.sidebar__logo a:hover {
  color: var(--accent-color);
}

.sidebar__nav {
  list-style: none;
}

.sidebar__nav-item {
  margin-bottom: var(--spacing-sm);
}

.sidebar__nav-link {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: var(--transition);
}

.sidebar__nav-link:hover,
.sidebar__nav-link.active {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  transform: translateX(5px);
}

.sidebar__nav-link i {
  margin-right: 10px;
  font-size: 1.1rem;
}

/* Expandable Menu Sections */
.sidebar__nav-item.has-children > .sidebar__nav-link::after {
  content: '\25BC';
  margin-left: auto;
  font-size: 0.75rem;
  transition: var(--transition);
}

.sidebar__nav-item.has-children.expanded > .sidebar__nav-link::after {
  transform: rotate(180deg);
}

.sidebar__submenu {
  list-style: none;
  padding-left: var(--spacing-lg);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.sidebar__nav-item.has-children.expanded .sidebar__submenu {
  max-height: 500px;
}

.sidebar__submenu-link {
  display: block;
  padding: 8px 16px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  border-radius: 8px;
  margin: 4px 0;
  transition: var(--transition);
}

.sidebar__submenu-link:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(3px);
  color: var(--white);
}

/* Top Bar (minimal - phone + CTA) */
.topbar {
  position: fixed;
  left: var(--sidebar-width);
  top: 0;
  right: 0;
  height: var(--header-height);
  background: var(--white);
  padding: 0 var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  z-index: 900;
}

.topbar__phone {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
}

.topbar__phone i {
  margin-right: 10px;
  color: var(--secondary-color);
}

.topbar__cta .btn {
  padding: 12px 28px;
}

/* Mobile Toggle */
.sidebar__toggle {
  display: none;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1100;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
}

/* ========== MAIN CONTENT AREA ========== */
.main-content {
  margin-left: var(--sidebar-width);
  margin-top: var(--header-height);
  min-height: calc(100vh - var(--header-height));
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--spacing-xl) var(--spacing-lg);
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* ========== PAGE HEADER (for inner pages) ========== */
.page-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: var(--spacing-xl) 0;
  text-align: center;
  color: var(--white);
  margin-bottom: var(--spacing-xl);
}

.page-header__title {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: var(--spacing-md);
}

.page-header__subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  margin: 0 auto;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(45, 90, 61, 0.8) 0%, rgba(124, 176, 131, 0.7) 50%, rgba(232, 184, 74, 0.5) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 800px;
  padding: var(--spacing-lg);
}

.hero__title {
  font-size: 3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--spacing-md);
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-lg);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
}

.hero__buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-family: var(--heading-font);
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  font-size: 1rem;
}

.btn--primary {
  background: var(--white);
  color: var(--primary-color);
  border-color: var(--white);
}

.btn--primary:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.btn--secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--secondary:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.btn--accent {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  border: none;
  box-shadow: var(--shadow-md);
}

.btn--accent:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ========== SECTIONS ========== */
.section {
  padding: var(--spacing-xl) 0;
}

.section--alt {
  background: var(--white);
}

.section__header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section__title {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.section__subtitle {
  font-size: 1.25rem;
  color: var(--text-color);
  max-width: 700px;
  margin: 0 auto;
}

/* ========== TRUST BAR ========== */
.trust-bar {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: var(--spacing-lg) 0;
  color: var(--white);
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  text-align: center;
}

.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trust-bar__icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--accent-color);
}

.trust-bar__text {
  font-size: 1.1rem;
  font-weight: 600;
}

/* ========== CARD GRID ========== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card__content {
  padding: var(--spacing-lg);
}

.card__icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: var(--spacing-md);
}

.card__title {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.card__text {
  color: var(--text-color);
  margin-bottom: var(--spacing-md);
}

.card__link {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 600;
  transition: var(--transition);
}

.card__link:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

.card__link i {
  margin-left: 8px;
}

/* ========== FEATURES / WHY CHOOSE US ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
}

.feature {
  text-align: center;
  padding: var(--spacing-lg);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feature:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.feature__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-md);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
}

.feature__title {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.feature__text {
  color: var(--text-color);
}

/* ========== TESTIMONIALS ========== */
.testimonial {
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--spacing-lg);
  border-left: 5px solid var(--secondary-color);
}

.testimonial__quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-color);
  margin-bottom: var(--spacing-md);
  line-height: 1.8;
}

.testimonial__author {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1rem;
}

.testimonial__program {
  font-size: 0.9rem;
  color: #888;
  font-style: italic;
}

/* ========== FAQ ACCORDION ========== */
.faq {
  max-width: 900px;
  margin: 0 auto;
}

.faq__item {
  background: var(--white);
  margin-bottom: var(--spacing-md);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq__question {
  width: 100%;
  padding: var(--spacing-lg);
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--heading-font);
  transition: var(--transition);
}

.faq__question:hover {
  background: rgba(45, 90, 61, 0.05);
}

.faq__question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--secondary-color);
  transition: var(--transition);
}

.faq__item.active .faq__question::after {
  content: '−';
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq__item.active .faq__answer {
  max-height: 500px;
}

.faq__answer-content {
  padding: 0 var(--spacing-lg) var(--spacing-lg);
  color: var(--text-color);
  line-height: 1.8;
}

/* ========== CONTACT FORM ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
}

.contact-info {
  padding: var(--spacing-lg);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.contact-info h2 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.contact-info > p {
  color: var(--text-color);
  margin-bottom: var(--spacing-lg);
  line-height: 1.7;
}

.contact-methods {
  margin-bottom: var(--spacing-xl);
}

.contact-method {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-md);
  background: var(--bg-color);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.contact-method:hover {
  background: linear-gradient(135deg, rgba(45, 90, 61, 0.05), rgba(124, 176, 131, 0.05));
  transform: translateX(5px);
}

.contact-method__icon {
  font-size: 2rem;
  margin-right: var(--spacing-md);
  flex-shrink: 0;
}

.contact-method__content h3 {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.contact-method__content p {
  margin: 0;
  color: var(--text-color);
  line-height: 1.6;
}

.contact-method__content a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}

.contact-method__content a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.contact-method__note {
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
  margin-top: 4px !important;
}

.contact-cta {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  color: var(--white);
  text-align: center;
  margin-top: var(--spacing-xl);
}

.contact-cta h3 {
  color: var(--white);
  margin-bottom: var(--spacing-md);
  font-size: 1.3rem;
}

.contact-cta p {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--spacing-lg);
}

.contact-form-wrapper {
  padding: var(--spacing-lg);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.contact-form-wrapper h2 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.contact-form-wrapper > p {
  color: var(--text-color);
  margin-bottom: var(--spacing-lg);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #E0E0E0;
  border-radius: var(--radius-sm);
  font-family: var(--body-font);
  font-size: 1rem;
  color: var(--text-color);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(124, 176, 131, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  font-weight: normal;
  color: var(--text-color);
}

.checkbox-label input[type="checkbox"] {
  margin-right: 10px;
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-label span {
  font-size: 0.95rem;
  line-height: 1.6;
}

.form-note {
  font-size: 0.9rem;
  color: #666;
  text-align: center;
  margin-top: var(--spacing-md);
  font-style: italic;
}

.btn--large {
  padding: 16px 40px;
  font-size: 1.1rem;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--spacing-lg);
}

.contact-info__icon {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-right: var(--spacing-md);
  margin-top: 4px;
}

.contact-info__text h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--primary-color);
}

.contact-info__text p {
  margin: 0;
  color: var(--text-color);
}

/* ========== BLOG GRID ========== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: var(--spacing-lg);
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}

.blog-card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card__content {
  padding: var(--spacing-lg);
}

.blog-card__category {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.blog-card__title {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.blog-card__excerpt {
  color: var(--text-color);
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
}

.blog-card__date {
  font-size: 0.9rem;
  color: #888;
}

/* ========== FOOTER ========== */
.footer {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  padding: var(--spacing-xl) 0 var(--spacing-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer__section h3 {
  color: var(--white);
  margin-bottom: var(--spacing-md);
  font-size: 1.3rem;
}

.footer__nav {
  list-style: none;
}

.footer__nav-item {
  margin-bottom: var(--spacing-sm);
}

.footer__nav-link {
  color: rgba(255, 255, 255, 0.9);
  transition: var(--transition);
  display: block;
}

.footer__nav-link:hover {
  color: var(--white);
  transform: translateX(5px);
}

.footer__contact p {
  margin-bottom: var(--spacing-sm);
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
}

.footer__contact i {
  margin-right: 10px;
  color: var(--accent-color);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: var(--spacing-md);
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

/* ========== GOOGLE MAP & LOCATION ========== */
.section--light {
  background: var(--white);
}

.location-content {
  margin-top: var(--spacing-xl);
}

.map-container {
  margin-bottom: var(--spacing-xl);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

.directions-info {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.directions-info h3 {
  color: var(--primary-color);
  font-size: 1.75rem;
  margin-bottom: var(--spacing-md);
}

.directions-info > p {
  color: var(--text-color);
  margin-bottom: var(--spacing-lg);
  font-size: 1.05rem;
}

.directions-section {
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-md);
  background: var(--bg-color);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--secondary-color);
}

.directions-section h4 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: var(--spacing-sm);
}

.directions-section p {
  color: var(--text-color);
  line-height: 1.7;
  margin: 0;
}

.directions-note {
  background: linear-gradient(135deg, rgba(45, 90, 61, 0.1), rgba(124, 176, 131, 0.1));
  padding: var(--spacing-md);
  border-radius: var(--radius-sm);
  margin-top: var(--spacing-lg);
  border: 2px solid var(--secondary-color);
}

.directions-note p {
  margin: 0;
  color: var(--text-color);
  font-weight: 600;
}

.directions-note strong {
  color: var(--primary-color);
}

/* ========== SERVICE AREAS ========== */
.service-area-content {
  margin-top: var(--spacing-lg);
}

.service-area-content > p {
  color: var(--text-color);
  margin-bottom: var(--spacing-xl);
  line-height: 1.8;
  font-size: 1.05rem;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.service-areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.service-area-column {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.service-area-column h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-sm);
  border-bottom: 3px solid var(--secondary-color);
}

.service-area-column ul {
  list-style: none;
  padding: 0;
}

.service-area-column li {
  color: var(--text-color);
  padding: 8px 0;
  padding-left: var(--spacing-md);
  position: relative;
  line-height: 1.6;
}

.service-area-column li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 1.1rem;
}

.service-area-note {
  margin-top: var(--spacing-md);
  padding: var(--spacing-md);
  background: var(--bg-color);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-color);
  line-height: 1.6;
  font-style: italic;
}

.service-area-cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(45, 90, 61, 0.05), rgba(124, 176, 131, 0.05));
  padding: var(--spacing-xl);
  border-radius: var(--radius-md);
  border: 2px solid var(--secondary-color);
}

.service-area-cta p {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: var(--spacing-lg);
  font-weight: 600;
}

/* ========== EMERGENCY RESOURCES ========== */
.emergency-resources {
  text-align: center;
}

.emergency-resources h2 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: var(--spacing-md);
}

.emergency-resources > p {
  color: var(--text-color);
  font-size: 1.1rem;
  margin-bottom: var(--spacing-xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.emergency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.emergency-resource {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--secondary-color);
  transition: var(--transition);
}

.emergency-resource:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.emergency-resource h3 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: var(--spacing-md);
}

.emergency-number {
  font-size: 1.75rem;
  font-weight: 700;
  margin: var(--spacing-md) 0;
  font-family: var(--heading-font);
}

.emergency-number a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: var(--transition);
}

.emergency-number a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.emergency-resource > p:last-child {
  color: var(--text-color);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

/* ========== CTA SECTION ========== */
.cta {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: var(--spacing-xl) var(--spacing-lg);
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--white);
  margin: var(--spacing-xl) 0;
}

.cta__title {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: var(--spacing-md);
}

.cta__text {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-lg);
  color: rgba(255, 255, 255, 0.95);
}

.cta__phone {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--spacing-lg);
  display: block;
  text-decoration: none;
}

.cta__phone:hover {
  color: var(--accent-color);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .sidebar {
    transform: translateX(-100%);
  }

  .sidebar.active {
    transform: translateX(0);
  }

  .sidebar__toggle {
    display: block;
  }

  .main-content {
    margin-left: 0;
  }

  .topbar {
    left: 0;
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .service-areas-grid {
    grid-template-columns: 1fr;
  }

  .emergency-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --sidebar-width: 260px;
  }

  .hero {
    height: 500px;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__subtitle {
    font-size: 1.2rem;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .card-grid,
  .features-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .section__title {
    font-size: 2rem;
  }

  .topbar__phone {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: var(--spacing-md);
  }

  .hero__title {
    font-size: 1.75rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

/* ========== UTILITY CLASSES ========== */
.text-center { text-align: center; }
.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mt-4 { margin-top: var(--spacing-xl); }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }
.mb-4 { margin-bottom: var(--spacing-xl); }
