/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact Hero Section */
.contact-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    background: linear-gradient(135deg, #0a1a3a 0%, #1a3a6e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin: -9px 0 0 0;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 0 5%;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 800;
}

.contact-hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f4f4f0 0%, #e8e8e0 100%);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

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

/* Contact Information */
.contact-info h2 {
    font-size: 2rem;
    color: var(--text-heading);
    margin-bottom: 15px;
}

.contact-info > p {
    color: var(--text-body);
    margin-bottom: 30px;
}

.info-details {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px;
    background: #fff;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--nav-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon ion-icon {
    font-size: 1.5rem;
    color: #fff;
}

.info-text h4 {
    font-size: 1.1rem;
    color: var(--text-heading);
    margin-bottom: 5px;
}

.info-text p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.5;
}

.info-text a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-text a:hover {
    color: var(--nav-bg);
}

/* Social Connect */
.social-connect h4 {
    font-size: 1.2rem;
    color: var(--text-heading);
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nav-bg);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--nav-bg);
    color: #fff;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h2 {
    font-size: 1.8rem;
    color: var(--text-heading);
    margin-bottom: 10px;
}

.contact-form-wrapper > p {
    color: #666;
    margin-bottom: 25px;
}

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

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--nav-bg);
    box-shadow: 0 0 0 3px rgba(21, 58, 110, 0.1);
    background: #fff;
}

.submit-btn {
    width: 100%;
    background: var(--nav-bg);
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--text-heading);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Contact Map */
.contact-map {
    margin-top: 40px;
}

.contact-map h2 {
    font-size: 1.8rem;
    color: var(--text-heading);
    text-align: center;
    margin-bottom: 30px;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 400px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form-wrapper {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero-content p {
        font-size: 1rem;
    }
    
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .contact-form-wrapper h2 {
        font-size: 1.5rem;
    }
    
    .info-item {
        padding: 12px;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
    }
    
    .info-icon ion-icon {
        font-size: 1.2rem;
    }
    
    .map-wrapper iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        min-height: 280px;
    }
    
    .contact-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .contact-hero-content p {
        font-size: 0.9rem;
    }
    
    .contact-info h2 {
        font-size: 1.5rem;
    }
    
    .contact-form-wrapper {
        padding: 20px;
    }
    
    .info-text h4 {
        font-size: 1rem;
    }
    
    .info-text p {
        font-size: 0.85rem;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
}