/* ==========================
   HERO
========================== */

.contact-hero {
    padding-top: 180px;
    padding-bottom: 120px;
    text-align: center;

    background:
        linear-gradient(rgba(0, 0, 0, .75),
            rgba(0, 0, 0, .85)),
        url('../../images/hero/contact-banner.jpg');

    background-size: cover;
    background-position: center;
}

.contact-hero span {
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.contact-hero h1 {
    margin: 15px 0 20px;
}

.contact-hero p {
    max-width: 700px;
    margin: auto;
}

/* ==========================
   CONTACT GRID
========================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
}

.contact-info span {
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-info h2 {
    margin: 15px 0 20px;
}

.contact-info p {
    margin-bottom: 25px;
}

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

    padding: 22px;
    margin-bottom: 20px;

    background: #111;
    border: 1px solid var(--border-color);
    border-radius: 18px;

    transition: .3s;
}

.info-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.info-card i {
    font-size: 1.5rem;
    color: var(--primary-gold);
}

/* ==========================
   ACTION BOX
========================== */

.contact-action {
    background: #111;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
}

.contact-action h3 {
    margin-bottom: 15px;
}

.contact-action p {
    margin-bottom: 30px;
}

.btn-full {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    color: var(--primary-gold);
    width: 50px;
    height: 50px;

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

    border-radius: 50%;
    background: #1a1a1a;

    border: 1px solid var(--border-color);

    transition: .3s;
}

.social-links a:hover {
    background: var(--primary-gold);
    color: #000;
}

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

.map-section {
    background: #090909;
}

.map-wrapper {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--border-color);
}

.map-wrapper iframe {
    width: 100%;
    height: 500px;
    border: 0;
}

/* ==========================
   CTA
========================== */

.contact-cta {
    text-align: center;

    background:
        linear-gradient(135deg,
            rgba(212, 175, 55, .12),
            rgba(0, 0, 0, .95));
}

.contact-cta h2 {
    margin-bottom: 20px;
}

.contact-cta p {
    margin-bottom: 30px;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:992px) {

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

@media(max-width:768px) {

    .contact-hero {
        padding-top: 160px;
    }

    .map-wrapper iframe {
        height: 400px;
    }
}

@media(max-width:576px) {

    .contact-hero {
        padding-top: 140px;
        padding-bottom: 80px;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-action {
        padding: 25px;
    }

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