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

:root {
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-blue: #0099FF;
    --color-blue-dark: #0077CC;
    --color-gray-light: #F5F5F5;
    --color-gray: #666666;
    --color-gray-dark: #333333;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--color-gray-dark);
    background-color: var(--color-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: var(--color-black);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: visible;
    height: 58px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 58px;
    padding-top: 0;
    gap: 2rem;
}

.logo-link {
    display: flex;
    align-items: flex-start;
    text-decoration: none;
    position: relative;
    z-index: 1001;
}

.nav-logo {
    height: 110px;
    width: auto;
    object-fit: contain;
    position: relative;
    top: 28px;
    transition: transform 0.3s;
}

.nav-logo:hover {
    transform: translateY(-2px);
}

.logo {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1.2;
}

.logo-white {
    color: var(--color-white);
}

.logo-blue {
    color: var(--color-blue);
}

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

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-blue);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--color-blue);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--color-white);
    transition: 0.3s;
}

.hamburger span:nth-child(2) {
    width: 18px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-gray-dark) 100%);
    color: var(--color-white);
    padding: 10rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: visible;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video-bg,
.hero-image-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.4;
}

.hero-image-bg {
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 153, 255, 0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-content-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.serving-badge {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 153, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--color-white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    border: 2px solid rgba(0, 153, 255, 0.3);
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 153, 255, 0.2);
    transition: all 0.3s ease;
}

.serving-badge:hover {
    background: rgba(0, 153, 255, 0.25);
    border-color: var(--color-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 153, 255, 0.3);
}

.serving-badge-icon {
    font-size: 1.25rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.serving-badge-text {
    text-transform: uppercase;
}

.badge-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: -1rem auto 0.5rem;
    position: relative;
    width: 100%;
    gap: 0.75rem;
}

.badge-arrow-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    flex-shrink: 0;
}

.arrow-svg {
    width: 40px;
    height: 40px;
}

.arrow-text {
    font-size: 0.75rem;
    color: var(--color-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.hiring-badge-white {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
    color: var(--color-white);
    padding: 0.45rem 0.75rem;
    padding-right: 1rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 153, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 0.65rem;
    transition: all 0.3s ease;
    justify-content: center;
    max-width: 280px;
    flex-shrink: 1;
}

.hiring-badge-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 153, 255, 0.4);
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.badge-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    flex-shrink: 0;
}

.hiring-badge-white .badge-icon {
    font-size: 1.75rem;
}

