/* ============================================
   VARIABLES
   ============================================ */
:root {
    --blue: #0052FF;
    --blue-hover: #0043cc;
    --blue-light: rgba(0, 82, 255, 0.12);
    --dark-bg: #0a0f1e;
    --dark-mid: #111832;
    --dark-card: #151c35;
    --text-white: #ffffff;
    --text-muted: #8a93ab;
    --text-light: #c0c7d8;
    --border-dark: rgba(255, 255, 255, 0.08);
    --font: 'Poppins', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

.text-blue {
    color: var(--blue) !important;
}








/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    padding: 18px 0;
    background: transparent;
    transition: all 0.35s ease;
    z-index: 1000;
}

/* ---- SCROLLED: White BG + Blue Text ---- */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

/* Brand */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-white) !important;
    letter-spacing: -0.3px;
    transition: all 0.35s ease;
}

.navbar-brand i {
    color: var(--blue);
    font-size: 1.5rem;
    transition: color 0.35s ease;
}

.navbar-brand span {
    color: var(--blue);
    transition: color 0.35s ease;
}

.navbar.scrolled .navbar-brand {
    color: #0F172A !important;
}

.navbar.scrolled .navbar-brand span {
    color: var(--blue);
}

/* Brand logo image */
.brand-logo {
    height: 38px;
    width: auto;
    object-fit: contain;
    transition: filter 0.35s ease;
}

/* Nav Links */
.navbar .nav-link {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 18px !important;
    position: relative;
    transition: color 0.35s ease;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--blue);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--text-white);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    transform: scaleX(1);
}

/* Nav links — scrolled */
.navbar.scrolled .nav-link {
    color: #334155;
}

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

/* Right side */
.nav-right {
    gap: 20px;
}

/* Phone */
.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.88rem;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.35s ease;
}

.nav-phone i {
    color: var(--blue);
    transition: color 0.35s ease;
}

.nav-phone:hover {
    color: var(--text-white);
}

/* Phone — scrolled */
.navbar.scrolled .nav-phone {
    color: #475569;
}

.navbar.scrolled .nav-phone:hover {
    color: var(--blue);
}

/* CTA Button */
.btn-nav-cta {
    background: var(--blue);
    color: var(--text-white);
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 22px;
    border-radius: 8px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-nav-cta:hover {
    background: var(--blue-hover);
    color: var(--text-white);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 82, 255, 0.35);
}

.navbar.scrolled .btn-nav-cta:hover {
    box-shadow: 0 6px 20px rgba(0, 82, 255, 0.25);
}

