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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2C2C2C;
    background: #FFFFFF;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 800px;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    margin: 0;
    animation: slideInFromLeft 1.5s ease-out;
}

.hero-text h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    margin: 1rem 0 0 0;
    animation: slideInFromLeftDelayed 1.5s ease-out 1.5s forwards;
    opacity: 0;
}

.hero-text .hero-description {
    font-size: 1.15rem;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    margin: 1.5rem 0 0 0;
    line-height: 1.7;
    animation: slideInFromLeftDelayed 1.5s ease-out 3s forwards;
    opacity: 0;
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromLeftDelayed {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Navigation */
.main-nav {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 100;
}

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

.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;
}

/* Position last two menu dropdowns to the right to prevent cutoff */
.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);
}

/* Special styling for the Interactive Student Journey link */
.cta-journey {
    background: linear-gradient(135deg, #FF6B9D, #4ECDC4) !important;
    color: #FFFFFF !important;
    font-weight: 700;
    padding: 0.85rem 1.5rem !important;
    margin: 0.25rem !important;
    border-radius: 8px;
}

.cta-journey:hover {
    background: linear-gradient(135deg, #4ECDC4, #FF6B9D) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
}

.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;
}

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

.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(7px, -7px);
}

/* Why FSFA Section - Large Image Grid */
.why-section {
    background: #FFFFFF;
    padding: 80px 0 0 0;
    border-top: 1px solid #e0e0e0;
}

.why-header {
    text-align: center;
    padding: 0 20px 50px;
}

.why-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.why-header p {
    font-size: 1.2rem;
    color: #FF6B9D;
    font-weight: 500;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.why-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #e0e0e0;
}

.why-card:hover .why-image {
    transform: scale(1.05);
}

.why-image {
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.why-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px 40px;
    color: #FFFFFF;
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
}

.why-card h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    color: #FFFFFF;
}

.why-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 1;
}

/* Pathways Section with Colored Backgrounds */
/* MAIN SECTION PADDING CONTROL - Change first value to adjust top space */
.pathways-section {
    background: #f9fafb;
    padding: 0 0;  /* TOP-BOTTOM | LEFT-RIGHT - Change first 0 to add top space */
}

.pathways-header {
    text-align: center;
    padding: 0 20px 50px;
}

.pathways-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.pathways-header p {
    font-size: 1.2rem;
    color: #4ECDC4;
    font-weight: 500;
}

.pathways-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pathway-card {
    background: white;
    padding: 40px 35px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.pathway-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    transition: height 0.3s ease;
}

.pathway-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.pathway-card:hover::before {
    height: 100%;
    opacity: 0.08;
}

