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

:root {
    /* Brand Colors */
    --color-red: #DC143C;
    --color-blue: #003366;
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-gray-light: #F5F5F5;
    --color-gray-medium: #CCCCCC;
    --color-gray-dark: #666666;
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-weight-normal: 400;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-black);
    background-color: var(--color-white);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

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

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

ul {
    list-style: none;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: background-color var(--transition-normal);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-right-mobile {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-contact-mobile {
    display: none;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-black);
    transition: all var(--transition-normal);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: var(--font-weight-semibold);
    color: var(--color-black);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-red);
    transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

.nav-phone {
    background-color: var(--color-red);
    color: var(--color-white);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: var(--font-weight-bold);
}

.nav-phone::after {
    display: none;
}

.nav-phone:hover {
    background-color: #B8122F;
    color: var(--color-white);
}

.nav-contact-btn {
    display: none;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-top: 80px;
    margin: 0;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__bg-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.45) 0%, rgba(0, 51, 102, 0.40) 100%);
    z-index: 2;
}

.hero__container {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2.5rem 2rem 1rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    align-items: center;
    flex: 1;
    min-height: 0;
}

.hero__content {
    color: var(--color-white);
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero__company-banner {
    display: none;
    margin-bottom: 1.25rem;
}

.hero__company-banner span {
    display: inline-block;
    background-color: var(--color-red);
    color: var(--color-white);
    font-size: 0.8rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
}

@media (min-width: 1024px) {
    .hero__company-banner {
        display: block;
    }
    
    .hero__container {
        padding: 3rem 2.5rem 1rem;
        gap: 3rem;
    }
    
    .hero__title {
        font-size: 3.25rem;
    }
    
    .hero__subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
    
    .hero__cta-group {
        margin-bottom: 0;
    }
    
    .hero__image-section {
        display: flex;
    }
    
    .hero__cta-group .btn--estimate-cta,
    .btn--estimate-cta {
        display: none !important;
    }
}

.hero__badge-wrapper {
    margin-bottom: 0;
    text-align: center;
}

@media (min-width: 1024px) {
    .hero__image-section .hero__badge-wrapper {
        display: none;
    }
}

.hero__badge {
    display: inline-block;
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-white);
    padding: 0.75rem 1.75rem;
    background: var(--color-red);
    border: 2px solid var(--color-red);
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4), 0 0 20px rgba(220, 20, 60, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hero__badge:hover {
    background: #B8122F;
    border-color: #B8122F;
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.5), 0 0 30px rgba(220, 20, 60, 0.3);
    transform: translateY(-2px);
}

.hero__title {
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.hero__subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 580px;
}

.hero__cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0;
    justify-content: flex-start;
}

.hero__cta-group .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.hero__cta-group .btn--estimate-cta {
    display: none;
}

.hero__cta-group .btn svg {
    transition: transform 0.3s ease;
}

.hero__cta-group .btn:hover svg {
    transform: translateX(4px);
}

.hero__image-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 1.5rem;
}

.hero__image-card {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.hero__image-card .before-after-container {
    width: 100%;
    height: auto;
    min-height: 400px;
}

.hero__image-card .before-after-wrapper {
    padding-bottom: 75%;
}

.hero__image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Hero Contact Form Styling */
.hero-contact-form {
    width: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.hero-form-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-blue);
    margin-bottom: 1.25rem;
    text-align: center;
    line-height: 1.3;
}

.hero-contact-form .contact-form-v2 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-contact-form .form-group {
    position: relative;
}

.hero-contact-form .form-group input,
.hero-contact-form .form-group select,
.hero-contact-form .form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: all var(--transition-normal);
    background-color: var(--color-white);
    color: var(--color-black);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.hero-contact-form .form-group input:hover,
.hero-contact-form .form-group select:hover,
.hero-contact-form .form-group textarea:hover {
    border-color: #D1D5DB;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.hero-contact-form .form-group input:focus,
.hero-contact-form .form-group select:focus,
.hero-contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--color-red);
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1), 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.hero-contact-form .form-group input::placeholder,
.hero-contact-form .form-group textarea::placeholder {
    color: #9CA3AF;
    font-weight: var(--font-weight-normal);
}

.hero-contact-form .form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    padding-right: 3rem;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(220, 20, 60, 0.1);
}

/* Enhanced mobile select dropdown styling */
@media (max-width: 768px) {
    .hero-contact-form .form-group select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 1rem 3rem 1rem 1rem;
        min-height: 52px;
        background-size: 16px 16px;
        background-position: right 1rem center;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    
    .hero-contact-form .form-group select:focus {
        transform: none; /* Remove transform on mobile for smoother experience */
        border-color: var(--color-red);
        box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.15);
    }
    
    /* Style the dropdown options for better mobile experience */
    .hero-contact-form .form-group select option {
        padding: 1rem;
        font-size: 16px;
        min-height: 44px;
        line-height: 1.5;
        background-color: var(--color-white);
        color: var(--color-black);
    }
    
    .hero-contact-form .form-group select option:checked {
        background-color: rgba(220, 20, 60, 0.1);
        color: var(--color-red);
        font-weight: var(--font-weight-semibold);
    }
    
    .hero-contact-form .form-group select option:hover,
    .hero-contact-form .form-group select option:focus {
        background-color: rgba(220, 20, 60, 0.15);
    }
}

.hero-contact-form .form-group textarea {
    resize: vertical;
    min-height: 100px;
    font-family: var(--font-primary);
}

.hero-contact-form .contact-submit-btn {
    width: 100%;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    margin-top: 0.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
    transition: all var(--transition-normal);
}

.hero-contact-form .contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

.hero-contact-form .contact-submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(220, 20, 60, 0.3);
}

@media (max-width: 1023px) {
    .hero-contact-form {
        padding: 2rem 1.5rem;
    }
    
    .hero-form-title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-contact-form .contact-form-v2 {
        gap: 1rem;
    }
    
    .hero-contact-form .form-group input,
    .hero-contact-form .form-group select,
    .hero-contact-form .form-group textarea {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
}

.hero__content .hero__trust-cards {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 100%;
    margin: 2rem 0 0;
    padding: 0;
    width: 100%;
}

.hero__trust-cards {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.trust-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 1rem 0.75rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-red) 0%, rgba(220, 20, 60, 0.5) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.trust-card:hover::before {
    transform: scaleX(1);
}

.trust-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 8px 24px rgba(220, 20, 60, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
    background: var(--color-white);
    border-color: rgba(220, 20, 60, 0.3);
}

.trust-card__icon {
    position: relative;
    width: 48px;
    height: 48px;
    margin: 0 auto 0.75rem;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.15) 0%, rgba(220, 20, 60, 0.08) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-red);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(220, 20, 60, 0.12);
}

.trust-card__icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid var(--color-red);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
}

