/* ===== GENERAL ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #dbe9f8;
    /* color: #e2e8f0; */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

.contact-container {
    display: flex;
    flex-direction: row;
    gap: 40px;
    background:#bad9f3;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeIn 1s ease;
}

.contact-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}

/* IMAGE */
.contact-image {
    flex: 1;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-right: 2px solid #334155;
}

.contact-container:hover .contact-image img {
    transform: scale(1.05);
}

/* FORM */
.contact-form {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form h1 {
    color: #000000;
    margin-bottom: 20px;
    font-size: 2.2em;
    text-align: center;
}

.contact-form label {
    font-size: 1.1em;
    color: #000000;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: #beeaeb;
    border: none;
    border-radius: 8px;
    color: #000000;
    font-size: 1em;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border: 2px solid #a3dbf4;
    background-color: #f9f9f9;
}

.contact-form select {
    cursor: pointer;
}

/* BUTTON */
.send-button {
    padding: 12px 25px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #1E88E5, #1565C0);
    color: #000000;
    font-weight: bold;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.send-button:hover {
    background:#3f7cd2;
    transform: scale(1.05);
}
/* CONTACT INFO SECTION */

.contact-info-section{
margin-top:60px;
padding:40px 20px;
text-align:center;
}

.contact-info-title{
font-size:2em;
margin-bottom:40px;
color:#1f2937;
}

.contact-info-container{
display:flex;
flex-wrap:wrap;
gap:30px;
justify-content:center;
}

.info-card{
background:#bad9f3;
padding:25px;
width:220px;
border-radius:12px;
box-shadow:0 6px 15px rgba(0,0,0,0.2);
transition:all 0.3s ease;
}

.info-card:hover{
transform:translateY(-8px);
background:#a3dbf4;
}

.info-card i{
font-size:28px;
margin-bottom:10px;
color:#1E88E5;
}

.info-card h3{
margin-bottom:8px;
}

.info-card p{
font-size:14px;
}
.emergency-section{
background:#cff5f8;
padding:40px;
margin-top:40px;
text-align:center;
border-radius:12px;
}

.emergency-section h2{
color:#c62828;
margin-bottom:15px;
}

.emergency-contact{
margin-top:15px;
font-weight:bold;
}
.social-section{
text-align:center;
margin-top:50px;
}

.social-icons a{
font-size:28px;
margin:10px;
color:#1E88E5;
transition:0.3s;
}

.social-icons a:hover{
color:#0d47a1;
transform:scale(1.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        text-align: center;
    }

    .contact-image img {
        border-right: none;
        border-bottom: 2px solid #334155;
    }

    .contact-form {
        padding: 20px;
    }
}

@media (max-width: 500px) {
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 0.95em;
        padding: 10px;
    }

    .send-button {
        width: 100%;
        padding: 10px 0;
    }
}

/* ===== ANIMATION ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}