
/*-- -------------------------- -->
<---            Hero            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #hero {
        min-height: 120vh;
        padding: var(--sectionPadding);
        padding-top: clamp(10rem, 18vw, 12rem);
        padding-bottom: clamp(3rem, 8vw, 5rem);
        background: #0a0a0a;
        overflow: hidden;
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
    }
    
    #hero .cs-hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 0;
    }
    
    #hero .cs-gradient-orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        opacity: 0.4;
        animation: float 20s ease-in-out infinite;
    }
    
    #hero .cs-orb-1 {
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
        top: -200px;
        left: -200px;
        animation-delay: 0s;
    }
    
    #hero .cs-orb-2 {
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
        bottom: -150px;
        right: -150px;
        animation-delay: 7s;
    }
    
    #hero .cs-orb-3 {
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(51, 133, 214, 0.6) 0%, transparent 70%);
        top: 50%;
        right: 10%;
        animation-delay: 14s;
    }
    
    @keyframes float {
        0%, 100% { transform: translate(0, 0) scale(1); }
        33% { transform: translate(30px, -30px) scale(1.1); }
        66% { transform: translate(-20px, 20px) scale(0.9); }
    }
    
    #hero .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        position: relative;
        z-index: 2;
        flex: 1;
        display: flex;
        align-items: center;
    }
    
    #hero .cs-hero-content {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
        align-items: center;
    }
    
    #hero .cs-hero-left {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        position: relative;
        z-index: 3;
    }
    
    #hero .cs-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 2rem;
        width: fit-content;
        animation: slideInLeft 0.8s ease-out;
    }
    
    #hero .cs-badge-text {
        font-family: var(--headerFont);
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--bodyTextColorWhite);
        letter-spacing: 0.05em;
    }
    
    #hero .cs-badge-icon {
        width: 1rem;
        height: 1rem;
        color: var(--secondaryLight);
    }
    
    #hero .cs-title {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin: 0;
        animation: fadeInUp 0.8s ease-out 0.2s both;
    }
    
    #hero .cs-title-line {
        display: block;
        font-family: var(--headerFont);
        font-weight: 900;
        line-height: 1.1;
        color: var(--bodyTextColorWhite);
    }
    
    #hero .cs-line-1 {
        font-size: clamp(2.5rem, 6vw, 4.5rem);
        opacity: 0.9;
    }
    
    #hero .cs-line-2 {
        font-size: clamp(2.5rem, 6vw, 4.5rem);
        opacity: 0.9;
    }
    
    #hero .cs-line-3 {
        font-size: clamp(3rem, 7vw, 5.5rem);
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        position: relative;
    }
    
    
    #hero .cs-text {
        font-size: clamp(1rem, 2vw, 1.25rem);
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.8);
        max-width: 35rem;
        margin: 0;
        animation: fadeInUp 0.8s ease-out 0.4s both;
    }
    
    #hero .cs-hero-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        animation: fadeInUp 0.8s ease-out 0.6s both;
    }
    
    #hero .cs-button-primary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        padding: 1rem 2rem;
        background: linear-gradient(135deg, var(--primary) 0%, var(--primaryLight) 100%);
        color: #fff;
        font-family: var(--headerFont);
        font-size: 1rem;
        font-weight: 700;
        text-decoration: none;
        border-radius: 0.75rem;
        box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    #hero .cs-button-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s;
    }
    
    #hero .cs-button-primary:hover::before {
        left: 100%;
    }
    
    #hero .cs-button-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 40px rgba(0, 102, 204, 0.4);
    }
    
    #hero .cs-button-primary svg {
        width: 1.25rem;
        height: 1.25rem;
        transition: transform 0.3s;
    }
    
    #hero .cs-button-primary:hover svg {
        transform: translateX(4px);
    }
    
    #hero .cs-button-secondary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        padding: 1rem 2rem;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: var(--bodyTextColorWhite);
        font-family: var(--headerFont);
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none;
        border-radius: 0.75rem;
        transition: all 0.3s ease;
    }
    
    #hero .cs-button-secondary:hover {
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
    }
    
    #hero .cs-button-secondary svg {
        width: 1.25rem;
        height: 1.25rem;
    }
    
    #hero .cs-hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin-top: 1rem;
        animation: fadeInUp 0.8s ease-out 0.8s both;
    }
    
    #hero .cs-stat-item {
        text-align: center;
    }
    
    #hero .cs-stat-number {
        font-family: var(--headerFont);
        font-size: clamp(1.5rem, 3vw, 2rem);
        font-weight: 900;
        color: var(--primary);
        line-height: 1.2;
        margin-bottom: 0.25rem;
    }
    
    #hero .cs-stat-label {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.7);
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    
    #hero .cs-hero-right {
        position: relative;
        animation: fadeInRight 1s ease-out 0.4s both;
    }
    
    #hero .cs-image-wrapper {
        position: relative;
        width: 100%;
    }
    
    #hero .cs-glass-card {
        position: relative;
        border-radius: 2rem;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }
    
    #hero .cs-hero-image-container {
        position: relative;
        width: 100%;
        aspect-ratio: 16/10;
        display: block;
    }
    
    #hero .cs-before-picture,
    #hero .cs-after-picture {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    #hero .cs-before-picture img,
    #hero .cs-after-picture img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    
    #hero .cs-before-picture {
        opacity: 1;
        transition: opacity 4.5s ease-in-out;
        z-index: 2;
    }
    
    #hero .cs-after-picture {
        opacity: 0;
        transition: opacity 4.5s ease-in-out;
        z-index: 1;
    }
    
    #hero .cs-hero-image-container.cs-animate .cs-before-picture {
        opacity: 0;
    }
    
    #hero .cs-hero-image-container.cs-animate .cs-after-picture {
        opacity: 1;
    }
    
    #hero .cs-scroll-indicator {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        z-index: 10;
        margin-top: 2rem;
        animation: bounce 2s infinite;
    }
    
    #hero .cs-scroll-indicator-desktop {
        display: none;
    }
    
    #hero .cs-scroll-line {
        width: 2px;
        height: 2rem;
        background: linear-gradient(180deg, var(--primary), transparent);
        border-radius: 2px;
    }
    
    @keyframes bounce {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(10px); }
    }
    
    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #hero {
        padding-bottom: var(--sectionPadding);
    }
    
    #hero .cs-hero-actions {
        flex-direction: row;
    }
    
    #hero .cs-hero-stats {
        grid-template-columns: repeat(3, 1fr);
        max-width: 30rem;
    }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #hero {
        min-height: 90vh;
    }
    
    #hero .cs-hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    #hero .cs-hero-left {
        justify-content: center;
    }
    
    #hero .cs-image-wrapper {
        height: 100%;
        display: flex;
        align-items: center;
    }
    
    #hero .cs-scroll-indicator-mobile {
        display: none;
    }
    
    #hero .cs-scroll-indicator-desktop {
        display: flex;
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 0;
    }
}

/*-- -------------------------- -->
<---       Price Estimator      -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #estimate {
        padding: var(--sectionPadding);
        background: linear-gradient(180deg, #f7f7f7 0%, #ffffff 100%);
        position: relative;
        overflow: hidden;
    }
    
    #estimate::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(ellipse at top, rgba(0, 102, 204, 0.05) 0%, transparent 50%);
        pointer-events: none;
    }
    
    #estimate .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        position: relative;
        z-index: 1;
    }
    
    #estimate .cs-content {
        text-align: center;
        width: 100%;
        margin-bottom: 3rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    #estimate .cs-topper {
        animation: fadeInUp 0.6s ease-out;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    #estimate .cs-title {
        animation: fadeInUp 0.6s ease-out 0.2s both;
        position: relative;
    }
    
    /* #estimate .cs-title::after {
        content: '';
        position: absolute;
        bottom: 0.5rem;
        left: 50%;
        transform: translateX(-50%);
        width: 4rem;
        height: 0.25rem;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        border-radius: 2px;
        opacity: 0.3;
    } */
    
    #estimate .cs-text {
        animation: fadeInUp 0.6s ease-out 0.4s both;
    }
    
    #estimate .cs-estimate-wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    #estimate .cs-about-section {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    #estimate .cs-about-image {
        width: 100%;
        border-radius: 1.5rem;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    }
    
    #estimate .cs-about-image .cs-picture {
        width: 100%;
        display: block;
    }
    
    #estimate .cs-about-image img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }
    
    #estimate .cs-about-content {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    #estimate .cs-about-title {
        font-family: var(--headerFont);
        font-size: clamp(1.5rem, 3vw, 2rem);
        font-weight: 700;
        color: var(--headerColor);
        line-height: 1.3em;
        margin: 0;
    }
    
    #estimate .cs-about-text {
        font-family: var(--bodyFont);
        font-size: 1rem;
        line-height: 1.6em;
        color: var(--bodyTextColor);
        margin: 0;
    }
    
    #estimate .cs-about-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 0.5rem;
    }
    
    #estimate .cs-feature-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-family: var(--bodyFont);
        font-size: 0.9375rem;
        color: var(--bodyTextColor);
    }
    
    #estimate .cs-feature-item svg {
        flex-shrink: 0;
        color: var(--primary);
    }
    
    #estimate .cs-form {
        width: 100%;
        max-width: 45rem;
        margin: auto;
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 2rem;
        padding: 2.5rem;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
        position: relative;
        overflow: hidden;
        animation: fadeInUp 0.6s ease-out 0.6s both;
        box-sizing: border-box;
    }
    
    #estimate .cs-form::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
    }
    
    #estimate .cs-steps {
        position: relative;
        overflow: hidden;
        width: 100%;
        box-sizing: border-box;
        transition: height 0.4s ease;
    }
    
    #estimate .cs-track {
        display: flex;
        width: 300%;
        transition: transform 0.4s ease;
        will-change: transform;
        align-items: flex-start;
    }
    
    #estimate .cs-step {
        width: 33.333%;
        min-width: 33.333%;
        max-width: 33.333%;
        flex-shrink: 0;
        flex-grow: 0;
        padding: 0;
        border: none;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        box-sizing: border-box;
    }
    
    #estimate .cs-field {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    #estimate .cs-label {
        font-family: var(--headerFont);
        font-size: 1rem;
        font-weight: 600;
        color: var(--headerColor);
    }
    
    #estimate .cs-required {
        color: var(--secondary);
    }
    
    #estimate .cs-input {
        width: 100%;
        padding: 0.875rem 1rem;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 0.75rem;
        font-family: var(--bodyFont);
        font-size: 1rem;
        background: rgba(255, 255, 255, 0.9);
        color: var(--bodyTextColor);
        transition: all 0.3s ease;
        box-sizing: border-box;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    
    #estimate .cs-input option {
        color: var(--bodyTextColor);
        background: #fff;
    }
    
    #estimate .cs-input option[value=""] {
        color: rgba(78, 75, 102, 0.6);
    }
    
    #estimate .cs-input:focus,
    #estimate .cs-input:active {
        outline: none;
        border-color: var(--primary);
        background: #fff;
        box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
        transform: translateY(-1px);
        color: var(--bodyTextColor);
    }
    
    #estimate .cs-input:disabled {
        background-color: #f7f7f7;
        cursor: not-allowed;
    }
    
    #estimate .cs-checkbox-label {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        cursor: pointer;
        font-family: var(--bodyFont);
    }
    
    #estimate .cs-checkbox {
        width: 1.25rem;
        height: 1.25rem;
        cursor: pointer;
    }
    
    #estimate .cs-tooltip {
        cursor: help;
        font-size: 0.875rem;
    }
    
    #estimate .cs-option-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 0.5rem;
    }
    
    #estimate .cs-option-card {
        position: relative;
        display: block;
        cursor: pointer;
    }
    
    #estimate .cs-option-input {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }
    
    #estimate .cs-option-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        padding: 2rem 1rem;
        border: 2px solid rgba(0, 0, 0, 0.1);
        border-radius: 1rem;
        background: #fff;
        transition: all 0.3s ease;
        min-height: 180px;
        text-align: center;
    }
    
    #estimate .cs-option-card:hover .cs-option-content {
        border-color: var(--primary);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0, 102, 204, 0.15);
    }
    
    #estimate .cs-option-input:checked + .cs-option-content {
        border-color: var(--primary);
        background: rgba(0, 102, 204, 0.05);
        box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
    }
    
    #estimate .cs-option-input:checked + .cs-option-content::after {
        content: '';
        position: absolute;
        top: 0.75rem;
        right: 0.75rem;
        width: 1.75rem;
        height: 1.75rem;
        background: var(--primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 8px rgba(0, 102, 204, 0.3);
    }
    
    #estimate .cs-option-input:checked + .cs-option-content::before {
        content: '✓';
        position: absolute;
        top: 0.75rem;
        right: 0.75rem;
        width: 1.75rem;
        height: 1.75rem;
        color: #fff;
        font-size: 1.125rem;
        font-weight: bold;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
        line-height: 1;
    }
    
    #estimate .cs-option-icon {
        width: 64px;
        height: 64px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        transition: all 0.3s ease;
    }
    
    #estimate .cs-option-input:checked + .cs-option-content .cs-option-icon {
        color: var(--primary);
        transform: scale(1.1);
    }
    
    #estimate .cs-option-label {
        font-family: var(--headerFont);
        font-size: 1rem;
        font-weight: 600;
        color: var(--headerColor);
    }
    
    #estimate .cs-option-input:checked + .cs-option-content .cs-option-label {
        color: var(--primary);
    }
    
    #estimate .cs-actions {
        display: flex;
        gap: 1rem;
        justify-content: space-between;
        margin-top: 1rem;
    }
    
    #estimate .cs-progress {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 2rem;
    }
    
    #estimate .cs-dot {
        width: 0.75rem;
        height: 0.75rem;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        position: relative;
    }
    
    #estimate .cs-dot.cs-active {
        background: linear-gradient(135deg, var(--primary), var(--primaryLight));
        box-shadow: 0 0 10px rgba(0, 102, 204, 0.4);
        transform: scale(1.2);
    }
    
    #estimate .cs-dot.cs-active::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 0.25rem;
        height: 0.25rem;
        background: #fff;
        border-radius: 50%;
    }
    
    #estimate .cs-results {
        text-align: center;
    }
    
    #estimate .cs-results-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    #estimate .cs-results-title {
        font-family: var(--headerFont);
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--headerColor);
    }
    
    #estimate .cs-price-display {
        display: flex;
        align-items: baseline;
        gap: 0.25rem;
    }
    
    #estimate .cs-price-currency {
        font-size: 2rem;
        font-weight: 700;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    #estimate .cs-price-amount {
        font-size: 4rem;
        font-weight: 900;
        font-family: var(--headerFont);
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    #estimate .cs-price-range {
        font-size: 1rem;
        color: var(--bodyTextColor);
    }
    
    #estimate .cs-breakdown {
        width: 100%;
        text-align: left;
    }
    
    #estimate .cs-breakdown-toggle {
        background: none;
        border: none;
        color: var(--primary);
        font-family: var(--headerFont);
        font-weight: 600;
        cursor: pointer;
        text-decoration: underline;
        padding: 0;
    }
    
    #estimate .cs-breakdown-content {
        margin-top: 1rem;
        padding: 1.5rem;
        background: rgba(0, 102, 204, 0.05);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(0, 102, 204, 0.1);
        border-radius: 1rem;
    }
    
    #estimate .cs-breakdown-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    #estimate .cs-breakdown-list li {
        display: flex;
        justify-content: space-between;
        font-family: var(--bodyFont);
    }
    
    #estimate .cs-breakdown-total {
        font-weight: 700;
        font-size: 1.125rem;
        padding-top: 0.75rem;
        border-top: 2px solid #e8e8e8;
        margin-top: 0.5rem;
    }
    
    #estimate .cs-disclaimer {
        font-size: 0.875rem;
        color: var(--bodyTextColor);
        font-style: italic;
    }
    
    #estimate .cs-results-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    #estimate .cs-button-solid {
        background: linear-gradient(135deg, var(--primary) 0%, var(--primaryLight) 100%);
        color: #fff;
        border: none;
        position: relative;
        overflow: hidden;
    }
    
    #estimate .cs-button-solid::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s;
    }
    
    #estimate .cs-button-solid:hover::before {
        left: 100%;
    }
    
    #estimate .cs-button-solid:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
    }
    
    #estimate .cs-button-outline {
        background: rgba(255, 255, 255, 0.9);
        border: 2px solid var(--primary);
        color: var(--primary);
    }
    
    #estimate .cs-button-outline:hover {
        background: var(--primary);
        color: #fff;
        transform: translateY(-2px);
    }
}

