:root {
  --primary: #3F4BB8;
  --primary-dark: #2d3790;
  --primary-light: #e8eaff;
  --accent: #f59e0b;
  --accent-light: #fef3c7;
  --secondary: #1e293b;
  --light: #f8fafc;
  --dark: #0f172a;
  --white: #ffffff;
  --gray: #64748b;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.05);
  --shadow-md: 0 12px 40px rgba(0,0,0,0.08);
  --shadow-lg: 0 25px 60px rgba(0,0,0,0.12);
  --shadow-xl: 0 35px 80px rgba(63,75,184,0.2);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
}

[data-theme="dark"] {
  --light: #0f172a;
  --dark: #f1f5f9;
  --white: #1e293b;
  --gray: #94a3b8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 100%; }
body { font-family: var(--font-body); background: var(--light); color: var(--dark); line-height: 1.6; transition: background 0.4s, color 0.4s; overflow-x: hidden; }
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); }
img { max-width: 100%; height: auto; display: block; }
.container { width: 100%; max-width: 1340px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 7rem 0; position: relative; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.9rem 2.2rem; border-radius: 50px; font-weight: 600; font-size: 1rem; border: none; cursor: pointer; transition: all 0.35s; text-align: center; letter-spacing: 0.3px; }
.btn-primary { background: var(--primary); color: white; box-shadow: 0 8px 25px rgba(63,75,184,0.35); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: 0 15px 35px rgba(63,75,184,0.45); }
.btn-outline-light { background: transparent; border: 2px solid rgba(255,255,255,0.8); color: white; backdrop-filter: blur(5px); }
.btn-outline-light:hover { background: white; color: var(--primary); border-color: white; }

/* LOADER */
#loader { position: fixed; inset: 0; background: var(--light); z-index: 99999; display: flex; align-items: center; justify-content: center; transition: opacity 0.5s, visibility 0.5s; }
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-spinner { width: 50px; height: 50px; border: 4px solid rgba(0,0,0,0.08); border-top-color: var(--primary); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* NAVBAR */
.navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 10000; padding: 0.8rem 0; transition: all 0.4s ease; background: transparent; border-bottom: 1px solid transparent; }
.navbar.scrolled { background: rgba(255,255,255,0.94); backdrop-filter: blur(28px); border-bottom: 1px solid rgba(0,0,0,0.04); box-shadow: 0 6px 35px rgba(0,0,0,0.06); padding: 0.45rem 0; }
[data-theme="dark"] .navbar.scrolled { background: rgba(15,23,42,0.94); border-bottom: 1px solid rgba(255,255,255,0.05); }
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 2.1rem; font-weight: 800; color: white; font-family: var(--font-heading); letter-spacing: -1px; transition: color 0.3s; }
.navbar.scrolled .logo { color: var(--primary); }
.nav-menu { display: flex; align-items: center; gap: 1.8rem; list-style: none; }
.nav-item { position: relative; }
.nav-link { font-weight: 500; color: rgba(255,255,255,0.9); font-size: 0.95rem; cursor: pointer; display: flex; align-items: center; gap: 0.3rem; }
.navbar.scrolled .nav-link { color: var(--dark); }
.nav-link::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 3px; border-radius: 3px; background: var(--accent); transition: width 0.3s ease; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.dropdown-menu { position: absolute; top: 100%; left: 0; background: white; border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,0.15); padding: 0.8rem 0; min-width: 220px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease; z-index: 100; list-style: none; }
.nav-item:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a { display: block; padding: 0.7rem 1.5rem; color: var(--dark); font-weight: 500; font-size: 0.9rem; transition: 0.2s; }
.dropdown-menu li a:hover { background: var(--primary-light); color: var(--primary); }

