:root {
    /* Original-like Corporate Palette */
    --primary-color: #002d62;      /* Deep Corporate Blue */
    --primary-light: #004b9c;      /* Lighter Blue */
    --primary-dark: #001a3b;       /* Very Dark Blue */
    
    --accent-color: #00a859;       /* Corporate Green / Cyan */
    --accent-secondary: #f39c12;   /* Gold/Orange highlight */
    
    --bg-main: #ffffff;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    
    --text-main: #334155;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --text-light: #ffffff;
    
    --success: #10b981;
    --danger: #ef4444;
    
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 15px rgba(0,0,0,0.05);
    --shadow-lg: 0 15px 35px rgba(0,45,98,0.1);
    
    --transition-fast: all 0.2s ease-in-out;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
}

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

ul { list-style: none; }

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

.relative { position: relative; }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-accent { color: var(--primary-color); }
.text-blue { color: var(--primary-light); }
.text-purple { color: var(--accent-secondary); }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.ms-2 { margin-left: 0.5rem; }
.border-top { border-top: 1px solid var(--border-color); }
.max-w-700 { max-width: 700px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.hover-underline:hover { text-decoration: underline; }

.highlight { color: var(--primary-light); }
.highlight-gradient {
    color: var(--primary-color);
}

/* Base UI Elements */
.glass-panel {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }
.btn-block { display: flex; width: 100%; }

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,45,98,0.2);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.btn-text {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.btn-text::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; width: 0; height: 2px;
    background: var(--primary-light);
    transition: var(--transition-fast);
}

.btn-text:hover::after { width: 100%; }
.btn-text:hover i { transform: translateX(5px); }

/* Navbar - Corporate Clean */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    background-color: #ffffff;
    transition: var(--transition);
    height: 90px;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
    height: 75px;
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 45px; height: 45px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.4rem;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-color);
    line-height: 1;
}

.logo-subtext {
    font-size: 0.65rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #104F9E;
    transition: width 0.3s ease;
}