.badge-text-container {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.badge-text-main {
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 0.5px;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.badge-text-sub {
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.2px;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    opacity: 0.95;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 6px 25px rgba(0, 153, 255, 0.5), 0 0 30px rgba(0, 153, 255, 0.3);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 8px 30px rgba(0, 153, 255, 0.6), 0 0 40px rgba(0, 153, 255, 0.4);
    }
}

.hero-title {
    font-family: 'Bebas Neue', 'Montserrat', sans-serif;
    font-size: 6rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    width: 100%;
    text-transform: lowercase;
    letter-spacing: 0.05em;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap;
    overflow: visible;
}

.hero-title-left {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    justify-content: flex-start;
    flex: 0 1 auto;
    align-items: baseline;
    white-space: nowrap;
}

.hero-white,
.hero-blue {
    white-space: nowrap;
    display: inline-block;
}

.hero-white {
    color: var(--color-white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-blue {
    color: var(--color-blue);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-care {
    flex-shrink: 0;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    width: 100%;
}

.zip-code-form {
    margin: 2rem 0;
    width: 100%;
    max-width: 600px;
    position: relative;
}

.zip-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 0.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease-out;
    overflow: hidden;
    gap: 0;
    position: relative;
    min-height: auto;
}

.zip-form.expanded {
    padding-bottom: 0.5rem;
    border-radius: 50px 50px 30px 30px;
}

.zip-form-top {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
}

.zip-form:focus-within {
    border-color: var(--color-blue);
    box-shadow: 0 0 0 3px rgba(0, 153, 255, 0.2), 0 4px 15px rgba(0, 0, 0, 0.15);
}

.zip-input {
    flex: 1;
    min-width: 200px;
    padding: 1rem 1.5rem;
    border: none;
    background: transparent;
    color: var(--color-black);
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s;
    border-radius: 50px 0 0 50px;
    margin: 0.2rem 0 0.2rem 0.2rem;
}

.zip-form.expanded .zip-input {
    border-radius: 50px 0 0 0;
}

.zip-input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.zip-input:focus {
    outline: none;
}

.zip-submit {
    padding: 1rem 2rem;
    white-space: nowrap;
    border-radius: 0 50px 50px 0;
    margin: 0.2rem 0.2rem 0.2rem 0;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
    color: var(--color-white);
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.zip-form.expanded .zip-submit {
    border-radius: 0 50px 0 0;
}

.zip-submit:hover {
    background: var(--color-blue-dark);
    transform: scale(1.02);
}

.zip-confirmation-message {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease-out, opacity 0.4s ease-out, padding 0.4s ease-out, margin 0.4s ease-out;
    padding: 0 1.5rem;
    margin-top: 0;
    position: relative;
    width: 100%;
}

.zip-confirmation-message.show {
    max-height: none;
    opacity: 1;
    padding: 0;
    margin-top: 0.75rem;
    min-height: auto;
    background: var(--color-white);
    border-radius: 0 0 25px 25px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.confirmation-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 300px;
}

.confirmation-map-section {
    position: relative;
    background: var(--color-gray-light);
    border-radius: 0 0 0 25px;
    overflow: hidden;
}

.confirmation-map-container {
    width: 100%;
    height: 100%;
    min-height: 300px;
}

.confirmation-info-section {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .confirmation-layout {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
    }
    
    .confirmation-map-section {
        border-radius: 0;
        min-height: 150px;
        max-height: 150px;
        width: 100%;
        order: 1;
    }
    
    .confirmation-map-container {
        min-height: 150px;
        max-height: 150px;
        width: 100%;
    }
    
    .confirmation-info-section {
        order: 2;
        padding: 1rem;
        width: 100%;
    }
    
    .confirmation-content {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .confirmation-icon {
        display: none !important; /* Hide green check on mobile */
    }
    
    .confirmation-text {
        width: 100%;
    }
    
    .confirmation-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .confirmation-location {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .service-area-details {
        font-size: 0.85rem;
    }
    
    .service-area-info-row {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .confirmation-action {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        position: sticky;
        bottom: 0;
        background: var(--color-white);
        z-index: 10;
        padding-bottom: 0.5rem;
    }
    
    .confirmation-btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 153, 255, 0.3);
    }
}

.confirmation-close {
    display: none !important;
}

.confirmation-close:hover {
    background: rgba(0, 0, 0, 0.2);
    color: rgba(0, 0, 0, 0.8);
    transform: rotate(90deg);
}

.zip-confirmation-message.success .confirmation-close {
    color: rgba(22, 163, 74, 0.7);
}

.zip-confirmation-message.success .confirmation-close:hover {
    background: rgba(22, 163, 74, 0.1);
    color: #16a34a;
}

.zip-confirmation-message.error .confirmation-close {
    color: rgba(220, 38, 38, 0.7);
}

.zip-confirmation-message.error .confirmation-close:hover {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
}

.zip-confirmation-message.show.success {
    background: var(--color-white);
    border-top: 3px solid #22c55e;
    border-radius: 0 0 25px 25px;
    margin-left: -0.2rem;
    margin-right: -0.2rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    position: relative;
}

.confirmation-map-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
    border-radius: 0 0 25px 25px;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 8px, rgba(0, 153, 255, 0.04) 8px, rgba(0, 153, 255, 0.04) 10px),
        repeating-linear-gradient(90deg, transparent, transparent 8px, rgba(0, 153, 255, 0.04) 8px, rgba(0, 153, 255, 0.04) 10px),
        radial-gradient(circle at 30% 40%, rgba(0, 153, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(0, 153, 255, 0.06) 0%, transparent 50%);
    background-size: 100% 100%, 100% 100%, 200px 200px, 200px 200px;
    background-position: 0 0, 0 0, 30% 40%, 70% 60%;
}

.zip-confirmation-message.show.error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
    border-top: 3px solid #ef4444;
    border-radius: 0 0 25px 25px;
    margin-left: -0.2rem;
    margin-right: -0.2rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}


.confirmation-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 153, 255, 0.3);
}

.zip-confirmation-message.success .confirmation-icon {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.4);
}

.zip-confirmation-message.error .confirmation-icon {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
}

.zip-confirmation-message.error .icon-check {
    display: none;
}

.zip-confirmation-message.error .icon-x {
    display: block !important;
    font-size: 1.5rem;
}

.zip-confirmation-message.success .icon-x {
    display: none;
}

.confirmation-content-wrapper {
    width: 100%;
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

.confirmation-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
    padding-bottom: 0;
}

.confirmation-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 0;
    padding-right: 0;
}

.service-area-details {
    margin-top: 0.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.service-area-info-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.25rem;
}

.service-area-details p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(22, 163, 74, 0.9);
    line-height: 1.4;
}

.service-area-info-row p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .service-area-info-row {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .confirmation-btn-circle {
        width: 50px;
        height: 50px;
        font-size: 0.7rem;
    }
    
    .review-summary {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
        margin-left: -2.5rem;
        margin-right: -2.5rem;
        width: calc(100% + 5rem);
        border-radius: 0;
    }
    
    .estimate-preview {
        margin-left: -2.5rem;
        margin-right: -2.5rem;
        width: calc(100% + 5rem);
        border-radius: 0;
        padding: 2rem 1.5rem;
    }
    
    .estimate-price-large {
        font-size: 3rem;
    }
    
    .estimate-preview {
        margin-left: -1rem;
        margin-right: -1rem;
        width: calc(100% + 2rem);
        border-radius: 0;
        padding: 2rem 1.5rem;
    }
    
    .estimate-price-large {
        font-size: 3rem;
    }
    
    .zip-confirmation-message.show {
        padding: 1.25rem;
    }
}

.confirmation-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-black);
    margin: 0;
    line-height: 1.3;
}

.zip-confirmation-message.success .confirmation-title {
    color: #16a34a;
}

.zip-confirmation-message.error .confirmation-title {
    color: #dc2626;
}

.confirmation-location {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-black);
    margin: 0;
    line-height: 1.4;
    display: none;
}

.zip-confirmation-message.success .confirmation-location {
    color: #16a34a;
    display: block;
}

.confirmation-details {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
    line-height: 1.6;
    display: none;
}

.zip-confirmation-message.success .confirmation-details {
    color: rgba(22, 163, 74, 0.9);
    display: block;
}

.zip-confirmation-message.error .confirmation-details {
    color: rgba(220, 38, 38, 0.9);
    display: block;
}

