/* ===== CONTACT PAGE ===== */

.app-hero {
    position: relative;
    min-height: 70vh;
    /* 👈 adjust freely per page */
    background-image: url('../assets/ContactUS.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dark overlay */
.app-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 32, 64, 0.65),
            rgba(0, 0, 0, 0.55));
    z-index: 1;
}

/* Text container */
.app-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    padding: 0 20px;
    text-align: center;
}

.app-hero-content h1 {
    color: #ffffff;
    font-size: 2.3rem;
    font-weight: 300;
    line-height: 1.25;
}

/* Tablet */
@media (max-width: 991px) {
    .app-hero {
        min-height: 70vh;

    }

    .app-hero-content h1 {
        font-size: 1.9rem;

    }
}

@media (max-width: 768px) {
    .app-hero {
        min-height: 80vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .app-hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0 16px;
        text-align: center;
    }

    .app-hero-content h1 {
        font-size: 1.2rem;
        margin: 0;
        line-height: 1.3;
    }
}


.contact-page {
    padding: 30px 0;
    background: #ffffff;
}

/* Header */
.contact-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.contact-header p {
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    color: #555;
}

/* ===== ENHANCED CONTACT FORM LOOK ===== */

/* Form Wrapper */
.contact-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 25px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: none;
}

/* Labels */
.contact-form label {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #444;
    letter-spacing: 0.4px;
}

/* Inputs */
.contact-form .form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 14px 16px;
    font-size: 0.95rem;
    background: #fff;
    transition: all 0.3s ease;
}

/* Input Hover */
.contact-form .form-control:hover {
    border-color: #bbb;
}

/* Input Focus */
.contact-form .form-control:focus {
    border-color: #c4961c;
    box-shadow: 0 0 0 3px rgba(196, 150, 28, 0.15);
}

/* Textarea */
.contact-form textarea.form-control {
    resize: none;
}

/* Button Wrapper */
.contact-btn-wrap {
    margin-top: 10px;
}

/* Button */
.btn-modern {
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: #fff;
    padding: 14px 42px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 0.6px;
    border: none;
    transition: all 0.35s ease;
}

/* Button Hover */
.btn-modern:hover {
    background: linear-gradient(135deg, #c4961c, #e0b94c);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(196, 150, 28, 0.35);
}

/* Button Active */
.btn-modern:active {
    transform: translateY(0);
    box-shadow: none;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-wrapper {
        padding: 30px 25px;
    }

    .contact-form button.btn-modern {
        width: 100%;
        text-align: center;
    }
}