/* ============================================
   WEBSITESLK — Gym Management Software
   Vibrant • Colorful • Gen Z • Mobile-First
   ============================================ */

/* --- CSS Variables (Dark Theme Default) --- */
:root,
[data-theme="dark"] {
    --bg-primary: #0b0b1e;
    --bg-secondary: #12122e;
    --bg-card: rgba(255, 255, 255, 0.06);
    --bg-card-hover: rgba(255, 255, 255, 0.12);
    --bg-glass: rgba(255, 255, 255, 0.07);
    --bg-nav: rgba(11, 11, 30, 0.88);
    --text-primary: #ffffff;
    --text-secondary: #b0b0cc;
    --text-muted: #7070a0;
    --accent-1: #8b5cf6;
    --accent-2: #06d6a0;
    --accent-3: #f72585;
    --accent-4: #4cc9f0;
    --accent-5: #ffd60a;
    --accent-gradient: linear-gradient(135deg, #8b5cf6 0%, #4cc9f0 100%);
    --accent-gradient-2: linear-gradient(135deg, #f72585 0%, #ffd60a 100%);
    --accent-gradient-3: linear-gradient(135deg, #4cc9f0 0%, #8b5cf6 100%);
    --accent-gradient-4: linear-gradient(135deg, #06d6a0 0%, #4cc9f0 100%);
    --hero-gradient: linear-gradient(135deg, #8b5cf6 0%, #06d6a0 100%);
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 24px rgba(139, 92, 246, 0.1);
    --shadow-lg: 0 16px 40px rgba(139, 92, 246, 0.15);
    --shadow-glow: 0 0 20px rgba(139, 92, 246, 0.2);
    --shadow-glow-pink: 0 0 20px rgba(247, 37, 133, 0.15);
    --shadow-glow-green: 0 0 20px rgba(6, 214, 160, 0.15);
    --glass-border: rgba(255, 255, 255, 0.12);
    --hero-overlay: linear-gradient(135deg, rgba(11, 11, 30, 0.85) 0%, rgba(18, 18, 46, 0.75) 50%, rgba(139, 92, 246, 0.3) 100%);
    --footer-bg: #06060f;
    --success: #06d6a0;
    --error: #f72585;
    --warning: #ffd60a;
}

[data-theme="light"] {
    --bg-primary: #f0f0ff;
    --bg-secondary: #ffffff;
    --bg-card: rgba(139, 92, 246, 0.04);
    --bg-card-hover: rgba(139, 92, 246, 0.08);
    --bg-glass: rgba(255, 255, 255, 0.85);
    --bg-nav: rgba(255, 255, 255, 0.92);
    --text-primary: #1a1040;
    --text-secondary: #4a4070;
    --text-muted: #8080a0;
    --accent-1: #7c3aed;
    --accent-2: #059669;
    --accent-3: #e11d74;
    --accent-4: #0891b2;
    --accent-5: #d97706;
    --accent-gradient: linear-gradient(135deg, #7c3aed 0%, #0891b2 100%);
    --accent-gradient-2: linear-gradient(135deg, #e11d74 0%, #d97706 100%);
    --accent-gradient-3: linear-gradient(135deg, #0891b2 0%, #7c3aed 100%);
    --accent-gradient-4: linear-gradient(135deg, #059669 0%, #0891b2 100%);
    --hero-gradient: linear-gradient(135deg, #7c3aed 0%, #059669 100%);
    --border-color: rgba(0, 0, 0, 0.08);
    --shadow-sm: 0 2px 8px rgba(139, 92, 246, 0.06);
    --shadow-md: 0 6px 20px rgba(139, 92, 246, 0.08);
    --shadow-lg: 0 12px 36px rgba(139, 92, 246, 0.1);
    --shadow-glow: 0 0 20px rgba(139, 92, 246, 0.12);
    --shadow-glow-pink: 0 0 20px rgba(247, 37, 133, 0.1);
    --shadow-glow-green: 0 0 20px rgba(6, 214, 160, 0.1);
    --glass-border: rgba(0, 0, 0, 0.06);
    --hero-overlay: linear-gradient(135deg, rgba(240, 240, 255, 0.88) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(139, 92, 246, 0.15) 100%);
    --footer-bg: #1a1040;
    --success: #059669;
    --error: #e11d74;
    --warning: #d97706;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    transition: background 0.4s ease, color 0.4s ease;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

a:hover {
    color: var(--accent-1);
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* --- Preloader --- */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #eef1f6;
    box-shadow: inset 0 0 200px rgba(100, 120, 200, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s, visibility 0.6s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-circle-wrap {
    position: relative;
    width: 220px;
    height: 220px;
}

.preloader-circle {
    position: absolute;
    inset: 12px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.08);
    animation: preloader-pulse 2s ease-in-out infinite;
}

.preloader-orbit {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #2c3e6b;
    animation: spin 1.2s linear infinite;
}

.preloader-logo {
    height: 36px;
    filter: none;
}

@keyframes preloader-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }
}

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

/* --- Rainbow border animation --- */
@keyframes rainbow-border {
    0% {
        border-color: var(--accent-1);
    }

    25% {
        border-color: var(--accent-3);
    }

    50% {
        border-color: var(--accent-2);
    }

    75% {
        border-color: var(--accent-4);
    }

    100% {
        border-color: var(--accent-1);
    }
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: transparent;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: var(--bg-nav);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(139, 92, 246, 0.15);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 38px;
    transition: transform 0.3s;
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.3));
    background: transparent !important;
    mix-blend-mode: normal;
}

.nav-logo:hover img {
    transform: scale(1.08);
}

.nav-links {
    display: flex;
    gap: 6px;
}

.nav-links a {
    padding: 8px 18px;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
    background: var(--bg-card-hover);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 3px;
    border-radius: 2px;
    background: var(--accent-gradient);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.theme-toggle {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-primary);
    cursor: pointer;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.theme-toggle:hover {
    background: var(--bg-card-hover);
    transform: rotate(20deg);
    box-shadow: var(--shadow-glow);
}

[data-theme="dark"] .theme-icon-dark {
    display: none;
}

[data-theme="light"] .theme-icon-light {
    display: none;
}

/* --- Theme-Aware Logo --- */
[data-theme="dark"] .theme-logo {
    filter: brightness(0) invert(1);
}

[data-theme="light"] .theme-logo {
    filter: none;
}

.nav-cta {
    padding: 10px 26px;
    border-radius: 12px;
    background: var(--accent-gradient);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    border: none;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: #fff;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Mobile Menu --- */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 991px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 4px;
        z-index: 999;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-lg);
        border-left: 2px solid var(--accent-1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        padding: 14px 18px;
        font-size: 1rem;
        border-radius: 12px;
    }

    .hamburger {
        display: flex;
    }

    .nav-cta {
        display: none;
    }
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--hero-overlay);
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.07;
    animation: float-particle 20s infinite ease-in-out;
}

.particle:nth-child(1) {
    width: 350px;
    height: 350px;
    top: 5%;
    right: -8%;
    background: var(--accent-1);
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: 250px;
    height: 250px;
    bottom: 15%;
    left: -5%;
    background: var(--accent-3);
    animation-delay: -5s;
}

.particle:nth-child(3) {
    width: 180px;
    height: 180px;
    top: 45%;
    right: 25%;
    background: var(--accent-2);
    animation-delay: -10s;
}

.particle:nth-child(4) {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 15%;
    background: var(--accent-4);
    animation-delay: -7s;
}

.particle:nth-child(5) {
    width: 100px;
    height: 100px;
    bottom: 30%;
    right: 10%;
    background: var(--accent-5);
    animation-delay: -3s;
}

@keyframes float-particle {

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

    33% {
        transform: translate(30px, -30px) scale(1.15);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.85);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 22px;
    border-radius: 50px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    backdrop-filter: blur(10px);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-4);
    margin-bottom: 24px;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-2);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.6);
    }
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero h1 .gradient-text {
    background: var(--hero-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradient-shift 6s ease infinite;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }

    100% {
        background-position: 0% center;
    }
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 560px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 34px;
    border-radius: 14px;
    background: var(--accent-gradient);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    color: #fff;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 34px;
    border-radius: 14px;
    background: rgba(247, 37, 133, 0.1);
    border: 2px solid var(--accent-3);
    color: var(--accent-3);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--accent-3);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-pink);
}

/* --- Hero Image Float --- */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
}

.hero-image-wrapper img {
    border-radius: 24px;
    box-shadow: 0 12px 36px rgba(139, 92, 246, 0.15);
    animation: hero-float 5s ease-in-out infinite;
    border: 1px solid rgba(139, 92, 246, 0.15);
}

@keyframes hero-float {

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

    50% {
        transform: translateY(-15px);
    }
}

.hero-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--accent-3);
    opacity: 0.06;
    filter: blur(80px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

    .hero-image-wrapper {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero p {
        margin: 0 auto 36px;
    }

    .hero-buttons {
        justify-content: center;
    }
}

/* --- Stats Bar (colorful) --- */
.stats-bar {
    padding: 60px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
}

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

.stat-item {
    position: relative;
}

.stat-item h3 {
    font-size: 2.8rem;
}

.stat-item:nth-child(1) h3 {
    background: linear-gradient(135deg, #8b5cf6, #4cc9f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item:nth-child(2) h3 {
    background: linear-gradient(135deg, #f72585, #ffd60a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item:nth-child(3) h3 {
    background: linear-gradient(135deg, #06d6a0, #4cc9f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item:nth-child(4) h3 {
    background: linear-gradient(135deg, #ffd60a, #f72585);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 4px;
    font-weight: 500;
}

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

/* --- Section Titles --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--accent-1);
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 16px;
}

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

/* --- Service Cards (colorful icons) --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    padding: 36px 28px;
    border-radius: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.service-card:hover {
    transform: translateY(-10px);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
}

.service-icon.purple {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.service-icon.pink {
    background: linear-gradient(135deg, #f72585, #b5179e);
    box-shadow: 0 8px 20px rgba(247, 37, 133, 0.3);
}

.service-icon.green {
    background: linear-gradient(135deg, #06d6a0, #059669);
    box-shadow: 0 8px 20px rgba(6, 214, 160, 0.3);
}

.service-icon.blue {
    background: linear-gradient(135deg, #4cc9f0, #0891b2);
    box-shadow: 0 8px 20px rgba(76, 201, 240, 0.3);
}

.service-icon.orange {
    background: linear-gradient(135deg, #ffd60a, #f59e0b);
    box-shadow: 0 8px 20px rgba(255, 214, 10, 0.3);
}

.service-icon.red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
}

.service-icon.teal {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    box-shadow: 0 8px 20px rgba(20, 184, 166, 0.3);
}

.service-icon.indigo {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.service-icon.amber {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
}

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

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

/* --- Feature Cards (colorful borders) --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 40px 28px;
    border-radius: 24px;
    text-align: center;
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.feature-card:nth-child(1)::after {
    background: linear-gradient(90deg, #8b5cf6, #4cc9f0);
}

.feature-card:nth-child(2)::after {
    background: linear-gradient(90deg, #f72585, #ffd60a);
}

.feature-card:nth-child(3)::after {
    background: linear-gradient(90deg, #06d6a0, #4cc9f0);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.feature-card img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin: 0 auto 20px;
    filter: drop-shadow(0 8px 15px rgba(139, 92, 246, 0.2));
}

.feature-card-img {
    width: 100%;
    height: 180px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 20px;
}

.feature-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
    margin: 0;
    transition: transform 0.4s;
}

.feature-card:hover .feature-card-img img {
    transform: scale(1.05);
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

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

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

/* --- Image Showcase Section --- */
.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.showcase-image {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(139, 92, 246, 0.2);
}

.showcase-image img {
    width: 100%;
    height: auto;
    display: block;
}

.showcase-image .floating-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 10px 20px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.showcase-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.showcase-text p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.showcase-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
}

.showcase-features .item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.showcase-features .item .check {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #fff;
    flex-shrink: 0;
}

.showcase-features .item:nth-child(1) .check {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}

.showcase-features .item:nth-child(2) .check {
    background: linear-gradient(135deg, #f72585, #b5179e);
}

.showcase-features .item:nth-child(3) .check {
    background: linear-gradient(135deg, #06d6a0, #059669);
}

.showcase-features .item:nth-child(4) .check {
    background: linear-gradient(135deg, #4cc9f0, #0891b2);
}

.showcase-features .item:nth-child(5) .check {
    background: linear-gradient(135deg, #ffd60a, #f59e0b);
}

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

/* --- Testimonials (colorful) --- */
.testimonials {
    background: var(--bg-secondary);
}

/* --- Modern Testimonials Grid --- */
.testimonials-section {
    padding: 80px 0;
}

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

.testimonial-modern-card {
    padding: 32px 28px;
    border-radius: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.3s;
}

.testimonial-modern-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.testimonial-modern-card.featured {
    border-color: var(--accent-1);
    box-shadow: var(--shadow-glow);
    background: rgba(139, 92, 246, 0.06);
}

.testimonial-quote-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.testimonial-quote-icon i {
    color: #fff;
    font-size: 1rem;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}

.testimonial-stars i {
    color: var(--accent-5);
    font-size: 0.85rem;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.92rem;
    margin: 0;
}

.testimonial-role {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin: 2px 0 0;
}

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

/* --- CTA Section (vibrant) --- */
.cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: var(--accent-gradient);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.cta-section .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #fff;
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 40px;
    border-radius: 14px;
    background: #fff;
    color: var(--accent-1);
    font-weight: 800;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-white:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    color: var(--accent-1);
}

/* --- Page Hero Banners --- */
.page-hero {
    padding: 180px 0 80px;
    background: var(--bg-secondary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero.has-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero.has-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--hero-overlay);
    z-index: 0;
}

.page-hero.has-bg h1,
.page-hero.has-bg .breadcrumb {
    position: relative;
    z-index: 1;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--accent-3);
    opacity: 0.03;
}

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 12px;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--accent-1);
    font-weight: 600;
}

/* --- About Page --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.about-image::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 26px;
    z-index: -1;
    background: var(--accent-gradient);
    opacity: 0.5;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

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

.mission-card {
    padding: 36px 24px;
    border-radius: 24px;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.mission-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.mission-card:nth-child(1)::after {
    background: linear-gradient(90deg, #8b5cf6, #4cc9f0);
}

.mission-card:nth-child(2)::after {
    background: linear-gradient(90deg, #f72585, #ffd60a);
}

.mission-card:nth-child(3)::after {
    background: linear-gradient(90deg, #06d6a0, #4cc9f0);
}

.mission-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.mission-card i {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.mission-card:nth-child(1) i {
    color: var(--accent-1);
}

.mission-card:nth-child(2) i {
    color: var(--accent-3);
}

.mission-card:nth-child(3) i {
    color: var(--accent-2);
}

.mission-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

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

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

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

/* --- Timeline (colorful) --- */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent-gradient);
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -33px;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent-gradient);
    border: 3px solid var(--bg-primary);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.4);
}

