:root {
    /* Color Palette - Premium Dark Theme */
    --clr-bg: #090A0F;
    --clr-surface: rgba(255, 255, 255, 0.03);
    --clr-surface-hover: rgba(255, 255, 255, 0.08);
    --clr-border: rgba(255, 255, 255, 0.1);
    
    --clr-primary: #3B82F6;
    --clr-primary-glow: rgba(59, 130, 246, 0.5);
    --clr-secondary: #8B5CF6;
    --clr-accent: #10B981;
    
    --clr-text-main: #F8FAFC;
    --clr-text-muted: #94A3B8;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Spacing & Utilities */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-bg);
    color: var(--clr-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography Utilities */
.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--clr-primary);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

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

.mt-4 { margin-top: 32px; }

/* Buttons */
.btn-primary, .btn-secondary, .btn-primary-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 100px;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
    color: white;
    box-shadow: 0 4px 14px var(--clr-primary-glow);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--clr-secondary), var(--clr-primary));
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--clr-primary-glow);
}

.btn-secondary {
    background: var(--clr-surface);
    color: var(--clr-text-main);
    border: 1px solid var(--clr-border);
}

.btn-secondary:hover {
    background: var(--clr-surface-hover);
    transform: translateY(-2px);
}

.btn-primary-outline {
    background: transparent;
    color: var(--clr-text-main);
    border: 1px solid var(--clr-border);
}

.btn-primary-outline:hover {
    border-color: var(--clr-primary);
    background: rgba(59, 130, 246, 0.05);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(9, 10, 15, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--clr-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

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

.nav-links a:not(.btn-primary-outline) {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--clr-text-muted);
    position: relative;
}

.nav-links a:not(.btn-primary-outline):hover {
    color: var(--clr-text-main);
}

.nav-links a:not(.btn-primary-outline)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clr-primary);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn-primary-outline):hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 30px;
    height: 2px;
    background: var(--clr-text-main);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05); /* Slight zoom for parallax effect */
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(9, 10, 15, 0.4) 0%,
        rgba(9, 10, 15, 0.8) 50%,
        var(--clr-bg) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-text {
    max-width: 700px;
}

.hero h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    margin-bottom: 24px;
}

.hero h1 span {
    background: linear-gradient(135deg, #60A5FA, #A78BFA);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--clr-text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* Values Section (Glassmorphism) */
.values-section {
    position: relative;
    z-index: 2;
    margin-top: -80px;
    padding-bottom: 80px;
}

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

.value-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--clr-border);
    padding: 40px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.value-card .icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A78BFA;
    margin-bottom: 24px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--clr-text-muted);
}

/* Our Story Section */
.story-section {
    padding: 120px 0;
    background: #111420; /* Matches dark reference theme */
}

.story-grid {
    display: grid;
    grid-template-columns: 2fr 5fr;
    gap: 60px;
    align-items: start;
}

.story-title {
    border-right: 3px solid #3B82F6;
    padding-right: 40px;
    text-align: right;
}

.story-title h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
    color: #FFFFFF;
}

.story-content h3 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: #FFFFFF;
}

.story-content p {
    color: #d1d5db;
    font-size: 1.125rem;
    margin-bottom: 24px;
}

/* Programs Section */
.programs-section {
    padding: 120px 0;
    position: relative;
    background: url('https://images.unsplash.com/photo-1522383225653-ed111181a951?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover fixed no-repeat;
    background-color: #f0fdf4; /* Fallback */
}

.programs-bg-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 0;
}

.relative-z {
    position: relative;
    z-index: 1;
}

.section-header .programs-title {
    color: #2563EB;
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 16px;
    text-shadow: 0 4px 15px rgba(255,255,255,0.9);
}

.section-header .programs-subtitle {
    color: #334155;
    font-weight: 500;
    font-size: 1.25rem;
    text-shadow: 0 2px 4px rgba(255,255,255,0.9);
}

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

.program-card {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    padding: 40px 32px;
    color: #1E293B;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.15);
}

.card-icon-blue {
    width: 50px;
    height: 50px;
    background: rgba(37, 99, 235, 0.1);
    color: #2563EB;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.program-card h3 {
    font-size: 1.5rem;
    color: #2563EB;
    margin-bottom: 16px;
}

.program-card p {
    color: #64748B;
    margin-bottom: 32px;
    font-size: 1rem;
    line-height: 1.6;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2563EB;
    font-weight: 600;
    font-size: 1rem;
}

.read-more span {
    transition: transform 0.3s ease;
}

.program-card:hover .read-more span {
    transform: translateX(4px);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
}

.testimonial-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--clr-border);
    padding: 40px;
    border-radius: var(--radius-lg);
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    line-height: 1;
    font-family: serif;
    color: rgba(59, 130, 246, 0.2);
    position: absolute;
    top: 20px; right: 30px;
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--clr-primary);
}

.author-info span {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    margin: 60px 0;
    position: relative;
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
    overflow: hidden;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.1) 0%, transparent 40%);
    z-index: -1;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-section h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 24px;
}

