/* Admission Requirements Page - Complete Styles */

/* CSS Variables */
:root {
    --primary-pink: #FF006E;
    --primary-orange: #FB5607;
    --primary-yellow: #FFBE0B;
    --primary-purple: #8338EC;
    --primary-blue: #3A86FF;
    --primary-green: #06FFA5;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Navigation */
.main-nav {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    margin-top: 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    position: relative;
}

.logo a {
    display: block;
    background: #fff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.logo a:hover {
    background: #FF6B9D;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
    background: rgba(44, 44, 44, 0.95);
    border-radius: 15px;
    padding: 0.5rem 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: bold;
    padding: 0.6rem 1rem;
    display: block;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.nav-link:hover {
    color: #2C2C2C;
    background: #4ECDC4;
    transform: translateY(-2px);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding-top: 1rem;
    z-index: 1001;
}

.nav-item:nth-last-child(1) .dropdown,
.nav-item:nth-last-child(2) .dropdown {
    left: auto;
    right: 0;
}

.dropdown-content {
    background: #FFFFFF;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 1rem 0;
    min-width: 220px;
    border: 3px solid #FF6B9D;
}

.dropdown-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-width: 360px;
    padding: 0.5rem;
}

.dropdown-two-col a {
    margin: 0.15rem;
}

.dropdown-content a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #2C2C2C;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-radius: 6px;
    font-weight: 500;
}

.dropdown-content a:hover {
    background: #4ECDC4;
    color: #FFFFFF;
    transform: translateX(5px);
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
    position: relative;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
    display: block;
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Section - Admissions */
.hero-admissions {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-orange) 50%, var(--primary-yellow) 100%);
}

#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0,0,0,0.3) 100%);
    z-index: 2;
}

.hero-content-admissions {
    text-align: center;
    z-index: 10;
    position: relative;
}

.hero-label {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-title-admissions {
    font-size: 10vw;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 2rem;
    letter-spacing: -0.05em;
}

.word-reveal {
    display: inline-block;
    animation: slideUp 1s ease-out forwards;
    opacity: 0;
}

.word-reveal.delay-1 {
    animation-delay: 0.3s;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
    from {
        opacity: 0;
        transform: translateY(100px);
    }
}

.hero-subtitle-admissions {
    font-size: 2rem;
    font-weight: 300;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.8s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.scroll-indicator-custom {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 3px solid #fff;
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 10px;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(20px);
    }
}

/* Intro Statement */
.intro-statement {
    background: #000;
    padding: 8rem 2rem;
    text-align: center;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.intro-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    animation: revealText 1s ease-out 0.2s forwards;
}

.reveal-text-delayed {
    opacity: 0;
    transform: translateY(30px);
    animation: revealText 1s ease-out 0.6s forwards;
}

@keyframes revealText {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Requirements Section */
.requirements-section {
    background: linear-gradient(180deg, #000 0%, #1a1a1a 100%);
    padding: 8rem 2rem;
}

.requirements-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title-main {
    font-size: 5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 5rem;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.req-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 3rem;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
}

.req-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-yellow);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 60px rgba(255, 190, 11, 0.3);
}

.req-card.featured {
    border: 3px solid var(--primary-purple);
    background: rgba(131, 56, 236, 0.1);
}

.req-card.featured:hover {
    border-color: var(--primary-purple);
    box-shadow: 0 20px 60px rgba(131, 56, 236, 0.4);
}

.req-card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 900;
    opacity: 0.1;
}

.req-icon {
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
}

.req-card[data-color="#FF006E"] .req-icon { color: var(--primary-pink); }
.req-card[data-color="#FB5607"] .req-icon { color: var(--primary-orange); }
.req-card[data-color="#FFBE0B"] .req-icon { color: var(--primary-yellow); }
.req-card[data-color="#8338EC"] .req-icon { color: var(--primary-purple); }

.req-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
}

