:root {
    --bg-main: #f8fafc;
    --bg-secondary: #ffffff;
    --text-main: #111827;
    --text-muted: #6b7280;
    --primary-color: #ff6a00;
    --primary-hover: #e65c00;
    --accent-color: #0f172a;
    --accent-color-gold: #f59e0b;
    --card-bg: #ffffff;
    --card-border: rgba(0, 0, 0, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(15, 23, 42, 0.12);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

[data-theme="dark"] {
    --bg-main: #0a0f1d;
    --bg-secondary: #131b2f;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --card-bg: #131b2f;
    --card-border: rgba(255, 255, 255, 0.05);
    --glass-bg: rgba(10, 15, 29, 0.85);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    pointer-events: none;
}

a {
    text-decoration: none;
    color: inherit;
    -webkit-user-drag: none;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
}

.container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 5%;
}

.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    background-color: transparent;
    border-bottom: 1px solid transparent;
}

.glass-header.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: var(--shadow-soft);
    border-bottom: 1px solid var(--card-border);
}

.nav-container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 4%;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    transition: height 0.3s ease;
}

.glass-header.scrolled .nav-container {
    height: 80px;
}

.brand-area {
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
}

.logo-circle {
    position: absolute;
    left: 0;
    top: 10px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    border: 4px solid var(--bg-secondary);
    z-index: 10;
    transition: var(--transition-smooth);
}

.logo-circle img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: contain;
}

.logo-circle:hover {
    transform: scale(1.05) rotate(-3deg);
}

.school-name-link {
    margin-left: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-decoration: none;
}

.school-name {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.glass-header.scrolled .school-name {
    color: var(--text-main);
}

.school-name-link:hover .school-name {
    color: var(--primary-color);
}

.glass-header.scrolled .logo-circle {
    width: 90px;
    height: 90px;
    top: 5px;
}

.glass-header.scrolled .logo-circle img {
    width: 75px;
    height: 75px;
}

.glass-header.scrolled .school-name-link {
    margin-left: 110px;
}

.glass-header.scrolled .school-name {
    font-size: 1rem;
}

.primary-nav {
    display: flex;
    margin-left: auto;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu > li > a {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    padding: 35px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    transition: color 0.3s ease;
}

.glass-header.scrolled .nav-menu > li > a {
    color: var(--text-main);
}

.nav-menu > li > a.active, 
.nav-menu > li > a:hover,
.glass-header.scrolled .nav-menu > li > a.active,
.glass-header.scrolled .nav-menu > li > a:hover {
    color: var(--primary-color);
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu > li > a.active::after, .nav-menu > li:hover > a::after {
    width: 100%;
}

.nav-menu i.fa-chevron-down, .nav-menu i.fa-chevron-right {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.has-dropdown {
    position: relative;
}

.has-dropdown:hover > a i.fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    background-color: var(--card-bg);
    min-width: 260px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-hover);
    border-radius: 12px;
    padding: 15px 0;
    border: 1px solid var(--card-border);
}

.has-dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    position: relative;
}

.dropdown-menu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 25px;
    color: var(--text-main);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: rgba(255, 106, 0, 0.05);
    color: var(--primary-color);
    padding-left: 30px;
}

.nested-menu {
    position: absolute;
    top: -15px;
    left: 100%;
    background-color: var(--card-bg);
    min-width: 280px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-hover);
    border-radius: 12px;
    padding: 15px 0;
    border: 1px solid var(--card-border);
}

.has-dropdown-nested:hover > .nested-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 25px;
}

.theme-toggle {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease, background-color 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
}

.glass-header.scrolled .theme-toggle {
    background-color: var(--bg-main);
    color: var(--text-main);
    border: 1px solid var(--card-border);
}

.theme-toggle:hover {
    transform: rotate(30deg) scale(1.1);
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    color: #ffffff;
    cursor: pointer;
}

.glass-header.scrolled .mobile-menu-toggle {
    color: var(--text-main);
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 750px;
    overflow: hidden;
    background-color: #000;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: linear-gradient(90deg, rgba(10, 15, 29, 0.95) 0%, rgba(10, 15, 29, 0.2) 100%);
    padding-left: 10%;
}

.hero-content {
    color: #fff;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 106, 0, 0.15);
    border: 1px solid rgba(255, 106, 0, 0.4);
    color: #ff9d4a;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.mega-title {
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 30px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 45px;
    color: #cbd5e1;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 45px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 25px rgba(255, 106, 0, 0.35);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-5px);
}

