/* Global Reset & Box Sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Premium Palette: Deep Space Blue & Electric Gold */
    --primary-color: #0F172A;
    --primary-dark: #020617;
    --accent-color: #EAB308;
    /* Vibrant Gold */
    --accent-hover: #CA8A04;
    --accent-soft: rgba(234, 179, 8, 0.15);
    --secondary-color: #F8FAFC;
    --text-color: #1E293B;
    --text-muted: #64748B;
    --white: #FFFFFF;
    --bg-body: #f8f9fc;

    /* Elegant Gradients */
    --gradient-hero: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    --gradient-accent: linear-gradient(135deg, #EAB308 0%, #CA8A04 100%);
    --accent-gradient: var(--gradient-accent);
    /* Compatibility */

    /* Refined Shadows & Effects */
    --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-gloss: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --glass-bg: rgba(15, 23, 42, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);

    /* Typography */
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Missing Custom Variables */
    --bg-dark-section: var(--primary-color);
    --text-on-dark: #F8FAFC;
    --text-on-light: var(--text-color);
    --text-muted-light: var(--text-muted);
    --text-muted-dark: #94A3B8;
    --card-bg-white: #FFFFFF;
    --card-shadow: var(--shadow-card);
}

body {
    font-family: 'Outfit', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-body);
    color: var(--text-on-light);
    line-height: 1.6;
}

/* ─── Accessibility: Focus Visible ───────────────────────────────────────────── */
/* Required for WCAG 2.1 AA – keyboard navigation */
:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ─── Form field wrapper (display:contents for grid passthrough) ──────────────── */
.field-wrap {
    display: contents;
}

/* ─── Decorative SVG: mark explicitly ────────────────────────────────────────── */
/* Actual aria-hidden applied inline; this ensures no unintended title inheritance */
svg[aria-hidden="true"] {
    pointer-events: none;
}

/* ─── Reduced Motion support ─────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}


/* Layout Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.5rem;
}

/* Section Styling */
.section-dark {
    background-color: var(--bg-dark-section);
    color: var(--text-on-dark);
    padding: 6rem 0;
    /* Subtle glow effect behind hero car */
    background-image: radial-gradient(circle at 70% 50%, rgba(79, 172, 254, 0.15), transparent 50%);
}

.section-light {
    background-color: var(--bg-body);
    color: var(--text-on-light);
    padding: 5rem 0;
}

/* Header */
.main-header {
    background-color: var(--bg-dark-section);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

/* Buttons */
.btn-primary {
    background: var(--accent-gradient);
    border: none;
    padding: 0.8rem 2rem;
    color: white;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(234, 179, 8, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    white-space: nowrap;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(234, 179, 8, 0.5);
    filter: brightness(1.1);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.8rem 2rem;
    color: white;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    white-space: nowrap;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

/* Hero Content */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

/* Hero Badges Glassmorphism */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.glass-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: var(--accent-color);
}

.glass-badge svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent-color);
    stroke-width: 2.5;
    fill: none;
    flex-shrink: 0;
}

.glass-badge svg.google-icon {
    stroke: none;
    fill: none;
    stroke-width: 0;
}

/* Glass Form Styles */
.hero-glass-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group {
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.8rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-family: var(--font-family);
    transition: all 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
}

.form-control::placeholder {
    color: #94a3b8;
}

textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

/* ===== Premium Stats Section 2026 ===== */
.stats-bar-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0f1e 0%, #0d1b2e 50%, #0a1628 100%);
    position: relative;
    overflow: hidden;
}

.stats-bar-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 50%, rgba(79, 172, 254, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(234, 179, 8, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-6px);
    border-color: rgba(234, 179, 8, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(234, 179, 8, 0.1);
}

.stat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.15), rgba(79, 172, 254, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(234, 179, 8, 0.2);
}

.stat-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--accent-color);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #eab308 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-item {
        padding: 1.75rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Service Cards */

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--card-bg-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s;
    border: 1px solid #e2e8f0;
}

.service-card h3 {
    color: var(--text-on-light);
}

.service-card p {
    color: var(--text-muted-light);
}

.service-card a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* The "Featured" Gradient Card Style from Reference */
.service-card.gradient-card {
    background: var(--accent-gradient);
    color: white;
}

.service-card.gradient-card p {
    color: rgba(255, 255, 255, 0.9);
}

.service-card.gradient-card h3 {
    color: white;
}

.service-card.gradient-card a {
    color: white;
    text-decoration: underline;
}

/* Footer */
footer {
    background: var(--bg-dark-section);
    color: var(--text-muted-dark);
    padding: 4rem 0;
    text-align: center;
}

