@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Light Theme (Default) */
    --primary: #0a2540;
    --primary-light: #164380;
    --accent: #facc15;
    --accent-hover: #eab308;
    --bg-main: #f8fafc;
    --bg-white: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border-color: rgba(0, 0, 0, 0.05);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 10px 40px rgba(10, 37, 64, 0.12);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: 1px solid rgba(255, 255, 255, 0.6);
    --hero-fade-1: rgba(250, 204, 21, 0.1);
    --hero-fade-2: rgba(10, 37, 64, 0.05);
    --card-hover-grad: rgba(250, 204, 21, 0.05);
    --icon-bg: #f1f5f9;
}

[data-theme="dark"] {
    /* Premium Midnight Blue Dark Theme */
    --primary: #f8fafc;
    --primary-light: #e2e8f0;
    --accent: #facc15;
    --accent-hover: #eab308;
    --bg-main: #020617; 
    --bg-white: #0f172a; 
    --text-main: #e2e8f0;
    --text-muted: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.05);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 10px 40px rgba(0, 0, 0, 0.5);
    --glass-bg: rgba(15, 23, 42, 0.7);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --hero-fade-1: rgba(250, 204, 21, 0.05);
    --hero-fade-2: rgba(14, 165, 233, 0.05);
    --card-hover-grad: rgba(250, 204, 21, 0.05);
    --icon-bg: #1e293b;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Outfit', sans-serif; color: var(--primary); line-height: 1.2; transition: color 0.4s ease;}
a { text-decoration: none; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; display: block; }

/* Scroll Progress Bar */
.scroll-progress-container {
    position: fixed; top: 0; left: 0; width: 100%; height: 4px; background: transparent; z-index: 2000;
}
.scroll-progress-bar {
    height: 100%; width: 0%; background: var(--accent);
    box-shadow: 0 0 10px var(--accent-hover);
    border-top-right-radius: 4px; border-bottom-right-radius: 4px;
}

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: clamp(12px, 2vw, 16px) clamp(24px, 4vw, 36px); border-radius: 50px;
    font-family: 'Outfit', sans-serif; font-weight: 600; font-size: clamp(1rem, 1.5vw, 1.15rem);
    cursor: pointer; border: none; text-align: center;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s, border 0.3s, transform 0.3s;
    position: relative; z-index: 1; overflow: hidden;
}

.btn-primary { background: var(--accent); color: #0a2540; box-shadow: 0 8px 20px rgba(250, 204, 21, 0.3); }
.btn-primary:hover { background: var(--accent-hover); box-shadow: 0 12px 25px rgba(250, 204, 21, 0.5); transform: translateY(-3px) scale(1.03); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--bg-main); transform: translateY(-3px); }
.btn-secondary { background: #e2e8f0; color: #0f172a; border: none; }
.btn-secondary:hover { background: #cbd5e1; transform: translateY(-3px); }

/* Shine Effect Animation specific styles */
.btn::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: all 0.7s ease;
    z-index: 2;
    pointer-events: none;
}

.btn:hover::after {
    left: 200%;
    transition: all 0.7s ease-in-out;
}


/* Header & Nav */
header { position: fixed; top: 0; width: 100%; z-index: 1000; transition: all 0.4s ease; padding: 20px 0; }
header.scrolled { padding: 12px 0; background: var(--glass-bg); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: var(--glass-border); box-shadow: var(--shadow-soft); }
.nav-container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 24px); display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Outfit', sans-serif; font-size: clamp(1.4rem, 2.5vw, 1.8rem); font-weight: 800; color: var(--primary); display: flex; gap: 8px; z-index: 1001;}
.logo span { color: var(--accent-hover); }

/* Navigation Links - Desktop */
.nav-links { display: flex; list-style: none; gap: 32px; align-items: center; }
.nav-links li { margin: 0; }
.nav-links a { color: var(--text-main); font-weight: 500; font-size: 1.05rem; position: relative; }
.nav-links a::after { content: ''; position: absolute; width: 0; height: 2px; background: var(--primary); bottom: -4px; left: 0; transition: width 0.3s ease; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: clamp(10px, 2vw, 16px); z-index: 1001;}