/* NAV ACTIONS */
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.theme-toggle-btn { background: rgba(255,255,255,0.2); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.3); color: white; width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s; font-size: 1.1rem; }
.navbar.scrolled .theme-toggle-btn { background: var(--primary-light); border-color: var(--primary-light); color: var(--primary); }
.theme-toggle-btn:hover { background: rgba(255,255,255,0.35); }
.navbar.scrolled .theme-toggle-btn:hover { background: var(--primary); color: white; }
.donate-btn { background: #3F4BB8; color: #fefeff; padding: 0.6rem 1.5rem; border-radius: 50px; font-weight: 600; border: none; cursor: pointer; transition: all 0.3s; font-size: 0.9rem; display: flex; align-items: center; gap: 0.4rem; box-shadow: 0 4px 15px rgba(245,158,11,0.4); }
.donate-btn:hover { background: #e08e00; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(245,158,11,0.5); }
.navbar.scrolled .donate-btn { box-shadow: 0 4px 10px #3F4BB8; }

/* HAMBURGER MENU */
.hamburger { 
    display: none; 
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    cursor: pointer; 
    gap: 5px; 
    z-index: 1001; 
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: transparent;
    border: none;
    padding: 8px;
}

.hamburger span { 
    display: block;
    width: 24px; 
    height: 2.5px; 
    background-color: #ffffff;
    transition: all 0.3s ease; 
    border-radius: 3px; 
}

/* When navbar is scrolled */
.navbar.scrolled .hamburger span { 
    background-color: #1e293b;
}

/* Dark mode when scrolled */
[data-theme="dark"] .navbar.scrolled .hamburger span {
    background-color: #e2e8f0;
}

/* Hamburger animation when active */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
    background-color: #1e293b !important;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
    background-color: #1e293b !important;
}

/* Show hamburger only on mobile */
@media (max-width: 768px) {
    .hamburger { 
        display: flex; 
    }
}

/* HERO SLIDER */
.hero-slider { position: relative; width: 100%; height: 100vh; min-height: 700px; overflow: hidden; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease-in-out; background-size: cover; background-position: center; display: flex; align-items: center; }
.slide.active { opacity: 1; }
.slide-content { position: relative; z-index: 2; max-width: 780px; color: white; }
.slide-content h2 { font-size: clamp(3rem, 6.5vw, 5rem); font-weight: 900; margin-bottom: 1.5rem; line-height: 1.1; text-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.slide-content p { font-size: 1.3rem; margin-bottom: 2.5rem; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.slider-nav { position: absolute; bottom: 45px; left: 50%; transform: translateX(-50%); display: flex; gap: 14px; z-index: 5; }
.slider-dot { width: 14px; height: 14px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: 0.3s; }
.slider-dot.active { background: var(--accent); transform: scale(1.4); }
.slider-arrows { position: absolute; top: 50%; width: 100%; display: flex; justify-content: space-between; padding: 0 2rem; z-index: 5; transform: translateY(-50%); }
.slider-arrow { width: 55px; height: 55px; border-radius: 50%; background: rgba(255,255,255,0.2); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.3); color: white; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: 0.3s; font-size: 1.3rem; }
.slider-arrow:hover { background: rgba(255,255,255,0.4); }
.slide::before { 
    content: ''; 
    position: absolute; 
    inset: 0; 
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 100%); 
}

/* CAROUSEL */
.carousel-section { overflow: hidden; }
.carousel-container { position: relative; max-width: 1340px; margin: 0 auto; padding: 0 70px; }
.carousel-viewport { overflow: hidden; }
.carousel-track { display: flex; gap: 24px; transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1); }
.carousel-slide { flex: 0 0 calc(33.333% - 16px); min-width: 0; }
.carousel-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; background: var(--white); box-shadow: 0 8px 30px rgba(0,0,0,0.12); border: 2px solid var(--primary-light); cursor: pointer; z-index: 10; font-size: 1.2rem; color: var(--primary); transition: all 0.3s; display: flex; align-items: center; justify-content: center; }
.carousel-arrow:hover { background: var(--primary); color: white; border-color: var(--primary); transform: translateY(-50%) scale(1.06); }
.carousel-arrow.prev { left: 0; }
.carousel-arrow.next { right: 0; }
.carousel-dots { display: flex; justify-content: center; gap: 12px; margin-top: 2.5rem; }
.carousel-dot { width: 12px; height: 12px; border-radius: 50%; background: #cbd5e1; cursor: pointer; transition: all 0.35s; border: none; }
.carousel-dot.active { background: var(--primary); transform: scale(1.5); box-shadow: 0 0 0 4px rgba(63,75,184,0.2); }

/* CAUSE CARD */
.cause-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); transition: all 0.5s ease; background: var(--white); height: 100%; display: flex; flex-direction: column; }
.cause-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-xl); }
.cause-img-wrapper { position: relative; overflow: hidden; height: 260px; }
.cause-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.cause-card:hover .cause-img-wrapper img { transform: scale(1.1); }
.cause-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(63,75,184,0.9) 0%, rgba(63,75,184,0.3) 60%, transparent 100%); display: flex; align-items: flex-end; justify-content: center; padding: 2rem; opacity: 0; transition: opacity 0.5s ease; }
.cause-card:hover .cause-overlay { opacity: 1; }
.cause-badge { position: absolute; top: 16px; left: 16px; background: var(--accent); color: #0f172a; padding: 0.4rem 1.2rem; border-radius: 40px; font-weight: 700; font-size: 0.8rem; z-index: 2; letter-spacing: 0.5px; }
.cause-body { padding: 1.8rem; flex: 1; display: flex; flex-direction: column; }
.cause-body h4 { font-size: 1.25rem; margin-bottom: 0.5rem; color: var(--primary); }
.cause-body p { color: var(--gray); margin-bottom: 1rem; flex: 1; font-size: 0.95rem; }
.progress { height: 10px; border-radius: 10px; background: #e2e8f0; margin: 0.8rem 0; overflow: hidden; }
.progress-bar { height: 100%; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 10px; transition: width 2s ease; }
.cause-stats { display: flex; justify-content: space-between; align-items: center; margin-top: 0.3rem; font-size: 0.9rem; }
.cause-stats strong { color: var(--primary); font-size: 1.1rem; }

/* TEAM */
.team-section-bg { background: linear-gradient(135deg, #e8eaff 0%, #f0e6ff 30%, #e0f0ff 60%, #fef3c7 100%); position: relative; overflow: hidden; }
[data-theme="dark"] .team-section-bg { background: linear-gradient(135deg, #1a1a3e 0%, #1e2a4a 30%, #0f172a 60%, #1a1a2e 100%); }
.team-section-bg::before { content: ''; position: absolute; top: -150px; right: -150px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(63,75,184,0.15) 0%, transparent 70%); border-radius: 50%; }
.team-section-bg::after { content: ''; position: absolute; bottom: -100px; left: -100px; width: 350px; height: 350px; background: radial-gradient(circle, rgba(245,158,11,0.12) 0%, transparent 70%); border-radius: 50%; }
.team-crystal-card { background: rgba(255,255,255,0.45); backdrop-filter: blur(25px); border-radius: 28px; overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,0.06), 0 0 0 1px rgba(255,255,255,0.6) inset; transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); height: 100%; display: flex; flex-direction: column; position: relative; }
[data-theme="dark"] .team-crystal-card { background: rgba(30,41,59,0.5); box-shadow: 0 8px 40px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,255,255,0.08) inset; }
.team-crystal-card:hover { transform: translateY(-18px); box-shadow: 0 30px 70px rgba(63,75,184,0.2), 0 0 0 1px rgba(255,255,255,0.8) inset; background: rgba(255,255,255,0.6); }
[data-theme="dark"] .team-crystal-card:hover { box-shadow: 0 30px 70px rgba(63,75,184,0.3), 0 0 0 1px rgba(255,255,255,0.15) inset; background: rgba(30,41,59,0.65); }
.team-crystal-card::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent); transition: left 0.8s ease; z-index: 2; pointer-events: none; }
.team-crystal-card:hover::before { left: 100%; }
.team-crystal-img { position: relative; overflow: hidden; height: 320px; }
.team-crystal-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.team-crystal-card:hover .team-crystal-img img { transform: scale(1.12); }
.team-crystal-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(63,75,184,0.7) 0%, rgba(63,75,184,0.1) 50%, transparent 100%); display: flex; align-items: flex-end; justify-content: center; padding: 2.5rem; opacity: 0; transition: all 0.5s ease; }
.team-crystal-card:hover .team-crystal-overlay { opacity: 1; }
.team-crystal-social { display: flex; gap: 0.9rem; transform: translateY(20px); transition: all 0.5s ease 0.1s; }
.team-crystal-card:hover .team-crystal-social { transform: translateY(0); }
.team-crystal-social a { width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.25); backdrop-filter: blur(15px); border: 1px solid rgba(255,255,255,0.4); color: white; display: flex; align-items: center; justify-content: center; transition: all 0.35s; font-size: 1.1rem; }
.team-crystal-social a:hover { background: var(--accent); color: #0f172a; border-color: var(--accent); transform: translateY(-6px); box-shadow: 0 12px 30px rgba(245,158,11,0.4); }
.team-crystal-body { padding: 2rem 1.8rem; text-align: center; flex: 1; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 1; }
.team-crystal-body h4 { font-size: 1.5rem; color: var(--primary); margin-bottom: 0.3rem; font-weight: 700; }
.team-crystal-body .role { color: var(--gray); font-weight: 500; font-size: 0.95rem; display: inline-block; padding: 0.3rem 1rem; background: rgba(63,75,184,0.08); border-radius: 20px; margin-top: 0.5rem; }
.team-crystal-shine { position: absolute; top: 15px; right: 15px; width: 25px; height: 25px; background: rgba(255,255,255,0.7); border-radius: 50%; filter: blur(8px); z-index: 1; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-image-wrapper { position: relative; order: 2; }
.about-text { order: 1; }
.about-image-wrapper img { border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); transition: transform 0.6s ease; }
.about-image-wrapper:hover img { transform: scale(1.03); }
.about-image-wrapper::after { content: ''; position: absolute; width: 160px; height: 160px; background: var(--primary-light); border-radius: 50%; top: -35px; left: -35px; z-index: -1; animation: floatBubble 6s ease-in-out infinite; }
.about-image-wrapper::before { content: ''; position: absolute; width: 100px; height: 100px; background: var(--accent); opacity: 0.2; border-radius: 50%; bottom: -25px; right: -25px; z-index: -1; animation: floatBubble 8s ease-in-out infinite reverse; }
@keyframes floatBubble { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-20px) scale(1.1); } }
.about-text h2 { font-size: 2.6rem; margin-bottom: 1rem; color: var(--primary); position: relative; display: inline-block; }
.about-text h2::after { content: ''; position: absolute; bottom: -8px; left: 0; width: 60px; height: 4px; background: var(--accent); border-radius: 2px; }
.about-text .lead { font-size: 1.2rem; color: var(--gray); margin-bottom: 1.5rem; }
.about-features-list { display: flex; gap: 1.5rem; margin-top: 1.5rem; flex-wrap: wrap; }
.about-feature-item { display: flex; align-items: center; gap: 0.6rem; background: var(--primary-light); padding: 0.5rem 1.2rem; border-radius: 50px; font-weight: 500; font-size: 0.9rem; transition: all 0.3s; }
.about-feature-item:hover { background: var(--primary); color: rgb(255, 255, 255); transform: translateY(-3px); }
.about-feature-item i { color: var(--primary); }
.about-feature-item:hover i { color: var(--accent); }

