:root {
    --primary-orange: #f3811f;
    --bg-light-green: #e1f0d7;
    --text-dark: #001219;
    --border-soft: rgba(0, 0, 0, 0.1);
}

.contact-page {
    background-color: var(--bg-light-green);
    min-height: 100vh;
    padding: 60px 0;
    font-family: sans-serif;
    border-radius: 8px;
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
    margin-top: 5%;
    margin-bottom: 5%;
    margin-top: 60px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.contact-info {
    border-right: 1px solid #333;
    padding-right: 40px;
}

.info-block {
    margin-bottom: 40px;
}

.info-block h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: var(--text-dark);
}

.info-block p, .info-block a {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.5;
    text-decoration: none;
    display: block;
}

.email-link {
    color: #0056b3 !important;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.social-links a {
    font-size: 1.8rem;
    color: #0044ff;
}

.form-section {
    padding-top: 20px;
}

.input-group {
    margin-bottom: 30px;
}

.input-group label {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.required {
    color: #d00000;
}

.input-group input, 
.input-group textarea {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.4);
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    padding: 15px;
    font-size: 1.2rem;
    outline: none;
}

.submit-btn {
    background-color: var(--primary-orange);
    color: white;
    border: none;
    padding: 12px 45px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background-color: #d66d10;
}

.map-section {
    width: 100%;
    margin-top: 40px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        border-right: none;
        border-bottom: 1px solid #333;
        padding-right: 0;
        padding-bottom: 20px;
    }

    .social-links {
        justify-content: left;
    }
}

@media (max-width: 600px) {
    .info-block h3 { font-size: 1.5rem; }
    .info-block p { font-size: 1.1rem; }
    .input-group label { font-size: 1.1rem; }
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.contact-header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding: 50px 50px;
    background-color: #032475;
    text-align: center;
}

.contact-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    display: inline-block;
    top: 70%;
    transform: translateY(-70%);
    margin-left: 15px;
    margin-right: 10px;
}

.hero-logo {
    position: relative;
    display: inline-block;
    height: 100px;
}

@media screen and (max-width: 768px) {
    .about-hero {
        height: 200px;
    }

    .hero-logo {
        display: none;
    }

    .contact-header h1 {
        font-size: 2.5rem;
        position: relative;
        top: 50%;
        transform: translateY(-50%);
    }

    .contact-header {
        height: 200px;
    }

}

@media screen and (max-width: 480px) {
    .contact-header h1 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 400px) {
    .contact-header {
        padding: 30px 50px;
    }

    .contact-header h1 {
        font-size: 1.5rem;
    }

    .info-block p, .info-block a {
        font-size: 0.9rem;
    }

    .contact-header {
        height: 150px;
    }
}