.timeline-item h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.timeline-item .year {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-3);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* --- Process Steps --- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.process-step .step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0 auto 16px;
}

.process-step:nth-child(1) .step-num {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.process-step:nth-child(2) .step-num {
    background: linear-gradient(135deg, #f72585, #b5179e);
    box-shadow: 0 8px 20px rgba(247, 37, 133, 0.3);
}

.process-step:nth-child(3) .step-num {
    background: linear-gradient(135deg, #06d6a0, #059669);
    box-shadow: 0 8px 20px rgba(6, 214, 160, 0.3);
}

.process-step:nth-child(4) .step-num {
    background: linear-gradient(135deg, #4cc9f0, #0891b2);
    box-shadow: 0 8px 20px rgba(76, 201, 240, 0.3);
}

.process-step h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

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

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

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

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.tech-item {
    padding: 14px 26px;
    border-radius: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.tech-item:hover {
    transform: translateY(-3px);
    border-color: var(--accent-1);
    box-shadow: var(--shadow-sm);
}

/* --- Gallery --- */
.gallery-filters {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 26px;
    border-radius: 50px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

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

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 16/10;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.gallery-item:hover {
    border-color: var(--accent-1);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.6), rgba(76, 201, 240, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: #fff;
}

.gallery-overlay span {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
}

/* --- Client Portfolio Cards --- */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.client-card {
    padding: 24px 16px;
    border-radius: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s;
    text-decoration: none;
    display: block;
}

.client-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-1);
    box-shadow: var(--shadow-md);
    background: var(--bg-card-hover);
}

.client-card .client-logo {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-color);
    overflow: hidden;
    padding: 8px;
    flex-shrink: 0;
}

.client-card .client-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    display: block;
}

.client-card h4 {
    font-size: 0.88rem;
    margin-bottom: 4px;
    line-height: 1.3;
}

.client-card .client-url {
    font-size: 0.72rem;
    color: var(--text-muted);
    word-break: break-all;
}

.client-card:hover .client-url {
    color: var(--accent-1);
}

@media (max-width: 991px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.lightbox-close:hover {
    color: var(--accent-3);
    transform: rotate(90deg);
}

/* --- Contact Page --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    border-radius: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.contact-info-card:hover {
    transform: translateX(8px);
    border-color: var(--accent-1);
    box-shadow: var(--shadow-sm);
}

.contact-info-card .icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-card:nth-child(2) .icon {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}

.contact-info-card:nth-child(3) .icon {
    background: linear-gradient(135deg, #f72585, #b5179e);
}

.contact-info-card:nth-child(4) .icon {
    background: linear-gradient(135deg, #06d6a0, #059669);
}

.contact-info-card:nth-child(5) .icon {
    background: linear-gradient(135deg, #4cc9f0, #0891b2);
}

.contact-info-card h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-info-card p,
.contact-info-card a {
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.contact-form {
    padding: 40px;
    border-radius: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 14px;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-1);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-message {
    padding: 14px 20px;
    border-radius: 12px;
    margin-bottom: 16px;
    display: none;
    font-weight: 600;
}

.form-message.success {
    display: block;
    background: rgba(6, 214, 160, 0.12);
    color: var(--success);
    border: 1px solid var(--success);
}

.form-message.error {
    display: block;
    background: rgba(247, 37, 133, 0.12);
    color: var(--error);
    border: 1px solid var(--error);
}

.map-container {
    border-radius: 24px;
    overflow: hidden;
    margin-top: 60px;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

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

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* --- WhatsApp Float (LEFT side) --- */
.whatsapp-float {
    position: fixed;
    left: 20px;
    bottom: 30px;
    z-index: 99999 !important;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    transition: all 0.3s;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {

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

    50% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5), 0 0 0 12px rgba(37, 211, 102, 0.15);
    }
}

.whatsapp-float:hover {
    transform: scale(1.12);
    color: #fff;
}

.whatsapp-tooltip {
    position: absolute;
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: #fff;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* --- Scroll Top (circular progress animation) --- */
.scroll-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 996;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-card);
    border: none;
    color: var(--text-primary);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
    position: fixed;
}

.scroll-top.visible {
    display: flex;
}

.scroll-top:hover {
    color: #fff;
}

.scroll-top svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.scroll-top svg circle {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
}

.scroll-top svg .bg-circle {
    stroke: var(--border-color);
}

.scroll-top svg .progress-circle {
    stroke: url(#scrollGradient);
    stroke-dasharray: 141;
    stroke-dashoffset: 141;
    transition: stroke-dashoffset 0.2s;
}

.scroll-top i {
    position: relative;
    z-index: 2;
}

/* --- Trusted By Section (Modern) --- */
.trusted-section {
    padding: 50px 0 30px;
    border-bottom: 1px solid var(--border-color);
}

.trusted-header {
    text-align: center;
    margin-bottom: 28px;
}

.trusted-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-gradient);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.trusted-count {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.trusted-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.trusted-header h3 {
    font-size: 1.15rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.trusted-header h3 strong {
    color: var(--text-primary);
    font-weight: 700;
}

.trusted-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trusted-logo-item {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 8px;
    opacity: 0.65;
    transition: all 0.3s;
}

.trusted-logo-item:hover {
    opacity: 1;
    transform: translateY(-3px);
    border-color: var(--accent-1);
    box-shadow: var(--shadow-sm);
}

.trusted-logo-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* --- FAQ Section --- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--bg-card);
    transition: all 0.3s;
}

.faq-item.active {
    border-color: var(--accent-1);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    font-family: inherit;
    gap: 16px;
}

.faq-question i {
    font-size: 0.75rem;
    color: var(--accent-1);
    transition: transform 0.3s;
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 18px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* --- Footer --- */
.footer {
    background: var(--footer-bg);
    color: #fff;
}

.footer-top {
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.4));
    background: transparent !important;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    transition: all 0.3s;
}