.btn-secondary {
    display: inline-block;
    padding: 16px 45px;
    background-color: transparent;
    color: #fff;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition-smooth);
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-secondary:hover {
    background-color: #fff;
    color: var(--accent-color);
    transform: translateY(-5px);
    border-color: #fff;
}

.btn-primary.light {
    background-color: #fff;
    color: var(--primary-color);
    border-color: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.btn-primary.light:hover {
    background-color: transparent;
    color: #fff;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.6;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background-color: #fff;
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

.stats-section {
    padding: 60px 0;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--card-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-icon {
    font-size: 2rem;
    color: var(--accent-color-gold);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

.neuromarketing-section {
    padding: 120px 0;
}

.organic-box {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--card-bg) 100%);
    border-radius: 40px;
    padding: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--card-border);
}

.organic-box.inverse {
    background: linear-gradient(135deg, var(--primary-color) 0%, #d95a00 100%);
    color: #fff;
    text-align: center;
    display: block;
    border: none;
}

.nm-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.15;
    color: var(--text-main);
    letter-spacing: -1px;
}

.nm-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.btn-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s ease;
}

.btn-text:hover {
    gap: 20px;
}

.nm-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    transform: rotate(2deg);
    transition: var(--transition-smooth);
    position: relative;
}

.nm-image::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border-radius: 30px;
    box-shadow: inset 0 0 0 10px var(--bg-main);
    pointer-events: none;
}

.nm-image:hover {
    transform: rotate(0deg) scale(1.02);
}

.nm-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.sub-heading {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    background: rgba(255, 106, 0, 0.1);
    padding: 6px 15px;
    border-radius: 50px;
}

.section-header h2 {
    font-size: 3.5rem;
    color: var(--text-main);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
}

.image-accordion-section {
    padding: 80px 0;
}

.accordion-container {
    display: flex;
    width: 100%;
    height: 600px;
    border-radius: 30px;
    overflow: hidden;
    margin: 0 auto;
    max-width: 1500px;
    padding: 0 20px;
}

.accordion-item {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    transition: flex 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    border-radius: 20px;
    margin: 0 10px;
}

.accordion-item:hover {
    flex: 3;
}

.accordion-link {
    display: block;
    width: 100%;
    height: 100%;
}

.accordion-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 15, 29, 0.9) 0%, rgba(0,0,0,0) 100%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
    transition: background 0.6s ease;
}

.accordion-item:hover .accordion-overlay {
    background: linear-gradient(to top, rgba(255, 106, 0, 0.85) 0%, rgba(0,0,0,0.1) 100%);
}

.accordion-content {
    color: #ffffff;
    width: 100%;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.accordion-item:hover .accordion-content {
    transform: translateY(0);
}

.accordion-content .icon-circle {
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-size: 20px; margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.accordion-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    white-space: nowrap;
}

.accordion-content p {
    font-size: 1rem;
    font-weight: 300;
    opacity: 0;
    height: 0;
    transition: opacity 0.4s ease, height 0.4s ease;
}

.accordion-item:hover .accordion-content p {
    opacity: 1;
    height: auto;
    margin-top: 10px;
}

.programs-grid-section {
    padding: 100px 0;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.modern-card {
    background-color: var(--card-bg);
    border-radius: 24px;
    padding: 45px 35px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--card-border);
    z-index: 1;
}

.card-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    filter: blur(90px);
    top: -80px;
    right: -80px;
    opacity: 0.08;
    z-index: -1;
    transition: var(--transition-smooth);
    border-radius: 50%;
}

.modern-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 106, 0, 0.3);
}

.modern-card:hover .card-glow {
    opacity: 0.2;
    transform: scale(1.2);
}

.card-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 106, 0, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.modern-card:hover .card-icon {
    background-color: var(--primary-color);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.modern-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 15px;
    line-height: 1.3;
}

.modern-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-arrow {
    margin-top: auto;
    width: 45px;
    height: 45px;
    background: var(--bg-main);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-main);
    transition: var(--transition-smooth);
    border: 1px solid var(--card-border);
}

.modern-card:hover .btn-arrow {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.highlight-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #d95a00 100%);
    color: #fff;
    border: none;
}

.highlight-card h3, .highlight-card p {
    color: #fff;
}

.highlight-card .card-icon {
    background-color: rgba(255,255,255,0.2);
    color: #fff;
}

.highlight-card .btn-arrow {
    background-color: rgba(255,255,255,0.2);
    color: #fff;
    border: none;
}
.highlight-card:hover .btn-arrow {
    background-color: #fff;
    color: var(--primary-color);
}

.cta-section {
    padding: 40px 0 100px;
}

.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 45px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.map-section {
    padding: 0 0 100px 0;
}

.map-container {
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--card-border);
    padding: 10px;
    background: var(--card-bg);
}

.map-container iframe {
    border-radius: 20px;
    filter: grayscale(20%) contrast(1.1);
}

[data-theme="dark"] .map-container iframe {
    filter: invert(90%) hue-rotate(180deg) brightness(85%) contrast(1.2);
}

.reveal-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(60px);
    transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    font-size: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: translateY(-10px) scale(1.1) rotate(10deg);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.6);
}

@media (max-width: 1200px) {
    .mega-title { font-size: 4.5rem; }
    .organic-box { padding: 60px; gap: 50px; }
    .section-header h2 { font-size: 3rem; }
}

