/* =====================================================
   CONTACT US BANNER (Matches Services/ About Styling)
======================================================= */
/* CONTACT BANNER - perfectly matched with About Banner */

#contact-banner {
    width: 100%;
    height: 45vh;
    min-height: 280px;
    background: url('../images/contact-us-banner.jpg') center/cover no-repeat;
    position: relative;
    border-bottom: 4px solid #0c2b47;
    display: flex;
    align-items: center;
    justify-content: center;
}

#contact-banner .banner-overlay {
    width: 100%;
    height: 100%;
    background: rgba(8, 3, 3, 0.55); /* same premium overlay */
    display: flex;
    align-items: center;
    justify-content: center;
}

#contact-banner .banner-content {
    text-align: center;
    color: #d4af37; /* luxury gold */
    max-width: 700px;
    padding: 0 20px;
    animation: fadeInUp 0.9s ease;
}

#contact-banner h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-shadow: 0px 2px 4px rgba(0,0,0,0.25);
}

#contact-banner p {
    font-size: 1.15rem;
    font-weight: 400;
    color: #d4af37;
}

/* Banner animation (shared) */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* =====================================================
   CONTACT SECTION
======================================================= */
#contact-us {
    padding: 80px 20px;
    background: #ffffff;
}

.contact-container {
    max-width: 1250px;
    margin: auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

/* LEFT SIDE */
.contact-info {
    flex: 1;
    min-width: 320px;
}

.contact-info h2 {
    font-size: 2.1rem;
    color: #0c2b47;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-info p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
}

.info-block {
    margin-top: 25px;
    padding: 20px;
    border-left: 4px solid #d4af37;
    background: #f9fbfd;
    border-radius: 8px;
}

.info-block h3 {
    font-size: 1.4rem;
    color: #0c2b47;
    margin-bottom: 10px;
}

/* RIGHT SIDE FORM */
.contact-form {
    flex: 1;
    min-width: 350px;
    padding: 30px;
    background: #f7f9fb;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.contact-form h2 {
    font-size: 1.9rem;
    color: #0c2b47;
    margin-bottom: 25px;
    font-weight: 700;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #0c2b47;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid #cdd6df;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #d4af37;
}

.form-group textarea {
    height: 130px;
    resize: none;
}

.send-btn {
    width: 100%;
    padding: 14px 0;
    font-size: 1.05rem;
    font-weight: 700;
    background: #0c2b47;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    transition: 0.3s ease;
    cursor: pointer;
}

.send-btn:hover {
    background: #d4af37;
    color: #0c2b47;
}

/* =====================================================
   RESPONSIVE
======================================================= */
@media (max-width: 768px) {
    #contact-banner h1 {
        font-size: 2.3rem;
    }
    #contact-banner p {
        font-size: 1rem;
    }
    #contact-banner {
        height: 40vh;
    }
}