.req-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.req-expand {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.req-card:hover .req-expand {
    max-height: 500px;
}

.req-expand p {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Philosophy Section */
.philosophy-section {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.philosophy-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.philosophy-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.philosophy-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.philosophy-text {
    font-size: 1.15rem;
    line-height: 1.8;
}

.philosophy-text p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.large-text {
    font-size: 1.4rem;
    font-weight: 600;
}

.highlight-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-yellow);
}

.philosophy-visual {
    position: relative;
    height: 600px;
}

#minimalCirclesCanvas {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

/* Programs Overview */
.programs-overview {
    background: #000;
    padding: 8rem 2rem;
}

.programs-overview-container {
    max-width: 1400px;
    margin: 0 auto;
}

.programs-overview-title {
    font-size: 4rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.programs-grid-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.program-link-card {
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 2.5rem 2rem;
    text-decoration: none;
    color: #fff;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.program-link-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-green);
    background: rgba(6, 255, 165, 0.05);
    box-shadow: 0 20px 60px rgba(6, 255, 165, 0.2);
}

.program-link-number {
    font-size: 1rem;
    font-weight: 900;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.program-link-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.program-link-card p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.arrow {
    font-size: 2rem;
    color: var(--primary-green);
    transition: transform 0.3s ease;
}

.program-link-card:hover .arrow {
    transform: translateX(10px);
}

/* Video Section */
.video-section {
    background: #000;
    padding: 0;
}

.video-container {
    max-width: 100%;
    margin: 0 auto;
}

.apply-video {
    width: 100%;
    height: auto;
    display: block;
}

/* CTA Section */
.cta-section-admissions {
    background: linear-gradient(135deg, #000 0%, var(--primary-pink) 100%);
    padding: 10rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content-admissions {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.cta-title-large {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 3rem;
}

.cta-title-large .line {
    display: block;
    margin-bottom: 0.5rem;
}

.cta-title-large .accent {
    color: var(--primary-yellow);
}

.cta-buttons-admissions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.btn-cta-primary {
    background: var(--primary-yellow);
    color: #000;
}

.btn-cta-primary:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 190, 11, 0.4);
}

.btn-cta-secondary {
    background: transparent;
    color: #fff;
    border: 3px solid #fff;
}

.btn-cta-secondary:hover {
    background: #fff;
    color: #000;
    transform: translateY(-5px);
}

.cta-floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.float-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: floatAround 20s infinite ease-in-out;
}

.circle-a {
    width: 300px;
    height: 300px;
    background: var(--primary-yellow);
    top: 10%;
    left: 10%;
}

.circle-b {
    width: 200px;
    height: 200px;
    background: var(--primary-orange);
    bottom: 20%;
    right: 15%;
    animation-delay: 3s;
}

.circle-c {
    width: 250px;
    height: 250px;
    background: var(--primary-purple);
    top: 50%;
    right: 5%;
    animation-delay: 6s;
}

@keyframes floatAround {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .philosophy-container {
        grid-template-columns: 1fr;
    }

    .philosophy-visual {
        height: 400px;
    }
}

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

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(44, 44, 44, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 1rem 0 2rem 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        max-height: 0;
        overflow-y: auto;
        overflow-x: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease;
        border-radius: 0;
        opacity: 0;
        z-index: 999;
    }

    .nav-menu.active {
        max-height: calc(100vh - 70px);
        opacity: 1;
    }

    .nav-link {
        padding: 1rem 1.5rem;
        border-radius: 0;
    }

    .dropdown {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        padding-top: 0;
        transition: max-height 0.3s ease, opacity 0.3s ease;
    }

    .has-dropdown.mobile-active .dropdown {
        opacity: 1;
        visibility: visible;
        max-height: 1000px;
    }

    .dropdown-content {
        box-shadow: none;
        margin: 0 1rem;
        border-radius: 0;
        border: none;
    }

    .dropdown-two-col {
        grid-template-columns: 1fr;
        min-width: auto;
    }

    .hero-title-admissions {
        font-size: 15vw;
    }

    .hero-subtitle-admissions {
        font-size: 1.5rem;
    }

    .intro-content h2 {
        font-size: 2.5rem;
    }

    .intro-content p {
        font-size: 1.1rem;
    }

    .section-title-main {
        font-size: 3rem;
    }

    .requirements-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-section {
        padding: 5rem 1.5rem;
    }

    .philosophy-title {
        font-size: 2.5rem;
    }

    .philosophy-text {
        font-size: 1rem;
    }

    .programs-overview-title {
        font-size: 2.5rem;
    }

    .programs-grid-overview {
        grid-template-columns: 1fr;
    }

    .cta-title-large {
        font-size: 2.5rem;
    }

    .btn-cta {
        width: 100%;
        justify-content: center;
    }

    .logo img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .logo img {
        height: 35px;
    }

    .mobile-toggle span {
        width: 22px;
        height: 2.5px;
    }

    .hero-label {
        font-size: 0.8rem;
    }

    .req-card {
        padding: 2rem 1.5rem;
    }

    .philosophy-section {
        padding: 4rem 1rem;
    }
}