.trust-card:hover .trust-card__icon {
    background: linear-gradient(135deg, var(--color-red) 0%, #B8122F 100%);
    color: var(--color-white);
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.4);
}

.trust-card:hover .trust-card__icon::after {
    opacity: 0.3;
    transform: scale(1.1);
}

.trust-card__icon svg {
    width: 28px;
    height: 28px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.trust-card:hover .trust-card__icon svg {
    transform: scale(1.1);
}

.trust-card__title {
    font-size: 0.9rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-blue);
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0.2px;
    transition: color 0.3s ease;
}

.trust-card:hover .trust-card__title {
    color: var(--color-red);
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    pointer-events: none;
}

.hero__scroll-indicator svg {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: var(--font-weight-bold);
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-transform: none;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.btn:hover,
.btn:focus {
    gap: 0.75rem;
}

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

.btn--primary:hover,
.btn--primary:focus {
    background-color: #B8122F;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.4);
}

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

.btn--secondary:hover,
.btn--secondary:focus {
    background-color: var(--color-white);
    color: var(--color-blue);
    transform: translateY(-2px);
}

.btn--large {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
}

.btn--estimate-cta {
    display: none;
}

/* ============================================
   Container & Sections
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 5rem 0;
    margin: 0;
}

.hero {
    padding: 0;
    margin: 0;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-blue);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray-dark);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   Services Section
   ============================================ */
.services {
    background-color: var(--color-white);
    padding: 7rem 0 0;
    position: relative;
}

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

.services .section-label {
    display: inline-block;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-red);
}

.services .section-title {
    font-size: 3.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-black);
    margin: 0;
    line-height: 1.2;
}

.services .title-line {
    display: block;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.service-card {
    background-color: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid rgba(220, 20, 60, 0.1);
    position: relative;
    text-decoration: none;
    color: inherit;
}

a.service-card {
    text-decoration: none;
    color: inherit;
}

a.service-card:hover,
a.service-card:focus {
    text-decoration: none;
    color: inherit;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-red) 0%, var(--color-blue) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(220, 20, 60, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: rgba(220, 20, 60, 0.3);
}

.service-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-gray-light) 0%, #E8E8E8 100%);
}

.service-image-wrapper::before {
    content: '';
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-red) 0%, #B8122F 100%);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.4);
}

.service-card:hover .service-image-wrapper::before {
    opacity: 1;
    transform: scale(1);
}

.service-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 51, 102, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.service-card:hover .service-image-wrapper::after {
    opacity: 1;
}

.service-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.service-content {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: linear-gradient(to bottom, var(--color-white) 0%, #FAFAFA 100%);
    text-align: center;
    position: relative;
}

.service-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--color-red) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease, width 0.4s ease;
}

.service-card:hover .service-content::before {
    opacity: 1;
    width: 100px;
}

.service-title {
    font-size: 1.75rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-blue);
    margin-bottom: 1.25rem;
    text-align: center;
    line-height: 1.3;
    position: relative;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--color-red);
}

.service-description {
    color: var(--color-gray-dark);
    line-height: 1.7;
    text-align: center;
    font-size: 1.0625rem;
    margin: 0;
    transition: color 0.3s ease;
}

.service-card:hover .service-description {
    color: var(--color-black);
}

.services-footer {
    width: 100%;
    height: 150px;
    background-color: var(--color-blue);
    margin-top: 5rem;
}

/* ============================================
   Why Choose Section
   ============================================ */
.why-choose {
    background-color: var(--color-gray-light);
    padding: 5rem 0;
}

.why-choose .section-header {
    margin-bottom: 4rem;
}

.why-choose .section-label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.why-choose-card {
    background-color: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(220, 20, 60, 0.2);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F5E6E8 0%, #F0D6DA 100%);
    border: 2px solid rgba(220, 20, 60, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-red);
    position: relative;
    transition: all var(--transition-normal);
    flex-shrink: 0;
}

.why-choose-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-red) 0%, #B8122F 100%);
    opacity: 0;
    z-index: -1;
    transition: all var(--transition-normal);
}

.why-choose-card:hover .why-choose-icon {
    background: linear-gradient(135deg, var(--color-red) 0%, #B8122F 100%);
    color: var(--color-white);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.4);
    border-color: var(--color-red);
}

.why-choose-card:hover .why-choose-icon::after {
    opacity: 0.3;
    transform: scale(1.15);
}

.why-choose-icon svg {
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 1;
    transition: transform var(--transition-normal);
}

.why-choose-card:hover .why-choose-icon svg {
    transform: scale(1.1);
}

.why-choose-heading {
    font-size: 1.375rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-blue);
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color var(--transition-normal);
}

.why-choose-card:hover .why-choose-heading {
    color: var(--color-red);
}

.why-choose-text {
    color: var(--color-gray-dark);
    line-height: 1.7;
    font-size: 0.9375rem;
    margin: 0;
}

/* Responsive adjustments for Why Choose section */
@media (max-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    /* Why Choose - Mobile Carousel */
    .why-choose {
        padding: 3rem 0;
    }
    
    .why-choose .section-header {
        margin-bottom: 2.5rem;
    }
    
    .why-choose-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 1.5rem;
        padding: 0 1.5rem 1rem 1.5rem;
        scrollbar-width: thin;
        scrollbar-color: var(--color-red) transparent;
    }
    
    .why-choose-grid::-webkit-scrollbar {
        height: 8px;
    }
    
    .why-choose-grid::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .why-choose-grid::-webkit-scrollbar-thumb {
        background-color: var(--color-red);
        border-radius: 4px;
    }
    
    .why-choose-grid::-webkit-scrollbar-thumb:hover {
        background-color: #B8122F;
    }
    
    .why-choose-grid::before {
        content: '';
        flex-shrink: 0;
        width: 0;
    }
    
    .why-choose-grid::after {
        content: '';
        flex-shrink: 0;
        width: 1.5rem;
    }
    
    .why-choose-card {
        min-width: 85%;
        max-width: 85%;
        flex-shrink: 0;
        scroll-snap-align: start;
        height: auto;
        padding: 2rem 1.5rem;
    }
    
    .why-choose-card:first-child {
        scroll-margin-left: 1.5rem;
    }
    
    .why-choose-card:last-child {
        scroll-margin-right: 1.5rem;
    }
    
    .why-choose-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }
    
    .why-choose-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .why-choose-heading {
        font-size: 1.25rem;
    }
    
    .why-choose-text {
        font-size: 0.875rem;
    }
}

/* ============================================
   Works/Gallery Section
   ============================================ */
.works {
    background-color: var(--color-white);
    padding: 5rem 0;
}

.section-label {
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-red);
    margin-bottom: 0.5rem;
}

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

.work-item {
    position: relative;
    cursor: pointer;
    background-color: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow var(--transition-normal), border-color var(--transition-normal);
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.work-item:hover {
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.2);
    border-color: rgba(220, 20, 60, 0.3);
}