.confirmation-action {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 1.25rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.confirmation-btn {
    padding: 0.875rem 2.5rem;
    white-space: nowrap;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    display: inline-block;
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
    color: var(--color-white);
    border: none;
    width: 100%;
    max-width: 300px;
    transition: all 0.3s ease;
}

.confirmation-btn {
    padding: 0.875rem 2.5rem;
    white-space: nowrap;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    display: inline-block;
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
    color: var(--color-white);
    border: none;
    width: 100%;
    max-width: 300px;
    transition: all 0.3s ease;
}

.confirmation-btn-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    white-space: normal;
    line-height: 1.2;
    box-shadow: 0 4px 15px rgba(0, 153, 255, 0.3);
    transition: all 0.3s ease;
}

.confirmation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 153, 255, 0.4);
}

.confirmation-btn-circle:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 153, 255, 0.5);
}

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

.dropdown-text {
    flex: 1;
    width: 100%;
}

.dropdown-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-black);
    margin-bottom: 0.25rem;
}

.dropdown-area {
    font-size: 0.9rem;
    color: var(--color-gray);
    margin: 0;
}

.dropdown-btn {
    padding: 0.75rem 1.5rem;
    white-space: nowrap;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.95rem;
    width: 100%;
    text-align: center;
}

.nav-call {
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gray-light) 100%);
    color: var(--color-black);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--color-white);
    font-size: 0.95rem;
}

.nav-call:hover {
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
    color: var(--color-white);
    border-color: var(--color-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 153, 255, 0.3);
}

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

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

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
    color: var(--color-white);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-blue-dark) 0%, var(--color-blue) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 153, 255, 0.4);
}

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

.btn-outline-blue:hover {
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 153, 255, 0.3);
}

.btn-dark {
    background-color: var(--color-gray-dark);
    color: var(--color-white);
    border: none;
}

.btn-dark:hover {
    background-color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

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

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    color: var(--color-white);
}

.wave-divider svg {
    width: 100%;
    height: 100%;
}

/* Features Section */
.features {
    padding: 3rem 0 5rem;
    background-color: var(--color-white);
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--color-black);
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.features .section-title {
    font-size: 2.5rem;
    color: var(--color-black);
    margin-top: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.pricing-card {
    background: var(--color-white);
    border: 2px solid var(--color-gray-light);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 153, 255, 0.2);
    border-color: var(--color-blue);
}

.pricing-card-premium {
    border-color: var(--color-blue);
    border-width: 3px;
    box-shadow: 0 8px 30px rgba(0, 153, 255, 0.25);
    background: linear-gradient(135deg, var(--color-white) 0%, rgba(0, 153, 255, 0.05) 100%);
}

.pricing-card-premium:hover {
    box-shadow: 0 20px 50px rgba(0, 153, 255, 0.3);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    margin-left: 0;
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
    color: var(--color-white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 153, 255, 0.4);
    animation: pulse 2s ease-in-out infinite;
    white-space: nowrap;
    z-index: 10;
    text-align: center;
}


.pricing-header {
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.75rem;
    color: var(--color-black);
    margin-bottom: 1rem;
    font-weight: 700;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-blue);
    line-height: 1;
}

.pricing-price span {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-gray);
}

.pricing-card-premium .pricing-price {
    color: var(--color-blue-dark);
}

.pricing-features {
    text-align: left;
    margin-bottom: auto;
    flex-grow: 1;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features ul li {
    padding: 0.75rem 0;
    color: var(--color-gray-dark);
    font-size: 1rem;
    border-bottom: 1px solid var(--color-gray-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-features ul li:last-child {
    border-bottom: none;
}

.check-green {
    color: #22c55e;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.premium-includes-standard {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: var(--color-gray-dark);
    font-weight: 400;
    font-style: italic;
}

.feature-premium-highlight {
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.08) 0%, rgba(0, 119, 204, 0.12) 100%);
    padding: 1.25rem 1rem !important;
    margin: 0.75rem 0;
    border-radius: 12px;
    border: 2px solid rgba(0, 153, 255, 0.3) !important;
    font-size: 1.1rem !important;
    box-shadow: 0 4px 20px rgba(0, 153, 255, 0.15), 0 0 0 1px rgba(0, 153, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-premium-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
    box-shadow: 0 0 10px rgba(0, 153, 255, 0.5);
}

.feature-premium-highlight::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 153, 255, 0.1) 0%, transparent 70%);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

.feature-premium-highlight strong {
    color: var(--color-blue);
    font-size: 1.2rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 153, 255, 0.2);
    position: relative;
    z-index: 1;
}

.pricing-btn {
    width: 100%;
    margin-top: auto;
    padding: 1rem 2rem;
    display: inline-block;
    text-align: center;
}

.pricing-card .btn-secondary {
    background-color: transparent;
    color: var(--color-black);
    border: 2px solid var(--color-blue);
    font-weight: 600;
}

.pricing-card .btn-secondary:hover {
    background-color: var(--color-blue);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 153, 255, 0.3);
}

.feature-card {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(0, 153, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 153, 255, 0.15);
    border-color: var(--color-blue);
}

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

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-black);
}

.feature-card p {
    color: var(--color-gray);
    line-height: 1.8;
}

.hiring-notice {
    margin-top: 3rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
    border-radius: 12px;
    text-align: center;
    color: var(--color-white);
}

.hiring-notice p {
    margin: 0;
    font-size: 1.1rem;
}