/* Dark Mode Toggle */
.theme-toggle { background: none; border: none; color: var(--primary); font-size: 1.2rem; cursor: pointer; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; background: var(--icon-bg); }
.theme-toggle:hover { transform: rotate(15deg) scale(1.1); background: var(--border-color); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: transparent; border: none; padding: 5px;}
.hamburger span { width: 28px; height: 3px; background-color: var(--primary); border-radius: 3px; transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); transform-origin: left;}
.hamburger.active span:nth-child(1) { transform: rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg); }

/* Mobile Menu Overlay for sliding drawer */
.menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(0,0,0,0.5); backdrop-filter: blur(5px); z-index: 999; opacity: 0; visibility: hidden; transition: 0.4s ease; }
.menu-overlay.active { opacity: 1; visibility: visible; }

/* Hero Section */
.hero { min-height: 100vh; display: flex; align-items: center; padding: clamp(100px, 15vh, 140px) clamp(16px, 4vw, 24px) 60px; background: radial-gradient(circle at top right, var(--hero-fade-1) 0%, transparent 40%), radial-gradient(circle at bottom left, var(--hero-fade-2) 0%, transparent 40%); position: relative; overflow: hidden; }
#particles-js { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none;}
.bg-shape { position: absolute; z-index: -1; filter: blur(60px); opacity: 0.5; animation: drift 15s infinite alternate ease-in-out; }
.shape-1 { width: clamp(200px, 40vw, 400px); height: clamp(200px, 40vw, 400px); background: #38bdf8; top: 10%; left: 5%; border-radius: 50%; }
.shape-2 { width: clamp(150px, 30vw, 300px); height: clamp(150px, 30vw, 300px); background: #fef08a; bottom: 20%; right: 10%; border-radius: 50%; animation-delay: -5s; }

@keyframes drift { 0% { transform: translateY(0) scale(1); } 100% { transform: translateY(50px) scale(1.1); } }

.hero-container { width: 100%; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 60px); align-items: center; position: relative; z-index: 1;}
/* Fluid Typography for Hero */
.hero-content h1 { font-size: clamp(2.5rem, 5vw + 1rem, 4.2rem); font-weight: 800; margin-bottom: 24px; letter-spacing: -1px; line-height: 1.1; min-height: 120px; }
.hero-content h1 span.typed-text { color: var(--accent-hover); }
.hero-content p { font-size: clamp(1rem, 2vw, 1.25rem); color: var(--text-muted); margin-bottom: 40px; max-width: 540px; }
.hero-actions { display: flex; gap: clamp(10px, 2vw, 20px); flex-wrap: wrap; }

.hero-image-wrapper { position: relative; display: flex; justify-content: center; }
.hero-image { width: 100%; max-width: 500px; transform: scale(1.05); filter: drop-shadow(0 20px 30px rgba(0,0,0,0.1)); animation: float 6s ease-in-out infinite; }
@keyframes float { 0% { transform: translateY(0px) scale(1.05); } 50% { transform: translateY(-15px) scale(1.05); } 100% { transform: translateY(0px) scale(1.05); } }

.floating-badge { position: absolute; background: var(--glass-bg); backdrop-filter: blur(10px); padding: clamp(8px, 2vw, 12px) clamp(16px, 3vw, 24px); border-radius: 40px; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-soft); border: var(--glass-border); animation: bounce-in 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; white-space: nowrap;}
.badge-1 { top: 15%; left: 0%; transform: translateX(-20px); animation-delay: 0.5s; }
.badge-2 { bottom: 15%; right: 0%; transform: translateX(20px); animation-delay: 0.8s; }
.floating-badge i { font-size: clamp(1.2rem, 2.5vw, 1.5rem); color: #22c55e; }

/* Stats Counter Section */
.stats-section { padding: clamp(40px, 8vw, 60px) clamp(16px, 4vw, 24px); background: var(--bg-white); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); position: relative; z-index: 2;}
.stats-grid { width: 100%; max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: clamp(20px, 4vw, 30px); text-align: center; }
.stat-item h3 { font-size: clamp(2.5rem, 5vw, 3.5rem); color: var(--accent-hover); font-weight: 800; margin-bottom: 4px; font-family: 'Outfit';}
.stat-item p { color: var(--text-muted); font-size: clamp(0.9rem, 1.5vw, 1.1rem); font-weight: 500; font-family: 'Inter'; text-transform: uppercase; letter-spacing: 1px;}