.footer-social a:nth-child(1) {
    background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
}

.footer-social a:nth-child(2) {
    background: #1877F2;
}

.footer-social a:nth-child(3) {
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social a:nth-child(4) {
    background: #25D366;
}

.footer-social a {
    color: #fff;
}

.footer-social a:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    border-radius: 2px;
    background: var(--accent-gradient);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--accent-4);
    padding-left: 8px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
}

.footer-contact-item i {
    color: var(--accent-2);
    margin-top: 4px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.55);
}

.footer-contact-item a:hover {
    color: var(--accent-4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--accent-4);
}

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

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

/* --- Utility --- */
.text-gradient {
    background: var(--hero-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradient-shift 6s ease infinite;
}

/* --- Hero Slider --- */
.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slider::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--hero-overlay);
    z-index: 1;
}

.hero-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
}

.hero-slider-dots .slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-slider-dots .slider-dot.active {
    background: #fff;
    width: 28px;
    border-radius: 5px;
}

/* --- Colorful decorative sections --- */
.section-colored {
    position: relative;
    overflow: hidden;
}

.section-colored::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--accent-1);
    opacity: 0.04;
}

.section-colored::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: var(--accent-3);
    opacity: 0.04;
}

/* --- Global Responsive --- */
@media (max-width: 576px) {
    section {
        padding: 70px 0;
    }

    .hero {
        min-height: 90vh;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-item h3 {
        font-size: 2rem;
    }
}

/* === Inquiry Popup Modal === */
.inquiry-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    padding: 20px;
}

