/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-hero {
    position: relative;
    padding: 85px 20px 75px;
    background:
        linear-gradient(
            135deg,
            #eff6ff 0%,
            #ffffff 55%,
            #f5f3ff 100%
        );
    text-align: center;
    overflow: hidden;
}

.contact-hero::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.08);
    top: -120px;
    left: -100px;
}

.contact-hero::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.07);
    bottom: -110px;
    right: -80px;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin:auto;
}

.contact-hero h1 {
    margin:0;
    font-size:48px;
    font-weight:800;
    line-height:1.15;
    color:#172033;
}

.contact-hero h1 span {
    color:#2563eb;
}

.contact-hero p {
    max-width:650px;
    margin:18px auto 0;
    color:#64748b;
    font-size:16px;
    line-height:1.8;
}


/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {
    padding:70px 20px;
    background:#ffffff;
}

.contact-container {
    max-width:1180px;
    margin:auto;

    display:grid;
    grid-template-columns:0.85fr 1.15fr;
    gap:45px;

    align-items:stretch;
}


/* =========================================================
   LEFT INFO
========================================================= */

.contact-info {
    display:flex;
    flex-direction:column;
    gap:16px;
}

.info-card {
    display:flex;
    align-items:center;
    gap:17px;

    padding:22px;

    background:#ffffff;

    border:1px solid #e2e8f0;

    border-radius:14px;

    box-shadow:
        0 8px 25px rgba(15,23,42,0.05);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.info-card:hover {
    transform:translateY(-3px);

    border-color:#bfdbfe;

    box-shadow:
        0 14px 30px rgba(37,99,235,0.10);
}

.info-card .icon {
    width:48px;
    height:48px;

    flex:0 0 48px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:12px;

    background:#eff6ff;

    color:#2563eb;

    font-size:18px;
}

.info-card h3 {
    margin:0 0 5px;

    color:#172033;

    font-size:15px;

    font-weight:700;
}

.info-card p {
    margin:0;

    color:#64748b;

    font-size:13px;

    line-height:1.6;
}


/* =========================================================
   FORM BOX
========================================================= */

.contact-form-box {
    padding:34px;

    background:#ffffff;

    border:1px solid #e2e8f0;

    border-radius:18px;

    box-shadow:
        0 15px 45px rgba(15,23,42,0.08);
}

.contact-form {
    display:flex;
    flex-direction:column;
    gap:17px;
}

.input-group {
    position:relative;
}

.input-group input,
.input-group textarea {
    width:100%;

    border:1px solid #dbe3ec;

    background:#f8fafc;

    color:#172033;

    border-radius:10px;

    padding:14px 16px;

    font-family:inherit;

    font-size:14px;

    outline:none;

    transition:
        border-color .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}

.input-group input {
    height:52px;
}

.input-group textarea {
    min-height:145px;
    resize:vertical;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color:#94a3b8;
}

.input-group input:focus,
.input-group textarea:focus {
    background:#ffffff;

    border-color:#2563eb;

    box-shadow:
        0 0 0 4px rgba(37,99,235,0.10);
}


/* =========================================================
   SEND BUTTON
========================================================= */

.send-btn {
    width:100%;

    border:none;

    border-radius:10px;

    padding:14px 20px;

    background:#2563eb;

    color:#ffffff;

    font-size:14px;

    font-weight:700;

    cursor:pointer;

    box-shadow:
        0 8px 20px rgba(37,99,235,0.22);

    transition:
        transform .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}

.send-btn:hover {
    background:#1d4ed8;

    transform:translateY(-2px);

    box-shadow:
        0 12px 25px rgba(37,99,235,0.28);
}

.send-btn:active {
    transform:translateY(0);
}


/* =========================================================
   MAP
========================================================= */

.map-section {
    padding:0;

    line-height:0;

    background:#f8fafc;
}

.map-section iframe {
    width:100%;
    height:380px;

    border:0;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width:900px) {

    .contact-container {
        grid-template-columns:1fr;
        gap:30px;
    }

    .contact-info {
        display:grid;
        grid-template-columns:1fr 1fr;
    }

    .contact-hero h1 {
        font-size:40px;
    }
}


@media (max-width:600px) {

    .contact-hero {
        padding:60px 18px 55px;
    }

    .contact-hero h1 {
        font-size:34px;
    }

    .contact-hero p {
        font-size:14px;
        line-height:1.7;
    }

    .contact-section {
        padding:45px 15px;
    }

    .contact-info {
        grid-template-columns:1fr;
    }

    .contact-form-box {
        padding:22px 18px;
        border-radius:14px;
    }

    .info-card {
        padding:18px;
    }

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