/* Mobile specific fixes - 600px and below */
@media only screen and (max-width: 37.5rem) {
    #estimate .cs-form {
        padding: 1.5rem;
    }
    
    #estimate .cs-steps {
        width: 100%;
        overflow-x: hidden;
    }
    
    #estimate .cs-track {
        width: 300%;
        display: flex;
    }
    
    #estimate .cs-step {
        width: 33.333%;
        min-width: 33.333%;
        max-width: 33.333%;
        flex: 0 0 33.333%;
    }
    
    /* Fix mobile dropdown placeholder color */
    #estimate .cs-input {
        color: var(--bodyTextColor) !important;
    }
    
    #estimate .cs-input option {
        color: var(--bodyTextColor) !important;
    }
    
    #estimate .cs-input option[value=""] {
        color: rgba(78, 75, 102, 0.6) !important;
    }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #estimate .cs-results-actions {
        flex-direction: row;
    }
    
    #estimate .cs-estimate-wrapper {
        flex-direction: row;
        align-items: flex-start;
        gap: 3rem;
    }
    
    #estimate .cs-about-section {
        flex: 1;
        max-width: 50%;
    }
    
    #estimate .cs-form {
        flex: 1;
        max-width: 50%;
        margin: 0;
    }
    
    #estimate .cs-about-features {
        grid-template-columns: 1fr;
    }
    
    #estimate .cs-option-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #estimate .cs-estimate-wrapper {
        gap: 4rem;
    }
    
    #estimate .cs-about-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