.work-banner {
    background-color: #1a5f3f;
    padding: 1.5rem 1.5rem 1.25rem;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.banner-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.2;
}

.banner-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background-color: #FFD700;
    color: #1a5f3f;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.photo-count {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.4rem 0.75rem;
    border-radius: 20px;
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: var(--font-weight-semibold);
}

.photo-count svg {
    width: 14px;
    height: 14px;
}

.work-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 75%; /* 4:3 aspect ratio */
    overflow: hidden;
}

.work-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity var(--transition-normal);
}

.work-item:hover .work-image {
    opacity: 0.9;
}

.work-content {
    padding: 1.75rem 2rem;
    background-color: var(--color-white);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.work-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-black);
    margin: 0;
    line-height: 1.3;
}

.work-view-link {
    font-size: 0.875rem;
    color: var(--color-gray-dark);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    transition: color var(--transition-normal);
    display: inline-block;
}

.work-view-link:hover {
    color: var(--color-red);
}

/* Gallery Lightbox */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.gallery-lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.lightbox-counter {
    position: absolute;
    bottom: -3rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-white);
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    padding: 0.5rem 1rem;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 4px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    z-index: 10000;
}

.lightbox-close:hover {
    background-color: var(--color-red);
    border-color: var(--color-red);
    transform: scale(1.1);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: var(--color-red);
    border-color: var(--color-red);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-close {
    top: 2rem;
    right: 2rem;
}

.lightbox-prev {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close svg,
.lightbox-prev svg,
.lightbox-next svg {
    width: 24px;
    height: 24px;
}

/* ============================================
   About Section
   ============================================ */
.about {
    background-color: var(--color-gray-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto;
}

/* About Images Section */
.about-images {
    position: relative;
    display: flex;
    align-items: stretch;
}

.about-images-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.about-image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    flex: 1;
    display: flex;
    align-items: stretch;
}

.about-image-container img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    display: block;
}

.before-after-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

/* Decorative Dots Pattern */
.decorative-dots {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, #DC143C 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: 0;
    animation: floatDots 6s ease-in-out infinite;
}

@keyframes floatDots {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

/* Experience Box Overlay */
.experience-box {
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: var(--color-red);
    color: var(--color-white);
    padding: 2rem 2.5rem;
    border-radius: 8px;
    z-index: 5;
    box-shadow: 0 8px 24px rgba(220, 20, 60, 0.4);
    animation: fadeInScale 0.8s ease-out 0.3s both, pulseGlow 2s ease-in-out 1s infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-box:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 32px rgba(220, 20, 60, 0.5);
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(220, 20, 60, 0.4);
    }
    50% {
        box-shadow: 0 8px 32px rgba(220, 20, 60, 0.6);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.experience-number {
    font-size: 3.5rem;
    font-weight: var(--font-weight-bold);
    line-height: 1;
    margin-bottom: 0.5rem;
    animation: countUp 1s ease-out 0.5s both;
    transform-origin: center;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.5) rotate(-10deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.experience-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.experience-label {
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Decorative Shapes */
.decorative-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.1), rgba(220, 20, 60, 0.05));
    z-index: 0;
}

.decorative-shape-1 {
    width: 150px;
    height: 150px;
    top: -50px;
    right: -50px;
    animation: rotateShape 20s linear infinite;
}

.decorative-shape-2 {
    width: 100px;
    height: 100px;
    bottom: -30px;
    left: 20px;
    animation: rotateShape 15s linear infinite reverse;
}

@keyframes rotateShape {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.before-after-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 75%; /* 4:3 aspect ratio, adjust as needed */
    overflow: hidden;
}

.before-after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.before-image {
    z-index: 1;
}

.after-image {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0.1s ease-out;
}

.before-after-divider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    transform: translateX(-50%);
    z-index: 3;
    cursor: ew-resize;
    user-select: none;
}

.divider-line {
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.divider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    transition: transform 0.3s ease;
}

.divider-handle svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.before-after-divider:hover .divider-handle {
    transform: translate(-50%, -50%) scale(1.1);
}

.before-after-divider:hover .divider-handle svg {
    transform: rotate(360deg);
}

.before-after-divider:active .divider-handle {
    transform: translate(-50%, -50%) scale(0.95);
}

.before-after-labels {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    z-index: 4;
    pointer-events: none;
}

.label-before,
.label-after {
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: var(--font-weight-semibold);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

.label-before:hover,
.label-after:hover {
    background-color: rgba(0, 0, 0, 0.9);
    transform: translateY(-2px);
}

/* About Text Section */
.about-text {
    text-align: left;
}

.about-badge {
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gray-dark);
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.about-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-black);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.2s both;
    position: relative;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--color-red);
    animation: expandWidth 0.8s ease-out 0.5s both;
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 60px;
    }
}

.about-description {
    font-size: 1rem;
    color: var(--color-gray-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.about-features-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: var(--color-gray-dark);
    opacity: 0;
    animation: fadeInLeft 0.6s ease-out both;
    transition: transform var(--transition-fast);
    cursor: default;
}

.about-features-list li:nth-child(1) {
    animation-delay: 0.4s;
}

.about-features-list li:nth-child(2) {
    animation-delay: 0.5s;
}

.about-features-list li:nth-child(3) {
    animation-delay: 0.6s;
}

.about-features-list li:hover {
    transform: translateX(10px);
}

.about-features-list li:hover .feature-check {
    transform: scale(1.1) rotate(360deg);
}

.feature-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: var(--color-red);
    color: var(--color-white);
    border-radius: 50%;
    font-weight: var(--font-weight-bold);
    font-size: 0.875rem;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Button Animation */
.about-text .btn {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.7s both;
    position: relative;
    overflow: hidden;
}

.about-text .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.about-text .btn:hover::before {
    left: 100%;
}

/* ============================================
   Marquee/Moving Text Section
   ============================================ */
.marquee-section {
    background-color: var(--color-white);
    padding: 1rem 0;
    overflow: hidden;
    position: relative;
}

.te-marquee-area {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.te-marquee-wrapper {
    display: flex;
    width: max-content;
    gap: 1rem;
    animation: marquee-scroll 20s linear infinite;
    will-change: transform;
}

.te-marquee-wrapper.second-te-marquee {
    animation: marquee-scroll 25s linear infinite;
    margin-top: 0.5rem;
    opacity: 0.3;
    filter: blur(0.5px);
    will-change: transform;
}

.single-te-marquee {
    display: flex;
    flex-shrink: 0;
    align-items: center;
}

.te-marquee-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-black);
    white-space: nowrap;
    letter-spacing: 1px;
    line-height: 1.2;
}

/* Make the first row (upper text) bigger */
.te-marquee-wrapper.first-te-marquee .te-marquee-title {
    font-size: 1.75rem;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-100% / 2));
    }
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
    background-color: var(--color-gray-light);
    padding: 5rem 0;
}

.testimonials .section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-red);
    margin-bottom: 1rem;
}

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