/* Custom Hamburger */
.navbar-toggler {
    border: none;
    padding: 8px;
    outline: none !important;
    box-shadow: none !important;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.toggler-bar {
    width: 24px;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: all 0.35s ease;
}

/* Hamburger — scrolled */
.navbar.scrolled .toggler-bar {
    background: #0F172A;
}

/* ---- Mobile Menu (scrolled) ---- */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(10, 15, 30, 0.98);
        border-radius: 12px;
        padding: 20px;
        margin-top: 15px;
        backdrop-filter: blur(12px);
        border: 1px solid var(--border-dark);
        transition: background 0.35s ease, border-color 0.35s ease;
    }

    .navbar.scrolled .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid #e2e8f0;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .navbar.scrolled .navbar-collapse .nav-link {
        color: #334155;
    }

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

    .navbar.scrolled .navbar-collapse .nav-phone {
        color: #475569;
    }

    .navbar.scrolled .navbar-collapse .nav-phone:hover {
        color: var(--blue);
    }

    .navbar.scrolled .navbar-collapse .btn-nav-cta {
        width: 100%;
        text-align: center;
    }

    .nav-right {
        flex-direction: column;
        gap: 12px;
        margin-top: 10px;
        padding-top: 15px;
        border-top: 1px solid var(--border-dark);
        transition: border-color 0.35s ease;
    }

    .navbar.scrolled .nav-right {
        border-top-color: #e2e8f0;
    }

    .btn-nav-cta {
        width: 100%;
        text-align: center;
    }

    .nav-phone {
        justify-content: center;
    }
}









    /* ============================================
    HERO SECTION
    ============================================ */
    .hero-section {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        overflow: hidden;
        background: #0A0F1C;
    }

    .hero-bg-image {
        position: absolute;
        inset: 0;
        z-index: 0;
    }

    .hero-bg-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.25;
    }

    .hero-bg-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to bottom right,
            #0A0F1C 0%,
            rgba(10, 15, 28, 0.85) 50%,
            rgba(10, 15, 28, 0.60) 100%
        );
        z-index: 1;
    }

    /* Grid pattern overlay */
    .hero-grid-overlay {
        position: absolute;
        inset: 0;
        opacity: 0.04;
        background-image: 
            linear-gradient(rgba(255, 255, 255) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255) 1px, transparent 1px);
        background-size: 60px 60px;
        z-index: 2;
    }

    .hero-section .container {
        position: relative;
        z-index: 10;
        padding-top: 7rem;
        padding-bottom: 5rem;
    }

    @media (min-width: 1024px) {
        .hero-section .container {
            padding-top: 9rem;
            padding-bottom: 7rem;
        }
    }

    .hero-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
        align-items: center;
    }

    @media (min-width: 1024px) {
        .hero-row {
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
        }
    }

    /* ---- Amber Tag ---- */
    .amber-tag {
        display: inline-block;
        background: rgba(245, 158, 11, 0.15);
        color: #F59E0B;
        padding: 6px 14px;
        border-radius: 6px;
        font-family: var(--font, 'Inter', sans-serif);
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.03em;
        margin-bottom: 1.25rem;
        border: 1px solid rgba(245, 158, 11, 0.2);
    }

    /* ---- Left Content ---- */
    .hero-subtitle-small {
        color: #0052FF;
        font-family: var(--font, 'Inter', sans-serif);
        font-weight: 700;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 0.18em;
        margin-bottom: 0.75rem;
    }

    .hero-title {
        font-family: var(--font, 'Inter', sans-serif);
        font-size: clamp(2.4rem, 5.5vw, 4.5rem);
        font-weight: 700;
        color: #ffffff;
        line-height: 1.0;
        margin-bottom: 1.5rem;
        letter-spacing: -0.025em;
    }

    .hero-title .text-blue {
        color: #0052FF;
    }

    .hero-desc {
        font-family: var(--font, 'Inter', sans-serif);
        font-size: 1.125rem;
        font-weight: 400;
        color: #94A3B8;
        line-height: 1.625;
        margin-bottom: 2.5rem;
        max-width: 32rem;
    }

    /* ---- Highlights with Circle Icons ---- */
    .hero-highlights {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .highlight-item {
        display: flex;
        align-items: center;
        gap: 0.625rem;
    }

    .highlight-icon-circle {
        width: 1.75rem;
        height: 1.75rem;
        border-radius: 50%;
        background: rgba(0, 82, 255, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .highlight-icon-circle i,
    .highlight-icon-circle svg {
        color: #0052FF;
        font-size: 0.8125rem;
    }

    .highlight-item span {
        font-family: var(--font, 'Inter', sans-serif);
        color: #94A3B8;
        font-size: 0.875rem;
        font-weight: 500;
    }

    /* ---- Right Form Card ---- */
    .hero-form-card {
        background: rgba(255, 255, 255, 0.06);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.10);
        border-radius: 0.75rem;
        padding: 2rem;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    }

    .form-card-title {
        font-family: var(--font, 'Inter', sans-serif);
        font-size: 1.25rem;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 0.25rem;
    }

    .form-card-subtitle {
        font-family: var(--font, 'Inter', sans-serif);
        font-size: 0.875rem;
        font-weight: 400;
        color: #64748B;
        margin-bottom: 1.5rem;
    }

    /* Form Labels */
    .form-label-custom {
        display: block;
        font-family: var(--font, 'Inter', sans-serif);
        font-size: 0.75rem;
        font-weight: 600;
        color: #94A3B8;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-bottom: 0.375rem;
    }

    .form-label-custom .required {
        color: #0052FF;
    }

    /* Form Inputs */
    .hero-form-card .form-control {
        width: 100%;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 0.375rem;
        padding: 0.75rem 1rem;
        font-family: var(--font, 'Inter', sans-serif);
        font-size: 0.875rem;
        font-weight: 400;
        color: #ffffff;
        transition: all 0.3s ease;
    }

    .hero-form-card .form-control::placeholder {
        color: #475569;
    }

    .hero-form-card .form-control:focus {
        background: rgba(255, 255, 255, 0.12);
        border-color: #0052FF;
        box-shadow: none;
        outline: none;
        color: #ffffff;
    }

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

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

    @media (min-width: 640px) {
        .form-row {
            grid-template-columns: 1fr 1fr;
        }
    }

    .btn-submit {
        width: 100%;
        background: #0052FF;
        color: #ffffff;
        border: none;
        border-radius: 0.375rem;
        padding: 1rem 1.5rem;
        font-family: var(--font, 'Inter', sans-serif);
        font-size: 1rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top: 0.5rem;
    }

    .btn-submit:hover {
        background: #003ACC;
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 10px 15px -3px rgba(0, 82, 255, 0.3);
    }

    .btn-submit:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }

    .form-privacy-note {
        font-family: var(--font, 'Inter', sans-serif);
        text-align: center;
        font-size: 0.75rem;
        font-weight: 400;
        color: #475569;
        margin-top: 1rem;
    }

    /* ============================================
    STATS BAR
    ============================================ */
    .stats-bar {
        position: relative;
        z-index: 10;
        background: #0052FF;
        padding: 2rem 0;
    }

    .stat-item {
        text-align: center;
        padding: 0.5rem 0.75rem;
        border-right: 1px solid rgba(255, 255, 255, 0.15);
    }

    .stat-item:last-child {
        border-right: none;
    }

    .stat-number {
        font-family: var(--font, 'Inter', sans-serif);
        display: block;
        font-size: 2rem;
        font-weight: 800;
        color: #ffffff;
        line-height: 1.2;
        margin-bottom: 0.25rem;
    }

    .stat-label {
        font-family: var(--font, 'Inter', sans-serif);
        display: block;
        font-size: 0.75rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.75);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }


