
/* Contact Us Section Starting */
.contact-us-section {
    padding: 60px 20px;
    background-color: #000;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    margin-top: 130px;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.contact-us-section.fadeInUp {
    opacity: 1; 
    transform: translateY(0); 
}

.contact-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin: 0 auto;
    max-width: 1200px;
}

.contact-form-container {
    flex: 1;
    background: #222; 
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    max-width: 600px; 
    position: relative;
    overflow: hidden;
}

.contact-form-container h2 {
    font-size: 36px;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 20px;
    color: #ffcc00;
    animation: fadeIn 1s ease-out;
}

.contact-form-container p {
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 30px;
    color: #ccc; 
}

.contact-form label {
    display: block;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    margin: 10px 0 5px;
    color: #fff;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: 1px solid #444;
    border-radius: 8px;
    margin-bottom: 15px;
    background: #333; 
    color: #fff; 
    resize: none; 
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    background-color: #444;
    border-color: #ffcc00; 
    outline: none;
}

.contact-form button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    background-color: #ffcc00; 
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.contact-form button:hover {
    background-color: #e6b800; 
    transform: scale(1.05); 
}
.contact-image-container {
    flex: 1;
    max-width: 500px; 
}

.contact-image-container img {
    width: 100%; 
    height: 400px; 
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1s ease-out;
}

@media only screen and (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        gap: 20px;
    }

    .contact-image-container img {
        height: 300px; 
    }
}

@media only screen and (max-width: 480px) {
    .contact-form-container h2 {
        font-size: 28px;
    }

    .contact-form-container p {
        font-size: 16px;
    }

    .contact-form button {
        font-size: 16px;
    }

    .contact-image-container img {
        height: 250px; 
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Contact Alternatives Section Starting */
.contact-alternatives-section {
    padding: 60px 20px;
    background: #000000; 
    color: #fff;
    text-align: center;
}

.contact-alternatives-section h2 {
    font-size: 36px;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 20px;
    color: #ffcc00; 
    animation: fadeIn 1s ease-out;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-item {
    background: #333; 
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.contact-info-item h3 {
    font-size: 28px;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 15px;
    color: #ffcc00; 
}

.contact-info-item p {
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    margin: 10px 0;
}

.contact-info-item a {
    color: #ffcc00; 
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: #e6b800; 
}

.map-container {
    margin-top: 30px;
}

.map-container h3 {
    font-size: 28px;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 15px;
    color: #ffcc00; 
}

.map-container iframe {
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 450px; 
}

@media only screen and (max-width: 768px) {
    .contact-details {
        gap: 10px;
    }

    .map-container iframe {
        height: 300px; 
    }
}

@media only screen and (max-width: 480px) {
    .contact-alternatives-section h2 {
        font-size: 28px;
    }

    .contact-info-item h3 {
        font-size: 24px;
    }

    .contact-info-item p {
        font-size: 14px;
    }

    .map-container iframe {
        height: 250px; 
    }
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Alternatives Section Ending */