/* MVV CARDS */
.mvv-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.mvv-card { background: var(--white); padding: 3rem 2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); text-align: center; position: relative; overflow: hidden; cursor: pointer; z-index: 1; }
.mvv-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); opacity: 0; transition: opacity 0.5s ease; z-index: -1; }
.mvv-card:hover::before { opacity: 1; }
.mvv-card::after { content: ''; position: absolute; width: 200px; height: 200px; background: rgba(255,255,255,0.08); border-radius: 50%; top: -80px; right: -80px; transition: all 0.6s ease; }
.mvv-card:hover::after { width: 300px; height: 300px; top: -120px; right: -120px; }
.mvv-card .mvv-icon-wrapper { position: relative; z-index: 2; transition: transform 0.5s ease; }
.mvv-card:hover .mvv-icon-wrapper { transform: translateY(-8px); }
.mvv-icon { width: 80px; height: 80px; border-radius: 24px; background: var(--primary-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 2.2rem; color: var(--primary); transition: all 0.5s ease; position: relative; }
.mvv-card:hover .mvv-icon { background: rgba(255,255,255,0.25); color: white; border-radius: 50%; transform: rotateY(360deg); box-shadow: 0 0 0 12px rgba(255,255,255,0.1); }
.mvv-card h4 { font-size: 1.4rem; margin-bottom: 1rem; color: var(--primary); transition: color 0.4s ease; position: relative; z-index: 2; }
.mvv-card:hover h4 { color: white; }
.mvv-card p { color: var(--gray); line-height: 1.7; transition: color 0.4s ease; position: relative; z-index: 2; }
.mvv-card:hover p { color: rgba(255,255,255,0.85); }
.mvv-card .mvv-number { position: absolute; top: 15px; right: 20px; font-size: 4rem; font-weight: 800; color: rgba(63,75,184,0.06); z-index: 0; transition: all 0.5s ease; }
.mvv-card:hover .mvv-number { color: rgba(255,255,255,0.1); transform: scale(1.2); }
.mvv-card .mvv-shine { position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%); opacity: 0; transition: opacity 0.5s ease; pointer-events: none; }
.mvv-card:hover .mvv-shine { opacity: 1; animation: shineRotate 3s linear infinite; }
@keyframes shineRotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* COUNTER */
.counter-section { 
    background: linear-gradient(rgba(15,23,42,0.75), rgba(15,23,42,0.45)), url('../images/blog/19.jpg') center/cover no-repeat fixed; 
    color: white; 
    padding: 8rem 0; 
}.counter-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem; text-align: center; }
.counter-item { padding: 2rem 1.8rem; background: rgba(255,255,255,0.05); border-radius: var(--radius-md); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.12); transition: all 0.5s ease; }
.counter-item:hover { background: rgba(255,255,255,0.12); transform: translateY(-10px); border-color: var(--accent); }
.counter-number { font-size: 4rem; font-weight: 800; color: var(--accent); display: block; line-height: 1; }