/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.6rem;
    }

    .hero-left {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-highlights {
        align-items: center;
    }

    .hero-right {
        justify-content: center;
    }

    .hero-form-card {
        max-width: 100%;
    }

    .navbar-collapse {
        background: rgba(10, 15, 30, 0.98);
        border-radius: 12px;
        padding: 20px;
        margin-top: 15px;
        backdrop-filter: blur(12px);
        border: 1px solid var(--border-dark);
    }

    .nav-right {
        flex-direction: column;
        gap: 12px;
        margin-top: 10px;
        padding-top: 15px;
        border-top: 1px solid var(--border-dark);
    }

    .btn-nav-cta {
        width: 100%;
        text-align: center;
    }

    .nav-phone {
        justify-content: center;
    }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 767.98px) {
    .hero-section {
        padding-top: 85px;
    }

    .hero-row {
        padding: 20px 0 50px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: -0.5px;
    }

    .hero-desc {
        font-size: 0.92rem;
    }

    .hero-form-card {
        padding: 28px 22px 24px;
    }

    .form-card-header h3 {
        font-size: 1.1rem;
    }

    .stats-bar {
        padding: 24px 0;
    }

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

    .stat-label {
        font-size: 0.68rem;
        letter-spacing: 0.5px;
    }

    .stat-item {
        padding: 6px 8px;
    }

    .nav-phone {
        font-size: 0.82rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.7rem;
    }

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

    .stat-label {
        font-size: 0.62rem;
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: 100px 0;
    background: #f5f7fb;
}

.services-header {
    margin-bottom: 55px;
}

.services-tag {
    display: inline-block;
    background: rgba(0, 82, 255, 0.1);
    color: var(--blue);
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.78rem;
    padding: 6px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111832;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
}

.services-desc {
    font-size: 1.02rem;
    color: #6b7280;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Service Cards */
.service-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 32px 26px 28px;
    height: 100%;
    border: 1px solid #e8ecf4;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 82, 255, 0.1);
    border-color: rgba(0, 82, 255, 0.15);
}

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

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 82, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.35s ease;
}

