/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

/* Main Container */
#main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
#contact-hero {
    background-color: #ffcc00;
    text-align: center;
    padding: 60px 20px;
    border-bottom: 4px solid #ff9900;
}

#contact-hero h1 {
    font-size: 48px;
    color: #333;
    margin-bottom: 10px;
}

#contact-hero p {
    font-size: 20px;
    color: #555;
}

/* Contact Form Section */
#contact-form-section {
    background-color: #fff;
    padding: 50px 20px;
    border-radius: 8px;
    margin: 50px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#contact-form-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

#contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

button[type="submit"] {
    background-color: #333;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #555;
}

/* Contact Information Section */
#contact-info-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#contact-info-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.contact-info {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

/* WhatsApp & Phone Contact Section */
#whatsapp-phone-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#whatsapp-phone-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.contact-options {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.contact-option {
    max-width: 400px;
    margin: 20px;
    text-align: center;
}

.contact-option img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.contact-option p {
    font-size: 18px;
    margin: 15px 0;
}

.btn {
    background-color: #333;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.whatsapp-btn {
    background-color: #25d366;
}

.phone-btn {
    background-color: #ffcc00;
    color: #333;
}

.btn:hover {
    background-color: #555;
}

/* Footer Section */
#footer-container {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 30px 20px;
}

#footer-container p {
    margin-bottom: 10px;
    font-size: 16px;
}

#footer-container a {
    color: #ffcc00;
    text-decoration: none;
    margin: 0 10px;
}

#footer-container a:hover {
    color: #ff9900;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    border-radius: 50%;
    z-index: 1000;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.whatsapp-float img {
    width: 80%;
    height: 80%;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .contact-options {
        flex-direction: column;
        align-items: center;
    }

    .contact-option {
        margin-bottom: 30px;
    }

    #contact-form-section {
        padding: 30px 20px;
    }
}
