/* ============================================ */
/* PONTCHARTRAIN AVIATION UNIVERSITY - MAIN CSS */
/* Complete CSS - All Pages Including Modal Form */
/* ============================================ */

/* ============================================ */
/* CSS VARIABLES / ROOT COLORS */
/* ============================================ */
:root {
    --navy: #0A1C3A;
    --gold: #D4AF37;
    --light-gold: #F5E6B8;
    --sky-blue: #4A90E2;
    --gulf-blue: #0077BE;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --gray: #6C757D;
    --dark-gray: #343A40;
    --light-gray: #E9ECEF;
    --success: #28A745;
    --danger: #DC3545;
    --warning: #FFC107;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* ============================================ */
/* GLOBAL RESET & BASE STYLES */
/* ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: #1A1A1A;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================ */
/* HEADER & NAVIGATION - WITH EXTRA LARGE LOGO */
/* ============================================ */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.main-header.scrolled {
    background: var(--white);
    box-shadow: var(--shadow);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 120px;
    width: auto;
    max-height: 120px;
    object-fit: contain;
    transition: var(--transition);
}

.main-header.scrolled .logo-img {
    height: 90px;
    max-height: 90px;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 500;
    transition: var(--transition);
    font-size: 1rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-links .btn-primary {
    padding: 10px 28px;
    font-size: 0.95rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--navy);
    cursor: pointer;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--white);
    padding: 20px;
    border-top: 1px solid var(--light-gray);
}

.mobile-nav a {
    padding: 12px 0;
    text-decoration: none;
    color: var(--navy);
    border-bottom: 1px solid var(--light-gray);
}

.mobile-nav a:last-child {
    border-bottom: none;
}

/* ============================================ */
/* FULL SCREEN HERO - COVERS ENTIRE SCREEN NO WHITE SPACE */
/* ============================================ */
.hero-fullscreen {
    position: relative;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--navy) 0%, #001F3F 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-fullscreen-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-fullscreen-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* iOS Safari fix for 100vh */
@supports (-webkit-touch-callout: none) {
    .hero-fullscreen {
        height: -webkit-fill-available;
    }
}

.hero-overlay-buttons {
    position: absolute;
    bottom: 15%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 15;
}

.hero-buttons-container {
    display: flex;
    gap: 35px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
}

.hero-btn i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.hero-btn:hover i {
    transform: translateX(5px);
}

.hero-btn:hover {
    transform: translateY(-3px);
}

.hero-btn-explore {
    background: rgba(212, 175, 55, 0.95);
    color: #0A1C3A;
    border: 2px solid var(--gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.hero-btn-explore:hover {
    background: var(--gold);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.hero-btn-apply {
    background: rgba(10, 28, 58, 0.9);
    color: var(--white);
    border: 2px solid var(--gold);
    backdrop-filter: blur(10px);
}

.hero-btn-apply:hover {
    background: var(--navy);
    border-color: var(--gold);
    box-shadow: 0 8px 25px rgba(10, 28, 58, 0.4);
}

.hero-fullscreen-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    pointer-events: none;
    z-index: 5;
}

/* ============================================ */
/* STORY SECTIONS - SMALL BEAUTIFUL IMAGES WITH TEXT */
/* ============================================ */
.story-section {
    padding: 70px 0;
    background: var(--white);
}

.story-section.alt-bg {
    background: var(--off-white);
}

.story-card {
    display: flex;
    align-items: center;
    gap: 50px;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
}

.story-section.alt-bg .story-card {
    background: transparent;
}

.story-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    max-width: 45%;
}

.story-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.story-image:hover .story-img {
    transform: scale(1.02);
}

.story-content {
    flex: 1;
    padding: 20px;
}

.story-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.story-content h2 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 20px;
    line-height: 1.3;
}

.story-content p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 25px;
}

.story-quote {
    background: var(--off-white);
    padding: 20px 25px;
    border-radius: 16px;
    margin: 25px 0;
    border-left: 4px solid var(--gold);
}

.story-quote i {
    font-size: 1.5rem;
    color: var(--gold);
    opacity: 0.6;
    margin-bottom: 10px;
    display: block;
}