/*-- -------------------------- -->
<---         Services           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #services {
        padding: var(--sectionPadding);
        background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
        position: relative;
        overflow: hidden;
    }
    
    #services::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(ellipse at center, rgba(0, 102, 204, 0.1) 0%, transparent 70%);
        pointer-events: none;
    }
    
    #services .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(3rem, 6vw, 4rem);
        position: relative;
        z-index: 1;
    }
    
    #services .cs-content {
        text-align: center;
        width: 100%;
        margin-bottom: 3rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    #services .cs-topper {
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    #services .cs-title {
        color: var(--bodyTextColorWhite);
        position: relative;
    }
    
    /* #services .cs-title::after {
        content: '';
        position: absolute;
        bottom: 0.5rem;
        left: 50%;
        transform: translateX(-50%);
        width: 4rem;
        height: 0.25rem;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        border-radius: 2px;
        opacity: 0.5;
    } */
    
    #services .cs-text {
        color: rgba(255, 255, 255, 0.8);
    }
    
    #services .cs-services-image {
        width: 100%;
        max-width: 80rem;
        margin: 1.5rem auto;
        border-radius: 1.5rem;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    }
    
    #services .cs-services-image .cs-picture {
        width: 100%;
        display: block;
    }
    
    #services .cs-services-image .cs-picture img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }
    
    #services .cs-card-group {
        margin: 0;
        padding: 0;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: clamp(1rem, 2.4vw, 1.5rem);
    }
    
    #services .cs-item {
        width: 100%;
        text-align: left;
        list-style: none;
        margin: 0;
        padding: clamp(1.5rem, 3vw, 2rem);
        border-radius: 1.5rem;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        box-sizing: border-box;
        grid-column: span 12;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 1.25rem;
        position: relative;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow: hidden;
    }
    
    #services .cs-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
        opacity: 0;
        transition: opacity 0.4s;
    }
    
    #services .cs-item:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 20px 60px rgba(0, 102, 204, 0.3);
        border-color: rgba(0, 102, 204, 0.3);
    }
    
    #services .cs-item:hover::before {
        opacity: 1;
    }
    
    #services .cs-icon-picture {
        flex-shrink: 0;
        position: relative;
        z-index: 1;
    }
    
    #services .cs-icon {
        width: 3rem;
        height: 3rem;
        padding: 0.5rem;
        background: linear-gradient(135deg, var(--primary), var(--primaryLight));
        border-radius: 1rem;
        color: #fff;
        transition: all 0.4s ease;
        position: relative;
        z-index: 1;
    }
    
    #services .cs-item:hover .cs-icon {
        transform: scale(1.15) rotate(5deg);
        box-shadow: 0 10px 30px rgba(0, 102, 204, 0.4);
    }
    
    #services .cs-text-group {
        position: relative;
        z-index: 1;
    }
    
    #services .cs-h3 {
        color: var(--bodyTextColorWhite);
    }
    
    #services .cs-item-text {
        color: rgba(255, 255, 255, 0.9);
    }
    
    #services .cs-text-group {
        flex: 1;
    }
    
    #services .cs-h3 {
        font-family: var(--headerFont);
        font-size: 1.25rem;
        line-height: 1.5em;
        font-weight: 700;
        text-align: inherit;
        margin: 0 0 0.75rem 0;
        color: var(--bodyTextColorWhite);
    }
    
    #services .cs-item-text {
        font-size: 1rem;
        line-height: 1.6em;
        text-align: inherit;
        margin: 0;
        color: rgba(255, 255, 255, 0.9);
    }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #services .cs-item {
        grid-column: span 6;
    }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #services .cs-item {
        grid-column: span 3;
    }
    
    #services .cs-services-image {
        max-width: 40rem;
        margin: 1.5rem auto;
    }
}

