* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background: radial-gradient(circle at top left, #1e3c72, #0a0a0a 60%);
    color: #ffffff;
    line-height: 1.6;
}

/* HERO */
.contact-hero {
    max-width: 1200px;
    margin: 60px auto;
    border-radius: 22px;
    padding: 80px 30px;
    background: linear-gradient(135deg, #1f3d8829, #0f766e);
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.contact-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* CONTACT INFO */
.contact-info {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.contact-info h2 {
    text-align: center;
    margin-bottom: 50px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.info-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 24px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-6px);
}

.info-card h3 {
    margin-bottom: 10px;
    color: #38bdf8;
}

/* CTA */
.contact-cta {
    max-width: 900px;
    margin: 80px auto;
    text-align: center;
    padding: 0 20px;
}

.contact-cta h2 {
    margin-bottom: 20px;
}

/* MAIN SECTION */
.contact-main {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.map-box,
.form-box {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 24px;
    backdrop-filter: blur(10px);
}

.map-box h3,
.form-box h3 {
    margin-bottom: 16px;
}

.map-box iframe {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 14px;
}

/* FORM */
form label {
    display: block;
    margin-top: 16px;
    margin-bottom: 6px;
}

form input,
form textarea,
form select {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    background: #0f172a;
    color: #fff;
}

form textarea {
    min-height: 120px;
}

.phone-row {
    display: flex;
    gap: 10px;
}

button {
    margin-top: 20px;
    padding: 12px;
    width: 100%;
    border-radius: 12px;
    border: 0;
    background: linear-gradient(90deg, #7b8cff, #39e0e6);
    box-shadow: 0 8px 20px rgba(57, 224, 230, 0.35);
    color: #f5f3f3;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(57, 224, 230, 0.312);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-main {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 36px;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}