.story-quote p {
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.story-quote cite {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
    font-style: normal;
}

.story-card.reverse {
    flex-direction: row-reverse;
}

/* ============================================ */
/* STATS SECTION */
/* ============================================ */
.stats {
    background: var(--off-white);
    padding: 60px 0;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-card {
    padding: 20px;
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--gulf-blue);
    margin-bottom: 16px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
}

.stat-label {
    color: var(--gray);
    font-weight: 500;
}

/* ============================================ */
/* BUTTONS */
/* ============================================ */
.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    border: 2px solid var(--gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--navy);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-outline.small {
    padding: 8px 20px;
    font-size: 0.85rem;
}

/* ============================================ */
/* FEATURED PROGRAMS SECTION */
/* ============================================ */
.featured-programs {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 16px;
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.program-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 20px;
    padding: 32px;
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.program-icon i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.program-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--navy);
}

.program-card p {
    color: var(--gray);
    font-size: 0.9rem;
}

.program-card .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gulf-blue);
    margin: 12px 0;
}

.program-card ul {
    list-style: none;
    margin: 20px 0;
}

.program-card ul li {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.program-card ul li i {
    color: var(--success);
    font-size: 0.8rem;
    margin-right: 8px;
}

/* ============================================ */
/* SOLID OPTIONS SECTION */
/* ============================================ */
.solid-options {
    padding: 80px 0;
    background: var(--white);
}

.solid-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.solid-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 20px;
    padding: 32px;
    transition: var(--transition);
    position: relative;
}

.solid-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.solid-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.solid-card h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--navy);
}

.solid-cost,
.solid-time,
.solid-jobs,
.solid-pay,
.solid-path {
    margin-bottom: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.solid-cost {
    color: var(--gulf-blue);
    font-weight: 600;
}

.solid-pay {
    color: var(--success);
    font-weight: 600;
}

.solid-why {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--light-gray);
    font-size: 0.85rem;
    color: var(--gray);
}

.best-roi {
    border-top: 4px solid var(--gold);
}

.best-ceiling {
    border-top: 4px solid var(--success);
}

.hardest {
    border-top: 4px solid var(--gulf-blue);
}

/* ============================================ */
/* REALITY CHECK SECTION */
/* ============================================ */
.reality-check {
    padding: 60px 0;
    background: var(--off-white);
}

.reality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 40px 0 30px;
}

.reality-good,
.reality-bad {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
}

.reality-good h3,
.reality-bad h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.reality-good h3 i {
    color: var(--success);
    margin-right: 10px;
}

.reality-bad h3 i {
    color: var(--danger);
    margin-right: 10px;
}

.reality-good ul,
.reality-bad ul {
    list-style: none;
}

.reality-good ul li,
.reality-bad ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--light-gray);
}

.reality-good ul li:last-child,
.reality-bad ul li:last-child {
    border-bottom: none;
}

.mjfoster-note {
    background: linear-gradient(135deg, var(--navy), var(--gulf-blue));
    color: var(--white);
    padding: 20px 24px;
    border-radius: 16px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.mjfoster-note i {
    font-size: 1.5rem;
    color: var(--gold);
}

.faa-medical-note {
    background: var(--light-gray);
    padding: 20px 24px;
    border-radius: 16px;
    margin: 20px 0;
    border-left: 4px solid var(--gold);
}

/* ============================================ */
/* WHY US SECTION */
/* ============================================ */
.why-us {
    background: linear-gradient(135deg, var(--navy) 0%, #001F3F 100%);
    color: var(--white);
    padding: 80px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.why-content h2 {
    font-size: 2rem;
    margin-bottom: 32px;
}

.advantage-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.advantage-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.advantage-item i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 4px;
}

.advantage-item strong {
    color: var(--gold);
}

.why-testimonial {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.why-testimonial i {
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.6;
    margin-bottom: 16px;
}

.why-testimonial p {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 20px;
}

.why-testimonial cite {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ============================================ */
/* CTA SECTION */
/* ============================================ */
.cta {
    background: var(--off-white);
    text-align: center;
    padding: 80px 0;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--navy);
}

.cta p {
    margin-bottom: 32px;
    color: var(--gray);
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================ */
/* FOOTER - WITH LARGER LOGO AND ACCREDITATION IMAGE */
/* ============================================ */
.main-footer {
    background: var(--navy);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 120px;
    width: auto;
    max-height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: var(--gold);
}

.footer-col p,
.footer-col a {
    color: #B0C4DE;
    text-decoration: none;
    line-height: 1.9;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-col i {
    margin-right: 10px;
    color: var(--gold);
    width: 22px;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    font-size: 1.4rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-accreditation-img {
    height: 80px;
    width: auto;
    max-height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #B0C4DE;
    margin: 5px 0;
}

/* ============================================ */
/* PAGE HEADER (inner pages) */
/* ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--gulf-blue) 100%);
    color: var(--white);
    padding: 140px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ============================================ */
/* APPLICATION MODAL - WITH LARGER LOGO & BIG BACKGROUND */
/* ============================================ */

.apply-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.apply-modal-content {
    position: relative;
    background: var(--white);
    margin: 30px auto;
    width: 90%;
    max-width: 750px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    animation: slideInUp 0.3s ease;
    overflow: hidden;
}

/* Modal Header with Larger Logo */
.apply-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--gulf-blue) 100%);
    position: relative;
    z-index: 2;
}

.apply-modal-header-logo {
    flex: 1;
    text-align: center;
}

.apply-modal-logo-img {
    height: 110px;
    width: auto;
    max-height: 110px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.apply-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--white);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.apply-modal-close:hover {
    background: var(--gold);
    color: var(--navy);
    transform: rotate(90deg);
}

/* Background image for the modal body - LARGER SIZE */
.apply-modal-body {
    padding: 30px;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 85%;
    background-attachment: local;
    min-height: 550px;
    background-color: var(--white);
}

/* Semi-transparent overlay - slightly lighter to show background more */
.apply-modal-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.88);
    z-index: 0;
    border-radius: 0 0 20px 20px;
}

/* Ensure all content is above the overlay */
.apply-modal-body .apply-steps-indicator,
.apply-modal-body .apply-multi-form,
.apply-modal-body .apply-form-message {
    position: relative;
    z-index: 1;
}

/* Step Indicators */
.apply-steps-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    background: transparent;
    padding: 10px 0;
}

