* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Top Section with Cards */
/* .contact .top-section,  */
.contact .banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23001e3c"/><path d="M0 0h100v100H0z" fill="%23001e3c"/><path d="M10 10h80v80H10z" fill="%23002747"/><text x="50" y="50" font-size="5" fill="%23ffffff">01001</text></svg>');
padding: 5rem 1rem;
background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6)),
    url(/images/new/about_horizontal.jpg);
background-position: center;
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
color: white;
text-align: center;
font-size: 60px;
font-weight: 600;
}

.contact .top-section{
    padding: 5rem 1rem;
}

.contact .cards-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact .card {
    background: #fcfff9;
    padding: 2rem;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0px 0px 4px 0px #b09d38;
}

.contact .card .icon {
    background: #ff9800;
    background: #16402c;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    margin-top: -55px;
}

.contact .card .icon svg {
    width: 25px;
    height: 25px;
    fill: white;
}

.contact .card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact .card p {
    color: #666;
    line-height: 1.6;
}
/********************************* Form Section with form **************** */

.contact .form-section{
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23001e3c"/><path d="M0 0h100v100H0z" fill="%23001e3c"/><path d="M10 10h80v80H10z" fill="%23002747"/><text x="50" y="50" font-size="5" fill="%23ffffff">01001</text></svg>');
    padding: 5rem 2rem;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6)),
    url(/images/new/contact.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    text-align: center;
    font-size: 60px;
    font-weight: 600;
}


.contact .form-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact .form-section p {
    color: #f8e481;
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact form {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.contact form .form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.contact form input,
.contact form textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    background: white;
    font-size: 16px;
    color: #333;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.contact form input::placeholder,
.contact form textarea::placeholder {
    color: #999;
}

.contact form textarea {
    height: 150px;
    resize: vertical;
    margin-bottom: 20px;
}

.contact form .form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.contact form .recaptcha {
    flex: 1;
    text-align: left;
}

.contact form button {
    padding: 15px 40px;
    background: #e4c548;
    color: #16402c;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 600;
}

.contact form button:hover {
    background: #d4b63d;
    /* background: #16402c; */
    /* color: #e4c548; */
}

/******************************* Bottom Section with Content and Map *******************************/
.contact .bottom-section {
    padding: 2rem;
    background: #f5f5f5;
}

.contact .main-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact .content-section {
    padding: 2rem;
}

.contact .header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.contact .header p {
    color: #666;
    line-height: 1.6;
}

.contact .map {
    height: 100%;
    min-height: 400px;
}

.contact .map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 800px) {
    .contact .cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .contact .main-content {
        grid-template-columns: 1fr;
    }

    .contact .card {
        width: 80%;
        margin: auto;
    }
}

@media (max-width: 768px) {
    .contact .top-section, .contact .bottom-section {
        padding: 3rem 1rem;
    }

    .contact .content-section {
        padding: 1rem;
    }

    .contact .header h1 {
        font-size: 2rem;
    }

    .contact .map {
        min-height: 300px;
    }
}

@media (max-width: 550px){

    .contact .form-section {
        padding: 5rem 1rem;
    }

    .contact form .form-row {
         grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 440px) {
    .contact .card {
        width: 90%;
    }
}
