footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--padding-small) var(--padding-large);
}

header .cta {
    display: none;
}

input::placeholder,
textarea::placeholder {
    color: #ddd;
    /* Change this to your desired color */
    opacity: 0.5;
    /* Optional: Set opacity to ensure the placeholder is fully visible */
}

/* Optional: Style for input fields */
input,
textarea {
    border: 1px solid #ccc;
    /* Border color */
    padding: 10px;
    /* Padding for better spacing */
    border-radius: 4px;
    /* Rounded corners */
    font-size: 16px;
    /* Font size */
}

/* Hero Section */
#hero {
    background: url('../images/IMG-20240515-WA0016.jpg') center center/cover no-repeat;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

#hero .hero-text h1 {
    color: white;
    font-size: 3em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

#hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

/* Contact Section */
#contact-us {
    background-color: var(--background-color);
    color: var(--text-color);
    padding: 60px 20px;
}

.section-header h2 {
    font-size: 2em;
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-align: center;
}

.section-header p {
    font-size: 1.2em;
    line-height: 1.5;
    margin-bottom: 40px;
    text-align: center;
}

/* Form Container */
.form-container {
    max-width: 700px;
    background-color: var(--tertiary-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    display: grid;
    gap: 20px;
}



/* Floating Labels */
.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
    transition: all 0.2s;
}

.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    left: 10px;
    font-size: 0.8em;
    color: var(--hover-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    background-color: transparent;
    color: var(--text-color);
    font-size: 1em;
    outline: none;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--hover-color);
}

/* Toast Messages */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 0.9em;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 1000;
}

.toast.toast-success {
    background-color: #4caf50;
    /* Success green */
}

.toast.toast-error {
    background-color: #f44336;
    /* Error red */
}

/* Accessibility */
input:focus,
textarea:focus {
    outline: 2px solid var(--hover-color);
    outline-offset: 2px;
}


/* Submit Button */
.form-container button.cta {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    font-size: 1.1em;
}

.form-container button.cta:hover {
    background-color: var(--hover-color);
}

/* Map Section */
.map-container {
    margin-top: var(--padding-medium);
    height: 400px;
    padding: var(--padding-large) 0;
    text-align: center;

}

#map {
    width: 100%;
    height: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    #hero {
        height: 40vh;
    }

    .form-container {
        padding: 20px;
    }

    .hero-text h1 {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.5em;
    }

    .form-container {
        padding: 15px;
        max-width: 100%;
    }
}