:root {
    /* Backgrounds & Base */
    --bg-dark: #0a0a0a;
    --bg-dark-70: rgba(10, 10, 10, 0.7);
    --bg-dark-95: rgba(10, 10, 10, 0.95);
    --text-white: #ffffff;
    --text-white-80: rgba(255, 255, 255, 0.8);
    --text-white-70: rgba(255, 255, 255, 0.7);
    --text-white-60: rgba(255, 255, 255, 0.6);
    --text-white-50: rgba(255, 255, 255, 0.5);
    --text-white-40: rgba(255, 255, 255, 0.4);

    /* Accents & Brand */
    --primary-indigo: #6366f1;
    --primary-indigo-10: rgba(99, 102, 241, 0.1);
    --primary-indigo-20: rgba(99, 102, 241, 0.2);
    --primary-indigo-30: rgba(99, 102, 241, 0.3);
    --primary-indigo-40: rgba(99, 102, 241, 0.4);
    --secondary-purple: #8b5cf6;
    --tertiary-cyan: #06b6d4;
    --accent-deep-purple: #7c3aed;

    /* Borders & Surfaces */
    --border-white-05: rgba(255, 255, 255, 0.05);
    --border-white-08: rgba(255, 255, 255, 0.08);
    --border-white-20: rgba(255, 255, 255, 0.2);
    --surface-card: rgba(255, 255, 255, 0.03);

    /* WhatsApp Branding */
    --whatsapp-green: #25d366;
    --whatsapp-dark: #128c7e;
}

/* ==========================================================================
   1. GLOBAL & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
}

/* ==========================================================================
   2. NAVIGATION
   ========================================================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(20px);
    background: var(--bg-dark-70);
    border-bottom: 1px solid var(--border-white-05);
}

.logo-container{
    display: flex;
    align-items: center;
    gap: 10px;
     text-decoration: none;
}
.logo-container img{
    width: 40px;
    height: auto;
}
.logo {
    font-size: 1.5em;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-indigo), var(--secondary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    transform-origin: center;
}

/* First line - rotates 45deg and moves down */
.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

/* Middle line - fades out */
.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

/* Third line - rotates -45deg and moves up */
.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--text-white-70);
    text-decoration: none;
    font-size: 0.95em;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-indigo);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-indigo);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: var(--bg-dark-90);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 30px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        border-left: 1px solid var(--border-white-08);
        z-index: 1000;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links li {
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.3s ease;
    }

    .nav-links.open li {
        opacity: 1;
        transform: translateX(0);
    }

    /* Stagger animation for menu items */
    .nav-links.open li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.open li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-links.open li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-links.open li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-links a {
        font-size: 1.2em;
        color: var(--text-white);
    }
}

/* ==========================================================================
   3. HERO SECTION & ANIMATED ORBS
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0 20px;
}

.bg-orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-indigo);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
    animation-duration: 25s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary-purple);
    bottom: -150px;
    right: -150px;
    animation-delay: 7s;
    animation-duration: 22s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: var(--tertiary-cyan);
    top: 50%;
    right: 10%;
    animation-delay: 3s;
    animation-duration: 28s;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
    animation: slideUp 1s ease;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-white-60);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.7;
    animation: slideUp 1s ease 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideUp 1s ease 0.6s backwards;
}

.gradient-text {
    background: linear-gradient(135deg, var(--text-white) 0%, var(--primary-indigo) 50%, var(--secondary-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 5s ease infinite, slideUp 1s ease 0.2s backwards;
}

/* ==========================================================================
   4. REUSABLE COMPONENTS (Buttons & Cards)
   ========================================================================== */
.btn {
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-indigo), var(--secondary-purple));
    color: var(--bg-dark);
    box-shadow: 0 10px 40px var(--primary-indigo-30);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--secondary-purple), var(--accent-deep-purple));
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-5px) scale(1.05); box-shadow: 0 20px 60px var(--primary-indigo-40); }

.btn span { position: relative; z-index: 1; }

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--border-white-20);
}