/* Color variations for pathway cards */
.pathway-color-1::before { background: #FF6B9D; }
.pathway-color-2::before { background: #4ECDC4; }
.pathway-color-3::before { background: #FFE66D; }
.pathway-color-4::before { background: #A0D8F1; }
.pathway-color-5::before { background: #FF8B94; }
.pathway-color-6::before { background: #B4A7D6; }

.pathway-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2C2C2C;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.pathway-subtitle {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.pathway-card p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.pathway-link {
    display: inline-block;
    color: #FF6B9D;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.pathway-link:hover {
    color: #4ECDC4;
    transform: translateX(5px);
}

/* Disciplines Section */
.disciplines-section {
    background: #FFFFFF;
    padding: 80px 0;
    position: relative;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0,0,0,.02) 10px, rgba(0,0,0,.02) 20px);
}

.disciplines-header {
    text-align: center;
    padding: 0 20px 50px;
}

.disciplines-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.disciplines-header p {
    font-size: 1.2rem;
    color: #4ECDC4;
    font-weight: 500;
}

.disciplines-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.discipline-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    border: 2px solid #e0e0e0;
}

.discipline-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 107, 157, 0.2);
    border-color: #FF6B9D;
}

.discipline-image {
    width: 100%;
    height: 320px;
    background: #f5f5f5;
    position: relative;
    overflow: hidden;
}

.discipline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.discipline-card:hover .discipline-image img {
    transform: scale(1.05);
}

.discipline-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(44, 44, 44, 0.5);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.discipline-content {
    padding: 35px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.discipline-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2C2C2C;
    letter-spacing: -0.5px;
}

.discipline-subtitle {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
    font-weight: 400;
}

.discipline-description {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.discipline-link {
    display: inline-block;
    color: #FF6B9D;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.discipline-link:hover {
    color: #4ECDC4;
    transform: translateX(5px);
}

/* Ticker Section */
.programs {
    background: #FFFFFF;
    padding: 0;
}

.ticker-container {
    width: 100%;
    overflow: hidden;
    background: #FFFFFF;
    border-top: 3px solid #FF6B9D;
    border-bottom: 3px solid #FF6B9D;
    position: relative;
    padding-bottom: 100px;
}

.ticker-row {
    display: flex;
    overflow: hidden;
    border-bottom: 2px solid rgba(255, 107, 157, 0.2);
    padding: 20px 0;
}

.ticker-row:last-child {
    border-bottom: 2px solid rgba(255, 107, 157, 0.2);
}

.ticker-wrap {
    display: flex;
    animation: scroll 60s linear infinite;
    white-space: nowrap;
}

.ticker-reverse {
    animation: scroll-reverse 70s linear infinite;
}

.ticker-row:nth-child(2) .ticker-wrap {
    animation: scroll-reverse 70s linear infinite;
}

.ticker-row:nth-child(3) .ticker-wrap {
    animation: scroll 80s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scroll-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.ticker-item {
    display: inline-block;
    padding: 0 40px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #2C2C2C;
    text-decoration: none;
    transition: color 0.3s;
}

.ticker-item:hover {
    color: #4ECDC4;
}

.ticker-item::after {
    content: "•";
    margin-left: 40px;
    color: #FF6B9D;
}

.ticker-labels {
    position: absolute;
    bottom: 30px;
    left: 40px;
    right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    padding-right: 80px;
}

.ticker-label {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #FF6B9D;
    white-space: nowrap;
}

.ticker-label:nth-child(2) {
    text-align: center;
}

.ticker-separator {
    display: none;
}

.pause-btn {
    position: absolute;
    bottom: 20px;
    right: 40px;
    background: transparent;
    color: #2C2C2C;
    border: 2px solid #4ECDC4;
    padding: 0;
    width: 60px;
    height: 60px;
    font-size: 11px;
    font-weight: 700;
    text-transform: lowercase;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    border-radius: 50%;
}

.pause-btn:hover {
    background: #4ECDC4;
    color: #FFFFFF;
    border-color: #4ECDC4;
}

.pause-btn::before {
    content: '⏸';
    font-size: 16px;
    display: block;
}

.pause-text {
    font-size: 9px;
    text-transform: lowercase;
    letter-spacing: 0.5px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #FF6B9D 0%, #4ECDC4 100%);
    padding: 100px 20px;
    text-align: center;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
}

.cta-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cta-subheading {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 50px;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 22px 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-btn-primary {
    background: #FFFFFF;
    color: #FF6B9D;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-primary {
    background: #FFFFFF;
    color: #FF6B9D;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn-primary:hover,
.cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

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

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

.cta-btn-secondary:hover,
.cta-secondary:hover {
    background: #FFFFFF;
    color: #FF6B9D;
    transform: translateY(-5px);
}

.cta-btn-arrow,
.cta-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.cta-btn:hover .cta-btn-arrow,
.cta-btn:hover .cta-arrow {
    transform: translateX(5px);
}

/* Instagram / Did You Know Section */
.insta {
    background: linear-gradient(135deg, #f5e6d3 0%, #e8d5c4 50%, #e0d4c0 100%);
    padding: 6rem 0;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* HOLGA LIGHT LEAK 1 - Top Right */
.insta::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at center, 
        rgba(255, 150, 70, 0.5) 0%,
        rgba(255, 100, 120, 0.4) 30%,
        rgba(255, 180, 100, 0.3) 50%,
        transparent 70%
    );
    filter: blur(100px);
    pointer-events: none;
    z-index: 1;
    animation: lightLeakPulse 8s ease-in-out infinite;
}

/* HOLGA LIGHT LEAK 2 - Bottom Left */
.insta::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at center,
        rgba(255, 200, 100, 0.5) 0%,
        rgba(255, 160, 150, 0.35) 40%,
        transparent 70%
    );
    filter: blur(90px);
    pointer-events: none;
    z-index: 1;
    animation: lightLeakPulse 10s ease-in-out infinite;
    animation-delay: 3s;
}

@keyframes lightLeakPulse {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.insta .container {
    position: relative;
    z-index: 2;
}

.insta-content {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 80px;
    align-items: center;
}

.insta-left {
    position: relative;
    height: 600px;
}

/* Images with soft Holga aesthetic */
.insta-left .insta-logo,
.insta-left .holga-camera {
    position: absolute;
    transition: all 0.4s ease;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    border: 2px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    backdrop-filter: blur(10px);
}

.insta-left .insta-logo {
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(-8deg);
    z-index: 2;
    width: 280px;
    max-width: 280px;
}

.insta-left .holga-camera {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(5deg);
    z-index: 3;
    width: 320px;
    max-width: 320px;
}

.insta-left .insta-logo:hover {
    transform: translateX(-50%) rotate(-5deg) scale(1.05);
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

.insta-left .holga-camera:hover {
    transform: translateX(-50%) rotate(2deg) scale(1.05);
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

.insta-right {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

.insta-right::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.05), rgba(255, 107, 157, 0.05));
    border-radius: 50%;
    top: -80px;
    right: -80px;
    pointer-events: none;
}

.insta-right h3 {
    font-size: 3em;
    font-weight: 900;
    background: linear-gradient(135deg, #FF6B9D, #4ECDC4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5em;
    letter-spacing: -1px;
}

.insta-right > p {
    font-size: 1.3em;
    color: #2C2C2C;
    font-weight: 600;
    margin-bottom: 1.5em;
    line-height: 1.6;
}

.insta-story {
    color: #666;
    line-height: 1.8;
}

.insta-story p {
    margin-bottom: 1.2em;
    font-size: 1em;
}

.insta-story p:last-child {
    font-weight: 600;
    color: #2C2C2C;
    border-left: 4px solid #FF6B9D;
    padding-left: 20px;
    margin-top: 2em;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #FFFFFF;
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-circles {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.circle-link {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    line-height: 1.2;
}

.circle-link:hover {
    background: #FF6B9D;
    border-color: #FF6B9D;
    transform: translateY(-5px);
}

.footer-links-section {
    display: flex;
    gap: 4rem;
    justify-content: flex-end;
}

.footer-column h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FF6B9D;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: #FFFFFF;
    padding-left: 5px;
}

.footer-middle {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-address-wrapper {
    flex-grow: 1;
    margin-left: 2rem;
}

.address-column h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #4ECDC4;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.address-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 0.95rem;
}

.address-column a {
    color: #FF6B9D;
    text-decoration: none;
    transition: color 0.3s ease;
}

.address-column a:hover {
    color: #4ECDC4;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-left {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: #FF6B9D;
    transform: translateY(-3px);
}

.footer-right {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.privacy-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: #FFFFFF;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #FFFFFF;
    margin: 8% auto;
    width: 90%;
    max-width: 900px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    background: linear-gradient(135deg, #FF6B9D, #4ECDC4);
    color: #FFFFFF;
    padding: 40px 40px 35px;
    position: relative;
}

.modal-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.modal-header p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.close-modal {
    position: absolute;
    right: 25px;
    top: 25px;
    color: #FFFFFF;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-body {
    padding: 45px 40px;
}

.modal-section {
    margin-bottom: 35px;
}

.modal-section:last-child {
    margin-bottom: 0;
}

.modal-section p {
    line-height: 1.8;
    color: #333;
    font-size: 1rem;
    margin-bottom: 20px;
}

.modal-section h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2C2C2C;
}

.modal-section ul {
    list-style: none;
    padding-left: 0;
}

.modal-section ul li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
    font-size: 0.95rem;
    position: relative;
    padding-left: 30px;
}

.modal-section ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #FF6B9D;
    font-weight: 700;
}

.modal-section ul li:last-child {
    border-bottom: none;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.08), rgba(78, 205, 196, 0.08));
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #FF6B9D;
    margin-top: 25px;
}

.highlight-box strong {
    color: #FF6B9D;
    font-size: 1rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .pathways-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text h2 {
        font-size: 1.75rem;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pathways-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .disciplines-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .insta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .insta::before {
        width: 500px;
        height: 500px;
    }

    .insta::after {
        width: 400px;
        height: 400px;
    }

    .insta-left {
        height: 500px;
        margin: 0 auto;
        max-width: 500px;
    }

    .insta-left .insta-logo {
        width: 240px;
        max-width: 240px;
    }

    .insta-left .holga-camera {
        width: 280px;
        max-width: 280px;
    }

    .insta-right h3 {
        font-size: 2.5em;
    }

    .insta-right {
        padding: 40px;
    }

    .insta-right::before {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text h2 {
        font-size: 1.5rem;
    }

    .hero-text .hero-description {
        font-size: 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100px;
        left: 0;
        right: 0;
        background: rgba(44, 44, 44, 0.98);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-radius: 0;
        opacity: 0;
        visibility: hidden;
    }

    .nav-menu.active {
        max-height: 800px;
        padding: 1rem 0;
        opacity: 1;
        visibility: visible;
    }

    .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-item:last-child {
        border-bottom: none;
    }

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

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

    .dropdown-content {
        box-shadow: none;
        background: rgba(255, 255, 255, 0.98);
        padding: 0;
        border-radius: 0;
        margin: 0 1rem 0.5rem 1rem;
        border: 3px solid #FF6B9D;
    }

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

    .has-dropdown.active .dropdown {
        max-height: 500px;
    }

    /* Disable hover on mobile to prevent flickering */
    .has-dropdown:hover .dropdown {
        max-height: 0;
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link:hover {
        background: none;
        transform: none;
        color: #FFFFFF;
    }

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

    .why-card {
        height: 400px;
    }

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

    .disciplines-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 20px;
    }

    .disciplines-section {
        padding: 60px 0;
    }

    .disciplines-header h2,
    .why-header h2,
    .pathways-header h2 {
        font-size: 2rem;
    }

    .why-section {
        padding: 60px 0 0 0;
    }

    .why-content {
        padding: 35px 25px;
    }

    .why-card h3 {
        font-size: 1.8rem;
    }

    .ticker-item {
        font-size: 14px;
        padding: 0 25px;
    }

    .ticker-item::after {
        margin-left: 25px;
    }

    .ticker-container {
        padding-bottom: 70px;
    }

    .ticker-labels {
        bottom: 12px;
        left: 20px;
        right: 20px;
        padding-right: 60px;
    }

    .ticker-label {
        font-size: 12px;
    }

    .pause-btn {
        width: 45px;
        height: 45px;
        right: 20px;
        bottom: 12px;
    }

    .pause-btn::before {
        font-size: 16px;
    }

    .pause-text {
        font-size: 7px;
    }

    .cta-section {
        padding: 60px 20px;
    }

    .cta-heading {
        font-size: 2rem;
    }

    .cta-subheading {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 350px;
        justify-content: center;
        padding: 20px 30px;
        font-size: 0.95rem;
    }

    .insta {
        padding: 4rem 0;
    }

    .insta::before {
        width: 400px;
        height: 400px;
        top: -100px;
        right: -100px;
    }

    .insta::after {
        width: 350px;
        height: 350px;
        bottom: -80px;
        left: -80px;
    }

    .insta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .insta-left {
        height: 500px;
        margin: 0 auto;
        max-width: 500px;
    }

    .insta-left .insta-logo {
        width: 220px;
        max-width: 220px;
    }

    .insta-left .holga-camera {
        width: 260px;
        max-width: 260px;
    }

    .insta-right h3 {
        font-size: 2.5em;
    }

    .insta-right {
        padding: 40px;
    }

    .insta-right::before {
        width: 250px;
        height: 250px;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-circles {
        gap: 0.8rem;
        justify-content: center;
    }

    .circle-link {
        width: 90px;
        height: 90px;
        font-size: 0.7rem;
    }

    .footer-links-section {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-column {
        text-align: center;
    }

    .footer-middle {
        flex-direction: column;
        padding: 2rem 0;
        text-align: center;
    }

    .footer-logo img {
        height: 50px;
    }

    .footer-address-wrapper {
        text-align: center;
        margin-left: 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .modal-content {
        margin: 10% auto;
        width: 95%;
    }

    .modal-header, .modal-body {
        padding: 30px 25px;
    }

    .modal-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text h2 {
        font-size: 1.2rem;
    }

    .hero-text .hero-description {
        font-size: 0.9rem;
    }

    .logo img {
        height: 35px;
    }

    .disciplines-header h2,
    .why-header h2,
    .pathways-header h2 {
        font-size: 1.8rem;
    }

    .disciplines-header p,
    .why-header p,
    .pathways-header p {
        font-size: 1rem;
    }

    .circle-link {
        width: 75px;
        height: 75px;
        font-size: 0.65rem;
    }

    .footer-column h3 {
        font-size: 1rem;
    }

    .footer-column ul li a {
        font-size: 0.85rem;
    }

    .address-column h3 {
        font-size: 0.9rem;
    }

    .address-column p {
        font-size: 0.8rem;
    }

    .ticker-item {
        font-size: 12px;
        padding: 0 20px;
    }

    .ticker-item::after {
        margin-left: 20px;
    }

    .ticker-container {
        padding-bottom: 60px;
    }

    .ticker-labels {
        bottom: 10px;
        left: 10px;
        right: 10px;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
        padding-right: 0;
    }

    .ticker-label {
        font-size: 8px;
    }

    .pause-btn {
        bottom: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }

    .pause-btn::before {
        font-size: 14px;
    }

    .pause-text {
        font-size: 6px;
    }
}

/* ===================================
   PROGRAMS & PATHWAYS - SPLIT SCREEN
   =================================== */

/* Section Header */
/* ADJUST SPACING HERE: 
   - First value (10px) = space ABOVE "Programs & Pathways"
   - Last value (30px) = space BELOW subtitle - INCREASE THIS to add more space before split-screen */
.pathways-section .section-header {
    text-align: center;
    padding: 10px 20px 30px !important;  /* TOP | LEFT-RIGHT | BOTTOM (increase last value for more space) */
    background: #f9fafb;
}

.pathways-section .section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 5px;  /* ADJUST THIS: Space between title and subtitle (reduce to bring closer) */
    letter-spacing: -1px;
}

.pathways-section .section-header p {
    font-size: 1.2rem;
    color: #4ECDC4;
    font-weight: 500;
    margin-bottom: 0 !important;  /* ADJUST THIS: Space below subtitle before split-screen (increase to add space) */
    padding-bottom: 0 !important;
}

/* Split Screen Container */
.split-container {
    display: grid;
    grid-template-columns: 450px 1fr;
    min-height: 80vh;
    max-width: 1600px;
    margin: 0 auto !important;  /* Set to 0 for normal spacing - use negative value to pull up, positive to push down */
}

/* LEFT SIDE - Program List with Brush Strokes */
.programs-list {
    background: #2C2C2C;
    padding: 30px 40px 60px;  /* TOP | LEFT-RIGHT | BOTTOM - ADJUST FIRST VALUE to control top space */
    position: relative;
    overflow: hidden;
}

/* Animated Brush Strokes Background */
.brush-strokes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.brush-stroke {
    position: absolute;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.brush-stroke svg {
    width: 100%;
    height: 100%;
}

.brush-stroke path {
    fill: none;
    stroke: rgba(255, 255, 255, 0.08);
    stroke-width: 30;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Stroke 1 - Horizontal sweep */
.stroke-1 {
    width: 80%;
    height: 200px;
    top: 10%;
    left: -10%;
    transform: translateX(-20%);
}

.program-item[data-program="1"]:hover ~ .brush-strokes .stroke-1,
.program-item[data-program="1"].active ~ .brush-strokes .stroke-1 {
    opacity: 1;
    transform: translateX(0);
}

/* Stroke 2 - Diagonal slash */
.stroke-2 {
    width: 70%;
    height: 300px;
    top: 20%;
    right: -10%;
    transform: rotate(15deg) translateX(20%);
}

.program-item[data-program="2"]:hover ~ .brush-strokes .stroke-2,
.program-item[data-program="2"].active ~ .brush-strokes .stroke-2 {
    opacity: 1;
    transform: rotate(15deg) translateX(0);
}

/* Stroke 3 - Curved arc */
.stroke-3 {
    width: 90%;
    height: 250px;
    top: 30%;
    left: -5%;
    transform: scale(0.8);
}

.program-item[data-program="3"]:hover ~ .brush-strokes .stroke-3,
.program-item[data-program="3"].active ~ .brush-strokes .stroke-3 {
    opacity: 1;
    transform: scale(1);
}

/* Stroke 4 - Vertical sweep */
.stroke-4 {
    width: 60%;
    height: 400px;
    top: 15%;
    left: 20%;
    transform: translateY(-10%);
}

.program-item[data-program="4"]:hover ~ .brush-strokes .stroke-4,
.program-item[data-program="4"].active ~ .brush-strokes .stroke-4 {
    opacity: 1;
    transform: translateY(0);
}

/* Stroke 5 - Cross stroke */
.stroke-5 {
    width: 75%;
    height: 350px;
    top: 25%;
    left: 10%;
    transform: rotate(-10deg) scale(0.9);
}

.program-item[data-program="5"]:hover ~ .brush-strokes .stroke-5,
.program-item[data-program="5"].active ~ .brush-strokes .stroke-5 {
    opacity: 1;
    transform: rotate(-10deg) scale(1);
}

/* Stroke 6 - Flowing gesture */
.stroke-6 {
    width: 85%;
    height: 300px;
    top: 35%;
    right: -5%;
    transform: translateX(10%);
}

.program-item[data-program="6"]:hover ~ .brush-strokes .stroke-6,
.program-item[data-program="6"].active ~ .brush-strokes .stroke-6 {
    opacity: 1;
    transform: translateX(0);
}

.list-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.program-item {
    cursor: pointer;
    padding: 15px 0;  /* ADJUST THIS: Vertical space between menu items (reduce to tighten) */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.program-item:first-of-type {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.program-item::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: currentColor;
    transition: height 0.3s ease;
}

.program-item.active::before {
    height: 60%;
}

.program-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.program-item:hover .program-number,
.program-item.active .program-number {
    color: currentColor;
}

.program-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
    line-height: 1.2;
}

.program-item:hover .program-name {
    color: rgba(255, 255, 255, 0.9);
    transform: translateX(5px);
}

.program-item.active .program-name {
    color: #FFFFFF;
    transform: translateX(10px);
}

.program-tag {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
    margin-top: 5px;
}

/* Color variations */
.program-item:nth-child(2) { color: #FF6B9D; }
.program-item:nth-child(3) { color: #4ECDC4; }
.program-item:nth-child(4) { color: #FFE66D; }
.program-item:nth-child(5) { color: #A0D8F1; }
.program-item:nth-child(6) { color: #FF8B94; }
.program-item:nth-child(7) { color: #B4A7D6; }

/* RIGHT SIDE - Preview Area with Ink Bleed */
.program-preview {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;  /* Aligns content to top */
    justify-content: center;
    padding: 80px 60px 60px;  /* TOP | LEFT-RIGHT | BOTTOM - Increased top padding so nothing cuts off */
    background: #FFFCF7;
}

/* Ink Bleed Background Effect */
.ink-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.ink-blob {
    position: absolute;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    opacity: 0.08;
    animation: inkBleed 12s ease-in-out infinite;
    transition: background 0.8s ease;
}

/* Blob 1 - Large top right */
.ink-blob-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -150px;
    animation-delay: 0s;
}

/* Blob 2 - Medium bottom left */
.ink-blob-2 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: -100px;
    animation-delay: 2s;
}

/* Blob 3 - Small center floating */
.ink-blob-3 {
    width: 400px;
    height: 400px;
    top: 30%;
    left: 40%;
    animation-delay: 4s;
    opacity: 0.05;
}

/* Blob 4 - Medium right center */
.ink-blob-4 {
    width: 450px;
    height: 450px;
    top: 20%;
    right: 10%;
    animation-delay: 6s;
    opacity: 0.06;
}

/* Blob 5 - Small bottom center */
.ink-blob-5 {
    width: 350px;
    height: 350px;
    bottom: 10%;
    left: 50%;
    animation-delay: 8s;
    opacity: 0.05;
}

@keyframes inkBleed {
    0%, 100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: rotate(0deg) scale(1);
    }
    25% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: rotate(90deg) scale(1.1);
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: rotate(180deg) scale(0.95);
    }
    75% {
        border-radius: 70% 30% 40% 60% / 40% 70% 50% 60%;
        transform: rotate(270deg) scale(1.05);
    }
}

/* Color transitions per program */
[data-active="1"] .ink-blob-1 { background: #FF6B9D; }
[data-active="1"] .ink-blob-2 { background: #FF8B94; }
[data-active="1"] .ink-blob-3 { background: #FFB6C1; }
[data-active="1"] .ink-blob-4 { background: #FF6B9D; }
[data-active="1"] .ink-blob-5 { background: #FF8B94; }

[data-active="2"] .ink-blob-1 { background: #4ECDC4; }
[data-active="2"] .ink-blob-2 { background: #A0D8F1; }
[data-active="2"] .ink-blob-3 { background: #7FD8D8; }
[data-active="2"] .ink-blob-4 { background: #4ECDC4; }
[data-active="2"] .ink-blob-5 { background: #A0D8F1; }

[data-active="3"] .ink-blob-1 { background: #FFE66D; }
[data-active="3"] .ink-blob-2 { background: #FF6B9D; }
[data-active="3"] .ink-blob-3 { background: #FFED94; }
[data-active="3"] .ink-blob-4 { background: #FFE66D; }
[data-active="3"] .ink-blob-5 { background: #FF6B9D; }

[data-active="4"] .ink-blob-1 { background: #A0D8F1; }
[data-active="4"] .ink-blob-2 { background: #4ECDC4; }
[data-active="4"] .ink-blob-3 { background: #C4E8F5; }
[data-active="4"] .ink-blob-4 { background: #A0D8F1; }
[data-active="4"] .ink-blob-5 { background: #4ECDC4; }

[data-active="5"] .ink-blob-1 { background: #FF8B94; }
[data-active="5"] .ink-blob-2 { background: #B4A7D6; }
[data-active="5"] .ink-blob-3 { background: #FFAAB1; }
[data-active="5"] .ink-blob-4 { background: #FF8B94; }
[data-active="5"] .ink-blob-5 { background: #B4A7D6; }

[data-active="6"] .ink-blob-1 { background: #B4A7D6; }
[data-active="6"] .ink-blob-2 { background: #FF6B9D; }
[data-active="6"] .ink-blob-3 { background: #C9BFE3; }
[data-active="6"] .ink-blob-4 { background: #B4A7D6; }
[data-active="6"] .ink-blob-5 { background: #FF6B9D; }

/* Preview Content */
.preview-content {
    max-width: 700px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
    position: absolute;
    z-index: 10;
}

.preview-content.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.preview-header {
    margin-bottom: 30px;
}

.preview-number {
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    opacity: 0.15;
    margin-bottom: -20px;
}

.preview-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2C2C2C;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 15px;
}

.preview-subtitle {
    font-size: 1.3rem;
    color: #666;
    font-style: italic;
    margin-bottom: 30px;
}

.preview-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 5px;
}

.meta-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2C2C2C;
}

.preview-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
}

.preview-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: #2C2C2C;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.preview-link:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.preview-link::after {
    content: '→';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.preview-link:hover::after {
    transform: translateX(5px);
}

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

    .programs-list {
        padding: 40px 30px;
    }

    .program-preview {
        min-height: 70vh;
        padding: 40px 30px;
    }

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

    .preview-number {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .pathways-section .section-header h2 {
        font-size: 2rem;
    }

    .program-name {
        font-size: 1.4rem;
    }

    .preview-title {
        font-size: 2rem;
    }

    .preview-subtitle {
        font-size: 1.1rem;
    }

    .preview-description {
        font-size: 1rem;
    }

    .ink-blob {
        animation-duration: 15s;
    }
}