.inquiry-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.inquiry-modal {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    width: 100%;
    max-width: 640px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 0;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(139, 92, 246, 0.15);
}

.inquiry-modal-overlay.active .inquiry-modal {
    transform: translateY(0) scale(1);
}

.inquiry-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
    line-height: 1;
}

.inquiry-modal-close:hover {
    background: rgba(247, 37, 133, 0.3);
    color: #fff;
    transform: rotate(90deg);
}

.inquiry-modal-header {
    text-align: center;
    padding: 36px 32px 20px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(6, 214, 160, 0.1));
    border-bottom: 1px solid var(--border-color);
}

.inquiry-modal-icon {
    font-size: 40px;
    margin-bottom: 12px;
    display: inline-block;
    background: rgba(139, 92, 246, 0.15);
    width: 72px;
    height: 72px;
    line-height: 72px;
    border-radius: 50%;
    animation: inquiry-icon-pulse 2s ease-in-out infinite;
}

@keyframes inquiry-icon-pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 12px rgba(139, 92, 246, 0);
    }
}

.inquiry-modal-header h2 {
    font-size: 1.6rem;
    margin: 0 0 6px;
    color: var(--text-primary);
    font-weight: 800;
}

.inquiry-modal-header p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin: 0;
}

.inquiry-modal #inquiryForm {
    padding: 28px 32px 32px;
}

