/* contact.css - Modern Contact Page Styles */


/* Contact Page Base Styles */

.contact-main {
    padding-top: 120px;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}


/* Hero Section */

.contact-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.95) 0%, rgba(30, 64, 175, 0.85) 100%), url('contact-bg.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 2rem;
}

.contact-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, #f8f9fa, transparent);
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.contact-hero-content h1 {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.contact-hero-content .subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 400;
}

.contact-hero-content .subtitle div {
    background: rgba(212, 175, 55, 0.15);
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    margin-top: 1.5rem;
    font-weight: 600;
    color: #ffd700;
    border: 2px solid rgba(212, 175, 55, 0.3);
}


/* Contact Content Layout */

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}


/* Contact Information Side */

.contact-info {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, #0a2463, #1e40af);
}

.contact-info h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0a2463;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    border-radius: 2px;
}


/* Contact Methods */

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(10, 36, 99, 0.02);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-method:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.1), rgba(30, 64, 175, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a2463;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-method:hover .contact-icon {
    background: linear-gradient(135deg, #d4af37, #ffd700);
    color: white;
    transform: scale(1.1);
}

.contact-details h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0a2463;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.6;
}


/* Office Hours */

.office-hours {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(10, 36, 99, 0.1);
}

.office-hours h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0a2463;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.office-hours h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #d4af37;
    border-radius: 50%;
}

.office-hours p {
    color: #4a5568;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.office-hours p::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #d4af37;
}


/* Contact Form Side */

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, #d4af37, #ffd700);
}

.contact-form-container h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0a2463;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.contact-form-container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #0a2463, #1e40af);
    border-radius: 2px;
}


/* Form Styles */

#contactForm {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #0a2463;
    font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    background: white;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
    line-height: 1.6;
}


/* Submit Button */

.submit-button {
    background: linear-gradient(135deg, #0a2463, #1e40af);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:hover {
    background: linear-gradient(135deg, #d4af37, #ffd700);
    color: #0a2463;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.submit-button i {
    transition: transform 0.3s ease;
}

.submit-button:hover i {
    transform: translateX(5px);
}


/* Form Status Messages */

.form-status {
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-status.success {
    display: block;
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #065f46;
    border: 2px solid #10b981;
}

.form-status.error {
    display: block;
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: #991b1b;
    border: 2px solid #ef4444;
}


/* Map Section */

.map-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0a2463;
    margin-bottom: 3rem;
    position: relative;
}

.map-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    border-radius: 2px;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 5px solid white;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}


/* Social Connect */

.social-connect {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0a2463 0%, #1e40af 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.social-connect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><path fill="rgba(255,255,255,0.05)" d="M0,500 C150,650 350,650 500,500 C650,350 850,350 1000,500 L1000,1000 L0,1000 Z"/></svg>');
    background-size: cover;
}

.social-connect-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.social-connect h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.social-connect p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.social-icon:hover {
    background: white;
    color: #0a2463;
    transform: translateY(-5px) scale(1.1);
    border-color: #d4af37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}


/* Responsive Design */

@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 4rem 2rem;
    }
    .contact-info,
    .contact-form-container {
        padding: 2.5rem;
    }
    .social-icons {
        gap: 1.5rem;
    }
    .social-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 50vh;
        padding: 3rem 1.5rem;
    }
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
    .contact-hero-content .subtitle {
        font-size: 1.2rem;
    }
    .contact-method {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .contact-icon {
        margin-bottom: 1rem;
    }
    .map-container iframe {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .contact-info,
    .contact-form-container {
        padding: 2rem;
    }
    .contact-hero-content h1 {
        font-size: 2.2rem;
    }
    .contact-info h2,
    .contact-form-container h2,
    .map-section h2,
    .social-connect h2 {
        font-size: 1.8rem;
    }
    .submit-button {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
    }
    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}


/* Animation */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}