.apply-steps-indicator::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--light-gray);
    z-index: 0;
}

.step-indicator {
    text-align: center;
    position: relative;
    z-index: 1;
    background: transparent;
    padding: 0 10px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    color: var(--gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 8px;
    transition: var(--transition);
}

.step-label {
    font-size: 0.75rem;
    color: var(--gray);
}

.step-indicator.active .step-number {
    background: var(--gold);
    color: var(--navy);
}

.step-indicator.active .step-label {
    color: var(--gold);
    font-weight: 600;
}

.step-indicator.completed .step-number {
    background: var(--success);
    color: white;
}

/* Form Steps */
.apply-form-step {
    display: none;
    animation: fadeIn 0.3s ease;
    position: relative;
    z-index: 1;
}

.apply-form-step.active {
    display: block;
}

.apply-form-step h3 {
    color: var(--navy);
    margin-bottom: 20px;
    font-size: 1.3rem;
    border-left: 4px solid var(--gold);
    padding-left: 15px;
}

/* Form Elements */
.apply-multi-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.apply-multi-form .form-group {
    margin-bottom: 15px;
}

.apply-multi-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: var(--navy);
    font-size: 0.85rem;
}

.apply-multi-form input,
.apply-multi-form select,
.apply-multi-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 10px;
    font-size: 0.9rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.95);
}

.apply-multi-form input:focus,
.apply-multi-form select:focus,
.apply-multi-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
    background: var(--white);
}

.apply-multi-form input.error,
.apply-multi-form select.error {
    border-color: var(--danger);
    background: rgba(220, 53, 69, 0.05);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input {
    width: auto;
}

/* Form Buttons */
.form-buttons {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 25px;
}

.btn-next, .btn-prev, .btn-submit {
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.btn-next {
    background: var(--gold);
    color: var(--navy);
    border: 2px solid var(--gold);
}

.btn-next:hover {
    background: transparent;
    color: var(--gold);
    transform: translateX(3px);
}

.btn-prev {
    background: var(--light-gray);
    color: var(--gray);
    border: 2px solid var(--light-gray);
}

.btn-prev:hover {
    background: transparent;
    border-color: var(--gray);
    transform: translateX(-3px);
}

.btn-submit {
    background: var(--gulf-blue);
    color: white;
    border: 2px solid var(--gulf-blue);
}

.btn-submit:hover {
    background: transparent;
    color: var(--gulf-blue);
    transform: scale(1.02);
}

/* Review Section */
.review-container {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 16px;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid var(--light-gray);
}

.review-intro {
    color: var(--gray);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.review-section {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--light-gray);
}

.review-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.review-section h4 {
    color: var(--navy);
    margin-bottom: 10px;
    font-size: 1rem;
}

.review-section p {
    color: var(--gray);
    font-size: 0.85rem;
    margin: 5px 0;
}

.review-section strong {
    color: var(--navy);
}

/* Terms Checkbox */
#agree_terms {
    width: auto;
    margin-right: 10px;
}

/* Form Messages */
.apply-form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    display: none;
    position: relative;
    z-index: 1;
}