/* FOOTER */
.footer { background: #0b0f1c; color: #cbd5e1; padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; }

/* BACK TO TOP */
#back-to-top { position: fixed; bottom: 35px; right: 35px; width: 52px; height: 52px; background: var(--primary); color: white; border: none; border-radius: 50%; font-size: 1.4rem; cursor: pointer; display: none; align-items: center; justify-content: center; z-index: 999; box-shadow: 0 10px 30px rgba(63,75,184,0.5); transition: 0.3s; }
#back-to-top:hover { background: var(--primary-dark); transform: translateY(-5px); }

/* ANIMATIONS */
.fade-in-up { opacity: 0; transform: translateY(45px); transition: 0.9s ease; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .carousel-slide { flex: 0 0 calc(50% - 12px); }
  .carousel-container { padding: 0 55px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrapper { order: 1; }
  .about-text { order: 2; }
  .mvv-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .counter-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .carousel-slide { flex: 0 0 100%; }
  .carousel-container { padding: 0 45px; }
  .hamburger { display: flex; }
  .nav-menu { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(255,255,255,0.98); backdrop-filter: blur(35px); flex-direction: column; align-items: center; justify-content: center; gap: 2rem; transform: translateX(100%); transition: transform 0.4s ease; overflow-y: auto; }
  .nav-menu.active { transform: translateX(0); }
  .nav-menu .nav-link { color: var(--dark); font-size: 1.3rem; }
  .dropdown-menu { position: static; background: transparent; box-shadow: none; opacity: 1; visibility: visible; transform: none; padding: 0.5rem 0; text-align: center; display: none; }
  .nav-item.active .dropdown-menu { display: block; }
  .slider-arrows { display: none; }
  .mvv-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .carousel-container { padding: 0 40px; }
  .counter-grid { grid-template-columns: 1fr; }
}


/* FOOTER ENHANCEMENTS */
/* FOOTER ENHANCEMENTS */
footer a:hover {
    color: var(--accent) !important;
    padding-left: 3px;
}

footer .fa-facebook-f:hover,
footer .fa-twitter:hover,
footer .fa-instagram:hover,
footer .fa-linkedin-in:hover,
footer .fa-youtube:hover {
    color: var(--accent) !important;
}


.mvv-card ul li {
    transition: all 0.3s ease;
    padding: 0.3rem 0.5rem;
    border-radius: 6px;
}

.mvv-card ul li:hover {
    background: rgba(63,75,184,0.06);
    padding-left: 0.8rem;
}

.mvv-card:hover ul li {
    color: rgba(255,255,255,0.95) !important;
}

.mvv-card:hover ul li strong {
    color: var(--accent) !important;
}

.mvv-card:hover ul li span:first-child {
    color: white !important;
}

/* ==================== RESPONSIVE FOOTER ==================== */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 3rem;
}

.footer-heading {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-heading-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.9rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-links i {
    font-size: 0.65rem;
    color: var(--accent);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.3rem;
    align-items: flex-start;
}


.contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.2);
}