.hiring-notice a {
    color: var(--color-white);
    text-decoration: underline;
    font-weight: 600;
    transition: opacity 0.3s;
}

.hiring-notice a:hover {
    opacity: 0.8;
}

/* Service Cards Section */
.service-cards-section {
    padding: 5rem 0;
    background-color: var(--color-white);
}

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

.service-cards-section .service-card {
    background-color: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.service-cards-section .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 153, 255, 0.2);
}

.service-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
}

.service-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
}

.service-card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-cards-section .service-card-content > p {
    color: var(--color-gray-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-cards-section .service-included {
    background-color: var(--color-gray-light);
    border: 1px solid var(--color-gray);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-cards-section .service-included h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-gray-dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-cards-section .service-included ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-cards-section .service-included ul li {
    padding: 0.5rem 0;
    color: var(--color-gray-dark);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-cards-section .check-blue {
    color: var(--color-blue);
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.1) 0%, rgba(0, 119, 204, 0.1) 100%);
    border-radius: 50%;
    flex-shrink: 0;
}

.service-cards-section .service-card-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-cards-section .service-card-buttons .btn {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 8px;
}

/* Services Preview */
.services-preview {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-gray-light) 0%, var(--color-white) 100%);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateX(5px);
}

.check-icon {
    color: var(--color-blue);
    font-weight: 700;
    font-size: 1.5rem;
    min-width: 30px;
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-gray-dark) 100%);
    color: var(--color-white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 153, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner .container {
    position: relative;
    z-index: 1;
}

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

.cta-title {
    font-family: 'Bebas Neue', 'Montserrat', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    width: 100%;
    text-transform: lowercase;
    letter-spacing: 0.05em;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
    white-space: nowrap;
    overflow: visible;
}

.cta-title-left {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    justify-content: flex-start;
    flex: 0 1 auto;
    align-items: baseline;
    white-space: nowrap;
}

.cta-white,
.cta-blue {
    white-space: nowrap;
    display: inline-block;
}

.cta-white {
    color: var(--color-white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.cta-blue {
    color: var(--color-blue);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.cta-pool {
    flex-shrink: 0;
}

.cta-subtitle {
    font-size: 1.4rem;
    opacity: 0.95;
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

.service-locations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.location-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 153, 255, 0.2);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    text-align: center;
}

.location-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-blue);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 30px rgba(0, 153, 255, 0.3);
}

.location-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0, 153, 255, 0.4));
}

.location-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.location-stats {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-blue);
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 153, 255, 0.15);
    border-radius: 8px;
    display: inline-block;
}

.location-info {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.company-car-section {
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.company-car-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%);
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid rgba(0, 153, 255, 0.1);
    max-width: 1000px;
    margin: 0 auto;
}

.company-car-image-wrapper {
    position: relative;
    max-width: 320px;
    margin: 0 auto;
}

.company-car-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(0, 153, 255, 0.3);
    transition: all 0.3s ease;
    object-fit: cover;
}

.company-car-image:hover {
    border-color: var(--color-blue);
    box-shadow: 0 15px 50px rgba(0, 153, 255, 0.4);
    transform: translateY(-5px);
}

.company-car-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.company-car-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 0;
}

.company-car-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.company-car-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.car-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(0, 153, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(0, 153, 255, 0.2);
    transition: all 0.3s ease;
}

.car-feature:hover {
    background: rgba(0, 153, 255, 0.15);
    border-color: var(--color-blue);
    transform: translateX(5px);
}

.car-feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.car-feature span:last-child {
    color: var(--color-white);
    font-weight: 500;
    font-size: 1rem;
}

.service-area-map {
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-area-map h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(0, 153, 255, 0.3);
    transition: all 0.3s ease;
}

.map-container:hover {
    border-color: var(--color-blue);
    box-shadow: 0 15px 50px rgba(0, 153, 255, 0.4);
}

.cta-action {
    margin-top: 3rem;
}

.cta-subtext {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1.5rem;
    font-weight: 400;
}

/* Footer */
.footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 4rem 0 1rem;
}

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

.footer-links-wrapper {
    display: contents;
}

.footer-divider {
    display: none;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin-bottom: 1.5rem;
    object-fit: contain;
}

.footer-logo-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.social-link {
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
}

.social-link svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s;
}

.social-link:hover {
    transform: translateY(-3px);
    background: rgba(0, 153, 255, 0.2);
    border-color: var(--color-blue);
    box-shadow: 0 8px 20px rgba(0, 153, 255, 0.3);
    color: var(--color-white);
}

.social-link:hover svg {
    transform: scale(1.1);
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--color-blue);
    font-size: 1.2rem;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--color-blue);
}

.contact-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.contact-list li {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
}

.contact-list li:hover {
    color: rgba(255, 255, 255, 1);
}

.contact-icon {
    flex-shrink: 0;
    color: var(--color-blue);
    opacity: 0.9;
    transition: all 0.3s;
}

.contact-list li:hover .contact-icon {
    opacity: 1;
    transform: scale(1.1);
    color: var(--color-blue);
}

.contact-list a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-list a:hover {
    color: var(--color-blue);
}

.contact-list span {
    color: rgba(255, 255, 255, 0.9);
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    width: 100%;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

.footer-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--color-blue);
}

.footer-links span {
    color: rgba(255, 255, 255, 0.3);
}

/* Form Styles */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 20px;
}

.form-section {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    overflow: hidden;
    position: relative;
}