.apply-form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.apply-form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.apply-form-message.loading {
    display: block;
    background: var(--off-white);
    color: var(--navy);
    text-align: center;
}

/* ============================================ */
/* ABOUT PAGE STYLES */
/* ============================================ */
.about-mission,
.about-history,
.about-campus {
    padding: 60px 0;
}

.about-story-card {
    display: flex;
    align-items: center;
    gap: 50px;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
}

.about-story-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    max-width: 45%;
}

.about-story-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.about-story-image:hover .about-story-img {
    transform: scale(1.02);
}

.about-story-content {
    flex: 1;
    padding: 20px;
}

.about-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.about-story-content h2 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-story-content p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-story-card.reverse {
    flex-direction: row-reverse;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.about-value-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.about-value-item i {
    font-size: 1.5rem;
    color: var(--gold);
}

.about-value-item h4 {
    color: var(--navy);
    margin-bottom: 5px;
}

.about-value-item p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

.about-history-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.about-stat {
    text-align: center;
}

.about-stat .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gulf-blue);
    display: block;
}

.about-stat .stat-label {
    font-size: 0.85rem;
    color: var(--gray);
}

.about-why-nola {
    padding: 60px 0;
    background: var(--off-white);
}

.about-nola-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.about-nola-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.about-nola-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.about-nola-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.about-nola-card h3 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.about-nola-card p {
    font-size: 0.85rem;
    color: var(--gray);
}

.about-core-values {
    padding: 60px 0;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.about-value-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.about-value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.about-value-card .value-icon i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.about-value-card h3 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 15px;
}

.about-value-card p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* LEADERSHIP SECTION - SMALL CIRCULAR GALLERY */
.about-leadership {
    padding: 60px 0;
    background: var(--off-white);
}

.about-leadership-gallery {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.about-leader-gallery-item {
    text-align: center;
    max-width: 280px;
    flex: 1;
    min-width: 240px;
}

.about-leader-gallery-image {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 4px solid var(--gold);
    transition: var(--transition);
}

.about-leader-gallery-image:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    border-color: var(--gulf-blue);
}

.about-leader-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-leader-gallery-image:hover .about-leader-gallery-img {
    transform: scale(1.1);
}

.about-leader-gallery-item h3 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-top: 15px;
    margin-bottom: 5px;
}

.about-leader-gallery-item .leader-title {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.about-leader-gallery-item .leader-bio {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.5;
    padding: 0 10px;
}

.about-partners {
    padding: 60px 0;
}

.about-partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.about-partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--off-white);
    padding: 15px;
    border-radius: 12px;
    transition: var(--transition);
}

.about-partner-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    background: var(--white);
}

.about-partner-item i {
    font-size: 1.2rem;
    color: var(--gold);
}

.about-partner-item span {
    font-weight: 500;
    color: var(--navy);
}

.about-campus-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.about-accreditation {
    padding: 60px 0;
    background: var(--off-white);
}

.about-accreditation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-accreditation-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--white);
    padding: 25px;
    border-radius: 20px;
}

.about-accreditation-item i {
    font-size: 2rem;
    color: var(--gold);
}

.about-accreditation-item h3 {
    color: var(--navy);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.about-accreditation-item p {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ============================================ */
/* PROGRAMS TABLES */
/* ============================================ */
.college-section {
    margin-bottom: 64px;
    padding: 40px 0 0;
}

.college-section h2 {
    font-size: 1.75rem;
    color: var(--navy);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--gold);
    display: inline-block;
}

.programs-table {
    overflow-x: auto;
    margin: 24px 0;
}

.programs-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.programs-table th,
.programs-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.programs-table th {
    background: var(--navy);
    color: var(--white);
    font-weight: 600;
}

.programs-table tr:hover {
    background: var(--off-white);
}

.flight-costs-note {
    background: var(--light-gray);
    padding: 16px;
    border-radius: 12px;
    margin-top: 20px;
    font-size: 0.9rem;
}

.free-tuition {
    color: var(--success);
    font-weight: 700;
}

.text-success {
    color: var(--success);
}

/* ============================================ */
/* FINANCIAL AID */
/* ============================================ */
.financial-aid {
    background: var(--off-white);
    padding: 40px;
    border-radius: 24px;
    margin-top: 40px;
}

.financial-aid h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 24px;
}

