﻿.contact-page {
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.contact-container {
    width: min(94%, 1280px);
    margin: 0 auto;
}

.contact-hero {
    padding: 70px 0 50px;
    background: linear-gradient(90deg, #ffffff 0%, #ffffff 42%, #f4f8fc 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 50px;
    align-items: center;
}

.section-label {
    color: #f97316;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.center-label {
    display: block;
    text-align: center;
}

.hero-content h1 {
    color: #0b1f4d;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.055em;
    margin: 20px 0 22px;
}

    .hero-content h1 span {
        color: #f97316;
    }

.hero-content p {
    color: #334155;
    max-width: 540px;
    font-size: 1.15rem;
    line-height: 1.75;
    margin: 0;
}

.hero-points {
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
    margin-top: 34px;
}

    .hero-points div {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #0b1f4d;
        font-size: 0.95rem;
        font-weight: 800;
    }

    .hero-points svg {
        width: 42px;
        height: 42px;
        padding: 10px;
        border-radius: 50%;
        background: #fff3e8;
        color: #f97316;
    }

.hero-image {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.16);
}

    .hero-image img {
        display: block;
        width: 100%;
        height: 500px;
        object-fit: cover;
    }

.contact-content {
    padding: 0 0 70px;
    margin-top: -18px;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 460px;
    gap: 24px;
    align-items: start;
}

.form-card,
.info-card,
.contact-benefits,
.bottom-cta {
    border-radius: 18px;
}

.form-card,
.info-card {
    background: white;
    border: 1px solid #dfe5ee;
    box-shadow: 0 10px 34px rgba(15, 23, 42, 0.06);
}

.form-card {
    padding: 34px;
}

    .form-card h2,
    .info-card h2 {
        color: #0b1f4d;
        font-size: 1.8rem;
        font-weight: 800;
        margin: 0 0 10px;
    }

.orange-line {
    width: 58px;
    height: 4px;
    background: #f97316;
    border-radius: 999px;
    margin-bottom: 24px;
}

    .orange-line.center {
        margin-left: auto;
        margin-right: auto;
    }

.form-card > p {
    color: #53647f;
    margin-bottom: 26px;
}

.success-message {
    background: #dcfce7;
    color: #166534;
    padding: 14px 18px;
    border-radius: 9px;
    margin-bottom: 22px;
    font-weight: 700;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    position: relative;
    margin-bottom: 18px;
    min-width: 0;
}

    .form-group svg {
        position: absolute;
        left: 18px;
        top: 18px;
        width: 20px;
        height: 20px;
        color: #0b1f4d;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        min-height: 58px;
        border: 1px solid #d8e0ea;
        border-radius: 9px;
        padding: 0 16px 0 54px;
        color: #0b1f4d;
        background: white;
        font-size: 1rem;
    }

    .form-group textarea {
        min-height: 130px;
        padding-top: 18px;
        resize: vertical;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #f97316;
            box-shadow: 0 0 0 0.18rem rgba(249, 115, 22, 0.14);
        }

.text-danger {
    display: block;
    color: #dc2626;
    font-size: 0.85rem;
    margin-top: 6px;
}

.send-button {
    width: 100%;
    min-height: 58px;
    border: none;
    border-radius: 9px;
    background: #f97316;
    color: white;
    font-size: 1.05rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.2s ease;
}

    .send-button:hover {
        background: #ea580c;
    }

    .send-button svg {
        width: 22px;
        height: 22px;
    }

.secure-note {
    color: #53647f;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}

    .secure-note svg {
        width: 16px;
        height: 16px;
    }

.info-card {
    padding: 34px;
}

.info-list {
    display: grid;
}

.info-item {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 18px;
    padding: 24px 0;
    border-bottom: 1px solid #e4eaf2;
}

    .info-item:first-child {
        padding-top: 8px;
    }

    .info-item:last-child {
        border-bottom: none;
    }

.info-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #f1f6ff;
    color: #0b1f4d;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .info-icon svg {
        width: 28px;
        height: 28px;
    }

.info-item h3 {
    color: #0b1f4d;
    font-size: 0.95rem;
    font-weight: 800;
    margin: 0 0 4px;
}

.info-item strong {
    color: #0b1f4d;
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.info-item p {
    color: #53647f;
    margin: 4px 0 0;
}

.immediate-card {
    background: #06224b;
    color: white;
    border-radius: 14px;
    padding: 24px;
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    margin-top: 24px;
}

.immediate-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.16);
    color: #f97316;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .immediate-icon svg {
        width: 34px;
        height: 34px;
    }

.immediate-card h3 {
    color: white;
    margin: 0 0 5px;
    font-size: 1.1rem;
    font-weight: 800;
}

.immediate-card p {
    margin: 0;
    color: rgba(255,255,255,0.82);
}

.contact-benefits {
    background: #f8fbff;
    padding: 60px 0;
}

    .contact-benefits h2 {
        color: #0b1f4d;
        text-align: center;
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 800;
        letter-spacing: -0.04em;
        margin: 12px 0 10px;
    }

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 38px;
}

.benefit-item {
    text-align: center;
    padding: 0 28px;
    border-right: 1px solid #d8e0ea;
}

    .benefit-item:last-child {
        border-right: none;
    }

    .benefit-item svg {
        width: 68px;
        height: 68px;
        padding: 17px;
        border-radius: 50%;
        background: white;
        border: 1px solid #dfe5ee;
        color: #0b1f4d;
        margin-bottom: 18px;
    }

    .benefit-item h3 {
        color: #0b1f4d;
        font-size: 1rem;
        font-weight: 800;
    }

    .benefit-item p {
        color: #53647f;
        line-height: 1.6;
        margin: 0;
    }

.bottom-cta {
    margin: 48px auto 70px;
}

.cta-grid {
    background: #06224b;
    border-radius: 18px;
    padding: 32px 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    color: white;
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 22px;
}

.cta-icon {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.16);
    color: #f97316;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .cta-icon svg {
        width: 40px;
        height: 40px;
    }

.cta-left h2 {
    color: white;
    font-size: 1.45rem;
    font-weight: 800;
    margin: 0 0 6px;
}

.cta-left p {
    margin: 0;
    color: rgba(255,255,255,0.82);
}

.cta-button {
    min-height: 56px;
    padding: 0 30px;
    border-radius: 9px;
    background: #f97316;
    color: white;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

    .cta-button svg {
        width: 22px;
        height: 22px;
    }

@media (max-width: 1050px) {
    .hero-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-image img {
        height: 380px;
    }

    .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .benefit-item {
        border-right: none;
    }
}

@media (max-width: 650px) {
    .contact-hero {
        padding-top: 44px;
    }

    .form-row,
    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .form-card,
    .info-card {
        padding: 24px;
    }

    .hero-image img {
        height: 300px;
    }

    .hero-points {
        gap: 16px;
    }

    .cta-grid,
    .cta-left {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }
}