.testimonial-card {
    background-color: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    border-color: rgba(220, 20, 60, 0.2);
}

.testimonial-card-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-blue) 0%, #004080 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.avatar-initial {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    letter-spacing: 0.5px;
}

.testimonial-author-info {
    flex: 1;
    min-width: 0;
}

.testimonial-author-name {
    font-size: 1.125rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-black);
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
}

.testimonial-author-title {
    font-size: 0.875rem;
    color: var(--color-gray-dark);
    margin: 0;
    line-height: 1.4;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating .star {
    font-size: 1.25rem;
    color: #FFB800;
    line-height: 1;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-gray-dark);
    margin: 0;
    flex: 1;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    background-color: var(--color-gray-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-blue);
    margin-bottom: 1rem;
}

.contact-item p {
    color: var(--color-gray-dark);
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--color-red);
    font-weight: var(--font-weight-semibold);
}

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

.contact-social h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-blue);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--color-blue);
    color: var(--color-white);
    border-radius: 4px;
    font-weight: var(--font-weight-semibold);
    transition: all var(--transition-normal);
}

.social-link:hover {
    background-color: var(--color-red);
    transform: translateY(-2px);
}

.contact-form-container {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

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

.form-group label {
    font-weight: var(--font-weight-semibold);
    color: var(--color-blue);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid var(--color-gray-medium);
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-blue);
}

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

/* ============================================
   Contact Page Styles
   ============================================ */
.contact-header {
    background-color: var(--color-blue);
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.contact-header__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.contact-header__pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 35px,
            rgba(220, 20, 60, 0.1) 35px,
            rgba(220, 20, 60, 0.1) 70px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 35px,
            rgba(220, 20, 60, 0.1) 35px,
            rgba(220, 20, 60, 0.1) 70px
        );
}

.contact-header__content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.contact-header__title {
    font-size: 4rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    margin-bottom: 1rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--color-white);
    font-size: 1rem;
}

.breadcrumb a {
    color: var(--color-white);
    transition: color var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--color-red);
}

.breadcrumb-separator {
    margin: 0 0.25rem;
}

.breadcrumb-current {
    color: var(--color-red);
    font-weight: var(--font-weight-semibold);
}

/* Contact Form Section */
.contact-form-section {
    padding: 6rem 0;
    background-color: var(--color-white);
}

.contact-form-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

.contact-form-content {
    width: 100%;
    max-width: 700px;
    padding: 2.5rem;
    margin: 0 auto;
}

.contact-form-label {
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.contact-form-title {
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-black);
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

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

.contact-form-v2 .form-group input,
.contact-form-v2 .form-group select,
.contact-form-v2 .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--color-gray-medium);
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
    background-color: var(--color-white);
}

.contact-form-v2 .form-group input:focus,
.contact-form-v2 .form-group select:focus,
.contact-form-v2 .form-group textarea:focus {
    outline: none;
    border-color: var(--color-blue);
}

.contact-form-v2 .form-group input::placeholder,
.contact-form-v2 .form-group textarea::placeholder {
    color: var(--color-gray-dark);
}

.contact-form-v2 .form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    -webkit-tap-highlight-color: rgba(220, 20, 60, 0.1);
    color: var(--color-black);
    cursor: pointer;
}

.contact-form-v2 .form-group select option {
    color: var(--color-black);
    background-color: var(--color-white);
    padding: 0.5rem;
}

.contact-form-v2 .form-group select:invalid {
    color: #9CA3AF;
}

.contact-form-v2 .form-group select:valid,
.contact-form-v2 .form-group select:focus {
    color: var(--color-black);
}

/* Enhanced mobile select dropdown styling for contact form */
@media (max-width: 768px) {
    .contact-form-v2 .form-group select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 1rem 3rem 1rem 1rem;
        min-height: 52px;
        background-size: 16px 16px;
        background-position: right 1rem center;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    
    .contact-form-v2 .form-group select:focus {
        border-color: var(--color-blue);
        box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.15);
    }
    
    /* Style the dropdown options for better mobile experience */
    .contact-form-v2 .form-group select option {
        padding: 1rem;
        font-size: 16px;
        min-height: 44px;
        line-height: 1.5;
        background-color: var(--color-white);
        color: var(--color-black);
    }
    
    .contact-form-v2 .form-group select option:checked {
        background-color: rgba(0, 51, 102, 0.1);
        color: var(--color-blue);
        font-weight: var(--font-weight-semibold);
    }
    
    .contact-form-v2 .form-group select option:hover,
    .contact-form-v2 .form-group select option:focus {
        background-color: rgba(0, 51, 102, 0.15);
    }
}

/* Form Validation Styles */
.contact-form-v2 .form-group input.field-error,
.contact-form-v2 .form-group select.field-error,
.contact-form-v2 .form-group textarea.field-error {
    border-color: #dc3545;
    background-color: #fff5f5;
}

.contact-form-v2 .form-group input.field-error:focus,
.contact-form-v2 .form-group select.field-error:focus,
.contact-form-v2 .form-group textarea.field-error:focus {
    border-color: #dc3545;
    outline-color: #dc3545;
}

.field-error-message {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-weight: var(--font-weight-semibold);
}

.contact-submit-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

.contact-submit-btn.loading span::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 8px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.form-message {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
    animation: slideDown 0.3s ease-out;
}