.aid-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.aid-card {
    background: var(--white);
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
}

.aid-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.aid-card h4 {
    margin-bottom: 12px;
    color: var(--navy);
}

.aid-card p {
    font-size: 0.9rem;
    color: var(--gray);
}

.aid-amount {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gulf-blue);
    margin: 15px 0;
}

/* ============================================ */
/* ADMISSIONS STEPS */
/* ============================================ */
.application-steps {
    padding: 60px 0;
    background: var(--off-white);
}

.steps-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gulf-blue), var(--gold));
    z-index: 1;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

.step-card {
    background: var(--white);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-circle {
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: -45px auto 20px;
    border: 4px solid var(--white);
    box-shadow: var(--shadow);
}

.step-content h3 {
    color: var(--navy);
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.step-content p {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.step-link {
    color: var(--gulf-blue);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.step-link:hover {
    color: var(--gold);
}

.requirements-section {
    padding: 60px 0;
}

.requirements-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.req-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.req-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.req-icon i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.req-card h3 {
    color: var(--navy);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.req-card ul {
    list-style: none;
    text-align: left;
}

.req-card ul li {
    padding: 8px 0;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.req-card ul li i {
    color: var(--success);
    font-size: 0.85rem;
    width: 20px;
}

.aid-summary {
    padding: 40px 0;
}

.aid-summary-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--gulf-blue) 100%);
    border-radius: 20px;
    padding: 35px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.aid-summary-icon i {
    font-size: 3rem;
    color: var(--gold);
}

.aid-summary-content {
    flex: 1;
    color: var(--white);
}

.aid-summary-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.aid-summary-content p {
    opacity: 0.9;
    margin-bottom: 15px;
}

.aid-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.aid-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    background: rgba(255,255,255,0.15);
    padding: 5px 12px;
    border-radius: 20px;
}

.deadlines-section {
    padding: 60px 0;
    background: var(--off-white);
}

.deadlines-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.deadline-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

.deadline-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.deadline-season {
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.deadline-date {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
}

.rolling-note {
    text-align: center;
    margin-top: 30px;
    color: var(--gray);
    font-size: 0.9rem;
}

.rolling-note i {
    color: var(--gold);
    margin-right: 8px;
}

.international-section {
    padding: 60px 0;
}

.international-card {
    display: flex;
    gap: 40px;
    align-items: center;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.international-image {
    background: var(--off-white);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

.international-image i {
    font-size: 5rem;
    color: var(--gold);
}

.international-content {
    padding: 40px 40px 40px 0;
}

.international-content h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 15px;
}

.international-content p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.international-details {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    font-size: 0.9rem;
}

.detail-item i {
    color: var(--gold);
    font-size: 1rem;
}

.quick-tuition {
    padding: 60px 0;
    background: var(--off-white);
}

.tuition-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 30px;
}

.tuition-item {
    background: var(--white);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

.tuition-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.tuition-item h4 {
    color: var(--navy);
    margin-bottom: 15px;
    font-size: 1rem;
}

.tuition-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gulf-blue);
}

.tuition-price span {
    font-size: 0.9rem;
    font-weight: normal;
    color: var(--gray);
}

.tuition-original {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 8px;
}

.apply-cta {
    padding: 60px 0;
}

.apply-cta-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--gulf-blue) 100%);
    border-radius: 30px;
    padding: 50px;
    text-align: center;
    color: var(--white);
}

.apply-cta-card h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.apply-cta-card p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.apply-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 14px 40px;
    font-size: 1.1rem;
}

/* ============================================ */
/* CONTACT PAGE */
/* ============================================ */
.contact-info-section,
.contact-form-section,
.contact-directions-section {
    padding: 60px 0;
}

.contact-story-card {
    display: flex;
    align-items: center;
    gap: 50px;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
}

.contact-story-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    max-width: 45%;
}

.contact-story-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.contact-story-image:hover .contact-story-img {
    transform: scale(1.02);
}

.contact-story-content {
    flex: 1;
    padding: 20px;
}

.contact-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.contact-story-content h2 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 15px;
    line-height: 1.3;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 25px 0;
}