.inquiry-modal .form-group label i {
    margin-right: 6px;
    color: var(--accent-1);
    font-size: 0.85rem;
}

.inquiry-modal .form-group label .fa-whatsapp {
    color: #25d366;
}

.inquiry-submit-btn {
    font-size: 1rem !important;
    padding: 16px 24px !important;
    gap: 10px;
    letter-spacing: 0.3px;
}

/* === Modal Scrollbar === */
.inquiry-modal::-webkit-scrollbar {
    width: 6px;
}

.inquiry-modal::-webkit-scrollbar-track {
    background: transparent;
}

.inquiry-modal::-webkit-scrollbar-thumb {
    background: rgba(139, 92, 246, 0.3);
    border-radius: 3px;
}

/* === Modal Responsive === */
@media (max-width: 768px) {
    .inquiry-modal-overlay {
        padding: 10px;
        align-items: flex-end;
    }

    .inquiry-modal {
        max-height: 92vh;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
    }

    .inquiry-modal-overlay.active .inquiry-modal {
        transform: translateY(0);
    }

    .inquiry-modal-header {
        padding: 28px 20px 16px;
    }

    .inquiry-modal #inquiryForm {
        padding: 20px;
    }

    .inquiry-modal .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* === December Snowfall Animation === */
.snowfall-container {
    position: fixed;
    inset: 0;
    z-index: 99999;
    pointer-events: none;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    top: -20px;
    color: #fff;
    user-select: none;
    pointer-events: none;
    animation: snowfall linear infinite;
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.6);
}