@media (max-width: 768px) {
    .form-section {
        padding: 1.5rem;
        margin-bottom: 0;
        padding-bottom: 5rem; /* Space for sticky button */
    }
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.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;
}

/* Plan Options */
.plan-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.plan-option {
    display: flex;
    align-items: center;
    padding: 1.25rem;
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: var(--color-white);
}

.plan-option:hover {
    border-color: var(--color-blue);
    background-color: rgba(0, 153, 255, 0.05);
}

.plan-option input[type="radio"] {
    width: auto;
    margin-right: 1rem;
    cursor: pointer;
    accent-color: var(--color-blue);
}

.plan-option input[type="radio"]:checked + .plan-content {
    color: var(--color-blue);
}

.plan-option:has(input[type="radio"]:checked) {
    border-color: var(--color-blue);
    background-color: rgba(0, 153, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(0, 153, 255, 0.1);
}

.plan-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.25rem;
}

.plan-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-black);
}

.plan-price {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-blue);
}

.plan-features {
    font-size: 0.9rem;
    color: var(--color-gray);
    font-style: italic;
}

.plan-option-premium {
    border-color: var(--color-blue);
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.05) 0%, rgba(0, 119, 204, 0.05) 100%);
}

.plan-option-premium:has(input[type="radio"]:checked) {
    box-shadow: 0 0 15px rgba(0, 153, 255, 0.3), 0 0 0 3px rgba(0, 153, 255, 0.2);
}

/* Time Slot Options */
.time-slot-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.time-slot-option {
    display: flex;
    align-items: center;
    padding: 1.25rem;
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: var(--color-white);
}

.time-slot-option:hover {
    border-color: var(--color-blue);
    background-color: rgba(0, 153, 255, 0.05);
}

.time-slot-option input[type="radio"] {
    width: auto;
    margin-right: 1rem;
    cursor: pointer;
    accent-color: var(--color-blue);
}

.time-slot-option input[type="radio"]:checked + .time-slot-content {
    color: var(--color-blue);
}

.time-slot-option:has(input[type="radio"]:checked) {
    border-color: var(--color-blue);
    background-color: rgba(0, 153, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(0, 153, 255, 0.1);
}

.time-slot-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.25rem;
}

.time-slot-label {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-black);
}

.time-slot-time {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-gray);
}

@media (max-width: 768px) {
    .plan-options {
        gap: 0.75rem;
    }
    
    .plan-option {
        padding: 1rem;
    }
    
    .plan-name {
        font-size: 1rem;
    }
    
    .plan-price {
        font-size: 1.1rem;
    }
    
    .time-slot-options {
        gap: 0.75rem;
    }
    
    .time-slot-option {
        padding: 1rem;
    }
    
    .time-slot-label {
        font-size: 1rem;
    }
    
    .time-slot-time {
        font-size: 0.9rem;
    }
}

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

.estimate-result {
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
    color: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 2rem;
    display: none;
}

.estimate-result.show {
    display: block;
}

.estimate-result h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.estimate-price {
    font-size: 3rem;
    font-weight: 800;
    margin: 1rem 0;
}

/* Multi-Step Form Styles */
.form-progress {
    margin-bottom: 3rem;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    position: relative;
    padding: 0 20px;
    max-width: 100%;
}

.progress-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.progress-steps::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: var(--color-gray-light);
    z-index: 0;
    width: calc(100% - 80px);
}

.progress-step::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    width: 100%;
    height: 3px;
    background: var(--color-blue);
    z-index: 1;
    display: none;
}

.progress-step.completed::before {
    display: block;
    left: 50%;
    width: 100%;
}

.progress-step.active::before {
    display: block;
    left: 50%;
    width: 50%;
}

.progress-step:first-child.completed::before,
.progress-step:first-child.active::before {
    left: 50%;
    width: 100%;
}

.progress-step:last-child::before {
    display: none;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-gray-light);
    color: var(--color-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s;
    position: relative;
    z-index: 2;
    background-color: var(--color-gray-light);
}

.progress-step.active .step-number {
    background: var(--color-blue);
    color: var(--color-white);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 153, 255, 0.4);
}

.progress-step.completed .step-number {
    background: var(--color-blue-dark);
    color: var(--color-white);
}

.step-label {
    font-size: 0.85rem;
    color: var(--color-gray);
    font-weight: 500;
    text-align: center;
}

.progress-step.active .step-label {
    color: var(--color-blue);
    font-weight: 600;
}

.progress-bar {
    display: none; /* Remove the blue line under progress bar */
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
    transition: width 0.4s ease;
    width: 20%;
}

.multi-step-form {
    position: relative;
    min-height: 400px;
}

.form-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.form-step.active {
    display: block;
}

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

.step-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 0.5rem;
}

.step-description {
    font-size: 1.1rem;
    color: var(--color-gray);
    margin-bottom: 2rem;
}

.addons-section {
    margin-top: 2rem;
}

.addons-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 1rem;
}

.addon-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.addon-option {
    display: flex;
    align-items: center;
    padding: 1.25rem;
    border: 2px solid var(--color-gray-light);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    background: var(--color-white);
}

.addon-option:hover {
    border-color: var(--color-blue);
    background: rgba(0, 153, 255, 0.05);
}

.addon-option input[type="checkbox"] {
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    cursor: pointer;
    accent-color: var(--color-blue);
}

.addon-option input[type="checkbox"]:checked + .addon-content {
    color: var(--color-blue);
}

