/* ============================================
   ACCENT COLOR SWITCH
   ============================================ */
/* 
   TO SWITCH ACCENT COLORS: Comment/uncomment the 6 lines below
   
   Currently active: SAFETY ORANGE
   To switch to MUTED YELLOW: Comment the orange lines, uncomment the yellow lines
*/
:root {
    /* Color definitions */
    --accent-orange: #ff6b35;
    --accent-orange-hover: #e55a2b;
    --accent-orange-shadow: rgba(255, 107, 53, 0.3);
    --accent-orange-shadow-hover: rgba(255, 107, 53, 0.4);
    --accent-orange-border: rgba(255, 107, 53, 0.2);
    --accent-orange-focus: rgba(255, 107, 53, 0.1);
    
    --accent-yellow: #d4af37;
    --accent-yellow-hover: #b8941f;
    --accent-yellow-shadow: rgba(212, 175, 55, 0.3);
    --accent-yellow-shadow-hover: rgba(212, 175, 55, 0.4);
    --accent-yellow-border: rgba(212, 175, 55, 0.2);
    --accent-yellow-focus: rgba(212, 175, 55, 0.1);
    
    /* ACTIVE: Safety Orange - Comment these 6 lines to switch to yellow */
    --accent-current: var(--accent-orange);
    --accent-current-hover: var(--accent-orange-hover);
    --accent-current-shadow: var(--accent-orange-shadow);
    --accent-current-shadow-hover: var(--accent-orange-shadow-hover);
    --accent-current-border: var(--accent-orange-border);
    --accent-current-focus: var(--accent-orange-focus);
    
    /* ALTERNATIVE: Muted Yellow - Uncomment these 6 lines to switch to yellow */
    /* --accent-current: var(--accent-yellow); */
    /* --accent-current-hover: var(--accent-yellow-hover); */
    /* --accent-current-shadow: var(--accent-yellow-shadow); */
    /* --accent-current-shadow-hover: var(--accent-yellow-shadow-hover); */
    /* --accent-current-border: var(--accent-yellow-border); */
    /* --accent-current-focus: var(--accent-yellow-focus); */
}

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

:root {
    /* Spacing Scale */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 5rem;
    
    /* Colors */
    --color-primary: var(--accent-current);
    --color-primary-hover: var(--accent-current-hover);
    --color-dark: #2c2a27;
    --color-charcoal: #2c2a27;
    --color-text: #2a2825;
    --color-text-heading: #1f1d1a;
    --color-text-light: #5a5753;
    --color-bg-light: #e8e6e3;
    --color-bg-white: #faf9f7;
    --color-border: #d4d1cc;
    
    /* Typography */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Shadows */
    --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 6px 18px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.18);
    --shadow-button: 0 4px 12px var(--accent-current-shadow);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg-white);
    font-weight: var(--font-weight-normal);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ============================================
   HEADER
   ============================================ */
header {
    background-color: var(--color-dark);
    color: #fff;
    padding: var(--space-md) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.brand {
    margin: 0;
    line-height: 1;
    display: flex;
    align-items: center;
}

.brand .logo {
    height: 50px;
    min-height: 45px;
    width: auto;
    display: block;
    max-width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.phone-link-wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.phone-label {
    font-size: 0.8rem;
    opacity: 0.85;
    font-weight: var(--font-weight-medium);
}

.phone-link {
    color: #fff;
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    font-size: 1rem;
    transition: opacity 0.2s ease;
    white-space: nowrap;
}

.phone-link:hover {
    opacity: 0.9;
    text-decoration: underline;
}

/* ============================================
   BUTTONS
   ============================================ */
.cta-button {
    background-color: var(--color-primary);
    color: #fff;
    padding: 0.875rem 1.75rem;
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: var(--font-weight-semibold);
    font-size: 0.95rem;
    transition: all 0.2s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-button);
    letter-spacing: 0.01em;
}

.cta-button:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px var(--accent-current-shadow-hover);
}

.cta-button:active {
    transform: translateY(0);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    color: #fff;
    padding: var(--space-3xl) 0;
    text-align: center;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    display: block;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
}

.hero-headline {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-md);
    line-height: 1.15;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.85), 0 0 25px rgba(0, 0, 0, 0.6);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.02em;
}

.hero-subheadline {
    font-size: 1.15rem;
    opacity: 1;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.85), 0 0 18px rgba(0, 0, 0, 0.5);
    font-weight: var(--font-weight-normal);
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    background-color: var(--color-bg-white);
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--color-border);
}

.trust-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    max-width: 1000px;
    margin: 0 auto;
}

.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
    color: var(--color-text);
    transition: all 0.2s ease;
}

.trust-badge:hover {
    background-color: #f5f4f2;
    border-color: var(--color-primary);
}