@keyframes snowfall {
    0% {
        transform: translateY(-20px) translateX(0) rotate(0deg);
        opacity: 1;
    }

    25% {
        transform: translateY(25vh) translateX(15px) rotate(90deg);
    }

    50% {
        transform: translateY(50vh) translateX(-10px) rotate(180deg);
    }

    75% {
        transform: translateY(75vh) translateX(20px) rotate(270deg);
    }

    100% {
        transform: translateY(105vh) translateX(-5px) rotate(360deg);
        opacity: 0.3;
    }
}

/* ===== UX IMPROVEMENTS — Heatmap-Driven ===== */

/* Hero Stats Counter Bar */
.hero-stats-bar {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
    padding: 18px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-stat {
    text-align: center;
    flex: 1;
}

.hero-stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.12);
}

/* Scroll Down Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 5;
}

.scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.45);
}

.scroll-arrow {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.65rem;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

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

    50% {
        transform: translateY(8px);
    }
}

/* Feature Cards Progressive Disclosure */
.service-card.extra-feature {
    display: none;
}

.service-card.extra-feature.visible {
    display: block;
}

.features-toggle-wrap {
    text-align: center;
    margin-top: 32px;
}

.features-toggle-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-secondary);
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: inherit;
}

.features-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-primary);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.features-toggle-btn .toggle-icon {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.features-toggle-btn.active .toggle-icon {
    transform: rotate(180deg);
}

/* Mobile Sticky CTA Bar */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 12px 16px;
    background: rgba(10, 10, 20, 0.92);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-sticky-cta.visible {
    transform: translateY(0);
}

.mobile-sticky-cta .cta-inner {
    display: flex;
    gap: 10px;
}

.mobile-sticky-cta .btn-sticky {
    flex: 1;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.mobile-sticky-cta .btn-sticky-primary {
    background: var(--accent-gradient);
    color: #fff;
}

.mobile-sticky-cta .btn-sticky-whatsapp {
    background: #25D366;
    color: #fff;
}

/* Process Step Connectors */
.process-grid {
    position: relative;
}

.process-step {
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 32px;
    right: -20px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), transparent);
    opacity: 0.3;
}