.service-icon i {
    font-size: 1.4rem;
    color: var(--blue);
    transition: all 0.35s ease;
}

.service-card:hover .service-icon {
    background: var(--blue);
}

.service-card:hover .service-icon i {
    color: #ffffff;
}

.service-card h5 {
    font-size: 1.02rem;
    font-weight: 700;
    color: #111832;
    margin-bottom: 10px;
    line-height: 1.35;
}

.service-card p {
    font-size: 0.87rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}




/* ============================================
   WHY NYC SIDEWALK PROS SECTION
   ============================================ */
.why-section {
    padding: 100px 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 82, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 82, 255, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-content {
    position: relative;
    z-index: 1;
}

.why-tag {
    display: inline-block;
    background: rgba(0, 82, 255, 0.12);
    color: var(--blue);
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.78rem;
    padding: 6px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.why-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
}

.why-desc {
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 0; /* Removed bottom margin since stats are directly below */
}

/* --- New Left Side Stats Row --- */
.why-stats-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 28px;
    margin-top: 35px;
    background: var(--dark-card);
    border: 1px solid var(--border-dark);
    border-radius: 14px;
    padding: 24px 32px;
    width: fit-content;
}

.why-stat-item {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.why-stat-val {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.2;
}

.why-stat-val small {
    color: #f6ad55;
    font-size: 1.1rem;
}

.why-stat-lbl {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.why-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-dark);
}

/* --- Right Side 6-Card Grid --- */
.why-cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    position: relative;
    z-index: 1;
}

.why-card {
    background: var(--dark-card);
    border: 1px solid var(--border-dark);
    border-radius: 14px;
    padding: 24px 22px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.35s ease;
}

.why-card:hover {
    border-color: rgba(0, 82, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.why-card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px; /* Prevents icon shrinking with long text */
    background: rgba(0, 82, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
}

.why-card-icon i {
    font-size: 1.25rem;
    color: var(--blue);
    transition: all 0.35s ease;
}

.why-card:hover .why-card-icon {
    background: var(--blue);
}

.why-card:hover .why-card-icon i {
    color: #ffffff;
}

.why-card-body {
    flex: 1;
}

.why-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 6px;
    line-height: 1.3;
}

.why-card-text {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 991.98px) {
    .why-title {
        font-size: 2rem;
    }

    .why-content {
        text-align: center;
        margin-bottom: 50px;
    }

    .why-stats-row {
        margin: 35px auto 0;
        justify-content: center;
    }

    .why-cards-row {
        max-width: 600px;
        margin: 0 auto;
    }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 767.98px) {
    .why-section {
        padding: 70px 0;
    }

    .why-title {
        font-size: 1.65rem;
    }

    .why-desc {
        font-size: 0.9rem;
    }

    .why-stats-row {
        width: 100%;
        justify-content: space-around;
        padding: 20px 15px;
        gap: 15px;
    }

    .why-stat-val {
        font-size: 1.4rem;
    }

    .why-stat-lbl {
        font-size: 0.7rem;
    }

    .why-cards-row {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 575.98px) {
    .why-title {
        font-size: 1.4rem;
    }

    .why-card {
        padding: 20px 18px;
    }

    .why-card-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        border-radius: 10px;
    }

    .why-card-icon i {
        font-size: 1.1rem;
    }
}



/* ============================================
   RECENT PROJECTS GALLERY
   ============================================ */
.projects-section {
    padding: 100px 0;
    background: #ffffff;
}

.projects-top-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 20px;
    flex-wrap: wrap;
}

.projects-header-left {
    display: flex;
    flex-direction: column;
}

.section-tag {
    display: inline-block;
    background: rgba(0, 82, 255, 0.1);
    color: var(--blue);
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.78rem;
    padding: 6px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
    align-self: flex-start;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111832;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin: 0;
}

.btn-gallery-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.92rem;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-gallery-link i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.btn-gallery-link:hover {
    color: var(--blue-hover);
    gap: 12px;
}

.btn-gallery-link:hover i {
    transform: translateX(3px);
}

/* Gallery Cards */
.gallery-card {
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.35s ease;
    border: 1px solid #e8ecf4;
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 82, 255, 0.15);
}