.nav-link:hover { color: #104F9E; }
.nav-link:hover::after { width: 100%; }

.nav-arrow { font-size: 0.7rem; transition: transform 0.3s; }
.has-dropdown:hover .nav-arrow { transform: rotate(180deg); }

.has-dropdown { position: relative; padding: 1rem 0; }

.dropdown-menu {
    position: absolute;
    top: 100%; left: 50%;
    transform: translateX(-50%) translateY(15px);
    min-width: 220px;
    padding: 1rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.large-dropdown {
    min-width: 450px;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-col h4 {
    font-size: 0.85rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
    color: var(--text-main);
    border-radius: 6px;
    transition: var(--transition-fast);
}

.dropdown-menu a i { color: var(--primary-color); width: 16px; text-align: center; }

.dropdown-menu a:hover {
    background-color: var(--bg-gray);
    color: var(--primary-color);
}

.nav-toggle { display: none; cursor: pointer; flex-direction: column; gap: 6px; z-index: 1001; }
.nav-toggle span { width: 30px; height: 2px; background-color: var(--primary-color); transition: var(--transition); }

/* Corporate Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 90px;
    background-color: var(--bg-light);
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0; right: 0; width: 50%; height: 100%;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-overlay {
    position: absolute;
    top: 0; right: 0; width: 50%; height: 100%;
    background: rgba(0, 45, 98, 0.85);
    z-index: 1;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-container { position: relative; z-index: 2; width: 100%; }

.hero-content {
    max-width: 650px;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 45, 98, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: clamp(38px, 5vw, 70px);
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.stat-icon {
    width: 45px; height: 45px;
    background: var(--bg-gray);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.stat-info h3 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.stat-info span { font-size: 0.85rem; color: var(--text-muted); }

/* Common Section Styles */
.info-section, .funds-section, .services-section, .cta-section {
    padding: 7rem 0;
}

.bg-gray-section {
    background-color: var(--bg-gray);
}

.sub-title {
    color: var(--primary-light);
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-header { margin-bottom: 4rem; }
.section-header h2 { font-size: clamp(32px, 4vw, 42px); margin-bottom: 1.5rem; color: var(--text-dark); }

.divider {
    width: 60px; height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
    margin-bottom: 1.5rem;
}
.text-center .divider { margin-left: auto; margin-right: auto; }

/* Premium Clean Cards */
.premium-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.premium-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.premium-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.icon-wrapper {
    width: 60px; height: 60px;
    background: var(--bg-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    transition: var(--transition);
}

.premium-card:hover .icon-wrapper {
    background: var(--primary-color);
    color: #fff;
}

.premium-card h3 { font-size: 1.4rem; margin-bottom: 1rem; color: var(--text-dark); }
.premium-card p { color: var(--text-muted); margin-bottom: 2rem; flex-grow: 1; }

/* Funds Showcase */
.fund-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.fund-box {
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.fund-box:hover {
    box-shadow: var(--shadow-lg);
}

.fund-box::before {
    content: ''; position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: var(--border-color);
    transition: var(--transition);
}

.fund-box:hover::before, .fund-box.active::before {
    background: var(--primary-color);
}

.fund-box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.fund-type {
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.badge-hisse { background: #eff6ff; color: #2563eb; }
.badge-degisken { background: #fdf4ff; color: #c026d3; }
.badge-serbest { background: #ecfdf5; color: #059669; }

.fund-code {
    font-family: 'Outfit', sans-serif;
    color: var(--text-muted);
    font-weight: 800;
    font-size: 1.2rem;
}

.fund-box h3 { font-size: 1.3rem; margin-bottom: 2rem; min-height: 3rem; color: var(--text-dark); }

.fund-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-col .stat-label { font-size: 0.85rem; color: var(--text-muted); display: block; margin-bottom: 0.5rem; font-weight: 500; }
.stat-col .stat-value { font-size: 1.5rem; font-weight: 800; font-family: 'Outfit', sans-serif; }
.stat-col .stat-value.positive { color: var(--success); }

.fund-chart {
    height: 60px;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    margin-bottom: 1rem;
}

.fund-chart .bar {
    flex: 1;
    background: var(--bg-gray);
    border-radius: 2px 2px 0 0;
    transition: var(--transition-slow);
}

.fund-box:hover .fund-chart .bar.highlight-bar, .fund-box.active .fund-chart .bar.highlight-bar {
    background: var(--primary-light);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-list li {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.service-list li i { color: var(--primary-color); font-size: 1.3rem; }

.service-visual {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-circle {
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-lg);
    background: #ffffff;
}

.main-circle {
    width: 250px; height: 250px;
    border: 4px solid var(--primary-light);
    z-index: 2;
}

.main-circle h4 { margin-top: 1rem; font-size: 1.1rem; color: var(--primary-color); }
.main-circle i { color: var(--primary-color); }

.small-circle {
    position: absolute;
    width: 120px; height: 120px;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.small-circle i { font-size: 2rem; margin-bottom: 0.5rem; }
.small-circle span { font-size: 0.8rem; font-weight: 600; color: var(--text-dark); }

.top-right { top: 20px; right: 20px; animation-delay: 1s; }
.bottom-left { bottom: 20px; left: 20px; animation-delay: 2s; }

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Advanced CTA */
.cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    background: var(--primary-color);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.cta-info {
    padding: 4rem;
    position: relative;
    color: #ffffff;
}

.cta-info h2 { font-size: 2.5rem; margin-bottom: 1.5rem; color: #ffffff; }
.cta-info p { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 2.5rem; }

.contact-methods { display: flex; flex-direction: column; gap: 1rem; }
.method { display: flex; align-items: center; gap: 1rem; font-size: 1.2rem; font-weight: 600; }
.method i { color: #fff; width: 24px; opacity: 0.8; }

.cta-form-container {
    padding: 4rem;
    background: #ffffff;
}

.form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem;
}

.form-group { margin-bottom: 1.5rem; }
.form-group label {
    display: block; margin-bottom: 0.5rem; font-size: 0.9rem; color: var(--text-main); font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 1rem 1.2rem;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-dark);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 45, 98, 0.1);
}

.form-check { display: flex; align-items: flex-start; gap: 0.8rem; margin-bottom: 1.5rem; }
.form-check input { margin-top: 0.3rem; width: 18px; height: 18px; accent-color: var(--primary-color); }
.form-check label { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; }
.form-check label a { color: var(--primary-color); font-weight: 600; }

/* Footer */
.footer {
    background-color: var(--bg-light);
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; }

.brand-col p { margin-top: 1.5rem; line-height: 1.8; color: var(--text-main); }
.social-links { display: flex; gap: 1rem; margin-top: 1.5rem; }
.social-icon {
    width: 40px; height: 40px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-main); transition: var(--transition);
}
.social-icon:hover { background: var(--primary-color); border-color: var(--primary-color); color: #fff; transform: translateY(-3px); }

.footer-col h4 { font-size: 1.2rem; margin-bottom: 2rem; position: relative; display: inline-block; color: var(--text-dark); }
.footer-col h4::after {
    content: ''; position: absolute; bottom: -8px; left: 0; width: 30px; height: 2px; background: var(--primary-color);
}

.footer-col ul li { margin-bottom: 1rem; }
.footer-col ul li a { color: var(--text-main); display: flex; align-items: center; gap: 0.5rem; }
.footer-col ul li a::before { content: '\f105'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 0.8rem; opacity: 0; transition: var(--transition); transform: translateX(-10px); color: var(--primary-color); }
.footer-col ul li a:hover { color: var(--primary-color); transform: translateX(5px); }
.footer-col ul li a:hover::before { opacity: 1; transform: translateX(0); }

.contact-info li { display: flex; align-items: flex-start; gap: 1rem; color: var(--text-main); margin-bottom: 1.5rem; }
.contact-info li i { color: var(--primary-color); font-size: 1.2rem; margin-top: 0.2rem; }

.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 4rem; padding-top: 2rem; border-top: 1px solid var(--border-color);
}

.footer-links { display: flex; gap: 2rem; }
.footer-links a { color: var(--text-main); font-size: 0.9rem; font-weight: 500; }
.footer-links a:hover { color: var(--primary-color); }

/* Animations */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-in.appear { opacity: 1; transform: translateY(0); }

.fade-in-up { opacity: 0; transform: translateY(40px); animation: fadeInUp 1.2s forwards cubic-bezier(0.16, 1, 0.3, 1); }

.delay-1 { animation-delay: 0.1s; transition-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; transition-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; transition-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; transition-delay: 0.4s; }

@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

/* Inner Pages */
.inner-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.inner-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.inner-header-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.inner-header h1 { color: #ffffff; font-size: clamp(32px, 5vw, 55px); margin-bottom: 1rem; }
.inner-header p { font-size: 1.1rem; opacity: 0.9; }

/* About Page */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-stats { display: flex; gap: 2rem; }
.stat-box { display: flex; flex-direction: column; }
.stat-box span { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; mt-2; }

/* Funds Page Grid */
.funds-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.fund-category-card {
    padding: 2.5rem;
    border-top: 4px solid var(--primary-color);
}

.cat-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.cat-icon { font-size: 2rem; color: var(--primary-color); }
.cat-desc { color: var(--text-muted); margin-bottom: 1.5rem; min-height: 50px; }
.cat-list li { margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.5rem; font-weight: 500; }

/* Contact Page */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; }
.contact-details h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 2rem; }
.contact-item .icon { width: 45px; height: 45px; background: var(--bg-gray); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary-color); font-size: 1.2rem; flex-shrink: 0; }
.contact-item h4 { margin-bottom: 0.2rem; font-size: 1.1rem; }
.contact-item p { color: var(--text-muted); }
.contact-form-box { padding: 3rem; }

/* Responsive */
@media (max-width: 1024px) {
    .services-grid, .cta-wrapper { grid-template-columns: 1fr; }
    .service-visual { order: -1; margin-bottom: 3rem; }
    .hero-bg-image, .hero-overlay { display: none; }
    .hero { background-image: url('../images/hero-bg.jpg'); background-size: cover; }
    .hero::before { content: ''; position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(255,255,255,0.9); z-index: 1; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hero-buttons { flex-direction: column; }
    .hero-stats { flex-direction: column; gap: 1rem; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .nav-toggle { display: flex; }
    
    .nav-menu {
        position: absolute; top: 100%; left: 0; width: 100%;
        background-color: #ffffff;
        flex-direction: column; padding: 2rem; gap: 1.5rem;
        transform: translateY(-20px); opacity: 0; visibility: hidden;
        border-bottom: 1px solid var(--border-color);
        box-shadow: var(--shadow-md);
    }
    
    .nav-menu.active { transform: translateY(0); opacity: 1; visibility: visible; }
    .has-dropdown .dropdown-menu {
        position: static; opacity: 1; visibility: visible; transform: none;
        background: transparent; box-shadow: none; border: none; padding-left: 1.5rem; display: none;
    }
    .has-dropdown.active .dropdown-menu { display: block; }
    .dropdown-grid { grid-template-columns: 1fr; gap: 1rem; }
    
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }
}

/* Modals & Banners */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7); z-index: 9999;
    display: flex; align-items: center; justify-content: center;
}

.modal-box {
    background: #ffffff; width: 90%; max-width: 600px;
    border-radius: 8px; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
    animation: fadeInUp 0.4s ease-out;
}

.modal-header {
    background: #314275; color: white; padding: 15px 20px;
    display: flex; justify-content: space-between; align-items: center;
}

.modal-header h3 { color: white; margin: 0; font-size: 1.2rem; }

.modal-close {
    background: rgba(255,255,255,0.2); border: none; color: white;
    width: 30px; height: 30px; border-radius: 50%; cursor: pointer;
}

.modal-body {
    padding: 20px; background: #f8fafc;
}

.alert-box {
    background: white; padding: 15px; border-radius: 8px;
    display: flex; gap: 15px; align-items: flex-start;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); font-size: 0.9rem;
}

.alert-box i { font-size: 1.2rem; margin-top: 3px; }
.alert-box p { margin: 0; color: #334155; }
.alert-box a { color: #004b9c; font-weight: 600; }

.alert-danger i { color: #dc2626; }
.alert-success i { color: #16a34a; }

/* Cookie Banner */
.cookie-banner {
    position: fixed; bottom: 20px; left: 20px; z-index: 9998;
    background: white; padding: 25px; border-radius: 12px;
    width: 400px; max-width: 90vw;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    border: 1px solid var(--border-color);
}

.cookie-banner h4 { margin-bottom: 10px; color: #1e293b; }
.cookie-banner p { font-size: 0.8rem; color: #64748b; margin-bottom: 20px; line-height: 1.6; }
.cookie-banner a { color: #004b9c; text-decoration: underline; }

.cookie-buttons { display: flex; flex-direction: column; gap: 8px; }

.btn-cookie-dark {
    background: #314275; color: white; border: none; padding: 10px; border-radius: 6px; cursor: pointer; font-weight: 600;
}
.btn-cookie-light {
    background: #f1f5f9; color: #475569; border: 1px solid #e2e8f0; padding: 10px; border-radius: 6px; cursor: pointer; font-weight: 600;
}