/* Features Section */
.features { padding: clamp(60px, 10vw, 100px) clamp(16px, 4vw, 24px); background: var(--bg-main); position: relative; }
.section-head { text-align: center; max-width: 700px; margin: 0 auto clamp(40px, 7vw, 60px); }
.section-head .tag { display: inline-block; padding: 6px 16px; background: var(--icon-bg); color: var(--primary); font-weight: 600; border-radius: 30px; margin-bottom: 16px; font-family: 'Outfit'; letter-spacing: 1px; text-transform: uppercase; font-size: 0.85rem; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; line-height: 1.2;}
.section-head p { color: var(--text-muted); font-size: clamp(1rem, 2vw, 1.1rem); }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(clamp(250px, 100%, 300px), 1fr)); gap: clamp(20px, 4vw, 30px); width: 100%; max-width: 1200px; margin: 0 auto; perspective: 1000px;}
.feature-card { background: var(--glass-bg); border: 1px solid var(--border-color); padding: clamp(24px, 5vw, 40px) clamp(20px, 4vw, 30px); border-radius: 24px; box-shadow: var(--shadow-soft); transition: border-color 0.4s ease, box-shadow 0.4s ease; text-align: left; position: relative; overflow: hidden; z-index: 1; transform-style: preserve-3d; display: flex; flex-direction: column;}
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, var(--card-hover-grad) 0%, transparent 100%); z-index: -1; opacity: 0; transition: opacity 0.4s ease; }
.feature-card:hover { box-shadow: var(--shadow-hover); border-color: rgba(250, 204, 21, 0.3); }
.feature-card:hover::before { opacity: 1; }

.icon-box { width: clamp(48px, 10vw, 64px); height: clamp(48px, 10vw, 64px); background: var(--icon-bg); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: clamp(20px, 4vw, 24px); color: var(--primary); margin-bottom: clamp(16px, 3vw, 24px); transition: all 0.4s ease; transform: translateZ(30px);}
.feature-card h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); margin-bottom: 12px; transform: translateZ(20px);}
.feature-card p { color: var(--text-muted); font-size: clamp(0.95rem, 1.5vw, 1rem); transform: translateZ(10px);}

/* Calculator */
.calculator-section { padding: clamp(60px, 10vw, 100px) clamp(16px, 4vw, 24px); background: var(--bg-white); }
.calc-container { width: 100%; max-width: 1000px; margin: 0 auto; background: var(--bg-main); border-radius: clamp(20px, 4vw, 30px); box-shadow: var(--shadow-hover); overflow: hidden; display: grid; grid-template-columns: 1.2fr 1fr; border: 1px solid var(--border-color); }
.calc-inputs { padding: clamp(30px, 5vw, 50px); width: 100%; box-sizing: border-box;}
.calc-inputs h3 { font-size: clamp(1.5rem, 4vw, 2rem); margin-bottom: 30px; }
.range-group { margin-bottom: 30px; width: 100%; }
.range-header { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-bottom: 12px; font-weight: 500; font-size: clamp(0.9rem, 2vw, 1rem); }
.range-value { color: var(--primary); font-weight: 700; font-size: clamp(1.05rem, 2.5vw, 1.2rem); }
input[type=range] { -webkit-appearance: none; width: 100%; background: var(--icon-bg); height: 8px; border-radius: 8px; outline: none; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 24px; height: 24px; border-radius: 50%; background: var(--primary); cursor: pointer; border: 4px solid var(--bg-main); box-shadow: 0 2px 6px rgba(0,0,0,0.2); transition: transform 0.1s; }
input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.2); }