.gallery-img {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img img {
    transform: scale(1.08);
}

.gallery-zoom {
    position: absolute;
    inset: 0;
    background: rgba(0, 82, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-card:hover .gallery-zoom {
    opacity: 1;
}

.gallery-zoom i {
    color: #ffffff;
    font-size: 2rem;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
    transform: scale(0.7);
    transition: transform 0.35s ease;
}

.gallery-card:hover .gallery-zoom i {
    transform: scale(1);
}

/* Gallery Info */
.gallery-info {
    padding: 18px 18px 20px;
}

.gallery-category {
    display: inline-block;
    background: rgba(0, 82, 255, 0.08);
    color: var(--blue);
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.68rem;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
}

.gallery-info h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111832;
    margin-bottom: 6px;
    line-height: 1.35;
}

.gallery-location {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 10px !important;
    display: flex;
    align-items: center;
    gap: 5px;
}

.gallery-location i {
    color: var(--blue);
    font-size: 0.72rem;
}

.gallery-year {
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.78rem;
    color: #9ca3af;
    letter-spacing: 0.5px;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    backdrop-filter: blur(6px);
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(0.9);
    transition: transform 0.35s ease;
}

.lightbox-overlay.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.lightbox-caption {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    margin-top: 16px;
    font-weight: 500;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 28px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-nav:hover {
    background: var(--blue);
    border-color: var(--blue);
}

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 991.98px) {
    .section-title {
        font-size: 2rem;
    }

    .projects-top-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 767.98px) {
    .projects-section {
        padding: 70px 0;
    }

    .projects-top-row {
        margin-bottom: 30px;
    }

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

    .gallery-info {
        padding: 14px 14px 16px;
    }

    .gallery-category {
        font-size: 0.62rem;
        padding: 3px 8px;
    }

    .gallery-info h5 {
        font-size: 0.85rem;
    }

    .gallery-location {
        font-size: 0.75rem;
    }

    .gallery-year {
        font-size: 0.72rem;
    }

    .lightbox-nav {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .lightbox-prev {
        left: 12px;
    }

    .lightbox-next {
        right: 12px;
    }

    .lightbox-close {
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .section-title {
        font-size: 1.45rem;
    }

    .gallery-img {
        aspect-ratio: 3 / 2.5;
    }

    .gallery-info h5 {
        font-size: 0.8rem;
    }

    .gallery-location {
        font-size: 0.72rem;
    }
}

/* ============================================
   CLIENT STORIES SECTION
   ============================================ */
.stories-section {
    padding: 100px 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.stories-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 82, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.dark-tag {
    background: rgba(0, 82, 255, 0.12);
    color: var(--blue);
}

.section-title-dark {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
}

.section-desc-dark {
    font-size: 1.02rem;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Story Cards */
.story-card {
    background: var(--dark-card);
    border: 1px solid var(--border-dark);
    border-radius: 14px;
    padding: 32px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.35s ease;
    position: relative;
    z-index: 1;
}

.story-card:hover {
    border-color: rgba(0, 82, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.story-stars {
    margin-bottom: 20px;
    display: flex;
    gap: 3px;
}

.story-stars i {
    color: #f6ad55;
    font-size: 0.95rem;
}

.story-text {
    font-size: 0.93rem;
    color: var(--text-light);
    line-height: 1.8;
    font-style: italic;
    flex: 1;
    margin-bottom: 24px;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--border-dark);
    padding-top: 20px;
}

.story-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(0, 82, 255, 0.2);
}

.story-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-info h6 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 2px;
}

.story-info span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ============================================
   FREE INSTANT CHECK SECTION
   ============================================ */
.check-section {
    padding: 100px 0;
    background: #f5f7fb;
}

.check-wrapper {
    background: var(--dark-bg);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.check-wrapper::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 82, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.check-content {
    padding: 60px 50px 60px 60px;
    position: relative;
    z-index: 1;
}

.check-tag {
    display: inline-block;
    background: rgba(0, 82, 255, 0.12);
    color: var(--blue);
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.78rem;
    padding: 6px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.check-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
}

.check-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 30px;
}

.check-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.check-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-light);
}

.check-feature i {
    color: var(--blue);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Check Form Card */
.check-form-card {
    background: var(--dark-card);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    padding: 44px 36px;
    margin: 40px 50px 40px 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.check-form-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-form-card h4 i {
    color: var(--blue);
}

.check-form-card > p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.check-input-group {
    position: relative;
    margin-bottom: 16px;
}

.check-input-group i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.1rem;
    z-index: 2;
    transition: color 0.3s ease;
}

.check-input-group .form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    padding: 16px 18px 16px 48px;
    font-size: 0.95rem;
    color: var(--text-white);
    font-family: var(--font);
    transition: all 0.3s ease;
}

.check-input-group .form-control::placeholder {
    color: var(--text-muted);
}

.check-input-group .form-control:focus {
    background: rgba(0, 82, 255, 0.06);
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 82, 255, 0.15);
    color: var(--text-white);
    outline: none;
}

.check-input-group:focus-within i {
    color: var(--blue);
}

.btn-check {
    width: 100%;
    background: var(--blue);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 16px 24px;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-check:hover {
    background: var(--blue-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 82, 255, 0.35);
}

.btn-check i {
    transition: transform 0.3s ease;
}

.btn-check:hover i {
    transform: translateX(4px);
}

.check-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.check-trust i {
    color: #22c55e;
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 991.98px) {
    .section-title {
        font-size: 2rem;
    }

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

    .check-content {
        text-align: center;
        padding: 50px 40px 40px;
    }

    .check-features {
        align-items: center;
    }

    .check-form-card {
        margin: 0 40px 50px;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .project-img {
        height: 200px;
    }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 767.98px) {
    .projects-section,
    .stories-section,
    .check-section {
        padding: 70px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

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

    .section-title-dark {
        font-size: 1.65rem;
    }

    .project-img {
        height: 180px;
    }

    .project-body {
        padding: 18px 20px 22px;
    }

    .story-card {
        padding: 26px 22px;
    }

    .check-content {
        padding: 40px 24px 30px;
    }

    .check-title {
        font-size: 1.7rem;
    }

    .check-form-card {
        margin: 0 20px 40px;
        padding: 32px 24px;
    }
}

@media (max-width: 575.98px) {
    .section-title {
        font-size: 1.45rem;
    }

    .section-title-dark {
        font-size: 1.45rem;
    }

    .project-img {
        height: 160px;
    }

    .btn-view-all {
        padding: 12px 24px;
        font-size: 0.88rem;
    }

    .check-title {
        font-size: 1.45rem;
    }
}


/* ============================================
   REQUEST FREE ESTIMATE SECTION
   ============================================ */
.estimate-section {
    padding: 100px 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.estimate-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 82, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.estimate-left {
    position: relative;
    z-index: 1;
}

.estimate-tag {
    display: inline-block;
    background: rgba(0, 82, 255, 0.12);
    color: var(--blue);
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.78rem;
    padding: 6px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.estimate-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
}

.estimate-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 36px;
}

/* Perks */
.estimate-perks {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.perk-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.perk-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(0, 82, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.perk-icon i {
    font-size: 1.2rem;
    color: var(--blue);
    transition: all 0.3s ease;
}

.perk-item:hover .perk-icon {
    background: var(--blue);
}

.perk-item:hover .perk-icon i {
    color: #ffffff;
}

.perk-text h6 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
    line-height: 1.35;
}

.perk-text p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Estimate Form Card */
.estimate-form-card {
    background: var(--dark-card);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    padding: 40px 36px 32px;
    position: relative;
    z-index: 1;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.estimate-form-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.estimate-form-card h4 i {
    color: var(--blue);
}

.estimate-form-card > p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 26px;
}

.estimate-form-card .form-control,
.estimate-form-card .form-select {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-dark);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.9rem;
    color: var(--text-white);
    font-family: var(--font);
    transition: all 0.3s ease;
}

.estimate-form-card .form-control::placeholder {
    color: var(--text-muted);
}

.estimate-form-card .form-select {
    color: var(--text-blue);
}

.estimate-form-card .form-control:focus,
.estimate-form-card .form-select:focus {
    background: rgba(0, 82, 255, 0.06);
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 82, 255, 0.15);
    color: var(--blue);
}

.estimate-form-card textarea.form-control {
    resize: vertical;
    min-height: 76px;
}

.btn-estimate {
    width: 100%;
    background: var(--blue);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 15px 24px;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-estimate:hover {
    background: var(--blue-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 82, 255, 0.35);
}

.btn-estimate i {
    transition: transform 0.3s ease;
}

.btn-estimate:hover i {
    transform: translateX(4px);
}

.estimate-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
    font-size: 0.76rem;
    color: var(--text-muted);
}

.estimate-trust i {
    color: #22c55e;
    font-size: 0.88rem;
}

/* ============================================
   DOT VIOLATION CTA BANNER
   ============================================ */
.cta-banner {
    padding: 0;
    background: var(--blue);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -60px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -40px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    pointer-events: none;
}

.cta-inner {
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}

.text-white {
    color: #ffffff !important;
}

.cta-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin: 0;
    max-width: 560px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-end;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #ffffff;
    color: var(--blue);
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 15px 36px;
    border-radius: 10px;
    transition: all 0.3s ease;
    min-width: 260px;
}

.btn-cta-primary:hover {
    background: #f0f4ff;
    color: var(--blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-cta-primary i {
    transition: transform 0.3s ease;
}

.btn-cta-primary:hover i {
    transform: translateX(4px);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    color: #ffffff;
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 14px 32px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    transition: all 0.3s ease;
    min-width: 260px;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-cta-secondary i {
    color: rgba(255, 255, 255, 0.85);
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 991.98px) {
    .estimate-title {
        font-size: 2rem;
    }

    .estimate-left {
        text-align: center;
        margin-bottom: 50px;
    }

    .estimate-perks {
        align-items: center;
    }

    .estimate-form-card {
        max-width: 560px;
        margin: 0 auto;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content {
        text-align: center;
        margin-bottom: 36px;
    }

    .cta-content p {
        margin: 0 auto;
    }

    .cta-buttons {
        align-items: center;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        min-width: 280px;
    }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 767.98px) {
    .estimate-section {
        padding: 70px 0;
    }

    .estimate-title {
        font-size: 1.65rem;
    }

    .estimate-desc {
        font-size: 0.9rem;
    }

    .estimate-form-card {
        padding: 30px 22px 24px;
    }

    .cta-inner {
        padding: 44px 0;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-content p {
        font-size: 0.9rem;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        min-width: unset;
    }
}

@media (max-width: 575.98px) {
    .estimate-title {
        font-size: 1.4rem;
    }

    .cta-content h2 {
        font-size: 1.3rem;
    }

    .perk-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }

    .perk-icon i {
        font-size: 1rem;
    }

    .perk-text h6 {
        font-size: 0.85rem;
    }

    .perk-text p {
        font-size: 0.78rem;
    }
}




/* ============================================
   FOOTER SECTION
   ============================================ */
.footer-section {
    background: #060d1f;
    padding: 0;
    position: relative;
}

/* Footer Main */
.footer-main {
    padding: 70px 0 50px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-white);
    margin-bottom: 18px;
}

.footer-logo i {
    color: var(--blue);
    font-size: 1.5rem;
}

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

.footer-about {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 22px;
    max-width: 320px;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 82, 255, 0.3);
}

/* Footer Headings */
.footer-heading {
    color: var(--text-white);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 11px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--blue);
    padding-left: 6px;
}

/* Certifications */
.footer-certs {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cert-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.cert-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(0, 82, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cert-icon i {
    font-size: 1.15rem;
    color: var(--blue);
    transition: all 0.3s ease;
}

.cert-item:hover .cert-icon {
    background: var(--blue);
}

.cert-item:hover .cert-icon i {
    color: #ffffff;
}

.cert-text {
    display: flex;
    flex-direction: column;
}

.cert-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-white);
    line-height: 1.3;
    margin-bottom: 2px;
}

.cert-sub {
    font-size: 0.76rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Footer CTA Strip */
.footer-cta {
    background: rgba(0, 82, 255, 0.08);
    border-top: 1px solid rgba(0, 82, 255, 0.12);
    border-bottom: 1px solid rgba(0, 82, 255, 0.12);
    padding: 36px 0;
    margin: 0 0;
}

.footer-cta h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 6px;
}

.footer-cta p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
}

.btn-footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue);
    color: #ffffff;
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 13px 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-footer-cta:hover {
    background: var(--blue-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 82, 255, 0.35);
}

.btn-footer-cta i {
    transition: transform 0.3s ease;
}

.btn-footer-cta:hover i {
    transform: translateX(4px);
}

/* Footer Bottom */
.footer-bottom {
    padding: 22px 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.82rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.82rem;
    transition: color 0.3s ease;
}

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

.footer-sep {
    color: rgba(255, 255, 255, 0.15);
    margin: 0 10px;
    font-size: 0.75rem;
}

/* ============================================
   FOOTER RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 991.98px) {
    .footer-main {
        padding: 50px 0 40px;
    }

    .footer-brand {
        margin-bottom: 30px;
    }

    .footer-certs {
        margin-top: 10px;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 8px;
    }
}

/* ============================================
   FOOTER RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 767.98px) {
    .footer-main {
        padding: 40px 0 30px;
    }

    .footer-logo {
        font-size: 1.15rem;
    }

    .footer-about {
        font-size: 0.84rem;
        max-width: 100%;
    }

    .footer-heading {
        font-size: 0.78rem;
        margin-bottom: 18px;
        padding-bottom: 12px;
    }

    .footer-links a {
        font-size: 0.84rem;
    }

    .cert-item {
        gap: 12px;
    }

    .cert-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .cert-icon i {
        font-size: 1rem;
    }

    .cert-title {
        font-size: 0.84rem;
    }

    .cert-sub {
        font-size: 0.72rem;
    }

    .footer-cta {
        padding: 28px 0;
        text-align: center;
    }

    .footer-cta h4 {
        font-size: 1.15rem;
    }

    .footer-cta p {
        font-size: 0.84rem;
    }

    .btn-footer-cta {
        width: 100%;
        justify-content: center;
    }

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

    .footer-bottom-links {
        justify-content: center;
        margin-top: 10px;
    }

    .footer-sep {
        margin: 0 8px;
    }
}

@media (max-width: 575.98px) {
    .footer-social a {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }

    .cert-item {
        gap: 10px;
    }

    .cert-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        border-radius: 8px;
    }

    .cert-icon i {
        font-size: 0.9rem;
    }
}


        /* ============================================
        PAGE BANNER
        ============================================ */
        .page-banner {
            position: relative;
            padding: 180px 0 100px;
            background: var(--dark-bg);
            background-image: url('https://images.unsplash.com/photo-1513467535987-fd81bc7d62f8?w=1920&q=80');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .banner-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                135deg,
                rgba(10, 15, 30, 0.94) 0%,
                rgba(10, 15, 30, 0.88) 50%,
                rgba(10, 15, 30, 0.82) 100%
            );
            z-index: 1;
        }

        .banner-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
        }

        .banner-tag {
            display: inline-block;
            background: rgba(0, 82, 255, 0.12);
            color: var(--blue);
            font-family: var(--font);
            font-weight: 600;
            font-size: 0.78rem;
            padding: 6px 20px;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 18px;
        }

        .banner-title {
            font-size: 3rem;
            font-weight: 800;
            color: var(--text-white);
            line-height: 1.15;
            letter-spacing: -1px;
            margin-bottom: 18px;
        }

        .banner-desc {
            font-size: 1.02rem;
            color: var(--text-muted);
            line-height: 1.85;
            margin-bottom: 28px;
        }

        .banner-breadcrumb {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.88rem;
        }

        .banner-breadcrumb a {
            color: var(--blue);
            font-weight: 500;
        }

        .banner-breadcrumb a:hover {
            text-decoration: underline;
        }

        .banner-breadcrumb i {
            color: var(--text-muted);
            font-size: 0.7rem;
        }

        .banner-breadcrumb span {
            color: var(--text-muted);
            font-weight: 500;
        }



        
