/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #010080;
    --primary-yellow: #c0a533;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Contact Hero Section */
.contact-hero {
    background-color: var(--bg-light);
    padding: 80px 0 40px 0;
}

.section-title-wrapper {
    margin-bottom: 3rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    position: relative;
    display: block;
    padding: 0 20px;
    width: fit-content;
    text-align: center;
}

.title-underline {
    width: 80px;
    height: 4px;
    background-color: var(--primary-yellow);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
    align-self: center;
}

.title-underline::before,
.title-underline::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    background-color: var(--primary-yellow);
    border-radius: 50%;
    transform: translateY(-50%);
}

.title-underline::before {
    left: -20px;
}

.title-underline::after {
    right: -20px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    background-color: var(--white);
    padding: 60px 0;
}

.contact-form-wrapper,
.contact-info-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.form-title,
.info-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-yellow);
}

/* Form Styles */
.contact-form {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 8px;
    display: block;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 0.2rem rgba(192, 165, 51, 0.25);
}

.form-control::placeholder {
    color: #999;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

select.form-control {
    cursor: pointer;
}

.btn-submit {
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: var(--primary-yellow);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(192, 165, 51, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Contact Info Styles */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.contact-info-item:last-of-type {
    border-bottom: none;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.info-content p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.info-content a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--primary-yellow);
}

/* Social Links */
.social-links {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.social-links h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-yellow);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(192, 165, 51, 0.3);
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.map-wrapper {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        padding: 0 15px;
    }
    
    .title-underline {
        width: 60px;
        height: 3px;
    }
    
    .title-underline::before,
    .title-underline::after {
        width: 6px;
        height: 6px;
    }
    
    .title-underline::before {
        left: -15px;
    }
    
    .title-underline::after {
        right: -15px;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 25px 20px;
    }
    
    .form-title,
    .info-title {
        font-size: 1.5rem;
    }
    
    .contact-info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .info-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .map-wrapper {
        height: 300px;
    }
}