.addon-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.addon-name {
    font-weight: 500;
    color: var(--color-black);
}

.addon-price {
    font-weight: 600;
    color: var(--color-blue);
    font-size: 1.1rem;
}

.addon-option input[type="checkbox"]:checked ~ .addon-content .addon-name {
    color: var(--color-blue);
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--color-gray-light);
    position: relative;
}

.form-navigation .btn {
    min-width: 150px;
}

@media (max-width: 768px) {
    .form-navigation {
        position: sticky;
        bottom: 0;
        background: var(--color-white);
        padding: 1rem;
        margin: 2rem -2.5rem -2.5rem;
        border-top: 2px solid var(--color-gray-light);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
        z-index: 100;
        border-radius: 0;
    }
    
    .form-navigation .btn {
        flex: 1;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        font-weight: 600;
        min-width: auto;
    }
}

.review-summary {
    background: var(--color-gray-light);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.summary-section {
    margin-bottom: 0;
}

.summary-section:last-child {
    margin-bottom: 0;
}

.summary-section h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-blue);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.95rem;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-label {
    font-weight: 500;
    color: var(--color-gray-dark);
}

.summary-value {
    font-weight: 600;
    color: var(--color-black);
    text-transform: capitalize;
}

.estimate-preview {
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    color: var(--color-white);
    margin-top: 2rem;
}

.estimate-preview-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.estimate-label {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.estimate-price-large {
    font-size: 4rem;
    font-weight: 800;
    margin: 1rem 0;
    line-height: 1;
}

.estimate-note {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-top: 1rem;
}

.estimate-result {
    text-align: center;
    padding: 3rem 2rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--color-blue);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1.5rem;
    font-weight: 700;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-gray-dark) 100%);
    color: var(--color-white);
    padding: 4rem 0 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
}

.service-card {
    background-color: var(--color-white);
    border: 2px solid var(--color-gray-light);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--color-blue);
    box-shadow: 0 10px 30px rgba(0, 153, 255, 0.1);
    transform: translateY(-5px);
}

.service-card h3 {
    color: var(--color-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    margin-top: 1rem;
}

.service-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-blue);
    font-weight: bold;
}

/* Modern Services Page Styles */
.services-page-content {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-gray-light) 100%);
}

.services-featured {
    margin-bottom: 4rem;
}

.service-card-featured {
    background: linear-gradient(135deg, var(--color-white) 0%, rgba(0, 153, 255, 0.05) 100%);
    border: 3px solid var(--color-blue);
    border-radius: 24px;
    padding: 3.5rem;
    box-shadow: 0 12px 50px rgba(0, 153, 255, 0.2);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.service-card-featured::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 153, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.service-card-featured h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1.2rem;
    color: var(--color-gray-dark);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.feature-item {
    padding: 1rem;
    background: rgba(0, 153, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(0, 153, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(0, 153, 255, 0.08);
    border-color: rgba(0, 153, 255, 0.3);
    transform: translateX(4px);
}

.feature-item-highlight {
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.1) 0%, rgba(0, 119, 204, 0.1) 100%);
    border: 2px solid var(--color-blue);
    box-shadow: 0 4px 15px rgba(0, 153, 255, 0.2);
}

.feature-item svg {
    color: var(--color-blue);
    flex-shrink: 0;
}

.feature-item span {
    color: var(--color-gray-dark);
    font-size: 0.95rem;
}

.feature-item-highlight {
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.15) 0%, rgba(0, 119, 204, 0.15) 100%) !important;
    border: 2px solid var(--color-blue) !important;
    padding: 1rem !important;
    margin: 0.5rem 0;
}

.feature-item-highlight svg {
    color: var(--color-blue) !important;
    width: 28px !important;
    height: 28px !important;
}

.feature-item-highlight span {
    font-size: 1.1rem !important;
    color: var(--color-black) !important;
}

.feature-item-highlight strong {
    color: var(--color-blue);
    font-size: 1.15rem;
}

.service-price {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid var(--color-gray-light);
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--color-gray);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-blue);
    line-height: 1;
}

.price-amount span {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-gray);
}

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

.service-card-modern {
    background: var(--color-white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border: 2px solid var(--color-gray-light);
    position: relative;
    overflow: hidden;
}

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

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 48px rgba(0, 153, 255, 0.25);
    border-color: var(--color-blue);
}

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

.service-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-gray-light);
}

.service-icon-small {
    font-size: 2.5rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.15) 0%, rgba(0, 119, 204, 0.15) 100%);
    border-radius: 16px;
    flex-shrink: 0;
    border: 2px solid rgba(0, 153, 255, 0.2);
    transition: all 0.3s ease;
}

.service-card-modern:hover .service-icon-small {
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.25) 0%, rgba(0, 119, 204, 0.25) 100%);
    border-color: var(--color-blue);
    transform: scale(1.05);
}

.service-card-modern h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-black);
    margin: 0;
}

.service-card-modern > p {
    color: var(--color-gray-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-list-modern {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.service-list-modern li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-gray-dark);
    font-size: 0.95rem;
}

.service-list-modern li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

.service-footer-modern {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--color-gray-light);
}

.price-tag {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
    color: var(--color-white);
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 153, 255, 0.3);
    transition: all 0.3s ease;
}

.service-card-modern:hover .price-tag {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 153, 255, 0.4);
}

/* Repairs Section */
.repairs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
}

