/* 
 * INFINITYEC CSS - Dark Mode Premium (Default) & Light Mode
 */

:root {
    /* Dark Mode Variables (Default) */
    --bg-dark: #0a0a0f;
    --bg-card: #13131f;
    --bg-card-hover: #1c1c2e;
    --primary: #6366f1;
    /* Indigo */
    --primary-glow: rgba(99, 102, 241, 0.4);
    --secondary: #ec4899;
    /* Pink */
    --accent: #10b981;
    /* Emerald */
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --border: #2d2d3f;
    --input-bg: rgba(255, 255, 255, 0.05);
    --width-container: 1200px;

    --gradient-main: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);

    /* Animation Vars */
    --cursor-size: 20px;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--cursor-size);
    height: var(--cursor-size);
    border: 2px solid var(--primary);
    background: transparent;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s, border 0.3s;
    mix-blend-mode: difference;
    /* Works better in Dark Mode */
}

.custom-cursor.hovered {
    width: 60px;
    height: 60px;
    background: var(--primary-glow);
    border-color: transparent;
}

body.no-cursor {
    cursor: none;
}

/* Light Mode Cursor - Remove inversion */
body.light-mode .custom-cursor {
    mix-blend-mode: normal;
    background: rgba(99, 102, 241, 0.05);
    border: 2px solid var(--primary);
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.2);
}

body.light-mode .custom-cursor.hovered {
    background: var(--primary);
    opacity: 0.15;
}

/* 3D Tilt Effect & Glow */
.tilt-card {
    transform-style: preserve-3d;
    transform: perspective(1000px);
}

.tilt-card:hover {
    z-index: 10;
}

.tilt-content {
    transform: translateZ(20px);
}

/* Magnetic Button Effect */
.btn-magnetic {
    transition: transform 0.2s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s;
}

