/* Hero Section */
.hero-contact {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
        url('../images/contacthero.jpeg') no-repeat center center/cover;
    color: white;
    padding: 100px 20px;
    text-align: center;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-contact .hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero-contact h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero-contact p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn-hero {
    padding: 14px 28px;
    background-color: #007bff;
    color: white;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-hero:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .hero-contact h1 {
        font-size: 2rem;
    }

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


/* Contact Us Page Styles */
.contact-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-box,
.contact-form-box {
    flex: 1 1 400px;
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.contact-info-box h3 {
    font-size: 1.5rem;
    color: #222;
    margin-bottom: 20px;
}

.contact-info-box p {
    font-size: 1rem;
    margin-bottom: 12px;
    color: #444;
}

.contact-info-box i {
    color: #007bff;
    margin-right: 8px;
}

.contact-form-box label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #222;
}

.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
}

.btn-primary {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
}

@media screen and (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        gap: 20px;
    }
}


/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    padding: 15px;
    font-size: 20px;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}