/*-- -------------------------- -->
<---        Why Choose Us       -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #benefits {
        padding: var(--sectionPadding);
        background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
        position: relative;
        overflow: hidden;
    }
    
    #benefits::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(ellipse at bottom, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
        pointer-events: none;
    }
    
    #benefits .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(3rem, 6vw, 4rem);
        position: relative;
        z-index: 1;
    }
    
    #benefits .cs-content {
        text-align: center;
        width: 100%;
        margin-bottom: 3rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    #benefits .cs-card-group {
        margin: 0;
        padding: 0;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: clamp(1rem, 2.4vw, 1.5rem);
    }
    
    #benefits .cs-item {
        width: 100%;
        text-align: left;
        list-style: none;
        margin: 0;
        padding: clamp(1.5rem, 3vw, 2rem);
        border-radius: 1.5rem;
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        box-sizing: border-box;
        grid-column: span 12;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 1.25rem;
        position: relative;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow: hidden;
    }
    
    #benefits .cs-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(255, 107, 53, 0.05) 100%);
        opacity: 0;
        transition: opacity 0.4s;
    }
    
    #benefits .cs-item:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 20px 60px rgba(0, 102, 204, 0.2);
        border-color: rgba(0, 102, 204, 0.2);
    }
    
    #benefits .cs-item:hover::before {
        opacity: 1;
    }
    
    #benefits .cs-icon-picture {
        flex-shrink: 0;
        position: relative;
        z-index: 1;
    }
    
    #benefits .cs-icon {
        width: 3rem;
        height: 3rem;
        padding: 0.5rem;
        background: linear-gradient(135deg, var(--primary), var(--primaryLight));
        border-radius: 1rem;
        color: #fff;
        transition: all 0.4s ease;
        position: relative;
        z-index: 1;
    }
    
    #benefits .cs-item:hover .cs-icon {
        transform: scale(1.15) rotate(5deg);
        box-shadow: 0 10px 30px rgba(0, 102, 204, 0.4);
    }
    
    #benefits .cs-text-group {
        position: relative;
        z-index: 1;
        flex: 1;
    }
    
    #benefits .cs-title {
        position: relative;
    }
/*     
    #benefits .cs-title::after {
        content: '';
        position: absolute;
        bottom: 0.5rem;
        left: 50%;
        transform: translateX(-50%);
        width: 4rem;
        height: 0.25rem;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        border-radius: 2px;
        opacity: 0.3;
    } */
    
    #benefits .cs-h3 {
        font-family: var(--headerFont);
        font-size: 1.25rem;
        line-height: 1.5em;
        font-weight: 700;
        text-align: inherit;
        margin: 0 0 0.75rem 0;
        color: var(--headerColor);
    }
    
    #benefits .cs-item-text {
        font-size: 1rem;
        line-height: 1.5em;
        text-align: inherit;
        margin: 0;
        color: var(--bodyTextColor);
    }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #benefits .cs-item {
        grid-column: span 6;
    }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #benefits .cs-item {
        grid-column: span 4;
    }
}