.contact-detail-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-detail-item i {
    font-size: 1.2rem;
    color: var(--gold);
    width: 25px;
    margin-top: 2px;
}

.contact-detail-item a {
    color: var(--gulf-blue);
    text-decoration: none;
}

.contact-detail-item a:hover {
    color: var(--gold);
}

.contact-social h4 {
    color: var(--navy);
    margin-bottom: 15px;
}

.contact-social .social-links {
    display: flex;
    gap: 15px;
    margin-top: 0;
}

.contact-social .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--off-white);
    color: var(--navy);
    border-radius: 50%;
    transition: var(--transition);
}

.contact-social .social-icon:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

.contact-form {
    margin-top: 20px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 0;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.contact-story-card.reverse {
    flex-direction: row-reverse;
}

.directions-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 25px 0;
}

.direction-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.direction-item i {
    font-size: 1.2rem;
    color: var(--gold);
    width: 25px;
    margin-top: 2px;
}

.contact-faq-section {
    padding: 40px 0;
}

.contact-faq-card {
    background: var(--off-white);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.contact-faq-card i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.contact-faq-card h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.contact-openhouse {
    padding: 60px 0;
    background: var(--off-white);
}

.openhouse-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--gulf-blue) 100%);
    border-radius: 24px;
    padding: 35px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.openhouse-icon i {
    font-size: 3rem;
    color: var(--gold);
}

.openhouse-content {
    flex: 1;
    color: var(--white);
}

.openhouse-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.openhouse-content p {
    opacity: 0.9;
    margin-bottom: 10px;
}

.openhouse-details {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.openhouse-details span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ============================================ */
/* FAQ PAGE */
/* ============================================ */
.faq-search {
    padding: 40px 0 20px;
    background: var(--off-white);
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.search-container i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}

.search-input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    font-size: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 50px;
    transition: var(--transition);
}

.search-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.faq-categories {
    padding: 20px 0;
    background: var(--off-white);
    border-bottom: 1px solid var(--light-gray);
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.category-tab {
    padding: 10px 20px;
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    color: var(--gray);
}

.category-tab:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.category-tab.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.faq-category-group {
    margin-bottom: 50px;
}

.category-title {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--gold);
    display: inline-block;
}

.faq-grid-custom {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--off-white);
}

.faq-question span {
    color: var(--navy);
    font-size: 1rem;
}

.faq-question i {
    color: var(--gold);
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
    color: var(--gray);
    line-height: 1.7;
    border-top: 1px solid var(--light-gray);
    background: var(--white);
}

.faq-item.active .faq-answer {
    display: block;
}

.questions-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--gulf-blue) 100%);
    color: var(--white);
    text-align: center;
    padding: 50px;
    border-radius: 30px;
}

.questions-card i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.questions-card h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.questions-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================ */
/* MEDICAL PAGE */
/* ============================================ */
.medical-alert {
    padding: 30px 0 0;
}

.alert-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #fff3e0;
    border-left: 4px solid var(--gold);
    padding: 20px 25px;
    border-radius: 12px;
}

.medical-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.medical-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.medical-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.medical-card.first-class {
    border-top: 4px solid var(--gold);
}

.medical-card.second-class {
    border-top: 4px solid var(--gulf-blue);
}

.medical-card.third-class {
    border-top: 4px solid var(--success);
}

.medical-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--navy);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.location-card {
    background: var(--white);
    border-radius: 16px;
    padding: 25px;
    transition: var(--transition);
}

.location-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.disqual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.disqual-card {
    background: var(--off-white);
    padding: 25px;
    border-radius: 16px;
    text-align: center;
}

.steps-grid-medical {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.step-item {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}

.alt-card {
    display: flex;
    gap: 30px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--gulf-blue) 100%);
    border-radius: 30px;
    padding: 40px;
    color: var(--white);
}

.alt-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 25px 0;
}

.alt-option {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 12px;
}

/* ============================================ */
/* OPEN HOUSE PAGE */
/* ============================================ */
.open-house-hero,
.virtual-tour {
    padding: 60px 0;
}

.virtual-tour {
    background: var(--off-white);
}

.open-house-story-card {
    display: flex;
    align-items: center;
    gap: 50px;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
}

.virtual-tour .open-house-story-card {
    background: transparent;
}

.open-house-story-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    max-width: 45%;
}