.contact-icon i {
    color: var(--accent);
    font-size: 0.9rem;
}

.footer-contact span,
.footer-contact a {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    line-height: 1.6;
    text-decoration: none;
    transition: 0.3s;
    word-break: break-word;
}

.footer-contact a:hover {
    color: var(--accent);
}
.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    text-decoration: none;
    font-size: 1rem;
}

.social-icon:hover {
    background: var(--accent);
    color: #0f172a;
    transform: translateY(-3px);
}

/* ==================== RESPONSIVE BREAKPOINTS ==================== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-heading-line {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .social-icon {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        gap: 2rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .footer-contact span,
    .footer-contact a {
        font-size: 0.85rem;
    }
}



.mvv-card ul li:hover {
    background: rgba(63,75,184,0.06) !important;
    transform: translateX(3px);
}

.mvv-card:hover ul li {
    color: rgba(255,255,255,0.9) !important;
}

.mvv-card:hover ul li strong {
    color: white !important;
}

.mvv-card:hover ul li span:first-child {
    background: rgba(255,255,255,0.2) !important;
}


/* Footer social icons */
footer .social-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    text-decoration: none;
    font-size: 1rem;
}

footer .social-icon:hover {
    transform: translateY(-5px);
    border-color: transparent;
}

footer .fa-facebook-f:hover,
footer .social-icon:hover .fa-facebook-f {
    color: #1877F2 !important;
    
}

footer .fa-twitter:hover,
footer .social-icon:hover .fa-twitter {
    color: #1DA1F2 !important;
    
}

footer .fa-instagram:hover,
footer .social-icon:hover .fa-instagram {
    color: #E4405F !important;
    
}

footer .fa-linkedin-in:hover,
footer .social-icon:hover .fa-linkedin-in {
    color: #0A66C2 !important;
    
}

footer .fa-youtube:hover,
footer .social-icon:hover .fa-youtube {
    color: #FF0000 !important;
    
}