.repair-card {
    background-color: var(--color-gray-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--color-blue);
}

.repair-card h3 {
    color: var(--color-black);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.repair-card p {
    color: var(--color-gray);
    line-height: 1.8;
}

/* Contact Info */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
}

.contact-card {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

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

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

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 58px;
        flex-direction: column;
        background-color: var(--color-black);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 0;
        display: flex;
        align-items: stretch;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 0;
        margin: 0;
    }

    .nav-menu li a {
        display: block;
        padding: 1.25rem 1.5rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1rem;
    }

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

    .hero {
        padding: 6rem 0 2rem;
        min-height: auto;
    }

    .hero-background {
        opacity: 0.5;
    }

    .hero-overlay {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 153, 255, 0.3) 100%);
    }

    .hero-content {
        padding: 1.5rem 15px;
        max-width: 100%;
        gap: 1.5rem;
    }

    .serving-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1rem;
    }

    .serving-badge-icon {
        font-size: 1rem;
    }

    .badge-wrapper {
        margin: -0.5rem auto 0.5rem;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .badge-arrow-indicator {
        gap: 0.25rem;
    }

    .arrow-svg {
        width: 35px;
        height: 35px;
    }

    .arrow-text {
        font-size: 0.65rem;
    }

    .hiring-badge-white {
        max-width: 100%;
        font-size: 0.65rem;
        padding: 0.45rem 0.75rem;
        padding-right: 1rem;
        flex: 1;
        min-width: 0;
    }

    .hiring-badge-white .badge-icon {
        font-size: 1.25rem;
    }

    .badge-text-main {
        font-size: 0.85rem;
    }

    .badge-text-sub {
        font-size: 0.65rem;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
        line-height: 1.1;
        padding: 0;
        letter-spacing: 0.02em;
        white-space: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 0.25rem;
    }

    .hero-title::-webkit-scrollbar {
        display: none;
    }

    .hero-title-left {
        justify-content: flex-start;
        white-space: nowrap;
    }

    .hero-care {
        flex-shrink: 0;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
        padding: 0;
        line-height: 1.3;
    }

    .zip-code-form {
        margin: 0.5rem 0 0;
        width: 100%;
        max-width: 100%;
    }

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

    .cta-banner {
        padding: 3.5rem 0;
    }


    .cta-title-section {
        margin-bottom: 2.5rem;
    }

    .cta-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
        text-align: center;
    }

    .cta-title-left {
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
    }

    .cta-white {
        color: var(--color-white);
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    }

    .cta-blue {
        color: var(--color-blue);
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    }

    .cta-pool {
        margin-left: 0;
    }

    .cta-subtitle {
        font-size: 1.1rem;
    }

    .service-locations {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .location-card {
        padding: 2rem 1.5rem;
    }

    .location-icon {
        font-size: 2.5rem;
    }

    .location-card h3 {
        font-size: 1.5rem;
    }

    .company-car-section {
        margin-bottom: 2.5rem;
        padding: 0 15px;
    }

    .company-car-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }

    .company-car-text h3 {
        font-size: 1.5rem;
    }

    .company-car-text p {
        font-size: 1rem;
    }

    .company-car-image {
        border-radius: 8px;
    }

    .service-area-map {
        margin-bottom: 2rem;
    }

    .service-area-map h3 {
        font-size: 1.5rem;
    }

    .map-container iframe {
        height: 300px;
    }

    .cta-action {
        margin-top: 2rem;
    }

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

    .services-page-content {
        padding: 2rem 0;
    }

    .service-card-featured {
        padding: 2rem 1.5rem;
    }

    .service-icon {
        font-size: 3rem;
    }

    .service-card-featured h3 {
        font-size: 2rem;
    }

    .service-description {
        font-size: 1.1rem;
    }

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

    .services-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .form-progress {
        margin-bottom: 2rem;
    }

    .progress-steps {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .step-label {
        font-size: 0.75rem;
        display: none;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .step-title {
        font-size: 1.5rem;
    }

    .step-description {
        font-size: 1rem;
    }

    .addon-option {
        padding: 1rem;
    }

    .addon-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .review-summary {
        padding: 1.5rem;
    }

    .estimate-price-large {
        font-size: 3rem;
    }

    .form-navigation {
        position: sticky;
        bottom: 0;
        background: var(--color-white);
        padding: 1rem;
        margin: 2rem -2.5rem -2.5rem;
        border-top: 2px solid var(--color-gray-light);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
        z-index: 100;
        border-radius: 0;
        flex-direction: row;
        gap: 1rem;
    }

    .form-navigation .btn {
        flex: 1;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        font-weight: 600;
        min-width: auto;
    }
    
    .review-summary {
        margin-left: -2.5rem;
        margin-right: -2.5rem;
        width: calc(100% + 5rem);
        border-radius: 0;
        padding: 1.5rem;
    }
    
    .estimate-preview {
        margin-left: -2.5rem;
        margin-right: -2.5rem;
        width: calc(100% + 5rem);
        border-radius: 0;
        padding: 2rem 1.5rem;
    }
    
    .estimate-price-large {
        font-size: 3rem;
    }

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

    .btn {
        text-align: center;
    }

    .nav-container {
        flex-wrap: nowrap;
        justify-content: space-between;
        padding: 0 15px;
        position: relative;
        align-items: center;
    }

    .hamburger {
        order: 1;
        display: flex;
        z-index: 1002;
        flex-shrink: 0;
        width: 30px;
    }

    .logo-link {
        order: 2;
        flex: 1;
        justify-content: center;
        display: flex;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1001;
        width: auto;
        margin: 0;
    }

    .nav-logo {
        height: 120px;
        top: 25px;
    }

    .nav-menu {
        order: 3;
        width: 100%;
        margin-top: 0;
        top: 58px;
        position: fixed;
        padding: 1.5rem 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .nav-menu .nav-call {
        display: none;
    }

    .nav-menu li {
        position: relative;
        width: 100%;
        text-align: center;
        padding: 0;
        margin: 0;
    }

    .nav-menu li::after {
        display: none;
    }

    .nav-menu li a {
        display: block;
        padding: 1rem 1.5rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

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

    .nav-call-mobile {
        display: block !important;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1002;
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
        background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gray-light) 100%);
        color: var(--color-black);
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s;
        white-space: nowrap;
    }

    .nav-call-mobile:hover {
        background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
        color: var(--color-white);
        transform: translateY(-50%) translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 153, 255, 0.3);
    }

    .zip-code-form {
        max-width: 100%;
        padding: 0 10px;
        margin-top: 1rem;
        width: 100%;
    }

    .zip-form {
        flex-direction: column;
        border-radius: 25px;
        width: 100%;
    }

    .zip-form-top {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .zip-input {
        border-radius: 25px 25px 0 0;
        margin: 0.2rem;
        margin-bottom: 0;
        width: calc(100% - 0.4rem);
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }

    .zip-submit {
        border-radius: 0 0 25px 25px;
        margin: 0.2rem;
        margin-top: 0;
        width: calc(100% - 0.4rem);
        padding: 0.9rem 1.2rem;
    }

    .zip-confirmation-message {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding: 0 1rem;
    }

    .zip-confirmation-message.show {
        padding: 1rem;
        max-height: 400px;
    }

    .confirmation-close {
        top: 0.5rem;
        right: 0.5rem;
    }

    .confirmation-text {
        align-items: center;
        width: 100%;
        padding-right: 0;
    }

    .confirmation-btn {
        align-self: stretch;
        font-size: 0.9rem;
    }

    .zip-form.expanded .zip-input {
        border-radius: 25px 25px 0 0;
    }

    .zip-form.expanded .zip-submit {
        border-radius: 0;
    }

    .zip-confirmation-message {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding: 0 1rem;
    }

    .zip-confirmation-message.show {
        padding: 1rem;
        max-height: 400px;
    }

    .confirmation-close {
        top: 0.5rem;
        right: 0.5rem;
    }

    .confirmation-text {
        align-items: center;
        width: 100%;
        padding-right: 0;
    }

    .confirmation-content-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    
    .confirmation-action {
        width: 100%;
        justify-content: center;
    }
    
    .confirmation-btn {
        align-self: stretch;
        width: 100%;
    }

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

    .footer-links-wrapper {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 2rem;
        position: relative;
        padding: 0 1rem;
    }

    .footer-divider {
        display: block;
        width: 1px;
        background: rgba(255, 255, 255, 0.2);
        height: 100%;
        min-height: 200px;
        flex-shrink: 0;
    }

    .footer-links-wrapper .footer-section {
        flex: 1;
        max-width: 45%;
        text-align: left;
    }

    .footer-links-wrapper .footer-section:first-child {
        text-align: right;
    }

    .footer-links-wrapper .footer-section h4 {
        margin-bottom: 1rem;
    }

    .footer-content > .footer-section:last-child {
        text-align: center;
        max-width: 100%;
        margin: 0 auto;
    }

    .footer-content > .footer-section:last-child h4 {
        text-align: center;
    }

    .footer-content > .footer-section:last-child .contact-list {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-content > .footer-section:last-child .contact-list li {
        justify-content: center;
        text-align: center;
    }

    .footer-logo {
        max-width: 280px;
        margin: 0 auto 1.5rem;
    }

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

    .service-cards-section .service-card-content {
        padding: 1.5rem;
    }

    .service-cards-section .service-card-buttons {
        flex-direction: column;
    }

    .service-cards-section .service-card-buttons .btn {
        width: 100%;
    }


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

    .hiring-badge {
        display: none;
    }


    .badge-text {
        font-size: 0.7rem;
    }

    .nav-logo {
        height: 100px;
        top: 22px;
    }

    .hiring-badge {
        position: relative;
        top: auto;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        max-width: 260px;
        padding: 0.5rem 1rem;
        padding-right: 1.5rem;
        font-size: 0.7rem;
        margin: 0 auto 1rem;
        border-radius: 50px;
        border-right: 2px solid rgba(255, 255, 255, 0.2);
    }

    .badge-icon {
        font-size: 1.1rem;
    }

    .badge-text-main {
        font-size: 0.85rem;
    }

    .badge-text-sub {
        font-size: 0.6rem;
    }

    .badge-text {
        font-size: 0.8rem;
        white-space: normal;
    }

    .confirmation-content {
        flex-direction: column;
        text-align: center;
    }

    .confirmation-btn {
        width: 100%;
    }

    .footer-logo-section {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Popup Styles */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s;
}

.popup-overlay.show {
    display: flex;
}

.popup-content {
    background-color: var(--color-white);
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.popup-large {
    max-width: 700px;
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--color-gray);
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
    z-index: 1;
}

.popup-close:hover {
    color: var(--color-black);
}

.popup-content h2 {
    color: var(--color-black);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

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

.popup-content p {
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

