/* ================================================
   Apex Adjusting Group - Professional Stylesheet
   Brand Colors: Primary Blue #003673, Orange #ff6b35
   Inspired by modern, clean restoration industry design
   ================================================ */

/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --primary-blue: #003673;
    --dark-blue: #002147;
    --light-blue-bg: #f0f7ff;
    --action-orange: #ff6b35;
    --action-orange-hover: #e55a2b;

    /* Neutral Colors */
    --text-dark: #353535;
    --text-light: #666666;
    --white: #ffffff;
    --cream: #FEF1E4;
    --gray-light: #f8f9fa;
    --border-color: #e5e5e5;

    /* Spacing - More generous like Edge */
    --container-width: 1200px;
    --section-padding: 5rem 2rem;
    --element-spacing: 3rem;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    font-weight: 400;
}

/* Typography - Cleaner hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 2.75rem;
    font-weight: 700;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--action-orange);
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ================================================
   HEADER & NAVIGATION - Professional & Clean
   ================================================ */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styling */
.nav-logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 70px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: -0.02em;
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 1rem;
    letter-spacing: 0.01em;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--action-orange);
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 0.75rem 0;
    min-width: 220px;
    list-style: none;
    margin-top: 0;
    padding-top: 1rem;
}

.nav-dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    display: block;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.875rem 1.75rem;
    color: var(--text-dark);
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background-color: var(--light-blue-bg);
    color: var(--primary-blue);
    padding-left: 2rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    width: 28px;
    height: 3px;
    background-color: var(--primary-blue);
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* ================================================
   BUTTONS - Professional styling
   ================================================ */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2.25rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--action-orange);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.btn-primary:hover {
    background-color: var(--action-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.35);
}

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

.btn-secondary:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 54, 115, 0.25);
}

.btn-large {
    padding: 1.35rem 2.75rem;
    font-size: 1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-link {
    color: var(--action-orange);
    font-weight: 600;
    text-transform: none;
}

/* ================================================
   HERO SECTIONS - With background image support
   ================================================ */
.hero,
.service-hero,
.location-hero,
.locations-hero,
.about-hero,
.contact-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Hero with background image overlay */
.hero-with-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content,
.service-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hero h1,
.service-hero h1,
.location-hero h1,
.locations-hero h1,
.about-hero h1,
.contact-hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

/* Hero section button overrides for visibility */
.hero .btn-secondary,
.service-hero .btn-secondary,
.location-hero .btn-secondary {
    background-color: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--white);
}

.hero .btn-secondary:hover,
.service-hero .btn-secondary:hover,
.location-hero .btn-secondary:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.hero-subtitle,
.service-subtitle {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-badges {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.badge {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.65rem 1.35rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-icon-large {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    color: var(--action-orange);
}

.service-icon-large i {
    display: block;
}

.badge i {
    margin-right: 0.5rem;
}

/* ================================================
   SECTIONS - More generous spacing
   ================================================ */
section {
    padding: var(--section-padding);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.7;
}

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

/* ================================================
   SERVICES - Card-based design
   ================================================ */
.services-overview {
    background-color: var(--cream);
}

.services-overview h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.service-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--action-orange);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--action-orange);
}

.service-icon i {
    display: block;
}

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

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ================================================
   BENEFITS / WHY CHOOSE US
   ================================================ */
.why-choose-us {
    background-color: var(--white);
}

.why-choose-us h2 {
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.benefit {
    text-align: center;
    padding: 1.5rem;
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--action-orange);
}

.benefit h3 {
    margin-bottom: 1rem;
}

.benefit p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ================================================
   LOCATIONS
   ================================================ */
.service-areas {
    background-color: var(--light-blue-bg);
}

.service-areas h2 {
    text-align: center;
}

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

.location-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
}

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

.location-card h3 {
    margin-bottom: 1rem;
}

/* ================================================
   TRUST INDICATORS / STATS
   ================================================ */
.trust-indicators {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 4rem;
    text-align: center;
}

.stat {
    padding: 1.5rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--action-orange);
    margin-bottom: 0.75rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.15rem;
    color: var(--white);
    opacity: 0.95;
    font-weight: 500;
}

/* ================================================
   CTA SECTIONS
   ================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

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

/* ================================================
   SERVICE PAGES - Two-column layout
   ================================================ */
.service-details {
    padding: 5rem 2rem;
    background-color: var(--white);
}

.service-details .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.service-content {
    max-width: none;
}

.service-content h2 {
    margin-bottom: 1.5rem;
}

