/* CONTACT PAGE STYLES */
:root {
    --navy: #0A1F44;
    --royal: #1E5BFF;
    --gold: #FF8A00;
    --bg-light: #F5F7FB;
    --text-dark: #1A1A1A;
    --text-gray: #6B7280;
    --white: #FFFFFF;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
    padding-top: 100px; /* Offset fixed navbar height */
}

/* NAVBAR ADJUSTMENTS */
.active-link {
    color: var(--gold) !important;
    font-weight: 700 !important;
}

/* HERO SECTION */
.contact-hero {
    height: 60vh;
    background: url('../images/University.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 0;
    padding-top: 20px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(10, 31, 68, 0.9), rgba(10, 31, 68, 0.7));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 20px;
}

.hero-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 20px;
}

/* MAIN CONTACT SECTION */
.contact-main {
    padding: 100px 5%;
    margin-top: -100px; /* Float over hero */
    position: relative;
    z-index: 20;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

/* INFO PANEL */
.contact-info-panel {
    background: var(--navy);
    color: white;
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(10, 31, 68, 0.3);
}

.info-card {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(30, 91, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--royal);
    border: 1px solid rgba(30, 91, 255, 0.3);
}

.info-text h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--gold);
}

.info-text p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.social-connect {
    margin-top: 60px;
}

.social-connect h4 {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.5);
}

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

.social-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-btn:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-5px);
    border-color: var(--gold);
}

/* FORM PANEL */
.contact-form-panel {
    background: white;
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.form-header {
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
}

.form-header p {
    color: var(--text-gray);
    margin-top: 10px;
}

.input-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.input-field {
    margin-bottom: 25px;
}

.input-field label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.input-field input, 
.input-field select, 
.input-field textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1.5px solid #E5E7EB;
    border-radius: 15px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
    background: #F9FAFB;
}

.input-field input:focus, 
.input-field textarea:focus {
    outline: none;
    border-color: var(--royal);
    background: white;
    box-shadow: 0 0 0 4px rgba(30, 91, 255, 0.1);
}

.submit-btn-premium {
    width: 100%;
    background: var(--navy);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 15px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s;
}

.submit-btn-premium:hover {
    background: var(--royal);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(30, 91, 255, 0.3);
}

/* MAP SECTION */
.map-section {
    padding: 80px 5% 120px;
    background: linear-gradient(180deg, #F8FBFF 0%, #FFFFFF 100%);
}

.map-intro {
    max-width: 860px;
    margin: 0 auto 40px;
    text-align: center;
}

.map-intro h2 {
    font-size: 2.8rem;
    color: var(--navy);
    margin-bottom: 15px;
}

.map-intro p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.8;
}

.map-container {
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

.map-placeholder {
    min-height: 520px;
    background: #E5E7EB url('https://images.unsplash.com/photo-1526778548025-fa2f459cd5c1?q=80&w=2066') no-repeat center center/cover;
    background-size: cover;
    background-position: center;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(10, 31, 68, 0.12);
    border: 1px solid rgba(15, 52, 94, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: visible;
    opacity: 1;
}

.map-overlay {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 30px 45px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.map-overlay h3 {
    margin: 0 0 10px;
    font-size: 2rem;
    color: var(--navy);
}

.map-overlay p {
    margin: 0;
    color: var(--text-gray);
    font-size: 1rem;
}

.map-pin {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 15px;
    position: relative;
}

.pin-pulse {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 20px; height: 20px;
    background: var(--gold);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(4); opacity: 0; }
}

/* FAQ MINI */
.faq-mini {
    padding: 80px 5%;
    background: #FFFFFF;
    margin-top: 30px;
    position: relative;
    z-index: 10;
}

.faq-container {
    max-width: 1300px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 70px;
    color: var(--navy);
}

.section-title span {
    color: var(--royal);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 30px;
    border: 1.5px solid transparent;
    transition: 0.3s;
}

.faq-item:hover {
    border-color: var(--royal);
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(30, 91, 255, 0.1);
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--navy);
    font-weight: 700;
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}


/* RESPONSIVE */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    .contact-hero { height: 50vh; }
    .faq-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 2.5rem; }
    .map-section {
        padding: 50px 5% 30px;
    }
    .map-placeholder {
        min-height: 280px;
        border-radius: 25px;
    }
    .map-overlay {
        padding: 25px 35px;
        border-radius: 20px;
    }
    .map-overlay h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .map-section {
        padding: 50px 5% 70px;
    }
    
    .map-intro {
        margin-bottom: 30px;
    }
    
    .map-intro h2 {
        font-size: 2.2rem;
    }
    
    .map-intro p {
        font-size: 0.95rem;
    }
    
    .map-placeholder {
        min-height: 320px;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(10, 31, 68, 0.1);
    }
    
    .map-overlay {
        padding: 20px 30px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.98);
    }
    
    .map-overlay h3 {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }
    
    .map-overlay p {
        font-size: 0.9rem;
    }
    
    .map-pin {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }
}

@media (max-width: 600px) {
    .input-group { grid-template-columns: 1fr; }
    .contact-info-panel, .contact-form-panel { padding: 40px 25px; }
    .form-header h2 { font-size: 2rem; }
    .section-title { font-size: 2rem; }
    .faq-mini {
        padding: 40px 5%;
        margin-top: 20px;
    }
    
    .map-section {
        padding: 40px 5% 10px;
    }
    
    .map-intro {
        margin-bottom: 25px;
    }
    
    .map-intro h2 { 
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .map-intro p {
        font-size: 0.9rem;
    }
    
    .map-container {
        width: 100%;
        overflow: hidden;
    }
    
    .map-placeholder {
        min-height: 200px;
        border-radius: 16px;
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .map-overlay {
        padding: 18px 25px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.99);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        max-width: 85%;
    }
    
    .map-overlay h3 {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }
    
    .map-overlay p {
        font-size: 0.85rem;
    }
    
    .map-pin {
        font-size: 2rem;
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .map-section {
        padding: 30px 4% 50px;
    }
    
    .map-intro h2 {
        font-size: 1.5rem;
    }
    
    .map-intro p {
        font-size: 0.85rem;
    }
    
    .map-placeholder {
        min-height: 250px;
        border-radius: 12px;
    }
    
    .map-overlay {
        padding: 16px 20px;
        border-radius: 12px;
        max-width: 90%;
    }
    
    .map-overlay h3 {
        font-size: 1.1rem;
    }
    
    .map-overlay p {
        font-size: 0.8rem;
    }
    
    .map-pin {
        font-size: 1.8rem;
    }
}