/*-- -------------------------- -->
<---          Gallery           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #gallery {
        padding: var(--sectionPadding);
        background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
        position: relative;
        overflow: hidden;
    }
    
    #gallery::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
        pointer-events: none;
    }
    
    #gallery .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(3rem, 6vw, 4rem);
        position: relative;
        z-index: 1;
    }
    
    #gallery .cs-content {
        text-align: center;
        width: 100%;
        margin-bottom: 3rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    #gallery .cs-topper {
        background: linear-gradient(135deg, var(--secondary), var(--primary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    #gallery .cs-title {
        color: var(--bodyTextColorWhite);
        position: relative;
    }
/*     
    #gallery .cs-title::after {
        content: '';
        position: absolute;
        bottom: 0.5rem;
        left: 50%;
        transform: translateX(-50%);
        width: 4rem;
        height: 0.25rem;
        background: linear-gradient(90deg, var(--secondary), var(--primary));
        border-radius: 2px;
        opacity: 0.5;
    } */
    
    #gallery .cs-text {
        color: rgba(255, 255, 255, 0.8);
    }
    
    #gallery .cs-gallery-grid {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: clamp(1rem, 2.4vw, 1.5rem);
    }
    
    #gallery .cs-gallery-item {
        position: relative;
        width: 100%;
        aspect-ratio: 4/3;
        border-radius: 1.5rem;
        overflow: hidden;
        grid-column: span 12;
        cursor: pointer;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    #gallery .cs-gallery-item:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 20px 60px rgba(0, 102, 204, 0.4);
        border-color: rgba(0, 102, 204, 0.3);
    }
    
    #gallery .cs-gallery-after,
    #gallery .cs-gallery-before {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    #gallery .cs-gallery-after img,
    #gallery .cs-gallery-before img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }
    
    #gallery .cs-gallery-item:hover .cs-gallery-after img,
    #gallery .cs-gallery-item:hover .cs-gallery-before img {
        transform: scale(1.1);
    }
    
    #gallery .cs-gallery-after {
        opacity: 1;
        transition: opacity 0.4s ease;
        z-index: 2;
    }
    
    #gallery .cs-gallery-before {
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: 1;
    }
    
    #gallery .cs-gallery-item:hover .cs-gallery-after {
        opacity: 0;
    }
    
    #gallery .cs-gallery-item:hover .cs-gallery-before {
        opacity: 1;
    }
    
    /* Mobile active state for tap toggle - takes precedence over hover */
    #gallery .cs-gallery-item.cs-gallery-active .cs-gallery-after,
    #gallery .cs-gallery-item.cs-gallery-active:hover .cs-gallery-after {
        opacity: 0;
    }
    
    #gallery .cs-gallery-item.cs-gallery-active .cs-gallery-before,
    #gallery .cs-gallery-item.cs-gallery-active:hover .cs-gallery-before {
        opacity: 1;
    }
    
    /* Explicitly reset to default state when NOT active (override hover on mobile) */
    /* Only apply on mobile/touch devices to preserve desktop hover behavior */
    @media (max-width: 768px) {
        #gallery .cs-gallery-item:not(.cs-gallery-active) .cs-gallery-after,
        #gallery .cs-gallery-item:not(.cs-gallery-active):hover .cs-gallery-after,
        #gallery .cs-gallery-item:not(.cs-gallery-active):active .cs-gallery-after {
            opacity: 1 !important;
        }
        
        #gallery .cs-gallery-item:not(.cs-gallery-active) .cs-gallery-before,
        #gallery .cs-gallery-item:not(.cs-gallery-active):hover .cs-gallery-before,
        #gallery .cs-gallery-item:not(.cs-gallery-active):active .cs-gallery-before {
            opacity: 0 !important;
        }
        
        /* Ensure "After" badge is visible when NOT active */
        #gallery .cs-gallery-item:not(.cs-gallery-active) .cs-gallery-badge-after,
        #gallery .cs-gallery-item:not(.cs-gallery-active):hover .cs-gallery-badge-after,
        #gallery .cs-gallery-item:not(.cs-gallery-active):active .cs-gallery-badge-after {
            opacity: 1 !important;
            transform: translateY(0) !important;
        }
        
        /* Ensure "Before" badge is hidden when NOT active */
        #gallery .cs-gallery-item:not(.cs-gallery-active) .cs-gallery-badge-before,
        #gallery .cs-gallery-item:not(.cs-gallery-active):hover .cs-gallery-badge-before,
        #gallery .cs-gallery-item:not(.cs-gallery-active):active .cs-gallery-badge-before {
            opacity: 0 !important;
            transform: translateY(-10px) !important;
        }
        
        /* Ensure "Before" badge is visible when active */
        #gallery .cs-gallery-item.cs-gallery-active .cs-gallery-badge-before,
        #gallery .cs-gallery-item.cs-gallery-active:hover .cs-gallery-badge-before,
        #gallery .cs-gallery-item.cs-gallery-active:active .cs-gallery-badge-before {
            opacity: 1 !important;
            transform: translateY(0) !important;
        }
        
        /* Ensure "After" badge is hidden when active */
        #gallery .cs-gallery-item.cs-gallery-active .cs-gallery-badge-after,
        #gallery .cs-gallery-item.cs-gallery-active:hover .cs-gallery-badge-after,
        #gallery .cs-gallery-item.cs-gallery-active:active .cs-gallery-badge-after {
            opacity: 0 !important;
            transform: translateY(-10px) !important;
        }
        
        /* Ensure "Tap to see After" text is visible when active */
        #gallery .cs-gallery-item.cs-gallery-active::after,
        #gallery .cs-gallery-item.cs-gallery-active:hover::after,
        #gallery .cs-gallery-item.cs-gallery-active:active::after {
            content: 'Tap to see After' !important;
            opacity: 1 !important;
        }
        
        /* Ensure "Tap to see Before" text is visible when NOT active */
        #gallery .cs-gallery-item:not(.cs-gallery-active)::after,
        #gallery .cs-gallery-item:not(.cs-gallery-active):hover::after,
        #gallery .cs-gallery-item:not(.cs-gallery-active):active::after {
            content: 'Tap to see Before' !important;
            opacity: 1 !important;
        }
    }
    
    /* Hide "After" badge when showing before image */
    #gallery .cs-gallery-item.cs-gallery-active .cs-gallery-badge-after {
        opacity: 0;
        transform: translateY(-10px);
    }
    
    /* Show "Before" badge when showing before image */
    #gallery .cs-gallery-item.cs-gallery-active .cs-gallery-badge-before {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Hide "Before" badge by default (when showing after image) */
    #gallery .cs-gallery-badge-before {
        opacity: 0;
        transform: translateY(-10px);
    }
    
    #gallery .cs-gallery-item.cs-gallery-active::after {
        content: 'Tap to see After';
        opacity: 1;
    }
    
    #gallery .cs-gallery-after-2 img {
        object-position: center 70%;
    }
    
    #gallery .cs-gallery-before-2 img {
        object-position: center 60%;
    }
    
    #gallery .cs-gallery-after-3 img {
        object-position: center 40%;
    }
    
    #gallery .cs-gallery-badge {
        position: absolute;
        top: 1rem;
        right: 1rem;
        padding: 0.5rem 1rem;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        color: #fff;
        font-size: 0.75rem;
        font-weight: 600;
        border-radius: 2rem;
        z-index: 10;
        pointer-events: none;
        opacity: 1;
        transform: translateY(0);
        transition: all 0.3s ease;
    }
    
    /* Hide "After" badge on hover (desktop only) */
    #gallery .cs-gallery-item:hover .cs-gallery-badge-after {
        opacity: 0;
        transform: translateY(-10px);
    }
    
    /* "Before" badge should not be affected by hover */
    #gallery .cs-gallery-item:hover .cs-gallery-badge-before {
        opacity: 0;
        transform: translateY(-10px);
    }
    
    #gallery .cs-gallery-item::after {
        content: 'Tap to see Before';
        position: absolute;
        bottom: 1rem;
        left: 50%;
        transform: translateX(-50%);
        padding: 0.5rem 1rem;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        color: #fff;
        font-size: 0.75rem;
        border-radius: 2rem;
        opacity: 1;
        transition: opacity 0.3s;
        z-index: 10;
        pointer-events: none;
    }
    
    #gallery .cs-gallery-item:hover::after {
        opacity: 0;
    }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #gallery .cs-gallery-item {
        grid-column: span 6;
    }
    
    #gallery .cs-gallery-item::after {
        content: 'Hover to see Before';
    }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #gallery .cs-container {
        max-width: 100rem;
    }
    
    #gallery .cs-gallery-item {
        grid-column: span 6;
        aspect-ratio: 16/10;
    }
}