.service-content h3 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.service-content p {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
    margin: 2.5rem 0;
}

.coverage-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background-color: var(--gray-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.coverage-item:hover {
    background-color: var(--light-blue-bg);
    transform: translateX(5px);
}

.check-icon {
    color: var(--action-orange);
    font-weight: bold;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.process-steps {
    display: grid;
    gap: 2.5rem;
    margin: 3rem 0;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: start;
    padding: 1.5rem;
    background-color: var(--gray-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.step:hover {
    background-color: var(--light-blue-bg);
    transform: translateX(10px);
}

.step-number {
    background: linear-gradient(135deg, var(--action-orange) 0%, var(--action-orange-hover) 100%);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.25);
}

.step h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.step p {
    margin-bottom: 0;
    color: var(--text-light);
}

.benefits-list {
    list-style: none;
    padding-left: 0;
    margin: 2rem 0;
}

.benefits-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--action-orange);
    font-weight: bold;
    font-size: 1.35rem;
}

/* Service Sidebar */
.service-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-cta,
.sidebar-locations,
.sidebar-trust,
.sidebar-info,
.sidebar-services {
    background-color: var(--light-blue-bg);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.sidebar-cta h3,
.sidebar-locations h4,
.sidebar-trust h4,
.sidebar-info h4,
.sidebar-services h4 {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
}

.sidebar-cta .btn-block {
    margin-bottom: 1rem;
}

.sidebar-cta .btn-block:last-child {
    margin-bottom: 0;
}

.sidebar-locations ul,
.sidebar-trust ul,
.sidebar-services ul {
    list-style: none;
    padding-left: 0;
}

.sidebar-locations ul li,
.sidebar-trust ul li,
.sidebar-services ul li {
    padding: 0.5rem 0;
    font-size: 1rem;
}

/* FAQ Section */
.faq-section {
    background-color: var(--cream);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 4rem;
}

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

.faq-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-left-color: var(--action-orange);
    transform: translateY(-3px);
}

.faq-item h4 {
    margin-bottom: 1rem;
    color: var(--primary-blue);
    font-size: 1.15rem;
    line-height: 1.4;
}

.faq-item p {
    margin-bottom: 0;
    color: var(--text-dark);
    line-height: 1.7;
}

/* ================================================
   LOCATION PAGES
   ================================================ */
.location-details {
    padding: 5rem 2rem;
}

.location-details .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.nearby-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.25rem;
    margin: 2rem 0;
}

.nearby-area {
    background-color: var(--light-blue-bg);
    padding: 1rem 1.25rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nearby-area:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
}

.services-grid-location {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.service-card-small {
    background-color: var(--light-blue-bg);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card-small:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-5px);
}

.service-card-small h4 {
    margin-bottom: 0;
}

.location-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.locations-grid-page {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.location-card-page {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.location-card-page:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
}

.location-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.location-state {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.state-sections {
    margin-top: 5rem;
}

.state-section {
    background-color: var(--gray-light);
    padding: 3rem;
    border-radius: 16px;
    margin-bottom: 3rem;
}

.state-locations {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    list-style: none;
    margin-top: 2rem;
}

/* ================================================
   ABOUT PAGE
   ================================================ */
.differentiators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.differentiator {
    background-color: var(--light-blue-bg);
    padding: 2.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.differentiator:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.differentiator h3 {
    margin-bottom: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
    text-align: center;
}

.value {
    padding: 2rem;
}

.value h3 {
    margin-bottom: 1rem;
}

.service-areas-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

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

.state-column ul li {
    padding: 0.5rem 0;
}

/* ================================================
   CONTACT PAGE
   ================================================ */
.contact-content {
    padding: 5rem 2rem;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 54, 115, 0.1);
}

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

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

.contact-method {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: start;
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--action-orange);
}

.contact-details h3 {
    margin-bottom: 0.5rem;
    font-size: 1.35rem;
}

.contact-subtext {
    font-size: 0.95rem;
    color: var(--text-light);
}

.contact-trust {
    background-color: var(--light-blue-bg);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.contact-trust h4 {
    margin-bottom: 1rem;
}

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

.contact-trust ul li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
}

.contact-trust ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--action-orange);
    font-weight: bold;
}

.emergency-notice {
    background-color: #fff3cd;
    border: 2px solid #ffc107;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    margin: 4rem 0;
}

.emergency-notice h3 {
    color: #856404;
    margin-bottom: 1rem;
}

.contact-locations {
    margin-top: 5rem;
}

