/* Contact Banner */
.contact-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../images/page%20banners/Contact%20Us.jpg') center/cover no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
    padding: 6rem 0;
    margin-bottom: 4rem;
}

.contact-banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
}

.contact-banner .banner-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.contact-banner h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.contact-banner p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.banner-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.banner-cta .btn {
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.banner-cta .btn i {
    font-size: 1rem;
}

.banner-cta .btn-primary {
    background: var(--secondary-color);
    color: #000;
    border: 2px solid var(--secondary-color);
}

.banner-cta .btn-primary:hover {
    background: transparent;
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.banner-cta .btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.banner-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .contact-banner {
        min-height: 400px;
    }
    
    .contact-banner h1 {
        font-size: 2.8rem;
    }
    
    .contact-banner p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .contact-banner {
        min-height: 350px;
        padding: 4rem 0;
    }
    
    .contact-banner h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .contact-banner p {
        font-size: 1rem;
    }
    
    .banner-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .banner-cta .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* Contact Form Styling */
.contact-form-container {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.contact-form h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.contact-form > p {
    color: var(--neutral-600);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* Form Layout */
.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    flex: 1;
    margin-bottom: 1.25rem;
    position: relative;
}

/* Form Labels */
.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--neutral-800);
    font-size: 0.95rem;
}

/* Form Inputs - Black Background */
.form-control {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #000000;
    color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Placeholder Text */
.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* Focus State */
.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    background-color: #111111;
    box-shadow: 0 0 0 3px rgba(253, 177, 3, 0.25);
}

/* Textarea Specific */
textarea.form-control {
    min-height: 140px;
    resize: vertical;
    line-height: 1.6;
}

/* Select Dropdown */
select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 2.5rem;
}

/* Form Buttons */
.btn-submit {
    background: var(--secondary-color);
    color: #000;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    background: #e6a500;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(253, 177, 3, 0.3);
}

/* Form Validation */
.form-group.error .form-control {
    border-color: #ff4444;
    background-color: #1a0000;
}

.error-message {
    color: #ff6b6b;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

/* Success Message */
.form-success {
    display: none;
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .contact-form h2 {
        font-size: 1.5rem;
    }
}

/* Hover Effects */
.form-control:not(textarea):hover {
    background-color: #111111;
    border-color: rgba(255, 255, 255, 0.1);
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-group {
    animation: fadeIn 0.4s ease-out forwards;
    opacity: 0;
}

/* Staggered Animation */
.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }
.form-group:nth-child(5) { animation-delay: 0.5s; }
.form-group:nth-child(6) { animation-delay: 0.6s; }