.process-step:last-child::after {
    display: none;
}

/* Tech Stack Enhanced Hover */
.tech-item {
    transition: all 0.3s ease;
    cursor: default;
}

.tech-item:hover {
    transform: translateY(-4px) scale(1.05);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-primary);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
}

/* ===== UX Responsive ===== */
@media (max-width: 768px) {
    .hero-stats-bar {
        gap: 12px;
        padding: 14px 16px;
        flex-wrap: wrap !important;
        justify-content: center;
    }

    .hero-stat {
        flex: 1 1 40%;
        margin-bottom: 10px;
    }

    .hero-stat-num {
        font-size: 1.5rem;
    }

    .hero-stat-label {
        font-size: 0.65rem;
    }

    .hero-stat-divider {
        display: none;
    }

    .scroll-indicator {
        bottom: 16px;
    }

    .mobile-sticky-cta {
        display: none !important;
    }

    .whatsapp-float {
        display: flex !important;
        bottom: 80px;
    }

    .process-step::after {
        display: none;
    }
}

/* --- New Hero Slider --- */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--hero-overlay);
}

/* --- Word Slider --- */
.word-slider-wrapper {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    height: 1.2em;
    position: relative;
    width: 280px;
    /* Adjust based on longest word */
}

@media (max-width: 768px) {
    .word-slider-wrapper {
        width: 100%;
        display: block;
        height: 1.3em;
    }
}

.word-slider-list {
    display: flex;
    flex-direction: column;
    animation: word-slide-up 9s linear infinite;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: left;
}

.word-slider-list span {
    display: block;
    height: 1.2em;
    line-height: 1.2em;
}

@keyframes word-slide-up {

    0%,
    25% {
        transform: translateY(0);
    }

    33%,
    58% {
        transform: translateY(-1.2em);
    }

    66%,
    91% {
        transform: translateY(-2.4em);
    }

    100% {
        transform: translateY(-3.6em);
    }
}