.btn-secondary:hover {
    border-color: var(--primary-indigo);
    background: var(--primary-indigo-10);
    transform: translateY(-5px) scale(1.05);
}

/* ==========================================================================
   5. SECTIONS & CONTENT
   ========================================================================== */
.section {
    padding: 80px 20px;
    position: relative;
    opacity: 0;

}

.section.visible { opacity: 1; transform: translateY(0); }

.section-inner { max-width: 1400px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 60px; margin-top: 30px; }

.section-tag {
    color: var(--primary-indigo);
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1.2rem;
    color: var(--text-white-50);
    max-width: 600px;
    margin: 0 auto;
}

.about-content, .why-us-content {
    text-align: start;
    max-width: 800px;
    margin: 40px auto 0;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-white-80);
}

.why-us-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.why-us-content li {
    margin-bottom: 15px;
    padding-left: 20px;
    text-align: left;
    position: relative;
}

.why-us-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-indigo);
    font-weight: bold;
    font-size: 1.2em;
}


.section#about {
    min-height: 110vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

/* ==========================================================================
   6. SERVICES GRID
   ========================================================================== */
.services-section {
    padding: 80px 20px;
    position: relative;
}

.services-section h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--surface-card);
    border: 1px solid var(--border-white-08);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(50px);
}

.service-card.visible { opacity: 1; transform: translateY(0); }

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-indigo-20);
    box-shadow: 0 10px 40px var(--primary-indigo-10);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    margin: 0 auto 20px;
}

.service-card h3 {
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-white-70);
    line-height: 1.6;
}

/* ==========================================================================
   7. CTA & FOOTER
   ========================================================================== */
.cta-section {
    text-align: center;
    padding: 80px 20px;
    background: radial-gradient(circle at center, var(--primary-indigo-10), transparent);
}

.cta-section h2 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; margin-bottom: 30px; }
.cta-section p { font-size: 1.3rem; color: var(--text-white-60); margin-bottom: 50px; }

footer {
    background: linear-gradient(to bottom, transparent, var(--bg-dark-95));
    border-top: 1px solid var(--border-white-08);
    padding: 60px 24px 24px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-indigo-40), transparent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);    gap: 48px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    color: var(--text-white);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-indigo), var(--secondary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-indigo), var(--secondary-purple));
    transition: width 0.4s ease;
}

.footer-section:hover h3::after {
    width: 100%;
}

footer .logo-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

footer .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

footer .logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    box-shadow: 0 4px 20px var(--primary-indigo-30);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

footer .logo-icon:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 8px 30px var(--primary-indigo-40);
}

footer .logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -0.5px;
}

footer .tagline {
    color: var(--text-white-60);
    font-size: 14px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--surface-card);
    border: 1px solid var(--border-white-08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white-70);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-indigo-20), var(--secondary-purple-20));
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

.social-link svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-link:hover {
    border-color: var(--primary-indigo);
    color: var(--text-white);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px var(--primary-indigo-20);
}

.social-link:hover svg {
    transform: scale(1.1) rotate(5deg);
}

/* Navigation Links Styling */
.footer-nav-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-link {
    color: var(--text-white-70);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.footer-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(135deg, var(--primary-indigo), var(--secondary-purple));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.footer-nav-link:hover::before {
    transform: scaleY(1);
}

.link-icon {
    font-size: 16px;
    transition: transform 0.3s ease;
    opacity: 0;
}

.footer-nav-link:hover .link-icon {
    opacity: 1;
    transform: translateX(4px);
}

.link-text {
    transition: transform 0.3s ease;
}

.footer-nav-link:hover .link-text {
    transform: translateX(8px);
}

.footer-nav-link:hover {
    color: var(--text-white);
    background: var(--primary-indigo-10);
    padding-left: 16px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-white-70);
    font-size: 14px;
    line-height: 1.6;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 8px;
}

.contact-item:hover {
    color: var(--text-white);
    background: var(--primary-indigo-10);
    transform: translateX(4px);
}

