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

:root {
    /* Color Palette matching Login Page Theme */
    --bg-dark: #f8fafc;
    --bg-darker: #ffffff;
    --bg-card: #ffffff;
    --bg-card-hover: #f1f5f9;
    --border-color: #e2e8f0;
    --border-hover: #cbd5e1;
    
    /* Text Colors */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    
    /* Branding Colors */
    --gold-primary: #3b82f6;
    --gold-gradient: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
    --gold-glow: rgba(59, 130, 246, 0.1);
    
    --teal-primary: #10b981;
    --teal-gradient: linear-gradient(135deg, #34d399 0%, #059669 100%);
    
    --blue-primary: #3b82f6;
    --blue-gradient: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
    
    --danger-primary: #ef4444;
    
    --primary: #3b82f6;
    --primary-light: #eff6ff;
    --primary-dark: #1d4ed8;
    
    /* Fonts & Transitions */
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: rgba(197, 160, 89, 0.3);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

/* Utility Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    height: 80px;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.05);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.02em;
}

.nav-brand img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 8px var(--gold-glow));
}

.nav-brand span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: inherit;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--bg-darker);
    border: none;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.45);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background: rgba(197, 160, 89, 0.1);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: translateY(-2px);
}

.btn-telegram {
    background: #229ED9;
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(34, 158, 217, 0.25);
}

.btn-telegram:hover {
    background: #1d8ec4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 158, 217, 0.4);
}

/* Burger Mobile Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
}

.burger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

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

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.badge-gold {
    align-self: flex-start;
    background: var(--primary-light);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-gold span {
    width: 6px;
    height: 6px;
    background-color: var(--gold-primary);
    border-radius: 50%;
    display: inline-block;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.hero-title span.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 600px;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo-glow-wrapper {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.logo-glow-wrapper::before {
    content: '';
    position: absolute;
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.2) 0%, transparent 70%);
    top: -5%;
    left: -5%;
    z-index: -1;
    border-radius: 50%;
}

.hero-logo-img {
    width: 350px;
    height: auto;
    max-width: 100%;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-top: 0.5rem;
    letter-spacing: -0.02em;
}

.section-title span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 1rem auto 0 auto;
    font-size: 1.05rem;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-darker);
    position: relative;
    border-top: 1px solid rgba(197, 160, 89, 0.05);
    border-bottom: 1px solid rgba(197, 160, 89, 0.05);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: 0 15px 35px -10px rgba(197, 160, 89, 0.15);
    background: var(--bg-card-hover);
}

.step-number {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(197, 160, 89, 0.08);
    line-height: 1;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(197, 160, 89, 0.1);
    color: var(--gold-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 1px solid rgba(197, 160, 89, 0.2);
    transition: var(--transition-smooth);
}

.step-card:hover .step-icon {
    background: var(--gold-gradient);
    color: var(--bg-darker);
    border-color: transparent;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.35);
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Hazards Section */
.hazards {
    padding: 100px 0;
}

.hazards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.hazard-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.hazard-card.pothole:hover {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 15px 35px -10px rgba(16, 185, 129, 0.15);
    background: var(--bg-card-hover);
}

.hazard-card.wrong-side:hover {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 15px 35px -10px rgba(59, 130, 246, 0.15);
    background: var(--bg-card-hover);
}

.hazard-badge {
    align-self: flex-start;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.hazard-card.pothole .hazard-badge {
    background: rgba(16, 185, 129, 0.1);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.hazard-card.wrong-side .hazard-badge {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.hazard-icon {
    font-size: 2rem;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hazard-card.pothole .hazard-icon {
    background: rgba(16, 185, 129, 0.15);
    color: var(--teal-primary);
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.hazard-card.wrong-side .hazard-icon {
    background: rgba(59, 130, 246, 0.15);
    color: var(--blue-primary);
    border: 1px solid rgba(59, 130, 246, 0.25);
}

.hazard-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
}

.hazard-card p {
    color: var(--text-secondary);
}

.hazard-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
    margin-top: auto;
}

.reward-info {
    display: flex;
    flex-direction: column;
}

.reward-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.reward-value {
    font-size: 1.25rem;
    font-weight: 800;
}

.hazard-card.pothole .reward-value {
    color: var(--teal-primary);
}

.hazard-card.wrong-side .reward-value {
    color: var(--blue-primary);
}

/* Interactive Rewards Checker Section */
.checker-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    border-top: 1px solid rgba(197, 160, 89, 0.05);
}

.checker-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}

.checker-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
}

.checker-intro {
    text-align: center;
    margin-bottom: 2.5rem;
}

.checker-intro h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.checker-intro p {
    color: var(--text-secondary);
}

.checker-form-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.checker-form {
    display: flex;
    width: 100%;
    max-width: 600px;
    gap: 0.75rem;
}

.checker-input-wrapper {
    position: relative;
    flex-grow: 1;
}

.checker-input-wrapper svg {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.checker-input {
    width: 100%;
    background: rgba(4, 13, 20, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1rem 1rem 1rem 3rem;
    font-size: 1rem;
    color: var(--text-primary);
    font-family: inherit;
    outline: none;
    transition: var(--transition-smooth);
}

.checker-input:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
    background: rgba(4, 13, 20, 0.95);
}

.checker-input::placeholder {
    color: var(--text-muted);
}

.btn-check {
    padding: 0 2rem;
    background: var(--gold-gradient);
    color: var(--bg-darker);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-check:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Checker Results Display */
.checker-result-box {
    margin-top: 1rem;
    display: none; /* Controlled via JS */
    animation: fadeIn 0.4s ease-out forwards;
}

.result-header-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.summary-stat-card {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
}

.summary-stat-card .label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.summary-stat-card .value {
    font-size: 1.75rem;
    font-weight: 800;
}

.summary-stat-card.points-card .value {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Results Detections Table */
.results-table-container {
    overflow-x: auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.results-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
    min-width: 600px;
}

.results-table th {
    padding: 1rem;
    background: #f1f5f9;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border-color);
}

.results-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.results-table tr:last-child td {
    border-bottom: none;
}

.results-table tbody tr:hover {
    background: #f8fafc;
}

/* Status Badges */
.status-badge {
    display: inline-flex;
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.status-badge.approved {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
}

.status-badge.pending {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
}

.status-badge.denied {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
}

/* Image preview modal logic & look */
.table-preview-img {
    width: 44px;
    height: 30px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: zoom-in;
    transition: var(--transition-smooth);
}

.table-preview-img:hover {
    transform: scale(1.1);
}

.no-image-text {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-style: italic;
}

.error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #f87171;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    display: none;
    text-align: center;
    font-weight: 500;
}

.empty-results {
    text-align: center;
    padding: 2.5rem;
    color: var(--text-secondary);
}

/* Spinner Loader */
.spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--bg-darker);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Dashboard Mockup Section */
.mockup-section {
    padding: 100px 0;
}

.mockup-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 1rem;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8);
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.mockup-header-bar {
    display: flex;
    gap: 6px;
    padding: 0.5rem 1rem 1rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 1rem;
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.mockup-dot.red { background: #ef4444; }
.mockup-dot.yellow { background: #f59e0b; }
.mockup-dot.green { background: #10b981; }

.mockup-img-container {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: #000;
}

.mockup-img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.9;
    transition: var(--transition-smooth);
}

.mockup-img:hover {
    opacity: 1;
}

/* CTA Footer Block */
.bottom-cta {
    padding: 100px 0;
    text-align: center;
    background: var(--bg-darker);
    border-top: 1px solid rgba(197, 160, 89, 0.05);
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.cta-box h2 {
    font-size: 2.5rem;
    font-weight: 800;
}

.cta-box h2 span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-box p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.footer {
    background: var(--bg-darker);
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.footer-logo img {
    height: 32px;
}

.footer-logo span {
    font-weight: 800;
    font-size: 1.2rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 2rem;
    text-align: center;
    width: 100%;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

/* Keyframes */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0px); }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .badge-gold {
        align-self: center;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hazards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.mobile-only-action {
    display: none;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none; /* Hide standard nav list */
    }
    
    .burger-menu {
        display: flex;
    }
    
    .navbar .btn-outline {
        display: none; /* Hide admin btn in header for clean mobile look */
    }
    
    .mobile-only-action {
        display: block;
        width: 100%;
        margin-top: 1rem;
    }
    
    .mobile-nav-btn {
        display: flex;
        width: 100%;
        justify-content: center;
    }
    
    .checker-form {
        flex-direction: column;
    }
    
    .btn-check {
        padding: 1rem;
        justify-content: center;
    }
    
    .result-header-summary {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Full-screen navigation overlay style when active */
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 999;
        background-color: #ffffff !important;
        padding: 2rem;
        gap: 1rem;
        align-items: center;
        border-top: 1px solid var(--border-color);
        animation: fadeIn 0.3s ease-out;
    }
    
    .nav-menu.active li {
        width: 100%;
        text-align: center;
        list-style: none;
    }
    
    .nav-menu.active .nav-link {
        display: block;
        width: 100%;
        background-color: #f1f5f9;
        color: #0f172a;
        padding: 0.85rem 1.5rem;
        border-radius: 8px;
        font-weight: 600;
        transition: var(--transition-smooth);
        border: 1px solid var(--border-color);
    }
    
    .nav-menu.active .nav-link:hover {
        background-color: var(--primary-light);
        color: var(--primary-dark);
        border-color: rgba(59, 130, 246, 0.3);
    }
    
    .nav-menu.active .nav-link::after {
        display: none;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-links {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem 0.5rem;
        text-align: center;
        width: 100%;
        margin-top: 1rem;
    }
}