/* --- Infinite Marquee (Logos) --- */
.logos-marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 30px 0;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logos-marquee-content {
    display: inline-flex;
    animation: marquee-scroll 15s linear infinite;
    gap: 40px;
    padding-left: 40px;
}

.logos-marquee-content:hover {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.partner-logo-box {
    width: 160px;
    height: 80px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.partner-logo-box:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.partner-logo-box img {
    max-width: 100%;
    max-height: 100%;
    opacity: 0.8;
    transition: all 0.3s;
}

.partner-logo-box:hover img {
    opacity: 1;
}

[data-theme="dark"] .partner-logo-box img {
    filter: brightness(200%) opacity(0.9);
}

[data-theme="dark"] .partner-logo-box:hover img {
    filter: brightness(100%) opacity(1);
}

/* --- Hardware Section --- */
.hardware-marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 20px 0;
    width: 100%;
    margin-top: 40px;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.hardware-marquee-content {
    display: inline-flex;
    animation: hardware-scroll 25s linear infinite;
    gap: 30px;
    padding-left: 30px;
}

.hardware-marquee-content:hover {
    animation-play-state: paused;
}

@keyframes hardware-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.hardware-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hardware-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, var(--card-color, rgba(100, 100, 255, 0.2)) 0%, transparent 70%);
    opacity: 0.1;
    transition: opacity 0.4s;
    pointer-events: none;
    z-index: -1;
}

.hardware-card:hover {
    transform: translateY(-10px);
    border-color: var(--card-color, var(--accent-1));
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 0 15px rgba(255, 255, 255, 0.05);
}

.hardware-card:hover::before {
    opacity: 0.3;
}

.hardware-img-wrap {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.hardware-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.6));
    transition: transform 0.5s ease;
}

.hardware-card:hover .hardware-img-wrap img {
    transform: scale(1.1) translateY(-5px);
}

.hardware-info h4 {
    color: var(--text-primary);
    font-size: 1.15rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.hardware-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* --- FAQ Accordion --- */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

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

.faq-split-left {
    position: sticky;
    top: 120px;
}

@media (max-width: 991px) {
    .faq-split-left {
        position: static;
    }
}

.faq-image-badge {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.faq-image-badge img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 24px;
}

.faq-overlay-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--bg-secondary);
    padding: 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

@media (max-width: 768px) {
    .faq-overlay-badge {
        bottom: 10px;
        right: 10px;
        padding: 10px 15px;
    }
}

.faq-overlay-badge i {
    font-size: 2rem;
    color: var(--accent-1);
}

/* FAQ modern layout */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (max-width: 768px) {
    .faq-list {
        margin-top: 24px;
    }
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active {
    border-color: var(--accent-1);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    background: transparent;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Space Grotesk', sans-serif;
}

.faq-question i {
    color: var(--accent-1);
    transition: transform 0.3s ease;
    background: rgba(139, 92, 246, 0.1);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    /* + turns into x */
    background: var(--accent-1);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px 24px;
}

.faq-answer p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.7;
}

/* --- Dark Footer Overrides --- */
.dark-modern-footer {
    background: #080816 !important;
    color: #e0e0ff !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.footer-cta-bar {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .footer-cta-bar {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

.footer-cta-text h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.footer-cta-text p {
    color: #9090b0;
    margin: 0;
}

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

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

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

.footer-col h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-1);
}

.footer-col p {
    color: #9090b0;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #9090b0;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-btn:hover {
    background: var(--accent-1);
    transform: translateY(-3px);
    border-color: var(--accent-1);
}

.footer-newsletter {
    position: relative;
}

.footer-newsletter input {
    width: 100%;
    padding: 14px 20px;
    padding-right: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    outline: none;
    transition: all 0.3s;
}

.footer-newsletter input:focus {
    border-color: var(--accent-1);
    background: rgba(255, 255, 255, 0.08);
}

.footer-newsletter button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    width: 40px;
    border-radius: 8px;
    background: var(--accent-1);
    border: none;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
}

.footer-newsletter button:hover {
    background: var(--accent-gradient);
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #707090;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-bottom-bar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}