/* ================= GLOBAL ================= */
.contact-hero,
.contact-section {
    background: #000;
    color: #fff;
}

/* ================= HERO ================= */
.contact-hero {
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 10%;
}

.contact-hero h1 {
    font-size: 46px;
    font-weight: 700;
}

.contact-hero span {
    color: #ff0000;
}

.contact-hero p {
    margin-top: 15px;
    font-size: 18px;
    color: #ccc;
}

/* ================= CONTACT SECTION ================= */
.contact-section {
    padding: 80px 10%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* ================= INFO ================= */
.contact-info h2,
.contact-form h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-info span,
.contact-form span {
    color: #ff0000;
}

.contact-info p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    font-size: 16px;
    color: #ccc;
}

.contact-item i {
    color: #ff0000;
    font-size: 18px;
    margin-right: 15px;
}

/* ================= FORM ================= */
.contact-form {
    background: #111;
    border: 1px solid #222;
    padding: 40px;
    border-radius: 10px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    background: #000;
    border: 1px solid #222;
    color: #fff;
    padding: 14px;
    margin-bottom: 18px;
    border-radius: 6px;
    font-size: 15px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #777;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff0000;
}

.contact-form .btn {
    background: #ff0000;
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
}

.contact-form .btn:hover {
    background: #cc0000;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .contact-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 34px;
    }

    .contact-section {
        padding: 60px 6%;
    }
}

/* SIMPLE NAVBAR FOR CONTACT PAGE
.simple-nav {
    width: 100%;
    height: 70px;
    padding: 0 6vw;
    display: flex;
    align-items: center;
    background: #000;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.brand-link {
    text-decoration: none;
}

.simple-nav .logo {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    cursor: pointer;
}

.simple-nav .logo .red {
    color: #ff0000;
}

.contact-hero {
    padding-top: 70px;
} */