/*-- -------------------------- -->
<---        Service Area        -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #service-area {
        padding: var(--sectionPadding);
        background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
        position: relative;
        overflow: hidden;
    }
    
    #service-area::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(ellipse at top, rgba(0, 102, 204, 0.05) 0%, transparent 50%);
        pointer-events: none;
    }
    
    #service-area .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(3rem, 6vw, 4rem);
        position: relative;
        z-index: 1;
    }
    
    #service-area .cs-content {
        text-align: center;
        width: 100%;
        margin-bottom: 3rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    #service-area .cs-service-cities {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 1.5rem;
    }
    
    #service-area .cs-city-item {
        grid-column: span 12;
        padding: 2rem 1.5rem;
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(0, 0, 0, 0.05);
        border-radius: 1.5rem;
        text-align: center;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }
    
    #service-area .cs-city-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        transform: scaleX(0);
        transition: transform 0.4s;
    }
    
    #service-area .cs-city-item:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 20px 60px rgba(0, 102, 204, 0.2);
        border-color: rgba(0, 102, 204, 0.2);
    }
    
    #service-area .cs-city-item:hover::before {
        transform: scaleX(1);
    }
    
    #service-area .cs-title {
        position: relative;
    }
    
    /* #service-area .cs-title::after {
        content: '';
        position: absolute;
        bottom: 0.5rem;
        left: 50%;
        transform: translateX(-50%);
        width: 4rem;
        height: 0.25rem;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        border-radius: 2px;
        opacity: 0.3;
    } */
    
    #service-area .cs-city-item .cs-h3 {
        margin: 0;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 1.5rem;
        font-weight: 700;
    }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #service-area .cs-city-item {
        grid-column: span 6;
    }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #service-area .cs-city-item {
        grid-column: span 3;
    }
}