@media (max-width: 1024px) {
    .nav-menu { gap: 20px; }
    .nav-menu > li > a { font-size: 13px; }
    
    .logo-circle { width: 55px; height: 555px; top: 15px; }
    .logo-circle img { width: 60px; height: 60px; }
    .school-name-link { margin-left: 130px; }
    .school-name { font-size: 1.1rem; }
    
    .glass-header.scrolled .logo-circle { width: 50px; height: 50px; top: 5px; }
    .glass-header.scrolled .logo-circle img { width: 35px; height: 35px; }
    .glass-header.scrolled .school-name-link { margin-left: 95px; }
    
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .organic-box { grid-template-columns: 1fr; text-align: center; }
    .btn-text { justify-content: center; }
    .accordion-container { flex-direction: column; height: 800px; }
    .accordion-item { margin: 10px 0; }
    .cta-content h2 { font-size: 2.8rem; }
}

@media (max-width: 768px) {
    .nav-container { height: 90px; }
    
    .logo-circle { width: 85px; height: 85px; top: 15px; border-width: 3px; }
    .logo-circle img { width: 70px; height: 70px; }
    .school-name-link { margin-left: 100px; }
    .school-name { font-size: 0.95rem; }
    
    .glass-header.scrolled .nav-container { height: 80px; }
    .glass-header.scrolled .logo-circle { width: 75px; height: 75px; top: 10px; }
    .glass-header.scrolled .logo-circle img { width: 60px; height: 60px; }
    .glass-header.scrolled .school-name-link { margin-left: 90px; }
    .glass-header.scrolled .school-name { font-size: 0.9rem; }
    
    .primary-nav {
        position: absolute;
        top: 90px;
        left: -100%;
        width: 100%;
        background-color: var(--card-bg);
        transition: left 0.4s ease;
        height: calc(100vh - 90px);
        overflow-y: auto;
        box-shadow: var(--shadow-hover);
    }
    
    .glass-header.scrolled .primary-nav { top: 80px; height: calc(100vh - 80px); }
    .primary-nav.nav-active { left: 0; }
    
    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        gap: 0;
    }
    
    .nav-menu > li { width: 100%; border-bottom: 1px solid var(--card-border); }
    .nav-menu > li > a { 
        color: var(--text-main); 
        padding: 20px 0; 
        font-size: 16px; 
        justify-content: space-between;
    }
    .glass-header:not(.scrolled) .nav-menu > li > a { color: var(--text-main); }
    .nav-menu > li > a::after { display: none; }
    
    .dropdown-menu, .nested-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: var(--bg-main);
        display: none;
        padding: 0;
        border: none;
        border-radius: 0;
    }
    
    .has-dropdown.open > .dropdown-menu, 
    .has-dropdown-nested.open > .nested-menu {
        display: block;
    }

    .dropdown-menu a { padding: 15px 20px; font-size: 14px; }
    .nested-menu a { padding: 15px 40px; font-size: 13px; border-top: 1px solid var(--card-border); }
    
    .mobile-menu-toggle { display: block; }
    .header-actions { margin-left: auto; }
    
    .hero-overlay { padding-left: 5%; padding-right: 5%; justify-content: center; text-align: center; }
    .mega-title { font-size: 3rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .hero-actions { flex-direction: column; }
    .cta-buttons { flex-direction: column; }
    
    .stats-grid { grid-template-columns: 1fr; }
    .accordion-container { height: 1000px; }
    .organic-box { padding: 40px 20px; border-radius: 25px; }
    .nm-content h2 { font-size: 2.2rem; }
    .section-header h2 { font-size: 2.2rem; }
}

.main-footer {
    background-color: var(--bg-secondary);
    padding: 80px 0 20px;
    border-top: 1px solid var(--card-border);
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .footer-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: var(--shadow-soft);
    border: 3px solid var(--card-border);
    transition: var(--transition-smooth);
    background-color: #ffffff;
    object-fit: contain;
}

.footer-brand .footer-logo:hover {
    transform: rotate(-5deg) scale(1.05);
    border-color: var(--primary-color);
}

.footer-desc {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-main);
    transition: var(--transition-smooth);
    font-size: 1.1rem;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 106, 0, 0.3);
    border-color: var(--primary-color);
}

.footer-links h3, .footer-contact h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-links h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.footer-links:hover h3::after, .footer-contact:hover h3::after {
    width: 100%;
}

.footer-links ul, .footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
    color: var(--primary-color);
    opacity: 0;
    width: 0;
    transform: translateX(-10px);
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--primary-color);
    gap: 8px;
}

.footer-links a:hover::before {
    opacity: 1;
    width: auto;
    transform: translateX(0);
}

.footer-contact li {
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid var(--card-border);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.developer-credit strong {
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px 30px;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 60px 0 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-links h3::after, .footer-contact h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-links:hover h3::after, .footer-contact:hover h3::after {
        width: 40px;
    }
    .footer-links a {
        justify-content: center;
    }
    .footer-contact li {
        justify-content: center;
        text-align: center;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding-bottom: 20px;
    }
}