.form-message--success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message--error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.contact-submit-btn {
    margin-top: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Contact Map Section */
.contact-map-section {
    position: relative;
    min-height: 100vh;
    padding: 0;
    margin: 0;
    background-color: var(--color-white);
}

.contact-map-layout {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: auto;
}

.contact-map-container {
    position: relative;
    width: 100%;
    height: 600px;
    min-height: 600px;
    background-color: var(--color-gray-light);
}

.contact-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.contact-info-sidebar {
    background-color: var(--color-white);
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.contact-info-cards {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    align-items: stretch;
    height: 100%;
    align-content: center;
}

.contact-info-card {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--color-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
}

.contact-info-title {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-blue);
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.contact-info-text {
    color: var(--color-gray-dark);
    margin-bottom: 0.5rem;
    line-height: 1.6;
    flex-shrink: 0;
    font-size: 0.95rem;
}

.contact-info-card .contact-info-icon {
    flex-shrink: 0;
}

.contact-info-text a {
    color: var(--color-red);
    font-weight: var(--font-weight-semibold);
    transition: color var(--transition-fast);
}

.contact-info-text a:hover {
    text-decoration: underline;
}

.map-overlay-text {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
    color: var(--color-gray-dark);
    z-index: 4;
    pointer-events: none;
    backdrop-filter: blur(10px);
}

/* Responsive Styles for Contact Page */
@media (max-width: 1024px) {
    .contact-form-wrapper {
        width: 100%;
    }
    
    .contact-form-content {
        max-width: 600px;
        padding: 2rem;
    }

    .contact-form-title {
        font-size: 2.5rem;
    }

    .contact-map-container {
        height: 500px;
        min-height: 500px;
    }

    .contact-info-sidebar {
        padding: 3rem 2rem;
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-info-card {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .contact-header {
        padding: 6rem 0 3rem;
    }

    .contact-header__title {
        font-size: 2.5rem;
    }

    .contact-form-section {
        padding: 4rem 0;
    }

    .contact-form-content {
        padding: 1.5rem;
        max-width: 100%;
    }

    .contact-form-title {
        font-size: 2rem;
    }

    .contact-info-cards {
        flex-direction: column;
        padding: 1.5rem 1rem;
    }

    .contact-info-card {
        min-width: auto;
    }

    .contact-map-container {
        height: 400px;
        min-height: 400px;
    }

    .contact-info-sidebar {
        padding: 2rem 1rem;
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        padding: 1.5rem;
    }

    .contact-info-cards {
        padding: 2rem 1rem;
        gap: 1.25rem;
    }
}

/* ============================================
   Areas We Serve Page Styles
   ============================================ */
.areas-content-section {
    padding: 5rem 0;
    background-color: var(--color-white);
}

.areas-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.areas-intro-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-blue);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.areas-intro-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-gray-dark);
    margin-bottom: 0;
}

.areas-image-wrapper {
    max-width: 1200px;
    margin: 0 auto 4rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.areas-image {
    width: 100%;
    height: auto;
    display: block;
}

.areas-serving-section {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.areas-serving-title {
    font-size: 2.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-blue);
    margin-bottom: 1.5rem;
}

.areas-serving-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-gray-dark);
    margin-bottom: 2.5rem;
}

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

.areas-list-item {
    background-color: var(--color-red);
    color: var(--color-white);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: var(--font-weight-semibold);
    font-size: 1.125rem;
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.areas-list-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(220, 20, 60, 0.4);
}

.areas-list-item:focus {
    outline: 3px solid var(--color-blue);
    outline-offset: 2px;
}

.areas-services-section {
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.areas-services-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-gray-dark);
    text-align: center;
    margin-bottom: 3rem;
}

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

.areas-service-card {
    background-color: var(--color-gray-light);
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all var(--transition-normal);
}

.areas-service-card:hover {
    border-color: var(--color-red);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.areas-service-title {
    font-size: 1.75rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-blue);
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 1rem;
}

.areas-service-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--color-red);
}

.areas-service-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-gray-dark);
    margin: 0;
}

.areas-cta-section {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, var(--color-blue) 0%, #004080 100%);
    padding: 4rem 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 51, 102, 0.3);
}

.areas-cta-title {
    font-size: 2.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.areas-cta-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.areas-cta-phone {
    color: var(--color-white);
    font-weight: var(--font-weight-bold);
    text-decoration: underline;
    transition: color var(--transition-fast);
}

.areas-cta-phone:hover {
    color: var(--color-red);
}

.areas-cta-section .btn {
    margin-top: 1rem;
}

/* Mobile Responsive for Areas Page */
@media (max-width: 768px) {
    .areas-intro-title {
        font-size: 2rem;
    }
    
    .areas-intro-text {
        font-size: 1rem;
    }
    
    .areas-image-wrapper {
        margin-bottom: 3rem;
    }
    
    .areas-serving-title {
        font-size: 1.75rem;
    }
    
    .areas-serving-text {
        font-size: 1rem;
    }
    
    .areas-list {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .areas-list-item {
        text-align: center;
    }
    
    .areas-services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .areas-service-card {
        padding: 2rem;
    }
    
    .areas-service-title {
        font-size: 1.5rem;
    }
    
    .areas-cta-section {
        padding: 3rem 2rem;
    }
    
    .areas-cta-title {
        font-size: 1.75rem;
    }
    
    .areas-cta-text {
        font-size: 1rem;
    }
}

/* ============================================
   Estimate Form Section
   ============================================ */
.estimate-form-section {
    background-color: var(--color-gray-light);
    padding: 5rem 0;
    display: none;
}

.estimate-form-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

.estimate-form-content {
    width: 100%;
    max-width: 700px;
    background-color: var(--color-white);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.estimate-form-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-blue);
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.2;
}

.estimate-form-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray-dark);
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .estimate-form-section {
        display: block;
        padding: 3rem 0;
    }
    
    .estimate-form-content {
        padding: 2rem 1.5rem;
        border-radius: 8px;
    }
    
    .estimate-form-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .estimate-form-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background-color: var(--color-blue);
    color: var(--color-white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 100px;
    width: auto;
    margin: 0 auto 1.5rem;
    display: block;
}

.footer-section p {
    color: var(--color-gray-medium);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
    color: var(--color-white);
}

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

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

.footer-section ul li a {
    color: var(--color-gray-medium);
    transition: color var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--color-white);
}

.footer-social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-social a {
    color: var(--color-gray-medium);
    transition: color var(--transition-fast);
}

.footer-social a:hover {
    color: var(--color-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-gray-medium);
    font-size: 0.9rem;
}

/* ============================================
   Mobile Responsive Styles
   ============================================ */
