/* =====================================================
   SURF COAST FAMILY LAW - COMPREHENSIVE CSS
   Brand: Surf Coast Family Law (Matrix Legal)
   Design System: Premium, modern law firm aesthetic
   ===================================================== */

/* ROOT VARIABLES */
:root {
  /* Colors */
  --primary: #1b1b2f;
  --secondary: #162447;
  --accent: #1a7a6d;
  --gold: #c9a84c;
  --light-bg: #f8f9fa;
  --bg-alt: #f5f5f5;
  --white: #fff;
  --dark-gray: #333;
  --medium-gray: #999;
  --light-gray: #e0e0e0;
  --text-light: #666;

  /* Typography */
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 2.5rem;
  --spacing-2xl: 3rem;

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

/* RESET & BASE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

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

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

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

/* ===== NAVIGATION ===== */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-right: 3rem;
  white-space: nowrap;
}

.navbar-logo a {
  color: var(--primary);
  text-decoration: none;
}

.navbar-logo span {
  color: var(--accent);
}

.nav-brand {
  margin-right: 3rem;
}

.nav-brand .logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--dark-gray);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  padding: 1rem 0;
  min-width: 250px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 50;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--dark-gray);
  text-decoration: none;
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background: var(--light-bg);
  color: var(--accent);
}

.dropdown-item {
  padding: 0.75rem 1.5rem;
  color: var(--dark-gray);
  transition: var(--transition);
}

.dropdown-item:hover {
  background: var(--light-bg);
  color: var(--accent);
}

.nav-cta {
  margin-left: auto;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  transition: var(--transition);
}

/* CTA BUTTONS IN NAV */
.cta-button {
  background: var(--accent);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
}

.cta-button:hover {
  background: var(--secondary);
  color: var(--white);
}

.cta-button-large {
  background: var(--accent);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  font-size: 1.05rem;
  transition: var(--transition);
}

.cta-button-large:hover {
  background: var(--secondary);
}

/* RESPONSIVE NAV */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    flex-direction: column;
    width: 100%;
    background: var(--white);
    gap: 0;
    border-top: 1px solid var(--light-gray);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-item {
    width: 100%;
    padding: 1rem 2rem;
  }

  .nav-item:not(:last-child) {
    border-bottom: 1px solid var(--light-gray);
  }

  .dropdown-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    display: none;
    box-shadow: none;
    border: none;
    transform: none;
  }

  .nav-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    display: flex;
    flex-direction: column;
  }

  .navbar-logo {
    margin-right: 1rem;
    font-size: 1.2rem;
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

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

.btn-primary:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(26, 122, 109, 0.3);
}

.btn-secondary {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: transparent;
  color: var(--primary);
}

.btn-cta {
  background: var(--accent);
  color: var(--white);
  padding: 0.75rem 1.5rem;
}

.btn-cta:hover {
  background: var(--secondary);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
}

.submit-button {
  background: var(--accent);
  color: var(--white);
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}

.submit-button:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-bg-svg {
  position: absolute;
  top: -50px;
  right: -100px;
  width: 600px;
  height: 600px;
  opacity: 0.15;
  color: var(--accent);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 3rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--gold);
  font-weight: 500;
}

.hero-subtext {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero {
    padding: 4rem 2rem;
    min-height: 350px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-subtext {
    font-size: 1rem;
  }

  .hero-cta, .hero-buttons {
    flex-direction: column;
  }

  .hero-bg-svg {
    width: 300px;
    height: 300px;
    right: -50px;
    top: 0;
  }
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--light-bg);
  padding: 1rem 0;
  font-size: 0.9rem;
}

.breadcrumb-section {
  background: var(--light-bg);
  padding: 1rem 0;
  font-size: 0.9rem;
}

.breadcrumbs {
  background: var(--light-bg);
  padding: 1rem 0;
  font-size: 0.9rem;
}

.breadcrumb a, .breadcrumb-item a {
  color: var(--accent);
  text-decoration: none;
}

.breadcrumb a:hover, .breadcrumb-item a:hover {
  text-decoration: underline;
}

