﻿.contact-hero {
    padding: 90px 20px;
    background: linear-gradient(135deg, #020617, #0f172a);
    color: #e5e7eb;
    text-align: center;
}

    .contact-hero h1 {
        font-size: 44px;
        font-weight: 800;
        color: #38bdf8;
    }

.contact-subtitle {
    font-size: 18px;
    max-width: 700px;
    margin: 20px auto 0;
    color: #cbd5f5;
}

.contact-section {
    padding: 80px 20px;
    background: #f8fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px;
}

/* INFO */
.contact-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #0f172a;
}

.contact-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #334155;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-top: 25px;
    gap: 15px;
}

    .info-item span {
        font-size: 26px;
    }

    .info-item strong {
        display: block;
        color: #020617;
    }

/* FORM */
.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

    .contact-form h2 {
        font-size: 26px;
        margin-bottom: 25px;
        color: #0f172a;
    }

.form-group {
    margin-bottom: 18px;
}

    .form-group label {
        display: block;
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 6px;
        color: #475569;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 12px 14px;
        border-radius: 10px;
        border: 1px solid #e2e8f0;
        font-size: 14px;
        outline: none;
        transition: border 0.2s;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #38bdf8;
        }

.btn-contact {
    margin-top: 10px;
    padding: 12px 30px;
    background: #38bdf8;
    color: #020617;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

    .btn-contact:hover {
        background: #7dd3fc;
    }
