@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root {
    --navy-primary: #0A1628;
    --navy-dark: #070D18;
    --teal-primary: #00BCD4;
    --teal-light: #4DD0E1;
    --white: #FFFFFF;
    --gray-light: #F1F5F9;
    --gray-text: #64748B;
    --container-max: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--navy-primary);
    line-height: 1.6;
    font-size: 18px;
    background: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* NAVIGATION */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    transition: background 0.3s;
}

.header.scrolled {
    background: rgba(10, 22, 40, 0.95);
}

.nav-container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: var(--white);
    font-weight: 700;
    font-size: 20px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}


.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 30px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--navy-primary);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
    }


    .cta-button {
        width: 80%;
    }
}

.cta-button {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    cursor: pointer;
    text-align: center;
}

.cta-button:hover {
    transform: scale(1.05);
}

.primary-teal {
    background: var(--teal-primary);
    color: var(--white);
    border: none;
}

.secondary-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, var(--navy-primary) 0%, #152A47 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0 80px;
    color: var(--white);
}

.badge {
    display: inline-block;
    border: 1px solid var(--teal-primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 24px;
    color: var(--teal-light);
}

.hero h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.accent-teal {
    color: var(--teal-primary);
}

.hero .subheading {
    font-size: 20px;
    color: var(--gray-light);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}

.trust-badges {
    display: flex;
    gap: 24px;
    justify-content: center;
    font-size: 14px;
    color: var(--gray-light);
}

/* WHY WE'RE DIFFERENT */
.why-different {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.why-different h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.diff-card {
    padding: 40px;
    border-radius: 16px;
    background: var(--gray-light);
    transition: 0.3s;
}

.diff-card:hover {
    transform: translateY(-5px);
}

.diff-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.diff-card h3 {
    margin-bottom: 16px;
    font-size: 20px;
}

.diff-card p {
    color: var(--gray-text);
    font-size: 16px;
}

/* HOW IT WORKS */
.how-it-works {
    padding: 80px 0;
}

.how-it-works h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 16px;
}

.section-subheading {
    text-align: center;
    color: var(--gray-text);
    margin-bottom: 48px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.step-card {
    background: var(--gray-light);
    padding: 40px 32px;
    border-radius: 16px;
    position: relative;
    border-top: 4px solid var(--teal-primary);
    transition: 0.3s;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-num {
    position: absolute;
    top: 24px;
    right: 32px;
    background: var(--teal-primary);
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.step-icon {
    font-size: 40px;
    margin-bottom: 24px;
}

.step-card h3 {
    margin-bottom: 16px;
}

/* FORM SECTION */
.application-form {
    background: var(--gray-light);
    padding: 80px 0;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 48px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.form-wrapper h2 {
    text-align: center;
    margin-bottom: 12px;
}

form {
    margin-top: 32px;
}

.form-group {
    margin-bottom: 24px;
}

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

input,
select {
    width: 100%;
    height: 56px;
    padding: 0 16px;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    transition: 0.3s;
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--teal-primary);
}

.submit-button {
    width: 100%;
    height: 56px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 16px;
}

.privacy-text {
    text-align: center;
    margin-top: 24px;
    color: var(--gray-text);
    font-size: 14px;
}

/* AFTER SUBMISSION SECTION */
.after-submission {
    padding: 80px 0;
    background: var(--white);
}

.timeline-container {
    max-width: 800px;
    margin: 48px auto 0;
    position: relative;
    padding-left: 60px;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-light);
}

.timeline-item {
    position: relative;
    margin-bottom: 48px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    position: absolute;
    left: -60px;
    width: 42px;
    height: 42px;
    background: var(--white);
    border: 2px solid var(--teal-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 1;
}

.timeline-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--navy-primary);
}

.timeline-content p {
    color: var(--gray-text);
}

@media (max-width: 768px) {
    .timeline-container {
        padding-left: 50px;
    }

    .timeline-container::before {
        left: 15px;
    }

    .timeline-icon {
        left: -50px;
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}

/* SAMPLE COLLEGE (DELETED SECTION) - Keeping styles of other elements below */
.faq {
    padding: 80px 0;
}

.faq h2 {
    text-align: center;
    margin-bottom: 48px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-light);
    padding: 24px 0;
}

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

/* FOOTER */
.footer {
    background: var(--navy-dark);
    padding: 80px 0 40px;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    margin-bottom: 64px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 24px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--gray-text);
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--gray-text);
}

.legal-links {
    display: flex;
    gap: 24px;
}

.legal-links a {
    color: var(--gray-text);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .trust-badges {
        flex-direction: column;
        gap: 12px;
    }

    .form-wrapper {
        padding: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}