.breadcrumb-list {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.breadcrumb-item {
  position: relative;
}

.breadcrumb-item:not(:last-child)::after {
  content: '>';
  margin-left: 0.5rem;
}

/* ===== SECTIONS ===== */
.section {
  padding: 4rem 2rem;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto;
}

.header-line {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 1rem auto 0;
}

.bg-light {
  background: var(--light-bg);
}

.bg-white {
  background: var(--white);
}

@media (max-width: 768px) {
  .section {
    padding: 3rem 1.5rem;
  }
}

/* ===== TRUST SECTION ===== */
.trust-bar {
  background: var(--light-bg);
  padding: 2.5rem 2rem;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.trust-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.trust-badge {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.trust-badge:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.trust-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.trust-icon svg {
  width: 100%;
  height: 100%;
}

.trust-text h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.trust-text p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.badge-icon {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .trust-badges, .trust-container {
    grid-template-columns: 1fr;
  }
}

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.card-icon svg {
  width: 100%;
  height: 100%;
}

.card-header {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.card-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.card-link:hover {
  color: var(--secondary);
  transform: translateX(4px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-block {
  padding: 2rem;
  background: var(--white);
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.feature-block:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .service-grid, .cards-grid, .feature-grid, .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== AREAS ===== */
.area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.area-tag {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--light-bg);
  border: 2px solid var(--light-gray);
  border-radius: 25px;
  transition: var(--transition);
  font-size: 0.95rem;
}

.area-tag a {
  color: var(--primary);
  text-decoration: none;
}

.area-tag:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.area-tag:hover a {
  color: var(--white);
}

.area-badge {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--light-bg);
  border: 2px solid var(--light-gray);
  border-radius: 25px;
  font-size: 0.95rem;
  color: var(--primary);
  transition: var(--transition);
}

.area-badge:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.area-card {
  padding: 1.5rem;
  background: var(--light-bg);
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  color: var(--primary);
  transition: var(--transition);
}

.area-card:hover {
  background: var(--accent);
  color: var(--white);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.areas-served {
  padding: 4rem 2rem;
}

.areas-contact {
  padding: 4rem 2rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.testimonial-card {
  background: var(--white);
  border-left: 4px solid var(--accent);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  margin-bottom: 1rem;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.testimonial-role {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
}

.timeline-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.timeline-item {
  position: relative;
  padding: 2rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--accent);
}

.timeline-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.timeline-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.timeline-content h4 {
  margin-bottom: 0.5rem;
}

.process-timeline {
  position: relative;
}

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

.accordion-item {
  margin-bottom: 1.5rem;
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
}

.accordion-item.active {
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(26, 122, 109, 0.1);
}

.accordion-header {
  padding: 1.5rem;
  background: var(--light-bg);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  font-weight: 600;
  color: var(--primary);
}

.accordion-header:hover {
  background: var(--white);
}

.accordion-item.active .accordion-header {
  background: var(--accent);
  color: var(--white);
}

.accordion-toggle {
  font-size: 1.2rem;
  transition: var(--transition);
}

.accordion-item.active .accordion-toggle {
  transform: rotate(180deg);
}

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

.accordion-item.active .accordion-content {
  max-height: 1000px;
}

.accordion-body {
  padding: 1.5rem;
  background: var(--white);
}

.accordion-body p {
  margin-bottom: 1rem;
}

.accordion-body p:last-child {
  margin-bottom: 0;
}

/* ===== FACTS SECTION ===== */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.fact-box {
  background: var(--white);
  border-left: 4px solid var(--accent);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.fact-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.fact-description {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 4rem 2rem;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.cta-phone {
  color: var(--gold);
  font-size: 1.05rem;
}

.cta-info {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-info-item {
  color: var(--white);
  font-size: 1rem;
}

@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .cta-info {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ===== CONTACT FORM ===== */
.contact-methods {
  padding: 4rem 2rem;
  background: var(--white);
}

.methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.method-card {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
}

.method-card:hover {
  background: var(--white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.method-icon {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.method-icon svg {
  width: 50px;
  height: 50px;
}

.method-card h3 {
  margin-bottom: 0.5rem;
}

.contact-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.contact-form-section {
  padding: 4rem 2rem;
  background: var(--white);
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.contact-form {
  margin-top: 2rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26, 122, 109, 0.1);
}

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

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

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

.radio-group {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.radio-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.radio-item input[type="radio"] {
  width: auto;
  margin: 0;
}

.form-note {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 1rem;
  text-align: center;
}

/* ===== ABOUT/TEAM SECTION ===== */
.our-story {
  padding: 4rem 2rem;
  background: var(--white);
}

.story-content {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.story-content p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.our-team {
  padding: 4rem 2rem;
  background: var(--light-bg);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.team-member {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.team-member:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.team-photo-placeholder {
  width: 120px;
  height: 120px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-weight: 700;
  color: var(--accent);
  font-size: 1.5rem;
}

.team-member h3 {
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.team-bio {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-light);
}

/* ===== VALUES SECTION ===== */
.our-values {
  padding: 4rem 2rem;
  background: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-card {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
  border-top: 4px solid var(--accent);
}

.value-card:hover {
  background: var(--white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.value-icon {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.value-icon svg {
  width: 50px;
  height: 50px;
}

/* ===== APPROACH SECTION ===== */
.our-approach {
  padding: 4rem 2rem;
  background: var(--light-bg);
}

.approach-content {
  max-width: 900px;
  margin: 0 auto;
}

.approach-content p {
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.approach-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.approach-point {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.approach-point h3 {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.approach-point p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== WHAT TO EXPECT ===== */
.what-to-expect {
  padding: 4rem 2rem;
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step-card {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.3rem;
  margin: 0 auto 1.5rem;
}

.step-card h3 {
  margin-bottom: 1rem;
  color: var(--primary);
}

.step-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ===== OFFICE HOURS ===== */
.office-hours {
  padding: 4rem 2rem;
  background: var(--light-bg);
}

.hours-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.hours-list {
  margin: 2rem 0;
}

.hours-item {
  padding: 1rem;
  background: var(--white);
  margin-bottom: 0.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.hours-note {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 1.5rem;
}

/* ===== MAP SECTION ===== */
.map-section {
  padding: 4rem 2rem;
  background: var(--white);
}

.map-placeholder {
  background: var(--light-bg);
  border: 2px dashed var(--light-gray);
  border-radius: 12px;
  padding: 4rem 2rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.map-placeholder h3 {
  margin-bottom: 1rem;
  color: var(--primary);
}

.map-placeholder p {
  color: var(--text-light);
}

.map-note {
  font-size: 0.9rem;
  color: var(--medium-gray);
  margin-top: 1rem;
}

/* ===== CONTACT INFO ===== */
.contact-info {
  margin-bottom: 1rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.75rem;
}

.contact-item strong {
  color: var(--primary);
  font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary);
  color: var(--white);
  padding: 3rem 2rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column {
  color: var(--white);
}

.footer-column h3,
.footer-column h4 {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

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

.footer-column li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--gold);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.footer-phone,
.footer-email {
  margin-bottom: 0.75rem;
}

.footer-phone a,
.footer-email a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 2rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-legal {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
}

.footer-copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-credit {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

/* ===== RELATED SERVICES ===== */
.related-services {
  text-align: center;
  padding: 2rem 0;
}

.related-list {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.related-item {
  display: inline-block;
}

.related-item a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

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

/* ===== INTRO SECTION ===== */
.intro-section {
  max-width: 1000px;
  margin: 0 auto;
}

.intro-highlight {
  font-weight: 600;
  color: var(--accent);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.fade-in-up:nth-child(2) {
  animation-delay: 0.1s;
}

.fade-in-up:nth-child(3) {
  animation-delay: 0.2s;
}

.fade-in-up:nth-child(4) {
  animation-delay: 0.3s;
}

.fade-in-up:nth-child(5) {
  animation-delay: 0.4s;
}

.fade-in-up:nth-child(6) {
  animation-delay: 0.5s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .section {
    padding: 2.5rem 1.5rem;
  }

  .trust-bar {
    padding: 1.5rem 1rem;
  }

  .contact-methods,
  .contact-form-section,
  .our-story,
  .our-team,
  .our-values,
  .our-approach,
  .what-to-expect,
  .office-hours,
  .map-section,
  .areas-served,
  .areas-contact {
    padding: 2.5rem 1.5rem;
  }

  .cta-section {
    padding: 3rem 1.5rem;
  }

  .footer {
    padding: 2rem 1.5rem 1rem;
  }

  .hero {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .section {
    padding: 1.5rem 1rem;
  }

  .container {
    padding: 0 1rem;
  }

  .area-grid {
    gap: 0.5rem;
  }

  .area-tag {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .testimonials-grid,
  .service-grid,
  .cards-grid,
  .feature-grid,
  .features-grid,
  .team-grid,
  .values-grid,
  .facts-grid,
  .methods-grid,
  .steps-grid,
  .areas-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-subtext {
    font-size: 0.9rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }

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

/* ===== UTILITY CLASSES ===== */
.active {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}

.dropdown {
  position: relative;
}

.hero-about,
.hero-contact {
  position: relative;
  min-height: 400px;
}

/* LOGO IN DIFFERENT PAGES */
.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

/* BREADCRUMB TEXT STYLING */
.breadcrumb span {
  color: var(--primary);
  font-weight: 500;
}

/* INTRO CONTENT */
.intro-section p {
  line-height: 1.8;
}
