/* ==========================
   CONTACT
========================== */

.contact {

    max-width: 1200px;

    margin: 0 auto;

    padding: 120px 20px;
}

.contact-card {

    position: relative;

    padding: 80px 60px;

    text-align: center;

    border-radius: 32px;

    background: rgba(255,255,255,.05);

    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);

    border: 1px solid rgba(255,255,255,.08);

    overflow: hidden;
}

/* Glow */

.contact-card::before {

    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    top: -200px;
    right: -150px;

    background: radial-gradient(
        circle,
        rgba(247,148,29,.18),
        transparent 70%
    );

    pointer-events: none;
}

.contact-card::after {

    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    bottom: -200px;
    left: -150px;

    background: radial-gradient(
        circle,
        rgba(128,0,128,.18),
        transparent 70%
    );

    pointer-events: none;
}

.contact-card h2 {

    font-size: clamp(3rem, 6vw, 5rem);

    line-height: 1.1;

    margin: 20px 0;

    position: relative;

    z-index: 2;
}

.contact-card h2 span {

    display: block;

    background: linear-gradient(
        135deg,
        var(--orange),
        var(--purple)
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-card p {

    max-width: 750px;

    margin: 0 auto 40px;

    color: rgba(255,255,255,.75);

    line-height: 1.8;

    position: relative;

    z-index: 2;
}

/* Buttons */

.contact-buttons {

    display: flex;

    justify-content: center;

    gap: 16px;

    flex-wrap: wrap;

    position: relative;

    z-index: 2;
}

.contact-primary-btn,
.contact-secondary-btn {

    text-decoration: none;

    padding: 16px 28px;

    border-radius: 16px;

    font-weight: 600;

    transition: .3s ease;
}

.contact-primary-btn {

    background: linear-gradient(
        135deg,
        var(--orange),
        var(--purple)
    );

    color: white;
}

.contact-primary-btn:hover {

    transform: translateY(-3px);
}

.contact-secondary-btn {

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.08);

    color: white;

    backdrop-filter: blur(20px);
}

.contact-secondary-btn:hover {

    transform: translateY(-3px);

    border-color: rgba(255,255,255,.2);
}

/* ==========================
   LOCATION
========================== */

.location {

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 20px 120px;
}

.location-header {

    text-align: center;

    max-width: 850px;

    margin: 0 auto 50px;
}

.location-header h2 {

    font-size: clamp(2.5rem, 5vw, 4rem);

    margin: 20px 0;

    line-height: 1.1;
}

.location-header h2 span {

    display: block;

    background: linear-gradient(
        135deg,
        var(--orange),
        var(--purple)
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.location-header p {

    color: rgba(255,255,255,.75);

    line-height: 1.8;
}

/* Map */

.map-container {

    overflow: hidden;

    border-radius: 32px;

    border: 1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(24px);

    background: rgba(255,255,255,.05);
}

.map-container iframe {

    width: 100%;

    height: 500px;

    border: 0;

    display: block;
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 768px) {

    .contact {

        padding: 80px 20px;
    }

    .contact-card {

        padding: 50px 30px;
    }

    .contact-buttons {

        flex-direction: column;
    }

    .contact-primary-btn,
    .contact-secondary-btn {

        width: 100%;
    }

    .map-container iframe {

        height: 350px;
    }
}