/* ===================================
   Contact Quick Info (Before Hero)
   =================================== */

.contact-quick-info {
    background: #2f2e2b; /* slightly darker than #3B3A36 */
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-quick-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 18px 20px;
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 2.0rem;
    font-weight: 500;
}

.contact-item i {
    color: #cfcfcf;
    font-size: 3.1rem;
}

.contact-item a {
    color: #f5f5f5;
    text-decoration: none;
    transition: color 0.25s ease;
}

.contact-item a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* HERO */
.contact-hero {
    padding: 140px 20px 100px;
    text-align: center;
    background: linear-gradient(
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.6)
    ),
    url('../images/image5.jpg') center / cover no-repeat;
    color: white;
}

.contact-hero h1 {
    font-size: clamp(3rem, 6vw, 4rem);
    margin-bottom: 1.4rem;
}

.contact-hero p {
    font-size: 1.3rem;
    max-width: 760px;
    margin: 0 auto;
    opacity: 0.95;
}

/* SECTION */
.contact-section {
    padding: 120px 20px;
    background: #3B3A36;
    color: #f5f5f5;
}

/* LAYOUT */
.contact-layout {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
}

/* INFO */
.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1.8rem;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.15rem;
}

.contact-info i {
    color: #4ade80;
    margin-right: 14px;
}

.contact-note {
    opacity: 0.9;
    font-size: 1.1rem;
}

/* FORM */
.contact-form {
    background: rgba(255,255,255,0.05);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.form-group {
    margin-bottom: 1.6rem;
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

input,
textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    color: white;
    font-family: inherit;
    font-size: 1rem;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #cfcfcf;
}

/* BUTTON */
.submit-btn {
    width: 100%;
    padding: 18px;
    margin-top: 1.5rem;
    background: #cfcfcf;
    color: #3B3A36;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: white;
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.4);
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .contact-hero h1 {
        font-size: clamp(2rem, 6vw, 2.8rem);
    }

    .contact-hero p {
        font-size: 1.1rem;
    }

    .contact-info h2 {
        font-size: 1.8rem;
    }

    .contact-info li {
        font-size: 1rem;
    }

    .contact-note {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    /* NAVBAR */
    .navbar-container {
        justify-content: flex-start;
        gap: 1px;
        padding: 5px 1px; /* mobile navbar padding */
    }

    .navbar-logo img {
        height: 50px;
        margin-right: 0;
    }

    .navbar-menu {
        gap: 15px;
        font-size: 14px;
        padding: 1px 0; /* smaller vertical padding */
    }

    .navbar-menu a {
        font-size: 14px;
        padding: 6px 0;
    }

    .contact-quick-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .contact-item {
        justify-content: center;
        font-size: 1.5rem;
    }
}