.locations-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.location-column h4 {
    margin-bottom: 1rem;
}

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

.location-column ul li {
    padding: 0.4rem 0;
}

/* ================================================
   QUICK CONTACT FORM (Homepage)
   ================================================ */
.quick-contact-section {
    background-color: var(--light-blue-bg);
    padding: 5rem 2rem;
}

.quick-contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

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

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

.quick-contact-form {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

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

.required {
    color: #d32f2f;
    font-weight: bold;
}

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

.form-privacy-note i {
    color: var(--action-orange);
    margin-right: 0.5rem;
}

.form-message {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.form-message i {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.form-message h3 {
    margin-bottom: 1rem;
}

.form-message p {
    margin-bottom: 0;
    font-size: 1.05rem;
}

.success-message {
    border-left: 5px solid #28a745;
}

.success-message i {
    color: #28a745;
}

.success-message h3 {
    color: #155724;
}

.error-message {
    border-left: 5px solid #dc3545;
}

.error-message i {
    color: #dc3545;
}

.error-message h3 {
    color: #721c24;
}

/* ================================================
   FLASH MESSAGES
   ================================================ */
.flash-messages {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 1.5rem 2rem;
}

.alert {
    padding: 1.25rem 2rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-left-color: #28a745;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border-left-color: #dc3545;
}

/* ================================================
   FOOTER - Professional styling
   ================================================ */
.footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 4rem 2rem 1.5rem;
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-section p {
    opacity: 0.9;
    line-height: 1.7;
}

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

.footer-section li {
    padding: 0.5rem 0;
}

.footer-section a {
    color: var(--white);
    opacity: 1;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--action-orange);
    padding-left: 5px;
}

.footer-tagline {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-top: 1rem;
    font-weight: 500;
}

.contact-info li {
    margin-bottom: 1.5rem;
}

.contact-info strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--action-orange);
}

.footer-bottom {
    background-color: var(--primary-blue);
    margin-top: 3rem;
    padding: 2rem;
    text-align: center;
}

.footer-bottom .footer-container {
    display: block;
}

.footer-bottom p {
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.footer-bottom a {
    margin: 0 0.75rem;
    color: var(--white);
    opacity: 1;
}

.footer-bottom a:hover {
    color: var(--action-orange);
}

/* ================================================
   GOOGLE REVIEWS SECTION
   ================================================ */
.reviews-section {
    background: linear-gradient(135deg, var(--light-blue-bg) 0%, var(--white) 100%);
    padding: 5rem 2rem;
}

.reviews-header {
    text-align: center;
    margin-bottom: 4rem;
}

.reviews-header h2 {
    margin-bottom: 1.5rem;
}

.reviews-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rating-display .stars {
    display: flex;
    gap: 0.25rem;
    font-size: 1.75rem;
    color: #ffa500;
}

.rating-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.reviews-count {
    font-size: 1rem;
    color: var(--text-light);
}

/* Reviews Carousel Container */
.reviews-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.reviews-carousel {
    overflow: hidden;
    flex: 1;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

.reviews-track .review-card {
    min-width: calc(33.333% - 1.33rem);
    flex-shrink: 0;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--white);
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 54, 115, 0.3);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: scale(1);
}

.carousel-btn:disabled:hover {
    background-color: var(--white);
    color: var(--primary-blue);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot:hover {
    background-color: var(--action-orange);
    transform: scale(1.2);
}

.carousel-dot.active {
    background-color: var(--primary-blue);
    transform: scale(1.3);
}

.review-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-left-color: var(--action-orange);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1.25rem;
}

.review-author {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.author-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
    color: var(--primary-blue);
}

.review-time {
    font-size: 0.875rem;
    color: var(--text-light);
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    color: #ffa500;
    font-size: 1.1rem;
}

.review-text {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    flex-grow: 1;
    font-size: 0.975rem;
}

.review-footer {
    color: var(--text-light);
    font-size: 0.875rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-footer i {
    font-size: 1.1rem;
    color: #4285f4;
}

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

.reviews-cta .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.reviews-cta .btn-secondary i {
    font-size: 1.25rem;
}

/* Trust.Reviews Widget Container */
.trust-reviews-widget {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.trust-reviews-widget .tr-widget {
    margin: 0 auto;
}

/* ================================================
   CONTENT SECTIONS - Homepage expanded content
   ================================================ */
.content-section {
    padding: 5rem 2rem;
    background-color: var(--white);
}

.content-section.bg-light {
    background-color: var(--cream);
}

.content-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.content-section h3 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

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

.content-wrapper p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.75rem;
}

/* Process Timeline */
.process-timeline {
    max-width: 1000px;
    margin: 4rem auto;
    display: grid;
    gap: 3rem;
}

.timeline-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    align-items: start;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--action-orange) 0%, var(--action-orange-hover) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.timeline-content h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Claims Types Grid */
.claims-types {
    max-width: 1000px;
    margin: 4rem auto;
}

