/* =========================
   HERO
========================= */

.contact-hero {

    text-align: center;

    padding: 100px 20px;

    background:
        linear-gradient(
            rgba(74,29,100,0.85),
            rgba(74,29,100,0.9)
        ),
        url('../images/container-bg.png');

    background-size: cover;

    background-position: center;
}

.contact-hero h1 {

    font-size: 3rem;

    color: white;

    margin-bottom: 15px;
}

.contact-hero span {

    color: #facc15;
}

.contact-hero p {

    color: #f3e8ff;

    font-size: 1.1rem;
}


/* =========================
   CONTACT SECTION
========================= */

.contact-section {

    padding: 80px 20px;
}

.contact-container {

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1.2fr;

    gap: 40px;
}


/* =========================
   LEFT INFO CARD
========================= */

.contact-info {

    background:
        var(--metallic-card);

    padding: 45px;

    border-radius: 25px;

    box-shadow:
        0 15px 35px rgba(0,0,0,0.1);
}

.contact-info h2 {

    color: var(--primary-purple);

    margin-bottom: 20px;

    font-size: 2rem;
}

.contact-info p {

    line-height: 1.8;

    color: #555;
}


/* INFO BOX */

.info-box {

    display: flex;

    gap: 20px;

    margin-top: 30px;

    align-items: flex-start;
}

.info-box i {

    width: 60px;

    height: 60px;

    background:
        linear-gradient(
            135deg,
            #6a0dad,
            #9333ea
        );

    color: white;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 1.3rem;

    flex-shrink: 0;
}

.info-box h3 {

    margin-bottom: 8px;

    color: #222;
}


/* SOCIAL */

.social-links {

    margin-top: 35px;

    display: flex;

    gap: 15px;
}

.social-links a {

    width: 45px;

    height: 45px;

    background:
        linear-gradient(
            135deg,
            #6a0dad,
            #9333ea
        );

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    color: white;

    text-decoration: none;

    transition: 0.3s ease;
}

.social-links a:hover {

    transform: translateY(-5px);
}


/* =========================
   MAP CARD
========================= */

.contact-form-box {

    background:
        white;

    padding: 45px;

    border-radius: 25px;

    box-shadow:
        0 15px 35px rgba(0,0,0,0.1);
}

.contact-form-box h2 {

    color: var(--primary-purple);

    margin-bottom: 20px;

    font-size: 2rem;
}

.map-text {

    margin-bottom: 25px;

    line-height: 1.8;

    color: #555;
}


/* MAP */

.contact-map {

    width: 100%;

    height: 450px;

    overflow: hidden;

    border-radius: 20px;

    box-shadow:
        0 15px 35px rgba(0,0,0,0.1);
}

.contact-map iframe {

    width: 100%;

    height: 100%;

    border: none;
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px) {

    .contact-container {

        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {

    .contact-hero h1 {

        font-size: 2.2rem;
    }

    .contact-info,
    .contact-form-box {

        padding: 30px 20px;
    }

    .contact-map {

        height: 320px;
    }
}