﻿/* ===== Global Styles ===== */
body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

/* ===== Hero Section ===== */
.contact-hero {
    position: relative;
    height: 450px;
    background: linear-gradient(135deg, #6dd5ed, #2193b0);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

    .contact-hero h1 {
        font-size: 3em;
        margin-bottom: 15px;
        animation: fadeIn 1.5s ease forwards;
    }

    .contact-hero p {
        font-size: 1.2em;
        animation: slideIn 1.5s ease forwards;
    }

/* ===== Animations ===== */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-left {
    animation: slideInLeft 1s ease forwards;
}

.animate-right {
    animation: slideInRight 1s ease forwards;
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0f4f8, #e0f7fa);
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1200px;
    margin: auto;
}

/* Left Info */
.contact-info {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

    .contact-info h2 {
        font-size: 2em;
        margin-bottom: 20px;
    }

    .contact-info h3 {
        margin-top: 20px;
        font-size: 1.1em;
        color: #2193b0;
    }

/* Right Form */
.contact-form {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

    .contact-form h2 {
        font-size: 2em;
        margin-bottom: 20px;
    }

    .contact-form .form-group {
        margin-bottom: 20px;
    }

    .contact-form label {
        font-weight: 600;
        display: block;
        margin-bottom: 5px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        width: 100%;
        padding: 12px 15px;
        border-radius: 10px;
        border: 1px solid #ccc;
        font-size: 1em;
        transition: all 0.3s ease;
    }

        .contact-form input:focus,
        .contact-form select:focus,
        .contact-form textarea:focus {
            border-color: #2193b0;
            box-shadow: 0 0 10px rgba(33,147,176,0.3);
            outline: none;
        }

/* Submit Button */
.btn-submit {
    display: inline-block;
    background: linear-gradient(135deg, #6dd5ed, #2193b0);
    color: #fff;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1em;
}

    .btn-submit:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(33,147,176,0.4);
    }

/* Success Message */
.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 12px 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid #c3e6cb;
}

/* ===== Google Map ===== */
.contact-map {
    margin-top: 50px;
}

.map-container iframe {
    border-radius: 20px;
    width: 100%;
    height: 450px;
    border: 0;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
    }
}
