﻿.contact-page {
    padding-bottom: 40px;
}

h2, h1 {
    color: var(--gold);
}

.contact-hero {
    max-width: 100% !important;
    padding: 96px;
    background: url(../img/bg.png);
    margin-bottom: 40px;
    background-repeat: no-repeat;
    background-size: cover;
}

/* HERO */
.contact-hero-text {
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 0 1px 10px var(--light);
    font-weight: 900;
}

    .contact-hero-text h1 {
        font-size: 42px;
        font-family: var(--poppins);
    }

/* GRID */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
}

/* LEFT */
.contact-info h2 {
    margin-bottom: 15px;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    align-items: center;
}

    .info-item i {
        color: var(--yellow);
        font-size: 18px;
    }

/* FORM */
.contact-form {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

    .contact-form h2 {
        margin-bottom: 15px;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 12px 14px;
        margin-bottom: 15px;
        border-radius: 8px;
        border: 1px solid var(--border-color);
        background: var(--light-bg);
        color: var(--text-color);
    }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.btn-primary {
    background: var(--yellow);
    color: #000;
    padding: 12px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

/* MAP */
.map-section iframe {
    width: 100%;
    height: 350px;
    border: 0;
    margin-top: 60px;
    border-radius: 16px;
}

/* MOBILE */
@media(max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}