.badge-icon {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

/* ============================================
   TRUST BULLETS
   ============================================ */
.trust-bullets {
    padding: var(--space-3xl) 0;
    background-color: var(--color-bg-light);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    text-align: center;
}

.trust-item {
    padding: var(--space-lg);
}

.trust-item h3 {
    font-size: 1.25rem;
    color: var(--color-text-heading);
    margin-bottom: var(--space-xs);
    font-weight: var(--font-weight-semibold);
    letter-spacing: -0.01em;
}

.trust-item p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: var(--space-3xl) 0;
    background-color: var(--color-bg-white);
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: var(--space-2xl);
    color: var(--color-text-heading);
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.02em;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.service-card {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-current-border);
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--color-text-heading);
    margin-bottom: var(--space-xs);
    font-weight: var(--font-weight-semibold);
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works {
    padding: var(--space-3xl) 0;
    background-color: var(--color-bg-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: var(--font-weight-bold);
    margin: 0 auto var(--space-md);
    box-shadow: var(--shadow-sm);
}

.step-card h3 {
    font-size: 1.3rem;
    color: var(--color-text-heading);
    margin-bottom: var(--space-sm);
    font-weight: var(--font-weight-semibold);
    letter-spacing: -0.01em;
}

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

/* ============================================
   SERVICE AREA SECTION
   ============================================ */
.service-area {
    padding: var(--space-3xl) 0;
    background-color: var(--color-bg-white);
}

.service-area-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.service-area-intro {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.service-area-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    text-align: left;
}

.primary-cities,
.nearby-areas {
    background-color: var(--color-bg-light);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
}

.primary-cities h3,
.nearby-areas h3 {
    font-size: 1.2rem;
    color: var(--color-text-heading);
    margin-bottom: var(--space-md);
    font-weight: var(--font-weight-semibold);
    text-align: center;
}

.primary-cities ul,
.nearby-areas ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xs);
}

.primary-cities li,
.nearby-areas li {
    color: var(--color-text);
    padding: var(--space-xs) 0;
    font-size: 1rem;
    position: relative;
    padding-left: var(--space-md);
}

.primary-cities li::before,
.nearby-areas li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: var(--font-weight-bold);
}

.service-area-note {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.7;
    padding: var(--space-lg);
    background-color: var(--color-bg-light);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-primary);
}

.service-area-note strong {
    color: var(--color-text);
    font-weight: var(--font-weight-semibold);
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose-us {
    padding: var(--space-3xl) 0;
    background-color: var(--color-bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-current-border);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    line-height: 1;
    display: block;
}

.benefit-item h3 {
    font-size: 1.25rem;
    color: var(--color-text-heading);
    margin-bottom: var(--space-xs);
    font-weight: var(--font-weight-semibold);
    letter-spacing: -0.01em;
}

.benefit-item p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   QUOTE FORM SECTION
   ============================================ */
.quote-form-section {
    padding: var(--space-3xl) 0;
    background-color: var(--color-bg-light);
}

.form-phone-link-wrapper {
    text-align: center;
    margin-bottom: var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    flex-wrap: wrap;
}

.form-phone-link-wrapper .phone-label {
    color: var(--color-text-light);
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
}

.form-phone-link-wrapper .phone-link {
    color: var(--color-text);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    font-size: 1.15rem;
    transition: color 0.2s ease;
}

.form-phone-link-wrapper .phone-link:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

.quote-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--color-bg-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group:last-of-type {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background-color: var(--color-bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--accent-current-focus);
}

.submit-button {
    width: 100%;
    padding: 1rem;
    font-size: 1.05rem;
    margin-top: var(--space-md);
}

.success-message {
    max-width: 600px;
    margin: var(--space-xl) auto 0;
    padding: var(--space-lg);
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: var(--font-weight-semibold);
    font-size: 1.05rem;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background-color: var(--color-dark);
    color: #fff;
    padding: var(--space-xl) 0;
    text-align: center;
}

footer p {
    opacity: 0.75;
    font-size: 0.875rem;
    font-weight: var(--font-weight-normal);
}

footer .disclaimer {
    margin-top: var(--space-sm);
    opacity: 0.65;
    font-size: 0.8rem;
    font-style: italic;
}

/* ============================================
   TABLET STYLES (768px+)
   ============================================ */
@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-xl);
    }

    header {
        padding: var(--space-md) 0;
    }

    .brand .logo {
        height: 55px;
    }

    .phone-link {
        font-size: 1.1rem;
    }

    .hero {
        min-height: 550px;
        padding: var(--space-3xl) 0;
    }

    .hero-headline {
        font-size: 2.75rem;
        margin-bottom: var(--space-lg);
    }

    .hero-subheadline {
        font-size: 1.3rem;
    }

    .trust-badges {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-sm);
    }

    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
    }

    .trust-item {
        padding: var(--space-md);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }

    .section-title {
        font-size: 2.25rem;
        margin-bottom: var(--space-2xl);
    }

    header .container {
        flex-wrap: nowrap;
    }

    .quote-form {
        padding: var(--space-2xl);
    }

    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
    }

    .service-area-details {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }

    .primary-cities ul,
    .nearby-areas ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }
}

/* ============================================
   DESKTOP STYLES (1024px+)
   ============================================ */
@media (min-width: 1024px) {
    .hero {
        min-height: 650px;
        padding: var(--space-3xl) 0;
    }

    .hero-headline {
        font-size: 3.25rem;
        line-height: 1.1;
    }

    .hero-subheadline {
        font-size: 1.4rem;
    }

    .trust-badges {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-xl);
    }

    .brand .logo {
        height: 60px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .trust-bullets {
        padding: var(--space-3xl) 0;
    }

    .services {
        padding: var(--space-3xl) 0;
    }

    .quote-form-section {
        padding: var(--space-3xl) 0;
    }

    .how-it-works {
        padding: var(--space-3xl) 0;
    }

    .service-area {
        padding: var(--space-3xl) 0;
    }

    .why-choose-us {
        padding: var(--space-3xl) 0;
    }

    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-xl);
    }
}