@media (max-width: 768px) {
    /* Navigation */
    .nav-logo img {
        height: 35px;
        width: auto;
    }
    
    .nav-right-mobile {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
    
    .nav-contact-mobile {
        display: inline-block;
        background-color: var(--color-red);
        color: var(--color-white);
        padding: 0.75rem 1.25rem;
        min-height: 44px;
        border-radius: 4px;
        font-weight: var(--font-weight-semibold);
        font-size: 0.875rem;
        text-decoration: none;
        transition: background-color var(--transition-normal);
        white-space: nowrap;
        touch-action: manipulation;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-contact-mobile:hover,
    .nav-contact-mobile:active {
        background-color: #B8122F;
        color: var(--color-white);
    }
    
    .nav-toggle {
        display: flex;
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        touch-action: manipulation;
        padding: 0.5rem;
        align-items: center;
        justify-content: center;
    }
    
    .nav-toggle span {
        min-height: 2px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--color-white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        gap: 0;
        transition: left var(--transition-normal);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 1.25rem 1.5rem;
        min-height: 48px;
        border-bottom: 1px solid var(--color-gray-light);
        display: flex;
        align-items: center;
        justify-content: center;
        touch-action: manipulation;
    }
    
    .nav-phone {
        margin-top: 1rem;
        width: auto;
    }
    
    .nav-contact-btn {
        display: block;
        background-color: var(--color-red);
        color: var(--color-white);
        padding: 1rem 2rem;
        border-radius: 4px;
        font-weight: var(--font-weight-bold);
        text-align: center;
        margin-top: 1rem;
        width: auto;
        transition: background-color var(--transition-normal);
    }
    
    .nav-contact-btn::after {
        display: none;
    }
    
    .nav-contact-btn:hover {
        background-color: #B8122F;
        color: var(--color-white);
    }
    
    /* Hero */
    .hero {
        height: auto;
        min-height: 100vh;
        max-height: none;
        padding-top: 70px;
    }
    
    .hero__container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
        overflow-y: auto;
        align-items: center;
        justify-content: center;
        min-height: calc(100vh - 70px);
    }
    
    .hero__content {
        text-align: center;
        max-width: 100%;
        order: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .hero__badge {
        font-size: 0.85rem;
        padding: 0.625rem 1.5rem;
        letter-spacing: 2px;
    }
    
    .hero__title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero__subtitle {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .hero__cta-group {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero__cta-group .btn {
        min-height: 48px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero__cta-group .btn--estimate-cta,
    .btn--estimate-cta {
        display: inline-flex !important;
    }
    
    .btn {
        width: 100%;
        padding: 1rem 2rem;
        min-height: 48px;
        justify-content: center;
        font-size: 1rem;
        touch-action: manipulation;
    }
    
    .hero__image-section {
        display: none;
    }
    
    .hero__image-card {
        border-radius: 6px;
    }
    
    .hero__trust-cards {
        display: none;
    }
    
    .trust-card {
        padding: 1.75rem 1.25rem;
    }
    
    .trust-card__icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1.25rem;
    }
    
    .trust-card__icon svg {
        width: 24px;
        height: 24px;
    }
    
    .trust-card__title {
        font-size: 1rem;
    }
    
    .hero__scroll-indicator {
        bottom: 0.75rem;
        font-size: 0.65rem;
    }
    
    /* Hide scroll indicator on very small screens */
    @media (max-height: 600px) {
        .hero__scroll-indicator {
            display: none;
        }
    }
    
    /* Services - Mobile Carousel */
    .services {
        padding: 4rem 0 0;
        position: relative;
    }
    
    .services .section-header {
        margin-bottom: 2.5rem;
    }
    
    .services .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .services-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 1.5rem;
        padding: 0 1.5rem 1rem 1.5rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .services-grid::-webkit-scrollbar {
        display: none;
    }
    
    .services-grid::before {
        content: '';
        flex-shrink: 0;
        width: 0;
    }
    
    .services-grid::after {
        content: '';
        flex-shrink: 0;
        width: 1.5rem;
    }
    
    .services-grid::-webkit-scrollbar {
        height: 8px;
    }
    
    .services-grid::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .services-grid::-webkit-scrollbar-thumb {
        background-color: var(--color-red);
        border-radius: 4px;
    }
    
    .services-grid::-webkit-scrollbar-thumb:hover {
        background-color: #B8122F;
    }
    
    .services-grid::before {
        content: '';
        flex-shrink: 0;
        width: 0;
    }
    
    .services-grid::after {
        content: '';
        flex-shrink: 0;
        width: 1.5rem;
    }
    
    .service-card {
        min-width: 85%;
        max-width: 85%;
        flex-shrink: 0;
        scroll-snap-align: start;
        height: auto;
    }
    
    .service-card:first-child {
        scroll-margin-left: 1.5rem;
    }
    
    .service-card:last-child {
        scroll-margin-right: 1.5rem;
    }
    
    .service-content {
        padding: 2rem 1.5rem;
    }
    
    .service-title {
        font-size: 1.5rem;
        margin-bottom: 0.875rem;
    }
    
    .service-description {
        font-size: 0.9375rem;
        line-height: 1.6;
    }
    
    .service-image-wrapper {
        padding-top: 75%;
    }
    
    .service-content {
        padding: 2.5rem 1.75rem;
    }
    
    .service-title {
        font-size: 1.625rem;
        margin-bottom: 1rem;
    }
    
    .service-description {
        font-size: 1rem;
    }
    
    .services-footer {
        height: 80px;
        margin-top: 3rem;
    }
    
    /* Desktop: Restore grid layout */
    @media (min-width: 769px) {
        /* Restore grid layout on desktop */
        .services-grid {
            display: grid !important;
            grid-template-columns: repeat(2, 1fr) !important;
            overflow-x: visible !important;
            scroll-snap-type: none !important;
            gap: 3rem !important;
            padding: 0 !important;
        }
        
        .services-grid::before,
        .services-grid::after {
            display: none;
        }
        
        @media (min-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(3, 1fr) !important;
            }
        }
        
        .works-grid {
            display: grid !important;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
            overflow-x: visible !important;
            scroll-snap-type: none !important;
            gap: 2rem !important;
            padding: 0 !important;
        }
        
        .works-grid::before,
        .works-grid::after {
            display: none;
        }
        
        .testimonials-grid {
            display: grid !important;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
            overflow-x: visible !important;
            scroll-snap-type: none !important;
            gap: 2rem !important;
            padding: 0 !important;
            margin-top: 3rem !important;
        }
        
        .testimonials-grid::before,
        .testimonials-grid::after {
            display: none;
        }
        
        .why-choose-grid {
            display: grid !important;
            grid-template-columns: repeat(2, 1fr) !important;
            overflow-x: visible !important;
            scroll-snap-type: none !important;
            gap: 2rem !important;
            padding: 0 1.5rem 1rem 1.5rem !important;
        }
        
        .why-choose-grid::before,
        .why-choose-grid::after {
            display: none;
        }
        
        @media (min-width: 1024px) {
            .why-choose-grid {
                grid-template-columns: repeat(4, 1fr) !important;
            }
        }
        
        .service-card,
        .work-item,
        .testimonial-card,
        .why-choose-card {
            min-width: auto !important;
            max-width: none !important;
        }
        
        .service-card:first-child,
        .service-card:last-child,
        .work-item:first-child,
        .work-item:last-child,
        .testimonial-card:first-child,
        .testimonial-card:last-child,
        .why-choose-card:first-child,
        .why-choose-card:last-child {
            scroll-margin: 0 !important;
        }
    }
    
    /* Works - Mobile Carousel */
    .works {
        padding: 3rem 0;
        position: relative;
    }
    
    .works .section-header {
        margin-bottom: 2rem;
    }
    
    .works-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 1.5rem;
        padding: 0 1.5rem 1rem 1.5rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .works-grid::-webkit-scrollbar {
        display: none;
    }
    
    .works-grid::before {
        content: '';
        flex-shrink: 0;
        width: 0;
    }
    
    .works-grid::after {
        content: '';
        flex-shrink: 0;
        width: 1.5rem;
    }
    
    .works-grid::before {
        content: '';
        flex-shrink: 0;
        width: 0;
    }
    
    .works-grid::after {
        content: '';
        flex-shrink: 0;
        width: 1.5rem;
    }
    
    .work-item {
        min-width: 85%;
        max-width: 85%;
        flex-shrink: 0;
        scroll-snap-align: start;
        height: auto;
        cursor: pointer;
    }
    
    .work-item:first-child {
        scroll-margin-left: 1.5rem;
    }
    
    .work-item:last-child {
        scroll-margin-right: 1.5rem;
    }
    
    .work-content {
        padding: 1.5rem;
    }
    
    .work-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .work-description {
        font-size: 0.9375rem;
        line-height: 1.6;
    }
    
    .work-image-wrapper {
        padding-bottom: 70%;
    }
    
    .work-content {
        padding: 1.5rem;
        gap: 0.5rem;
    }
    
    .work-title {
        font-size: 1.35rem;
    }
    
    .work-description {
        font-size: 0.9375rem;
        line-height: 1.6;
    }
    
    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
        touch-action: manipulation;
    }
    
    .lightbox-close {
        top: 1rem;
        right: 1rem;
    }
    
    .lightbox-prev {
        left: 1rem;
    }
    
    .lightbox-next {
        right: 1rem;
    }
    
    .lightbox-counter {
        bottom: -2.5rem;
        font-size: 0.9rem;
    }
    
    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }
    
    .about-description {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }
    
    .about-features-list {
        margin: 1.5rem 0;
        gap: 1rem;
    }
    
    .about-features-list li {
        padding: 0.75rem 0;
        font-size: 0.9375rem;
    }
    
    .about-text .btn {
        margin-top: 1.5rem;
        width: 100%;
        min-height: 48px;
    }
    
    .about-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-features-list {
        align-items: flex-start;
    }
    
    .before-after-wrapper {
        padding-bottom: 65%;
    }
    
    .experience-box {
        top: 10px;
        right: 10px;
        padding: 1.5rem 2rem;
    }
    
    .experience-number {
        font-size: 2.5rem;
    }
    
    .experience-label {
        font-size: 0.75rem;
    }
    
    .decorative-dots {
        width: 150px;
        height: 150px;
        bottom: -15px;
        left: -15px;
    }
    
    .decorative-shape-1 {
        width: 100px;
        height: 100px;
        top: -30px;
        right: -30px;
    }
    
    .decorative-shape-2 {
        width: 70px;
        height: 70px;
        bottom: -20px;
        left: 10px;
    }
    
    /* Marquee */
    .marquee-section {
        padding: 1.5rem 0;
    }
    
    .te-marquee-title {
        font-size: 1.75rem;
    }
    
    .te-marquee-wrapper.first-te-marquee .te-marquee-title {
        font-size: 2rem;
    }
    
    .te-marquee-wrapper {
        gap: 1rem;
    }
    
    .te-marquee-wrapper.second-te-marquee {
        margin-top: 0.75rem;
    }
    
    /* Testimonials - Mobile Carousel */
    .testimonials {
        padding: 3rem 0;
        position: relative;
    }
    
    .testimonials-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 1.5rem;
        margin-top: 2rem;
        padding: 0 1.5rem 1rem 1.5rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .testimonials-grid::-webkit-scrollbar {
        display: none;
    }
    
    .testimonials-grid::before {
        content: '';
        flex-shrink: 0;
        width: 0;
    }
    
    .testimonials-grid::after {
        content: '';
        flex-shrink: 0;
        width: 1.5rem;
    }
    
    .testimonial-card {
        min-width: 85%;
        max-width: 85%;
        flex-shrink: 0;
        scroll-snap-align: start;
        height: auto;
        padding: 2rem 1.5rem;
    }
    
    .testimonial-card:first-child {
        scroll-margin-left: 1.5rem;
    }
    
    .testimonial-card:last-child {
        scroll-margin-right: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 0.9375rem;
        line-height: 1.65;
    }
    
    .testimonial-author-name {
        font-size: 1rem;
    }
    
    .testimonial-author-title {
        font-size: 0.8125rem;
    }
    
    .testimonial-card-header {
        gap: 1rem;
        margin-bottom: 1.25rem;
        padding-bottom: 1.25rem;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }
    
    .avatar-initial {
        font-size: 1.25rem;
    }
    
    .testimonial-author-name {
        font-size: 1rem;
    }
    
    .testimonial-author-title {
        font-size: 0.8125rem;
    }
    
    .testimonial-rating {
        margin-bottom: 1.25rem;
    }
    
    .testimonial-rating .star {
        font-size: 1.125rem;
    }
    
    .testimonial-text {
        font-size: 0.9375rem;
        line-height: 1.65;
    }
    
    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    /* Contact page mobile */
    .contact-header {
        padding: 6rem 0 3rem;
    }
    
    .contact-header__title {
        font-size: 2.5rem;
    }
    
    .contact-form-section {
        padding: 3rem 0;
    }
    
    .contact-form-wrapper {
        width: 100%;
    }
    
    .contact-form-content {
        padding: 1.5rem 1rem;
        max-width: 100%;
    }
    
    .contact-form-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-form-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .contact-map-container {
        height: 400px;
        min-height: 400px;
    }
    
    .contact-info-sidebar {
        padding: 2rem 1rem;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info-card {
        padding: 1.5rem;
    }
    
    /* Footer */
    .footer {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .footer-logo {
        height: 80px;
        margin: 0 auto 1.5rem;
        display: block;
    }
    
    .footer-section {
        width: 100%;
    }
    
    .footer-section h4 {
        font-size: 1.125rem;
        margin-bottom: 1.25rem;
    }
    
    .footer-section p {
        font-size: 0.9375rem;
        line-height: 1.6;
        margin-bottom: 0.5rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.625rem;
    }
    
    .footer-section ul li a {
        font-size: 0.9375rem;
    }
    
    .footer-social {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .footer-social a {
        font-size: 0.9375rem;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.8125rem;
        line-height: 1.6;
    }
    
    /* FAQ Accordion Styling */
    details.faq-item {
        background: #F5F5F5;
        border-radius: 8px;
        overflow: hidden;
        transition: all 0.3s ease;
        margin-bottom: 0;
    }
    
    details.faq-item[open] {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    details.faq-item summary {
        list-style: none;
        cursor: pointer;
        padding: 1.5rem 2rem;
        font-size: 1.25rem;
        font-weight: 700;
        color: #003366;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: background-color 0.3s ease;
        user-select: none;
    }
    
    details.faq-item summary::-webkit-details-marker {
        display: none;
    }
    
    details.faq-item summary::after {
        content: '+';
        font-size: 1.75rem;
        color: #DC143C;
        transition: transform 0.3s ease;
        font-weight: 300;
        line-height: 1;
        margin-left: 1rem;
        flex-shrink: 0;
    }
    
    details.faq-item[open] summary::after {
        content: '−';
    }
    
    details.faq-item summary:hover {
        background-color: #EEEEEE;
    }
    
    details.faq-item .faq-answer {
        padding: 0 2rem 1.5rem 2rem;
    }
    
    details.faq-item .faq-answer p {
        color: #666;
        line-height: 1.7;
        margin: 0;
    }
    
    @media (max-width: 768px) {
        details.faq-item summary {
            padding: 1.25rem 1.5rem;
            font-size: 1.1rem;
        }
        
        details.faq-item .faq-answer {
            padding: 0 1.5rem 1.25rem 1.5rem;
        }
        
        details.faq-item summary::after {
            font-size: 1.5rem;
        }
    }
    
    /* General */
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    /* Ensure proper spacing between elements */
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    /* Hero form on mobile */
    .hero-contact-form {
        padding: 1.25rem;
    }
    
    .hero-form-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .hero__image-card {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-contact-form .form-group input,
    .hero-contact-form .form-group select,
    .hero-contact-form .form-group textarea {
        padding: 1rem;
        font-size: 1rem;
        min-height: 48px;
    }
    
    .hero-contact-form .form-group select {
        font-size: 16px; /* Prevents zoom on iOS when focused */
        padding: 1rem 3rem 1rem 1rem;
        min-height: 52px;
        background-size: 18px 18px;
        touch-action: manipulation;
    }
    
    .hero-contact-form .contact-submit-btn {
        min-height: 48px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Areas page mobile optimizations */
    .areas-list-item {
        min-height: 48px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        touch-action: manipulation;
    }
    
    .areas-service-card {
        padding: 2rem 1.5rem;
    }
    
    .areas-cta-section .btn {
        min-height: 48px;
        padding: 1rem 2rem;
    }
    
    /* Contact form mobile */
    .contact-form-v2 .form-group input,
    .contact-form-v2 .form-group select,
    .contact-form-v2 .form-group textarea {
        min-height: 48px;
        padding: 1rem;
        font-size: 1rem;
    }
    
    .contact-form-v2 .form-group select {
        font-size: 16px; /* Prevents zoom on iOS when focused */
        padding: 1rem 3rem 1rem 1rem;
        min-height: 52px;
        background-size: 18px 18px;
        touch-action: manipulation;
    }
    
    .contact-submit-btn {
        min-height: 48px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Ensure images are centered and properly sized */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Improve spacing for mobile */
    .areas-services-grid {
        gap: 1.5rem;
    }
    
    .areas-service-card {
        margin-bottom: 0;
    }
    
    /* Areas page mobile typography */
    .areas-intro-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .areas-intro-text {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .areas-serving-title {
        font-size: 1.75rem;
    }
    
    .areas-serving-text {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    /* Inline styles in areas.html need to be responsive */
    .areas-content-section h2[style*="font-size: 2.25rem"] {
        font-size: 1.75rem !important;
        line-height: 1.3 !important;
    }
    
    .areas-content-section h3[style*="font-size: 1.75rem"] {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }
    
    .areas-content-section p[style*="font-size: 1.125rem"] {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }
    
    /* Ensure county cards stack properly */
    .areas-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .areas-services-grid .btn {
        width: 100%;
        min-height: 48px;
    }
    
    /* City buttons - ensure they're thumb-friendly */
    .areas-list {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .areas-list-item {
        width: 100%;
        text-align: center;
    }
    
    /* Ensure proper spacing between sections */
    .areas-content-section > div[style*="margin-top: 4rem"] {
        margin-top: 3rem !important;
        margin-bottom: 2rem !important;
    }
    
    .areas-content-section > div[style*="margin-bottom: 3rem"] {
        margin-bottom: 2rem !important;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    /* Tablet adjustments for hero */
    .hero__container {
        gap: 3rem;
        padding: 2rem 2rem 1rem;
    }
    
    .hero__title {
        font-size: 3rem;
    }
    
    .hero__subtitle {
        font-size: 1.1rem;
    }
    
    .hero__trust-cards {
        gap: 1.25rem;
        padding: 1.25rem 2rem;
    }
    
    /* Footer - Tablet: keep all in one row with smaller gap */
    .footer-content {
        grid-template-columns: repeat(5, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .hero__subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
        line-height: 1.5;
    }
    
    .hero__container {
        padding: 1.5rem 1rem;
        gap: 1rem;
        min-height: calc(100vh - 70px);
    }
    
    .hero__cta-group {
        gap: 0.75rem;
    }
    
    .hero__cta-group .btn {
        font-size: 0.95rem;
        padding: 0.875rem 1.25rem;
    }
    
    .hero__trust-cards {
        gap: 1rem;
        padding: 1.25rem 1rem;
    }
    
    .trust-card {
        padding: 1.5rem 1rem;
    }
    
    .trust-card__icon {
        width: 52px;
        height: 52px;
        margin-bottom: 1rem;
    }
    
    .trust-card__icon svg {
        width: 22px;
        height: 22px;
    }
    
    .trust-card__title {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 0.9375rem;
    }
    
    .service-card {
        padding: 0;
    }
    
    .service-content {
        padding: 1.75rem 1.25rem;
    }
    
    .testimonial-card {
        padding: 1.5rem 1.25rem;
    }
    
    .te-marquee-title {
        font-size: 1.5rem;
    }
    
    .te-marquee-wrapper.first-te-marquee .te-marquee-title {
        font-size: 1.75rem;
    }
    
    .te-marquee-wrapper {
        gap: 0.75rem;
    }
    
    /* Ensure CTAs are visible */
    .hero__cta-group {
        position: relative;
        z-index: 5;
    }
    
    /* Improve hero form visibility */
    .hero__image-card {
        margin-bottom: 1rem;
    }
    
    /* Footer - Small Mobile */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        gap: 2rem;
        margin-bottom: 1.25rem;
    }
    
    .footer-logo {
        height: 70px;
        margin: 0 auto 1.25rem;
        display: block;
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-section p {
        font-size: 0.875rem;
    }
    
    .footer-section ul li a {
        font-size: 0.875rem;
    }
    
    .footer-social {
        gap: 1.25rem;
    }
    
    .footer-social a {
        font-size: 0.875rem;
    }
    
    .footer-bottom {
        font-size: 0.75rem;
        padding-top: 1.25rem;
    }
}

/* ============================================
   Accessibility
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero {
        background-attachment: scroll;
    }
}

/* Skip Navigation Link */
.skip-nav-link {
    position: absolute;
    top: -100px;
    left: 0;
    background-color: var(--color-blue);
    color: var(--color-white);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: var(--font-weight-bold);
    z-index: 10000;
    border-radius: 0 0 4px 0;
    transition: top var(--transition-fast);
}

.skip-nav-link:focus {
    top: 0;
    outline: 3px solid var(--color-red);
    outline-offset: 2px;
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid var(--color-blue);
    outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--color-blue);
    outline-offset: 2px;
}

/* Enhanced focus for interactive elements */
.btn:focus-visible,
.nav-link:focus-visible,
.service-card:focus-visible {
    outline: 3px solid var(--color-red);
    outline-offset: 3px;
}

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

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .navbar,
    .hero__scroll-indicator,
    .testimonials-controls,
    .contact-form-container,
    .footer {
        display: none;
    }
    
    .hero {
        background-image: none;
        background-color: var(--color-white);
        color: var(--color-black);
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero__overlay {
        display: none;
    }
}

