:root {
    --primary-color: #ff6a02;
    --secondary-color: #1a0936;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #fff;
}

/* .container {
    max-width: 85%;
    margin: 0 auto;
}

.container-fluid {
    max-width: 100%;
    margin: 0 auto;
} */

/* Contact Page Styles */
/* Contact Container */
.contact-container {
    padding: 60px 0;
    background: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Map Section */
.map-section {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-section iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 15px;
}

/* Contact Info Cards */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: #f8f9fa;
    padding: 10px 25px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.contact-info-card:hover {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left-color: var(--primary-color);
    transform: translateX(5px);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    color: white;
    font-size: 1.5rem;
}

.contact-info-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0px;
}

.contact-info-content p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Contact Form Section */
.contact-form-section {
    background: white;
    padding: 60px 0;
}

.form-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.form-section-header h2 .highlight {
    color: var(--primary-color);
}

.form-section-header p {
    font-size: 1.1rem;
    color: #666;
}

/* 
.contact-form {
    max-width: 800px;
    margin: 0 auto;
} */

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid transparent;
    border-radius: 25px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: rgb(239, 248, 255);
}

.form-group input:hover,
.form-group textarea:hover {
    outline: none;
    border-color: var(--secondary-color);
    background: white;
    /* box-shadow: 0 0 0 3px rgba(255, 106, 2, 0.1); */
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: white;
    /* box-shadow: 0 0 0 3px rgba(255, 106, 2, 0.1); */
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.btn-submit {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 60px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 106, 2, 0.3);
}

.btn-submit:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 106, 2, 0.4);
}

/* Mission Critical Section */
.mission-section {
    background: rgb(239, 248, 255);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: grey;
}

.mission-text h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 30px;
}

.mission-text h2 .highlight {
    color: var(--primary-color);
}

.mission-text h2 .gray {
    color: #999;
}

.mission-text .btn-contact {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: .8rem;
    transition: all 0.1s ease;
    border: 1px solid rgb(224, 222, 222);
    padding: 5px 10px;
    border-radius: 25px;
}

.mission-text .btn-contact:hover {
    color: black;
    background-color: #e55a2b;
    border-color: transparent;
}

.mission-graphic {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mission-graphic img {
    width: 100%;
    max-width: 500px;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .mission-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mission-text h2 {
        font-size: 2rem;
    }

    .form-section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 95%;
        padding: 0 15px;
    }

    .contact-container {
        padding: 40px 0;
    }

    .contact-form-section {
        padding: 40px 0;
    }

    .mission-section {
        padding: 60px 0;
    }

    .mission-text h2 {
        font-size: 1.8rem;
    }

    .form-section-header h2 {
        font-size: 1.8rem;
    }

    .btn-submit {
        padding: 12px 40px;
    }
}

@media (max-width: 480px) {
    .contact-info-card {
        padding: 8px 20px;
    }

    .contact-info-icon {
        width: 40px;
        height: 40px;
    }

    .contact-info-icon i {
        font-size: 1.2rem;
    }

    .mission-text h2 {
        font-size: 1.5rem;
    }

    .form-section-header h2 {
        font-size: 1.5rem;
    }
}