/* =========================================
   CONTACT & STATS SECTION
   ========================================= */

/* ============================================================
   STATS / NUMBERS SECTION
   ============================================================ */
.stats-header-section {
    width: 100%;
    position: relative;
    background: var(--bg-light);
    padding: 110px 0 110px;
    overflow: hidden;
}

.stats-header-section .stats-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.stats-header-section .stats-header {
    text-align: center;
    margin-bottom: 0;
}






.stats-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}


.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 20px 40px;
    border-left: 1px solid #d1d5db;
}

.stat-item:first-child {
    border-left: none;
    padding-left: 0;
}

.stat-number {
    display: block;
    font-family: var(--font-main);
    font-size: clamp(3.5rem, 5vw, 64px);
    font-weight: 400;
    color: var(--primary-color);
    letter-spacing: -0.05em;
    line-height: 1;
    margin-bottom: 16px;
}

.stat-label {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    color: #374151;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .stat-item {
        border-left: none;
        border-top: 1px solid #d1d5db;
        padding: 30px 0 0 0;
    }

    .stats-header-section .stats-heading {
        font-size: 55px;
        line-height: normal;
    }

    .stat-item:first-child {
        border-top: none;
        padding-top: 0;
    }

}

@media (max-width: 480px) {
    .stats-grid {
        gap: 24px;
    }

    .stats-header-section .stats-heading {
        font-size: 28px;
    }



    .stats-inner {
        padding: 0 20px;
    }
}

/* ============================================================
   CONTACT / CTA SECTION
   ============================================================ */
.contact-section {
    position: relative;
    background: var(--black);
    padding: 110px 0 110px;
    overflow: hidden;
}

.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ── Left: Form ── */
.contact-left {
    position: relative;
    z-index: 2;
}

.contact-heading {
    font-family: var(--font-main);
    font-size: 55px;
    line-height: 61px;
    font-weight: 500;
    letter-spacing: -1.2px;
    color: var(--white);
    margin: 0 auto 14px;
}

.contact-subtext {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 17px;
    line-height: 30px;
    color: var(--white);
    max-width: 760px;
    margin: 0 0 40px;
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Fieldset-style input with floating label on border */
.form-field {
    position: relative;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 18px 20px;
    font-family: var(--font-mono);
    font-size: 14px;
    letter-spacing: 0.03em;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    outline: none;
    transition: border-color 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-field select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 44px;
}

.form-field select option {
    background: #111;
    color: var(--white);
}

.form-field input:focus,
.form-field select:focus {
    border-color: var(--white);
}

.form-field input:focus+label,
.form-field input:not(:placeholder-shown)+label,
.form-field select:focus+label,
.form-field select:valid+label,
.form-field textarea:focus+label,
.form-field textarea:not(:placeholder-shown)+label {
    top: -4px;
    font-size: 11px;
    color: var(--white);
    background: var(--black);
    padding: 0 8px;
}

.form-field label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: transparent;
}

/* Form Row - Email and Phone Side by Side */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Submit Button */
.contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 28px;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 600;
    /* letter-spacing: 0.15em; */
    text-transform: uppercase;
    color: var(--white);
    background: var(--primary-color);
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition-normal);
    max-width: 100%;
}

.contact-submit:hover {
    opacity: .9;
    /* background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 71, 255, 0.3); */
}

.btn-dots-icon {
    display: flex;
    gap: 3px;
}

.btn-dots-icon span {
    width: 4px;
    height: 4px;
    background: currentColor;
    border-radius: 50%;
}

/* ── Right: Image Stack ── */
.contact-right {
    position: relative;
    height: 500px;
}

.contact-image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.contact-img {
    position: absolute;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.contact-img--back {
    width: 65%;
    height: 75%;
    top: 0;
    right: 0;
    z-index: 1;
}

.contact-img--front {
    width: 60%;
    height: 70%;
    bottom: 0;
    left: 0;
    z-index: 2;
    border: 3px solid rgba(255, 255, 255, 0.08);
}


/* Decorative grid lines */
.contact-deco {
    position: absolute;
    top: -30px;
    right: -20px;
    width: 120px;
    height: 120px;
    z-index: 0;
    opacity: 0.6;
}

/* ── Contact Responsive ── */
@media (max-width: 991px) {
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-right {
        display: none;
        visibility: hidden;
    }

    .contact-section {
        padding: 80px 0 90px;
    }
}

@media (max-width: 768px) {
    .contact-inner {
        padding: 0 24px;
    }

    .contact-right {
        display: none;
        visibility: hidden;
    }

    .contact-heading {
        font-size: 1.6rem;
        line-height: normal;
    }

    .contact-section {
        padding: 60px 0 70px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-inner {
        padding: 0 16px;
        gap: 36px;
    }

    .contact-right {
        display: none;
        visibility: hidden;
    }

    .contact-heading {
        font-size: 1.6rem;
        line-height: normal;
    }

    .contact-submit {
        max-width: 100%;
        width: 100%;
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}