/* Steps Process (from ref) */
.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    margin-bottom: -1.5rem;
    margin-left: -0.5rem;
}

.service-card:hover .step-number {
    color: #ea580c;
    /* Dark Orange on Hover */
    opacity: 1;
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2.5rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Futuristic WhatsApp 2026 Edition */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #25D366 0%, #059669 100%);
    color: white;
    padding: 0 1.25rem;
    height: 60px;
    min-width: 60px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3), inset 0 0 15px rgba(255, 255, 255, 0.2);
    z-index: 9999;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.whatsapp-float span {
    max-width: 0;
    opacity: 0;
    white-space: nowrap;
    transition: all 0.5s ease;
    font-weight: 700;
    font-size: 1rem;
}

.whatsapp-float:hover {
    gap: 0.75rem;
    padding: 0 1.5rem;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5), 0 0 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-float:hover span {
    max-width: 150px;
    opacity: 1;
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: white;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

/* 2026 Shimmer Effect */
.whatsapp-float::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 4s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-150%) rotate(45deg);
    }

    100% {
        transform: translateX(150%) rotate(45deg);
    }
}

@keyframes pulse-modern {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float {
    animation: pulse-modern 2s infinite;
}

/* FAQ Accordion Styles */
.faq-container {
    max-width: 800px;
    margin: 40px auto;
}

.faq-item {
    margin-bottom: 1rem;
    background: var(--white);
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-card);
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    list-style: none;
    cursor: pointer;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.2rem;
    transition: var(--transition);
    color: var(--accent-color);
    font-weight: bold;
}

.faq-item[open] summary::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-item p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Process Section Glassmorphism */
.process-section {
    padding: 6rem 0;
    background: #ffffff;
    overflow: hidden;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

/* Connecting Line */
.process-grid::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.1) 20%, rgba(15, 23, 42, 0.1) 80%, transparent);
    z-index: 1;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.icon-wrapper {
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(15, 23, 42, 0.05);
    position: relative;
    transition: var(--transition);
}

.process-step:hover .icon-wrapper {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(234, 179, 8, 0.2);
    border-color: var(--accent-color);
}

.icon-wrapper svg {
    width: 36px;
    height: 36px;
    color: var(--primary-color);
    transition: var(--transition);
}

.process-step:hover .icon-wrapper svg {
    color: var(--accent-color);
    transform: scale(1.1);
}

.step-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #EF4444;
    /* Modern Red */
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-weight: 700;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    padding: 0 0.5rem;
}

@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 3rem;
    }

    .process-grid::before {
        display: none;
    }
}

@media (max-width: 640px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Glass Enhancement for Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

/* Comparison Grid & Cards */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.comp-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.comp-card.pain {
    border: 1px solid #e2e8f0;
    opacity: 0.85;
}

.comp-card.solution {
    border: 2px solid var(--accent-color);
    background: linear-gradient(to bottom, #ffffff, #fefce8);
    transform: scale(1.03);
    z-index: 2;
    box-shadow: 0 20px 40px rgba(234, 179, 8, 0.15);
}

.comp-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.comp-card.pain h3 {
    color: var(--text-muted);
}

.comp-card.solution h3 {
    color: var(--primary-color);
}

.comp-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.comp-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.4;
}

.comp-list li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 3px;
}

.comp-card.pain li svg {
    color: #ef4444;
}

.comp-card.solution li svg {
    color: #22c55e;
}

.comp-badge {
    position: absolute;
    top: 1.5rem;
    right: -2rem;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.5rem 3rem;
    font-weight: 800;
    font-size: 0.8rem;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .comp-card.solution {
        transform: none;
        order: -1;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Accessibility Helpers */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ===== Premium Footer 2026 ===== */
.premium-footer {
    background: linear-gradient(180deg, #060b18 0%, #08101e 100%);
    padding: 5rem 0 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 300px;
    background: radial-gradient(ellipse at center top, rgba(234, 179, 8, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

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

/* Brand Column */

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

.footer-logo svg {
    stroke: var(--accent-color);
    flex-shrink: 0;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.f-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    padding: 0.3rem 0.8rem;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Footer Columns */

.footer-heading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-heading svg {
    width: 16px;
    height: 16px;
    stroke: var(--accent-color);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.footer-links a svg {
    width: 14px;
    height: 14px;
    stroke: rgba(255, 255, 255, 0.3);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    transition: stroke 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(3px);
}

.footer-links a:hover svg {
    stroke: var(--accent-color);
}

/* Footer Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.82rem;
    margin: 0;
}

.footer-made {
    font-size: 0.82rem;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}