/* Cleaned & merged contact page CSS */
:root {
    --primary: #1e3a8a;
    --primary-light: #3b82f6;
    --secondary: #f59e0b;
    --accent: #10b981;
    --dark: #1e293b;
    --light: #f8fafc;
    --gray: #64748b;
    --gray-light: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius: 12px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark);
    background-color: var(--light);
}

/* HERO */
.hero-section {
    position: relative;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(rgba(30, 58, 138, .8), rgba(30, 58, 138, .9)), url('images/campus-hero.jpg') center/cover no-repeat;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 44, 72, 0.65);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}
.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: .9;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}
.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* CONTACT */
.contact-section {
    width: 100%;
    padding: 40px 5%;
    background: #f9fafb;
}
.contact-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}


/* CONTACT INFO & FORM */
.contact-info {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow);
    width: 50%;
}

.contact-form {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow);
    width: 40%;
}

.info-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}
.info-list li {
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.info-list i { color: var(--primary-light); }
.info-list a:hover { text-decoration: underline; }

/* FORM FIELDS */
.form-container { padding-top: 1rem; }
.form-row { display: flex; gap: 1.5rem; }
.form-group { flex: 1; position: relative; margin-bottom: 1.5rem; }
.full-width { flex: 0 0 100%; }
.form-group label {
    font-weight: 600;
    margin-bottom: .5rem;
    display: block;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: .75rem 1rem .75rem 2.5rem;
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    transition: .3s;
}
.input-icon {
    position: absolute;
    left: .75rem;
    top: 2.5rem;
    color: var(--gray);
}
.form-actions { text-align: center; margin-top: 2rem; }
.btn-submit {
    background: linear-gradient(135deg,var(--primary),var(--primary-light));
    color: white;
    border-radius: 50px;
    padding: .75rem 2rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: .3s;
}
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.form-success {
    margin-top: 2rem;
    background: #d1fae5;
    color: #065f46;
    padding: 1.5rem;
    border-radius: var(--radius);
    display: none;
    align-items: center;
    gap: 1rem;
}

/* FAQ */
.faq-section {
    background: white;
    padding: 60px 10%;
    text-align: center;
}
.faq-container { max-width: 800px; margin: 0 auto; text-align: left; }
.faq-item {
    background: #f1f5f9;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: .3s;
    border-bottom: 1px solid var(--gray-light);
}
.faq-question {
    width: 100%;
    padding: 15px 20px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-align: left;
    display: flex;
    justify-content: space-between;
}
.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: .3s ease;
}
.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .contact-container { flex-direction: column; }
    .hero-content h1 { font-size: 2.2rem; }
}