.calc-results { background: linear-gradient(135deg, #0a2540, #164380); color: white; padding: clamp(30px, 5vw, 50px); display: flex; flex-direction: column; justify-content: center; width: 100%; box-sizing: border-box;}
.result-card { text-align: center; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); padding: clamp(20px, 4vw, 30px); border-radius: 20px; border: 1px solid rgba(255,255,255,0.2); margin-bottom: 30px; }
.result-label { font-size: clamp(1rem, 2vw, 1.1rem); opacity: 0.9; margin-bottom: 10px; }
.result-amount { font-size: clamp(2.5rem, 5vw, 3.5rem); font-family: 'Outfit'; font-weight: 700; color: #facc15; word-break: break-all;} /* word-break for huge numbers on tiny screens */
.calc-results .details { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; opacity: 0.8; font-size: clamp(0.85rem, 2vw, 0.9rem); margin-bottom: 20px; padding-top: 15px; border-top: 1px solid rgba(255,255,255,0.2); color:white;}
.calc-results .details strong { color: white; margin-left: auto; text-align: right;}

/* Apply & Multi-step form */
.apply-section { padding: clamp(60px, 10vw, 100px) clamp(16px, 4vw, 24px); background: var(--bg-main); }
.apply-grid { width: 100%; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 60px); align-items: center; }
.apply-card { background: var(--glass-bg); padding: clamp(30px, 5vw, 50px); border-radius: clamp(20px, 4vw, 30px); box-shadow: var(--shadow-hover); border: 1px solid var(--border-color); position: relative; overflow: hidden; min-height: 480px; width: 100%; box-sizing: border-box;}

/* Wizard CSS */
.wizard-progress { display: flex; justify-content: space-between; position: relative; margin-bottom: 40px; }
.wizard-progress::before { content: ''; position: absolute; top: 50%; left: 0; transform: translateY(-50%); height: 3px; width: 100%; background: var(--icon-bg); z-index: 1;}
.indicator-line { position: absolute; top: 50%; left: 0; transform: translateY(-50%); height: 3px; width: 0%; background: var(--accent); z-index: 2; transition: width 0.4s ease; }
.step-indicator { width: 35px; height: 35px; border-radius: 50%; background: var(--icon-bg); color: var(--text-muted); display: flex; align-items: center; justify-content: center; font-weight: 600; z-index: 3; position: relative; transition: 0.3s; border: 3px solid var(--glass-bg);}
.step-indicator.active { background: var(--accent); color: #000; border-color: var(--accent-hover); box-shadow: 0 0 15px rgba(250, 204, 21, 0.4);}
.step-indicator.completed { background: var(--primary); color: #fff; border-color: var(--primary); }

.wizard-form { position: relative; }
.wizard-step { display: none; animation: fadeInRight 0.4s ease; }
.wizard-step.active { display: block; }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; color: var(--text-main); font-size: clamp(0.9rem, 1.5vw, 1rem);}
.form-control { width: 100%; padding: 14px 20px; border-radius: 12px; border: 1px solid var(--border-color); background: var(--icon-bg); font-family: 'Inter'; font-size: 1rem; transition: all 0.3s ease; color: var(--text-main); box-sizing: border-box; }
.form-control:focus { outline: none; border-color: var(--primary); background: var(--bg-white); box-shadow: 0 0 0 4px rgba(10, 37, 64, 0.1); }
.wizard-actions { display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; margin-top: 30px; }
.wizard-actions .btn { flex-grow: 1; } /* Buttons stretch on narrow screens */

/* Testimonials */
.testimonials { padding: clamp(60px, 10vw, 100px) clamp(16px, 4vw, 24px); background: #061626; color: white; position: relative; overflow: hidden; }
.testimonials .section-head h2 { color: white; }
.testimonials .section-head p { color: rgba(255,255,255,0.8); }
.testimonials .section-head .tag { background: rgba(255,255,255,0.1); color: #facc15; }
.swiper-container { width: 100%; max-width: 1000px; margin: 0 auto; padding: 20px 0 60px; overflow: hidden;}
.swiper-slide { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(10px); border-radius: 20px; padding: clamp(24px, 5vw, 40px); height: auto;}
.quote-icon { font-size: clamp(2rem, 4vw, 3rem); color: #facc15; opacity: 0.5; margin-bottom: 20px; }
.testi-text { font-size: clamp(1rem, 2vw, 1.25rem); line-height: 1.8; margin-bottom: 30px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 16px; flex-wrap: wrap;}
.author-avatar { width: 60px; height: 60px; border-radius: 50%; background: #ccc; background-size: cover; flex-shrink: 0;}
.author-info h4 { color: white; margin-bottom: 4px; font-size: 1.1rem; word-break: break-word;}
.author-info p { color: #facc15; font-size: 0.9rem; }

/* Footer */
footer { background: #020617; color: white; padding: clamp(60px, 10vw, 80px) clamp(16px, 4vw, 24px) 30px; }
.footer-grid { width: 100%; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: clamp(30px, 5vw, 40px); margin-bottom: 60px; }
.footer-brand .logo { color: white; margin-bottom: 20px; }
.footer-brand p { color: #94a3b8; max-width: 300px; margin-bottom: 30px; font-size: clamp(0.9rem, 1.5vw, 1rem);}
.social-links { display: flex; gap: 16px; flex-wrap: wrap; }
.social-links a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: white; transition: all 0.3s; }
.social-links a:hover { background: #facc15; color: #020617; transform: translateY(-3px); }
.footer-links h4 { color: white; font-size: 1.2rem; margin-bottom: 24px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #94a3b8; transition: color 0.3s, padding-left 0.3s;}
.footer-links a:hover { color: #facc15; padding-left: 5px; }
.footer-bottom { width: 100%; max-width: 1200px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; text-align: center; color: #64748b; font-size: 0.9rem; }

/* Floating WhatsApp */
.floating-whatsapp { position: fixed; bottom: clamp(15px, 3vw, 30px); right: clamp(15px, 3vw, 30px); width: clamp(50px, 10vw, 60px); height: clamp(50px, 10vw, 60px); background: #25D366; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: clamp(24px, 5vw, 32px); box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4); z-index: 999; transition: all 0.3s; animation: pulse-wa 2s infinite; }
.floating-whatsapp:hover { transform: scale(1.1); }

/* Success Modal */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(8px); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.4s ease; padding: 20px;}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content { background: var(--bg-white); padding: clamp(30px, 6vw, 50px) clamp(20px, 5vw, 40px); border-radius: 30px; text-align: center; width: 100%; max-width: 450px; transform: translateY(30px) scale(0.95); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); border: var(--glass-border); box-sizing: border-box;}
.modal-overlay.active .modal-content { transform: translateY(0) scale(1); }
.modal-close { width: 100%; cursor: pointer; background: var(--primary); color: var(--bg-main); border: none; padding: 12px 30px; border-radius: 50px; font-weight: 600; font-family: 'Outfit'; transition: 0.3s; margin-top: 10px;}

/* Specific Premium Mobile Drawer View overrides */
@media (max-width: 992px) {
    .hero-container, .calc-container, .apply-grid { grid-template-columns: 1fr; }
    .hero { text-align: center; }
    .hero-actions { justify-content: center; }
    .hero-content p { margin: 0 auto 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    /* Mobile slide-in Drawer Navigation */
    .nav-links { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: var(--glass-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); flex-direction: column; padding: 100px 30px 40px; box-shadow: -10px 0 30px rgba(0,0,0,0.1); transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); gap: 30px; align-items: flex-start; z-index: 1000; border-left: var(--glass-border);}
    .nav-links.active { right: 0; }
    
    .nav-links li { width: 100%; opacity: 0; transform: translateX(20px); transition: all 0.4s ease; }
    /* Staggered fade in applied via JS or direct CSS */
    .nav-links.active li:nth-child(1) { opacity: 1; transform: translateX(0); transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { opacity: 1; transform: translateX(0); transition-delay: 0.2s; }
    .nav-links.active li:nth-child(3) { opacity: 1; transform: translateX(0); transition-delay: 0.3s; }
    .nav-links.active li:nth-child(4) { opacity: 1; transform: translateX(0); transition-delay: 0.4s; }
    .nav-links.active li:nth-child(5) { opacity: 1; transform: translateX(0); transition-delay: 0.5s; }

    .nav-links a { font-size: 1.25rem; display: block; width: 100%;}
    
    .hamburger { display: flex; position: relative; z-index: 1002;}
    .nav-actions .btn { display: none; }
    .footer-grid { grid-template-columns: 1fr; text-align: center;}
    .footer-links h4 { margin-top: 20px;}
    .social-links { justify-content: center; }
    .footer-links ul li { align-items: center; justify-content: center; } /* For reach us items */
    
    /* Optimize floating badges purely for space */
    .floating-badge { padding: 8px 16px; transform: scale(0.9); }
    .badge-1 { top: 5%; }
    .badge-2 { bottom: 5%; }
}