/*-- -------------------------- -->
<---       Call To Action       -->
<--- -------------------------- -*/

/* Mobile */
@media only screen and (min-width: 0rem) {
    #contact {
        padding: var(--sectionPadding);
        background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
        position: relative;
        z-index: 1;
        overflow: hidden;
    }
    
    #contact::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(ellipse at center, rgba(0, 102, 204, 0.15) 0%, transparent 70%);
        pointer-events: none;
        z-index: 1;
    }
    
    #contact .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: clamp(2.5rem, 5vw, 3rem);
        position: relative;
        z-index: 2;
    }
    
    #contact .cs-content {
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 2rem;
        padding: 3rem 2rem;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }
    
    #contact .cs-title {
        font-size: clamp(2rem, 3.5vw, 3.5rem);
        margin: 0;
        color: var(--bodyTextColorWhite);
        line-height: 1.1;
        max-width: 100%;
    }
    
    #contact .cs-text {
        margin: 0;
        color: rgba(255, 255, 255, 0.9);
        max-width: 100%;
        font-size: clamp(1rem, 2vw, 1.25rem);
        line-height: 1.6;
    }
    
    #contact .cs-flex {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        width: 100%;
    }
    
    #contact .cs-cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 25rem;
    }
    
    #contact .cs-button-solid {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        padding: 1rem 2rem;
        background: linear-gradient(135deg, var(--primary) 0%, var(--primaryLight) 100%);
        color: #fff;
        font-family: var(--headerFont);
        font-size: 1rem;
        font-weight: 700;
        text-decoration: none;
        border-radius: 0.75rem;
        box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        border: none;
    }
    
    #contact .cs-button-solid::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s;
    }
    
    #contact .cs-button-solid:hover::before {
        left: 100%;
    }
    
    #contact .cs-button-solid:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 40px rgba(0, 102, 204, 0.4);
    }
    
    #contact .cs-button-outline {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.2);
        color: var(--bodyTextColorWhite);
    }
    
    #contact .cs-button-outline:hover {
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
    }
    
    #contact .cs-background {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
    }
    
    #contact .cs-background img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        opacity: 0.2;
        object-fit: cover;
        object-position: center;
    }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #contact .cs-content {
        text-align: left;
        align-items: flex-start;
        padding: 4rem 3rem;
        max-width: 90rem;
    }
    
    #contact .cs-title {
        font-size: clamp(2.25rem, 4vw, 3.75rem);
        line-height: 1.1;
        max-width: 100%;
    }
    
    #contact .cs-text {
        font-size: clamp(1.125rem, 2.5vw, 1.5rem);
        max-width: 100%;
        line-height: 1.6;
    }
    
    #contact .cs-flex {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 3rem;
        width: 100%;
    }
    
    #contact .cs-text {
        flex: 1;
        text-align: left;
        margin: 0;
    }
    
    #contact .cs-cta-buttons {
        flex-direction: column;
        flex-shrink: 0;
        max-width: 22rem;
        gap: 1rem;
    }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #contact .cs-content {
        padding: 5rem 4rem;
        max-width: 100rem;
    }
    
    #contact .cs-title {
        font-size: clamp(2.5rem, 4.5vw, 4rem);
        margin-bottom: 1.5rem;
    }
    
    #contact .cs-text {
        font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    }
    
    #contact .cs-flex {
        gap: 4rem;
        align-items: flex-start;
    }
    
    #contact .cs-cta-buttons {
        max-width: 25rem;
    }
}

/*-- -------------------------- -->
<---      Scroll Animations     -->
<--- -------------------------- -*/

@media (prefers-reduced-motion: no-preference) {
    #services .cs-item,
    #benefits .cs-item,
    #gallery .cs-gallery-item {
        opacity: 0;
        transform: translateY(2rem);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    
    #services .cs-item.cs-visible,
    #benefits .cs-item.cs-visible,
    #gallery .cs-gallery-item.cs-visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/*-- -------------------------- -->