.open-house-story-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.open-house-story-image:hover .open-house-story-img {
    transform: scale(1.02);
}

.open-house-story-content {
    flex: 1;
    padding: 20px;
}

.open-house-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.open-house-story-content h2 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 15px;
}

.open-house-event-details {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.open-house-event-details span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    font-size: 0.9rem;
}

.open-house-event-details i {
    color: var(--gold);
}

.open-house-story-card.reverse {
    flex-direction: row-reverse;
}

.what-to-expect,
.schedule,
.rsvp-section,
.gallery-section,
.testimonials,
.directions-section {
    padding: 60px 0;
}

.schedule {
    background: var(--off-white);
}

.gallery-section {
    background: var(--off-white);
}

.testimonials {
    background: var(--white);
}

.directions-section {
    background: var(--off-white);
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.expect-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.expect-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.schedule-timeline {
    max-width: 800px;
    margin: 40px auto 0;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    background: var(--white);
    border-radius: 16px;
    padding: 20px;
    transition: var(--transition);
}

.timeline-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.timeline-time {
    min-width: 100px;
    font-weight: 700;
    color: var(--gold);
    font-size: 1.1rem;
}

.rsvp-card {
    display: flex;
    gap: 40px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--gulf-blue) 100%);
    border-radius: 30px;
    overflow: hidden;
}

.rsvp-info {
    flex: 1;
    padding: 40px;
    color: var(--white);
}