.cta-section p {
    font-size: 1.25rem;
    color: var(--clr-text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    padding: 80px 0 40px 0;
    background: #05050A;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 64px;
    margin-bottom: 64px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

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

.footer-logo h3 {
    font-size: 1.5rem;
    color: #FFFFFF;
    line-height: 1.2;
}

.brand-col p {
    color: var(--clr-text-muted);
    max-width: 300px;
}

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 24px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a {
    color: var(--clr-text-muted);
}

.footer-col ul a:hover {
    color: var(--clr-primary);
}

.contact-col p {
    color: var(--clr-text-muted);
    margin-bottom: 16px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--clr-text-main);
    margin-bottom: 12px;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--clr-primary);
}

.contact-link svg {
    color: var(--clr-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--clr-border);
    color: var(--clr-text-muted);
    font-size: 0.875rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}


.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* --- Modal Styles --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 0.4s, opacity 0.4s ease;
    padding: 24px;
}

.modal-overlay.open {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.modal-container {
    background: #FFFFFF;
    width: 100%;
    max-width: 1200px;
    max-height: 90vh;
    border-radius: var(--radius-xl);
    padding: 48px;
    position: relative;
    overflow-y: auto;
    transform: translateY(40px) scale(0.95);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-overlay.open .modal-container {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 32px;
    background: transparent;
    border: none;
    font-size: 2.5rem;
    color: #94A3B8;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.modal-close:hover {
    color: #EF4444;
}

.modal-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--clr-border);
}

.modal-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #1E293B;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #1E293B, #3B82F6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-header p {
    color: #64748B;
    font-size: 1.125rem;
}

.modal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.modal-col {
    background: #F8FAFC;
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid #E2E8F0;
    box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.02);
}

.col-title {
    font-size: 1.25rem;
    color: #2563EB;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.col-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px;
    height: 3px;
    background: #3B82F6;
    border-radius: 2px;
}

.course-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.course-list li {
    position: relative;
    padding-left: 20px;
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.5;
}

.course-list li::before {
    content: '•';
    color: #3B82F6;
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -4px;
}

.course-list li strong {
    font-weight: 600;
    color: #1E293B;
}

.sub-text {
    display: block;
    font-size: 0.85rem;
    color: #64748B;
    margin-top: 6px;
    background: #F1F5F9;
    padding: 8px 12px;
    border-radius: 6px;
    border-left: 2px solid #94A3B8;
}

.course-info-box {
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    padding: 32px;
    border-radius: 20px;
    color: #1E3A8A;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.1);
}

.course-info-box p {
    font-size: 1.05rem;
    line-height: 1.6;
}

.course-info-box svg {
    color: #3B82F6;
}

.pg-section-title {
    margin-bottom: 32px;
    padding-bottom: 12px;
    border-bottom: 2px dashed #E2E8F0;
}

.pg-section-title h3 {
    font-size: 1.5rem;
    color: #1E293B;
}

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

.company-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-family: inherit;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: default;
    user-select: none;
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.1);
    border-color: #BFDBFE;
}

.company-card img {
    max-width: 80%;
    max-height: 50px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.company-card:hover img {
    filter: grayscale(0%) opacity(1);
}

/* Admission Section */
.admission-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
    position: relative;
    overflow: hidden;
}

.admission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.admission-text h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #1E293B;
    line-height: 1.2;
    margin-bottom: 24px;
}

.admission-text p {
    color: #475569;
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: #334155;
    font-size: 1.1rem;
    padding-left: 0;
    list-style: none;
}

.benefit-list li {
    display: flex;
    align-items: center;
}

.benefit-list span {
    color: #3B82F6;
    font-weight: bold;
    margin-right: 12px;
}

.glass-form-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

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

.premium-form label {
    display: block;
    margin-bottom: 8px;
    color: #334155;
    font-weight: 600;
    font-size: 0.95rem;
}

.premium-form input,
.premium-form select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #CBD5E1;
    border-radius: 8px;
    background: #FFFFFF;
    color: #1E293B;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.premium-form input:focus,
.premium-form select:focus {
    outline: none;
    border-color: #3B82F6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.submit-btn {
    position: relative;
    overflow: hidden;
    height: 56px;
}

.w-100 { width: 100%; }

.loader {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.form-msg {
    margin-top: 16px;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.form-msg.success {
    display: block;
    opacity: 1;
    background: #DCFCE7;
    color: #166534;
    border: 1px solid #BBF7D0;
}

.form-msg.error {
    display: block;
    opacity: 1;
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .overlay-card {
        bottom: 16px;
        right: 16px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .modal-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-container {
        padding: 32px 24px;
    }
    
    .admission-grid {
        grid-template-columns: 1fr;
    }
    .glass-form-card {
        padding: 32px 24px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 0;
        background: rgba(9, 10, 15, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        overflow: hidden;
        transition: height 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    }

    .nav-links.active {
        height: 100vh;
    }

    .nav-links a {
        font-size: 1.5rem !important;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

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

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}