/* Staggered Scroll Animations */
.fade-up-stagger {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up-stagger.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Light Mode Overrides */
body.light-mode {
    --bg-dark: #f8f9fa;
    --bg-card: #ffffff;
    --bg-card-hover: #f1f5f9;
    --text-main: #111827;
    --text-muted: #6b7280;
    --border: #e5e7eb;
    --input-bg: #f3f4f6;
    --primary-glow: rgba(99, 102, 241, 0.2);
}

body.light-mode .noise-overlay {
    opacity: 0.03;
}

body.light-mode .navbar {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

body.light-mode .mobile-menu-btn,
body.light-mode .nav-links a:not(.btn),
body.light-mode .icon-btn {
    color: var(--text-muted);
}

body.light-mode .nav-links a:not(.btn):hover,
body.light-mode .icon-btn:hover {
    color: var(--primary);
}

body.light-mode h1,
body.light-mode h2,
body.light-mode h3,
body.light-mode h4,
body.light-mode .stat-number,
body.light-mode .accordion-header,
body.light-mode .hero-trust span {
    color: var(--text-main);
}

body.light-mode .glass-card {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

body.light-mode .stat-floating {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
}

body.light-mode .stats-section {
    background: #f3f4f6;
    border-color: transparent;
}

body.light-mode .service-card,
body.light-mode .testimonial-card,
body.light-mode .accordion-item,
body.light-mode .legal-section {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

body.light-mode .testimonials-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #eef2ff 100%);
}

body.light-mode .accordion-content {
    background: #f9fafb;
}

body.light-mode .footer {
    background: #111827;
    color: #f3f4f6;
}

/* Keep footer dark */
body.light-mode .footer h4 {
    color: #fff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #fff;
    transition: color 0.3s ease;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: var(--width-container);
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.text-gradient {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-body);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    gap: 8px;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

body.light-mode .btn-secondary {
    background: #e5e7eb;
    color: var(--text-main);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

body.light-mode .btn-secondary:hover {
    background: #d1d5db;
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: white;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

.icon-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 5px;
    transition: var(--transition);
    border-radius: 50%;
}

.icon-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary);
}

.flag-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.icon-btn:hover .flag-icon {
    border-color: var(--primary);
    transform: scale(1.1);
}

body.light-mode .flag-icon {
    border-color: rgba(0, 0, 0, 0.1);
}

/* Spotlight */
.spotlight-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(99, 102, 241, 0.06), transparent 40%);
    z-index: 1;
}

/* Typewriter Cursor */
.txt-type>.txt {
    border-right: 0.2rem solid var(--primary);
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Backgrounds */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
}

.gradient-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -2;
    opacity: 0.4;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    left: -100px;
    animation: floating 10s infinite ease-in-out;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    bottom: -50px;
    right: -50px;
    animation: floating 12s infinite ease-in-out reverse;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
}

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

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
    z-index: 1001;
}

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

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a:not(.btn) {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:not(.btn):hover {
    color: white;
}

.nav-toggles {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-right: 15px;
    border-left: 1px solid var(--border);
    padding-left: 15px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

/* Hero */
.hero {
    padding: 160px 0 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge-premium {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 30px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

.hero-trust {
    border-top: 1px solid var(--border);
    padding-top: 30px;
}

.hero-trust span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.trust-logos {
    display: flex;
    gap: 25px;
    opacity: 0.6;
}

.brand-logo {
    font-weight: 700;
    letter-spacing: -0.02em;
    font-family: var(--font-heading);
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.hero-overlay-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    padding: 20px;
    display: none;
    /* Hidden for now unless specific */
}

.stat-floating {
    position: absolute;
    bottom: 40px;
    left: -20px;
    background: #1e1e2d;
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: floating 6s infinite ease-in-out 1s;
}

.stat-floating i {
    font-size: 24px;
    color: var(--accent);
    background: rgba(16, 185, 129, 0.1);
    padding: 10px;
    border-radius: 8px;
}

.stat-floating div {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.stat-value {
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
}

body.light-mode .stat-value {
    color: #111827;
}

/* Stats */
.stats-section {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.stat-item .stat-label {
    font-size: 0.9rem;
}

/* Override default small */

/* Services */
.services-section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 70px;
}

.section-tag {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-subtitle {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 40px 30px;
    border-radius: 16px;
    transition: var(--transition);
}

.service-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    border-color: var(--primary);
}

.service-icon {
    font-size: 32px;
    color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.service-link:hover {
    gap: 8px;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
    padding: 20px;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    font-family: var(--font-heading);
    margin-bottom: 20px;
    -webkit-text-stroke: 1px rgba(99, 102, 241, 0.5);
}

body.light-mode .step-number {
    color: rgba(0, 0, 0, 0.05);
    -webkit-text-stroke: 1px rgba(99, 102, 241, 0.3);
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: white;
}

body.light-mode .step-card h3 {
    color: var(--text-main);
}

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

.step-connector {
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    margin-top: 50px;
    opacity: 0.5;
    display: none;
}

/* Simplified for responsive */

@media (min-width: 900px) {
    .step-connector {
        display: block;
        max-width: 100px;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.pricing-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: default;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    border: 1px solid var(--primary);
    box-shadow: 0 10px 40px -10px rgba(99, 102, 241, 0.3);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 30px 60px -10px rgba(99, 102, 241, 0.4);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-main);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(236, 72, 153, 0.4);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: white;
    display: block;
    text-align: center;
}

body.light-mode .pricing-card h3 {
    color: var(--text-main);
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    text-align: center;
    transition: color 0.3s ease;
}

body.light-mode .price {
    color: var(--text-main);
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.price-desc {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.price-features {
    margin-bottom: 40px;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-main);
    font-size: 0.95rem;
}

.price-features li i {
    color: var(--accent);
    font-size: 1.2rem;
}

/* Light Mode Overrides for Buttons in Pricing */
body.light-mode .pricing-card .btn-outline {
    color: var(--text-main);
    border-color: var(--border);
}

body.light-mode .pricing-card .btn-outline:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
}

/* Mobile Pricing */
@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        gap: 50px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

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

/* Logo Fixes */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    height: 24px;
    width: auto;
}

/* Showcase */
.showcase-section {
    padding: 100px 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    height: 500px;
}

.showcase-item {
    background: var(--bg-card);
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border);
}

.showcase-item:hover .showcase-bg-img {
    transform: scale(1.05);
}

.showcase-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: transform 0.6s ease;
    background-size: cover;
    background-position: center;
}

.bg-2 {
    background-color: #3f2e3e;
}

/* Fallbacks */
.bg-3 {
    background-color: #2e3e3c;
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    z-index: 2;
}

.showcase-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 3;
}

.showcase-content h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: white;
}

.showcase-content p {
    color: #d1d5db;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.case-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
    color: white;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0f0f16 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.stars {
    color: #f59e0b;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.quote {
    color: var(--text-main);
    font-style: italic;
    margin-bottom: 30px;
    font-size: 1rem;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

.color-1 {
    background: linear-gradient(135deg, #FF6B6B, #EE5D5D);
}

.color-2 {
    background: linear-gradient(135deg, #4FACFE, #00F2FE);
}

.color-3 {
    background: linear-gradient(135deg, #43E97B, #38F9D7);
}

.client-name {
    font-size: 1rem;
    margin-bottom: 2px;
    color: var(--text-main);
}

.client-role {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 400;
}

/* FAQ */
.faq-section {
    padding: 100px 0;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.accordion-header {
    width: 100%;
    padding: 20px 25px;
    text-align: left;
    background: none;
    border: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.accordion-content p {
    padding: 0 25px 25px 25px;
    color: var(--text-muted);
}

.accordion-item.active .accordion-content {
    max-height: 200px;
}

.accordion-item.active i {
    transform: rotate(180deg);
}

/* Contact Form */
.contact-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    background: var(--bg-card);
    border-radius: 30px;
    padding: 50px;
    border: 1px solid var(--border);
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 40px;
    color: var(--text-muted);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 24px;
    color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
    padding: 12px;
    border-radius: 12px;
    height: fit-content;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-main);
}

.contact-socials {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.contact-socials a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-card-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border: 1px solid var(--border);
}

.contact-socials a:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.contact-form-box form {
    display: grid;
    gap: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: var(--input-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px var(--primary-glow);
}

/* Footer */
.footer {
    background: #050507;
    padding: 80px 0 30px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h4 {
    margin-bottom: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.brand-col p {
    color: var(--text-muted);
    margin: 20px 0;
    max-width: 300px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.trust-badges {
    display: flex;
    gap: 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: var(--bg-card);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
    animation: slideUp 0.5s ease-out;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-main);
}

.cookie-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

/* Animations */
@keyframes floating {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(0, 20px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes slideUp {
    from {
        transform: translate(-50%, 100px);
        opacity: 0;
    }

    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

/* Mobile */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 30px;
    }
}

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

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        margin: 0 auto 40px;
    }

    .hero-actions {
        justify-content: center;
        flex-direction: column;
    }

    .hero-visual {
        display: none;
    }

    .nav-links {
        display: none;
    }

    /* Handled by JS */
    .mobile-menu-btn {
        display: block;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .showcase-item {
        min-height: 250px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .cookie-actions {
        width: 100%;
        justify-content: flex-end;
    }

    .services-grid {
        justify-content: center;
    }

    .nav-links.mobile-active {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        padding: 30px 20px;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        gap: 20px;
        z-index: 1000;
        backdrop-filter: blur(20px);
    }

    .nav-links.mobile-active .nav-toggles {
        border-left: none;
        border-top: 1px solid var(--border);
        padding: 20px 0 0;
        width: 100%;
        justify-content: center;
        margin-right: 0;
    }

    .nav-links.mobile-active .nav-cta {
        width: 100%;
        margin-top: 10px;
    }

    body.light-mode .nav-links.mobile-active {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }
}