.claim-type-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.claim-type-row:last-child {
    margin-bottom: 0;
}

.claim-type {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.claim-type:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-left-color: var(--action-orange);
    transform: translateY(-5px);
}

.claim-type h4 {
    margin-bottom: 1rem;
    color: var(--primary-blue);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.claim-type h4 i {
    color: var(--action-orange);
    font-size: 1.5rem;
}

.claim-type p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ================================================
   RESPONSIVE DESIGN - Mobile-first approach
   ================================================ */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --section-padding: 4rem 2rem;
    }

    h1 {
        font-size: 2.75rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    .service-details .container,
    .location-details .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-sidebar,
    .location-sidebar {
        position: static;
    }

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

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

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 3rem 1.5rem;
    }

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.875rem;
    }

    h3 {
        font-size: 1.35rem;
    }

    .hero,
    .service-hero,
    .location-hero {
        padding: 4rem 1.5rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        gap: 0;
    }

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

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: 1.5rem;
        background-color: var(--gray-light);
        margin-top: 0.5rem;
    }

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

    .hero-cta .btn-large {
        width: 100%;
    }

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

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

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

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

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .process-steps .step {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

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

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

    .quick-contact-form {
        padding: 2rem 1.5rem;
    }

    .timeline-step {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .timeline-icon {
        margin: 0 auto;
    }

    .claim-type-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .reviews-carousel-container {
        gap: 1rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .reviews-track .review-card {
        min-width: 100%;
    }

    .review-header {
        flex-direction: column;
        align-items: start;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 2.5rem 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    h1 {
        font-size: 1.875rem;
    }

    h2 {
        font-size: 1.625rem;
    }

    .btn-large {
        padding: 1.15rem 2rem;
        font-size: 0.95rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.75rem;
    }

    .logo-img {
        height: 56px;
    }

    .nav-logo .logo-text {
        font-size: 1.25rem;
    }
}

/* Print styles for SEO */
@media print {
    .header,
    .footer,
    .cta-section,
    .sidebar-cta {
        display: none;
    }
}

/* ===========================
   Why Choose Section - Modern Design
   =========================== */
.section-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    max-width: 900px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.why-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.why-card.featured {
    border: 2px solid #667eea;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.why-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.why-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
}

.gradient-purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gradient-blue {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.gradient-green {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.gradient-orange {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.gradient-red {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.gradient-teal {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.why-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.why-card h4 {
    font-size: 1.35rem;
    color: #003673;
    margin-bottom: 12px;
    font-weight: 700;
}

.why-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.why-stats {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #eee;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
}

/* Testimonial Highlight */
.testimonial-highlight {
    background: linear-gradient(135deg, #003673 0%, #001e47 100%);
    color: white;
    padding: 40px 50px;
    border-radius: 12px;
    margin-top: 40px;
    margin-bottom: 50px;
    position: relative;
    box-shadow: 0 8px 30px rgba(0,54,115,0.2);
}

.testimonial-icon {
    font-size: 48px;
    opacity: 0.2;
    margin-bottom: 20px;
}

.testimonial-highlight blockquote {
    font-size: 1.25rem;
    line-height: 1.8;
    font-style: italic;
    margin: 0;
    border: none;
    padding: 0;
}

.testimonial-highlight cite {
    display: block;
    margin-top: 20px;
    font-size: 0.95rem;
    font-style: normal;
    opacity: 0.9;
    font-weight: 600;
}

.testimonial-highlight cite:before {
    content: "— ";
}

/* Responsive */
@media (max-width: 768px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-highlight {
        padding: 30px 25px;
    }

    .testimonial-highlight blockquote {
        font-size: 1.1rem;
    }
}

/* Location Page - Centered Content with Sidebar */
.location-content-centered {
    text-align: center;
}

.location-content-centered h2,
.location-content-centered h3 {
    text-align: center;
}

.location-content-centered p,
.location-content-centered ul {
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.location-content-centered .services-grid-location,
.location-content-centered .nearby-areas-grid,
.location-content-centered .process-steps {
    text-align: left;
}