.rsvp-info i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.rsvp-info h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.rsvp-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.rsvp-form-container {
    flex: 1;
    background: var(--white);
    padding: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.virtual-card {
    display: flex;
    gap: 40px;
    align-items: center;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.virtual-content {
    flex: 1;
    padding: 40px;
    text-align: center;
}

.directions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.direction {
    text-align: center;
}

.direction i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 15px;
}

/* ============================================ */
/* RESPONSIVE DESIGN */
/* ============================================ */
@media (min-width: 1920px) {
    .hero-fullscreen-img {
        width: 100%;
        object-fit: cover;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 1024px) {
    .hero-fullscreen-img {
        width: 100%;
        min-height: 90vh;
        object-fit: cover;
    }
    
    .stat-grid,
    .program-grid,
    .solid-grid,
    .aid-grid,
    .about-nola-grid,
    .about-values-grid,
    .about-partners-grid,
    .about-accreditation-grid,
    .requirements-cards,
    .deadlines-grid,
    .tuition-grid,
    .medical-grid,
    .expect-grid,
    .gallery-grid,
    .testimonial-grid,
    .directions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .timeline-line {
        display: none;
    }
    
    .international-card {
        flex-direction: column;
        text-align: center;
    }
    
    .international-content {
        padding: 0 30px 30px;
    }
    
    .international-details {
        justify-content: center;
    }
    
    .aid-summary-card {
        flex-direction: column;
        text-align: center;
    }
    
    .aid-badges {
        justify-content: center;
    }
    
    .rsvp-card {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    /* Hero full screen fix for mobile */
    .hero-fullscreen {
        height: 100vh;
        min-height: -webkit-fill-available;
    }
    
    .hero-fullscreen-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }
    
    .hero-overlay-buttons {
        bottom: 10%;
    }
    
    .hero-buttons-container {
        gap: 15px;
        width: 90%;
    }
    
    .hero-btn {
        padding: 12px 28px;
        font-size: 0.95rem;
        min-width: 160px;
    }
    
    .hero-btn i {
        font-size: 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .logo-img {
        height: 80px;
        max-height: 80px;
    }
    
    .stat-grid,
    .program-grid,
    .solid-grid,
    .why-grid,
    .reality-grid,
    .aid-grid,
    .contact-grid,
    .requirements-cards,
    .deadlines-grid,
    .tuition-grid,
    .about-nola-grid,
    .about-values-grid,
    .about-partners-grid,
    .about-accreditation-grid,
    .medical-grid,
    .disqual-grid,
    .steps-grid-medical,
    .steps-grid,
    .expect-grid,
    .gallery-grid,
    .testimonial-grid,
    .directions-grid,
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 35px;
    }
    
    .footer-logo {
        height: 90px;
        max-height: 90px;
    }
    
    .footer-accreditation-img {
        height: 65px;
        max-height: 65px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .section-header h2,
    .cta h2,
    .page-header h1,
    .about-story-content h2,
    .contact-story-content h2,
    .open-house-story-content h2 {
        font-size: 1.6rem;
    }
    
    .story-card,
    .about-story-card,
    .contact-story-card,
    .open-house-story-card {
        flex-direction: column !important;
        gap: 25px;
    }
    
    .story-image,
    .about-story-image,
    .contact-story-image,
    .open-house-story-image {
        max-width: 100%;
        width: 100%;
    }
    
    .story-content,
    .about-story-content,
    .contact-story-content,
    .open-house-story-content {
        text-align: center;
        padding: 0 0 20px;
    }
    
    .about-values {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .about-history-stats {
        justify-content: center;
    }
    
    .step-card {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 20px;
    }
    
    .step-circle {
        margin: 0;
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .step-content {
        flex: 1;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .timeline-time {
        min-width: auto;
    }
    
    .contact-form .form-row,
    .apply-multi-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .openhouse-card {
        flex-direction: column;
        text-align: center;
    }
    
    .openhouse-details {
        justify-content: center;
    }
    
    .alt-card {
        flex-direction: column;
        text-align: center;
    }
    
    .alt-options {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .apply-cta-card {
        padding: 30px;
    }
    
    .apply-cta-card h2 {
        font-size: 1.5rem;
    }
    
    .questions-card {
        padding: 30px;
    }
    
    .questions-card h2 {
        font-size: 1.5rem;
    }
    
    .about-leadership-gallery {
        gap: 30px;
    }
    
    .about-leader-gallery-image {
        width: 150px;
        height: 150px;
    }
    
    .form-buttons {
        flex-direction: column;
    }
    
    .btn-next, .btn-prev, .btn-submit {
        width: 100%;
        text-align: center;
    }
    
    .apply-modal-content {
        width: 95%;
        margin: 20px auto;
    }
    
    .apply-modal-body {
        padding: 20px;
        background-size: 75%;
        min-height: 480px;
    }
    
    .apply-modal-logo-img {
        height: 80px;
        max-height: 80px;
    }
    
    .apply-steps-indicator {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .apply-steps-indicator::before {
        display: none;
    }
    
    .step-indicator {
        flex: 1;
        min-width: 70px;
    }
}

@media (max-width: 480px) {
    .hero-fullscreen {
        height: 100vh;
        min-height: -webkit-fill-available;
    }
    
    .hero-overlay-buttons {
        bottom: 8%;
    }
    
    .hero-buttons-container {
        flex-direction: column;
        gap: 12px;
        width: 85%;
    }
    
    .hero-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        min-width: unset;
    }
    
    .logo-img {
        height: 65px;
        max-height: 65px;
    }
    
    .main-header.scrolled .logo-img {
        height: 55px;
        max-height: 55px;
    }
    
    .program-card {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .footer-logo {
        height: 80px;
        max-height: 80px;
    }
    
    .footer-accreditation-img {
        height: 55px;
        max-height: 55px;
    }
    
    .category-tabs {
        gap: 6px;
    }
    
    .category-tab {
        padding: 6px 12px;
        font-size: 0.7rem;
    }
    
    .faq-question {
        padding: 15px;
    }
    
    .about-leader-gallery-image {
        width: 130px;
        height: 130px;
    }
    
    .about-leader-gallery-item h3 {
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .apply-modal-body {
        padding: 15px;
        background-size: 70%;
        min-height: 420px;
    }
    
    .step-label {
        font-size: 0.65rem;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .apply-form-step h3 {
        font-size: 1.1rem;
    }
    
    .apply-modal-logo-img {
        height: 65px;
        max-height: 65px;
    }
}

/* ============================================ */
/* UTILITY CLASSES */
/* ============================================ */
.text-center {
    text-align: center;
}

.text-gold {
    color: var(--gold);
}

.text-navy {
    color: var(--navy);
}

.bg-offwhite {
    background: var(--off-white);
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.p-20 {
    padding: 20px;
}

/* ============================================ */
/* ANIMATIONS */
/* ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.program-card,
.solid-card,
.stat-card {
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-btn {
    animation: fadeIn 0.8s ease-out forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.story-section .story-image {
    animation: slideInLeft 0.8s ease-out forwards;
}

.story-section .story-content {
    animation: slideInRight 0.8s ease-out forwards;
}

.story-section .story-card.reverse .story-image {
    animation: slideInRight 0.8s ease-out forwards;
}

.story-section .story-card.reverse .story-content {
    animation: slideInLeft 0.8s ease-out forwards;
}