.contact-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-indigo);
    flex-shrink: 0;
    margin-top: 2px;
    transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.2) rotate(10deg);
}

.contact-link {
    color: inherit;
    text-decoration: none;
    position: relative;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-indigo);
    transition: width 0.3s ease;
}

.contact-link:hover::after {
    width: 100%;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid var(--border-white-05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.copyright {
    color: var(--text-white-50);
    font-size: 13px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-link {
    color: var(--text-white-60);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    position: relative;
    padding: 4px 8px;
}

.footer-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--primary-indigo);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.footer-link:hover::before {
    width: 100%;
}

.footer-link:hover {
    color: var(--text-white);
}

/* Floating Particles Effect */
.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-indigo-40);
    border-radius: 50%;
    opacity: 0;
    animation: float 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    left: 30%;
    animation-delay: 3s;
    animation-duration: 15s;
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: 6s;
    animation-duration: 18s;
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: 9s;
    animation-duration: 14s;
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: 12s;
    animation-duration: 16s;
}

@keyframes float {
    0%, 100% {
        opacity: 0;
        transform: translateY(100%) scale(0);
    }
    10% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.8;
        transform: translateY(-50%) scale(1.5);
    }
    90% {
        opacity: 0.6;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}
/* ==========================================================================
   8. WHATSAPP FLOATING BUTTON
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--whatsapp-green), var(--whatsapp-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

/* ==========================================================================
   9. KEYFRAMES
   ========================================================================== */
@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 30px) scale(0.9); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

@keyframes pulse {
    0% { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3); }
    50% { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5); }
    100% { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3); }
}

/* ==========================================================================
   10. MEDIA QUERIES
   ========================================================================== */
@media (max-width: 968px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 3rem; }
    .section { padding: 80px 20px; }
    .services-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
    .hamburger { display: flex; }
    .nav-links { 
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-dark-95);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        border-bottom: 1px solid var(--border-white-05);
    }
    .nav-links.open { display: flex; }
    .nav-links li { text-align: center; padding: 10px 0; }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 600px) {
    .hero h1 { font-size: 2.5rem; }
    .hero p { display: none; }
    .hero-buttons{display: none;}
    .hero{min-height: 50vh;}
    .hero-content{margin-top: 5rem;}

}

.modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(8px);
            z-index: 1000;
            padding: 20px;
            overflow-y: auto;
        }

        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background: var(--bg-dark-95);
            border: 1px solid var(--border-white-08);
            border-radius: 16px;
            max-width: 800px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
        }

        .modal-header {
            padding: 32px 32px 24px;
            border-bottom: 1px solid var(--border-white-08);
            position: sticky;
            top: 0;
            background: var(--bg-dark-95);
            z-index: 1;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-title {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-white);
            background: linear-gradient(135deg, var(--primary-indigo), var(--secondary-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .close-btn {
            width: 36px;
            height: 36px;
            background: var(--surface-card);
            border: 1px solid var(--border-white-08);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-white-70);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .close-btn:hover {
            background: var(--primary-indigo-20);
            border-color: var(--primary-indigo);
            color: var(--text-white);
        }

        .modal-body {
            padding: 32px;
        }

        .modal-body h2 {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-white);
            margin-top: 32px;
            margin-bottom: 12px;
        }

        .modal-body h2:first-child {
            margin-top: 0;
        }

        .modal-body p {
            color: var(--text-white-70);
            line-height: 1.8;
            margin-bottom: 16px;
            font-size: 14px;
        }

        .modal-body ul {
            color: var(--text-white-70);
            line-height: 1.8;
            margin-bottom: 16px;
            margin-left: 20px;
            font-size: 14px;
        }

        .modal-body li {
            margin-bottom: 8px;
        }

        .modal-body strong {
            color: var(--text-white);
        }

        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
                gap: 36px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            footer {
                padding: 48px 20px 20px;
            }

            .modal-header,
            .modal-body {
                padding: 24px 20px;
            }

            .modal-title {
                font-size: 20px;
            }
        }

        @media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .logo-container img{
        display: none;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}