/* ==========================================================================
   FORTIS SOLUTION â€” STYLE-NEW.CSS
   Redesign: Soft UI Evolution | Professional Software House
   Primary: #00b6ed | Accent: #eb5247
   ========================================================================== */

/* â”€â”€ 1. DESIGN TOKENS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
    --primary: #00b6ed;
    --primary-dark: #0097c9;
    --primary-light: rgba(0, 182, 237, 0.12);
    --accent: #eb5247;
    --accent-dark: #d43d33;
    --accent-light: rgba(235, 82, 71, 0.12);

    --dark: #0F172A;
    --dark-2: #1E293B;
    --heading: #1E293B;
    --text: #475569;
    --muted: #94A3B8;
    --bg: #F8FAFC;
    --surface: #FFFFFF;
    --surface-2: #F1F5F9;
    --border: #E2E8F0;

    --shadow-sm: 0 1px 3px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
    --shadow-md: 0 4px 16px rgba(15,23,42,0.08), 0 2px 6px rgba(15,23,42,0.04);
    --shadow-lg: 0 10px 40px rgba(15,23,42,0.12), 0 4px 12px rgba(15,23,42,0.06);
    --shadow-xl: 0 20px 60px rgba(15,23,42,0.15);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-pill: 999px;

    --transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    --section-py: 96px;
}

/* Dark Mode Tokens */
[data-theme="dark"] {
    --bg: #0F172A;
    --surface: #1E293B;
    --surface-2: #273449;
    --heading: #F1F5F9;
    --text: #94A3B8;
    --muted: #64748B;
    --border: #334155;
    --dark: #F8FAFC;
    --shadow-md: 0 4px 16px rgba(0,0,0,0.3);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.4);
    --cta-bg: linear-gradient(135deg, #1E293B 0%, #004161 100%);
}

/* â”€â”€ 2. RESET & BASE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 76px; overflow-x: hidden; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--bg);
    transition: background-color var(--transition), color var(--transition);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--heading);
    line-height: 1.25;
    transition: color var(--transition);
}

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

a:hover { color: var(--primary-dark); }

img { max-width: 100%; }

section { padding: var(--section-py) 0; }

/* â”€â”€ 3. UTILITY CLASSES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.text-primary-brand { color: var(--primary) !important; }
.text-accent { color: var(--accent) !important; }
.text-heading { color: var(--heading) !important; }
.text-muted-brand { color: var(--muted) !important; }

.bg-surface { background-color: var(--surface) !important; }
.bg-dark-brand { background-color: var(--dark) !important; }

.gradient-text {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* â”€â”€ 4. SECTION TITLE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section-title {
    text-align: center;
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title h2 {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 800;
    color: var(--heading);
    margin-bottom: 0;
    position: relative;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 48px;
    height: 4px;

    border-radius: 2px;
    margin: 12px auto 0;
}

.section-title p {
    color: var(--text);
    font-size: 17px;
    max-width: 560px;
    margin: 16px auto 0;
}

/* â”€â”€ 5. BUTTONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
}

.btn-header {
    height: 38px;
    padding: 0 20px;
    font-size: 13px;
}

.btn-brand-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 14px rgba(0, 182, 237, 0.35);
}

.btn-brand-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 182, 237, 0.45);
}

.btn-brand-accent {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 4px 14px rgba(235, 82, 71, 0.35);
}

.btn-brand-accent:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(235, 82, 71, 0.45);
}

.btn-brand-ghost {
    background: transparent;
    color: var(--heading);
    border-color: var(--border);
}

.btn-brand-ghost:hover {
    background: var(--surface-2);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

[data-theme="dark"] .btn-brand-ghost {
    color: var(--heading);
    border-color: var(--border);
}

[data-theme="dark"] .btn-brand-ghost:hover {
    background: var(--surface-2);
}

/* â”€â”€ 6. HEADER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 76px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: all var(--transition);
}

[data-theme="dark"] #header {
    background: rgba(15, 23, 42, 0.88);
    border-bottom-color: rgba(51, 65, 85, 0.8);
}

#header .logo {
    line-height: 0.70;
}

#header .logo a {
    font-family: var(--font-heading);
    font-size: clamp(16px, 3.5vw, 28px);
    font-weight: 900;
    color: var(--heading);
    letter-spacing: -1px;
}

#header .logo a span {
    color: var(--accent);
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--heading) !important;
    height: 76px;
    display: flex;
    align-items: center;
    padding: 0 18px !important;
    position: relative;
    white-space: nowrap;
    transition: color var(--transition) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary) !important;
}

.nav-link:hover::after, .nav-link.active::after {
    transform: scaleX(1);
}

.header-actions { display: flex; align-items: center; gap: 10px; }

/* Theme Switch */
.theme-switch {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--surface);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    font-size: 16px;
}

.theme-switch:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

/* Language Switch */
.lang-switch {
    position: relative;
    cursor: pointer;
}

/* Jembatan transparan agar hover tidak hilang saat kursor menyeberang ke dropdown */
.lang-switch::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    height: 15px;
}

.lang-current {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 38px;
    padding: 0 12px;
    border-radius: var(--radius-pill);
    border: 1.5px solid var(--border);
    background: var(--surface);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    transition: all var(--transition);
}

.lang-current:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    min-width: 80px;
    z-index: 100;
}

.lang-switch:hover .lang-dropdown { display: block; }

.lang-option {
    padding: 10px 16px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    transition: all var(--transition);
}

.lang-option:hover {
    background: var(--primary-light);
    color: var(--primary);
}

/* Offcanvas (Mobile Nav) */
@media (max-width: 991px) {
    .offcanvas-lg {
        background-color: rgba(15, 23, 42, 0.95) !important;
        backdrop-filter: blur(20px);
        width: 100% !important;
        height: 100vh !important;
        border-right: none;
        display: flex !important;
        flex-direction: column !important;
    }

    .offcanvas-header {
        position: relative;
        justify-content: center;
        align-items: center;
        padding: 20px;
        min-height: 80px;
    }

    .offcanvas-header .btn-close {
        position: absolute;
        right: 20px;
    }

    .offcanvas-body {
        flex-grow: 1;
        overflow-y: auto;
    }

    .offcanvas-lg .nav-link {
        color: rgba(255,255,255,0.8) !important;
        padding: 16px 20px !important;
        font-size: 16px;
        height: auto !important;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        text-align: center;
        display: block !important;
    }

    .offcanvas-lg .nav-link:hover, .offcanvas-lg .nav-link.active {
        color: var(--primary) !important;
        background: rgba(255,255,255,0.02);
    }

    .offcanvas-lg .nav-link::after { display: none; }
}

.navbar-toggler {
    border: none;
    background: transparent;
    color: var(--heading);
    padding: 4px;
    transition: color var(--transition);
}

.navbar-toggler:hover { color: var(--primary); }

/* â”€â”€ 7. HERO SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
    overflow: hidden;
    background-color: var(--bg);
}

#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

#hero .container { position: relative; z-index: 1; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, rgba(0, 182, 237, 0.08), rgba(235, 82, 71, 0.05));
    border: 1px solid rgba(0, 182, 237, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 182, 237, 0.08);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 24px;
    transition: var(--transition);
}

.hero-badge:hover {
    box-shadow: 0 6px 24px rgba(0, 182, 237, 0.15);
    border-color: rgba(0, 182, 237, 0.3);
    transform: translateY(-2px);
}

.hero-badge .badge-icon {
    font-size: 14px;
    color: var(--accent);
    animation: pulse-icon 2s ease-in-out infinite;
}

.hero-badge .badge-text {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); opacity: 1; filter: drop-shadow(0 0 4px rgba(235,82,71,0.4)); }
    50% { transform: scale(1.15); opacity: 0.8; filter: drop-shadow(0 0 8px rgba(235,82,71,0.7)); }
}

#hero h1 {
    font-size: clamp(36px, 5.5vw, 60px);
    font-weight: 900;
    color: var(--heading);
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    line-height: 1.15;
}

#hero .hero-subtitle {
    font-size: clamp(15px, 2vw, 17px);
    color: var(--text);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero-cta-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
}

.hero-stat-num {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    color: var(--heading);
    line-height: 1;
}

.hero-stat-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 4px;
}

.hero-visual {
    position: relative;
}

.hero-img-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-img-wrap img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

.hero-float-card {
    position: absolute;
    background: var(--surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--border);
    animation: float-card 4s ease-in-out infinite;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-float-card.card-1 {
    bottom: -24px;
    left: -24px;
    animation-delay: 0s;
}

.hero-float-card.card-2 {
    top: -20px;
    right: -20px;
    animation-delay: 1.5s;
}

.hero-float-card .fc-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.hero-float-card .fc-icon.primary { background: var(--primary-light); color: var(--primary); }
.hero-float-card .fc-icon.accent { background: var(--accent-light); color: var(--accent); }

.hero-float-card .fc-num {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--heading);
    line-height: 1;
}

.hero-float-card .fc-label {
    font-size: 11px;
    color: var(--muted);
    font-weight: 600;
}

/* â”€â”€ 8. STATS BAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#stats-bar {
    background: var(--dark);
    padding: 52px 0;
}

[data-theme="dark"] #stats-bar {
    background: #080E1B;
}

.stats-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 12px 40px;
    flex: 1;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    display: block;
    letter-spacing: -1px;
}

.stat-num span.accent-text { color: var(--accent); }

.stat-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-top: 10px;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .stats-bar-inner { flex-wrap: wrap; }
    .stat-item { padding: 16px 20px; flex: 0 0 50%; }
    .stat-divider { display: none; }
}

#clients {
    position: relative;
    padding: 60px 0 40px 0px;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.clients-label {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 8px 24px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 10;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    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);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 48px;
    width: max-content;
    animation: marquee-scroll 35s linear infinite;
}

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

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

.client-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.client-logo img {
    height: 28px;
    width: auto;
    filter: grayscale(100%) opacity(0.45);
    transition: all var(--transition);
    object-fit: contain;
}

.client-logo:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

[data-theme="dark"] .client-logo img {
    filter: grayscale(100%) invert(1) opacity(0.4);
}

[data-theme="dark"] .client-logo:hover img {
    filter: grayscale(0%) invert(0) opacity(1);
}

/* â”€â”€ 10. ABOUT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#about { background: var(--bg); }

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

.about-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14.5px;
    color: var(--text);
}

.about-list li:last-child { border-bottom: none; }

.about-list .check-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-img-wrap {
    position: relative;
}

.about-img-wrap img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.about-badge-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    padding: 16px 20px;
    display: flex;
    gap: 16px;
}

.about-badge-stat {
    text-align: center;
}

.about-badge-stat .num {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 900;
    color: var(--heading);
    line-height: 1;
    display: block;
}

.about-badge-stat .lbl {
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* â”€â”€ 11. WHY US â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#why-us {
    background: var(--surface-2);
}

[data-theme="dark"] #why-us {
    background: var(--surface);
}

.why-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: all var(--transition);
}

[data-theme="dark"] .why-card {
    background: var(--surface-2);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.why-card-num {
    position: absolute;
    top: -10px;
    right: -10px;
    font-family: var(--font-heading);
    font-size: 90px;
    font-weight: 900;
    color: var(--border);
    line-height: 1;
    transition: color var(--transition);
    user-select: none;
}

[data-theme="dark"] .why-card-num { color: var(--surface); }

.why-card:hover .why-card-num { color: var(--primary-light); }

.why-card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    transition: all var(--transition);
}

.why-card:hover .why-card-icon {
    background: var(--primary);
    color: #fff;
}

.why-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
    margin: 0;
}

/* â”€â”€ 12. TECH STACK â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#skills { background: var(--bg); }

.tech-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 16px;
    text-align: center;
    cursor: default;
    transition: all var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .tech-card {
    background: var(--surface-2);
}

.tech-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    transform: scaleX(0);
    transition: transform var(--transition);
}

.tech-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

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

.tech-card i {
    font-size: 36px;
    color: var(--accent);
    display: block;
    margin-bottom: 12px;
    transition: transform var(--transition);
}

.tech-card:hover i { transform: scale(1.15); }

.tech-card .tech-name {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--heading);
    display: block;
    margin-bottom: 6px;
}

.tech-card .tech-badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: var(--radius-pill);
    background: var(--accent-light);
    color: var(--accent);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

/* â”€â”€ 13. SERVICES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#services { background: var(--surface-2); }

[data-theme="dark"] #services {
    background: var(--surface);
}

.service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}

[data-theme="dark"] .service-card {
    background: var(--surface-2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

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

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    background: var(--accent);
    color: #fff;
}

.service-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 10px;
}

.service-card h4 a {
    color: inherit;
    transition: color var(--transition);
}

.service-card:hover h4 a { color: var(--primary); }

.service-card p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
    margin: 0;
}

/* â”€â”€ 14. PORTFOLIO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#portfolio { background: var(--bg); }

.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    list-style: none;
    padding: 0;
}

.portfolio-filters li {
    padding: 8px 22px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    border: 1.5px solid var(--border);
    color: var(--text);
    background: var(--surface);
    transition: all var(--transition);
}

.portfolio-filters li:hover, .portfolio-filters li.filter-active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 182, 237, 0.3);
}

.portfolio-item {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.portfolio-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--surface);
    transition: all var(--transition);
}

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

.portfolio-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.portfolio-card:hover img { transform: scale(1.08); }

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.95) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 1;
    transition: all 0.4s ease;
}

.portfolio-card:hover .portfolio-overlay {
    background: linear-gradient(to top, rgba(15,23,42,0.98) 0%, rgba(15,23,42,0.5) 100%);
}

.portfolio-overlay h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
    transition: all 0.4s ease;
}

.portfolio-overlay p {
    color: rgba(255,255,255,0.75);
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.portfolio-overlay-links {
    display: flex;
    gap: 8px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.portfolio-card:hover .portfolio-overlay h4 {
    margin-bottom: 6px;
}

.portfolio-card:hover .portfolio-overlay p {
    max-height: 80px;
    opacity: 1;
    margin-bottom: 14px;
}

.portfolio-card:hover .portfolio-overlay-links {
    max-height: 40px;
    opacity: 1;
}

.portfolio-overlay-links a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all var(--transition);
    backdrop-filter: blur(4px);
}

.portfolio-overlay-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.portfolio-card-title {
    display: none;
}

/* â”€â”€ 15. TEAM â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#team { background: var(--surface-2); }

[data-theme="dark"] #team { background: var(--surface); }

.team-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    transition: all var(--transition);
    height: auto;
    display: flex;
    flex-direction: column;
}

[data-theme="dark"] .team-card {
    background: var(--surface-2);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    display: block;
}

.team-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 4px;
}

.team-role {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.team-desc {
    font-size: 13px;
    color: var(--text);
    line-height: 1.6;
}

/* Team Slider (Horizontal Carousel) */
.team-slider-wrap {
    display: flex;
    align-items: stretch;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 24px;
    padding-top: 16px;    /* Prevent top clipping on hover */
    padding-bottom: 32px; /* Prevent bottom shadow clipping */
    margin-top: -16px;
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: var(--border) transparent;
}

.team-slider-wrap::-webkit-scrollbar {
    height: 8px;
    display: block; /* Show scrollbar */
}

.team-slider-wrap::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 4px;
}

.team-slider-wrap::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

.team-slider-wrap::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.team-slider-wrap > .team-card {
    flex: 0 0 calc(25% - 18px); /* 4 items per view */
    scroll-snap-align: start;
}

@media (max-width: 991px) {
    .team-slider-wrap > .team-card {
        flex: 0 0 calc(50% - 12px); /* 2 items per view */
    }
}

@media (max-width: 575px) {
    .team-slider-wrap > .team-card {
        flex: 0 0 calc(80%); /* 1 item partially visible */
        gap: 14px;
    }
}

/* â”€â”€ 16. CTA SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn-whatsapp {
    background-color: #25D366;
    border-color: #25D366;
    color: #fff;
}
.btn-whatsapp:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    color: #fff;
}
#cta {
    background: var(--cta-bg, linear-gradient(135deg, #0F172A 0%, #1a3655 100%));
    position: relative;
    overflow: hidden;
    padding: 96px 0;
}

#cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,182,237,0.15) 0%, transparent 70%);
    pointer-events: none;
}

#cta::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(235,82,71,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content { position: relative; z-index: 1; }

#cta h3 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

#cta p {
    color: rgba(255,255,255,0.65);
    font-size: 17px;
    max-width: 520px;
}

/* â”€â”€ 17. BLOG â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#blog { background: var(--bg); }

.blog-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    transition: all var(--transition);
}

[data-theme="dark"] .blog-card {
    background: var(--surface-2);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.blog-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-img { transform: scale(1.04); }

.blog-img-wrap { overflow: hidden; }

.blog-body { padding: 22px; }

.blog-category {
    display: inline-block;
    padding: 3px 12px;
    border-radius: var(--radius-pill);
    background: var(--primary-light);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.blog-date {
    font-size: 12px;
    color: var(--muted);
    font-weight: 600;
}

.blog-body h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 8px;
    line-height: 1.4;
}

.blog-body h3 a {
    color: inherit;
    transition: color var(--transition);
}

.blog-card:hover .blog-body h3 a { color: var(--primary); }

.blog-body p {
    font-size: 13.5px;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    transition: gap var(--transition);
}

.blog-readmore:hover {
    gap: 10px;
    color: var(--primary-dark);
}

/* â”€â”€ 18. CONTACT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#contact { background: var(--surface-2); }

[data-theme="dark"] #contact { background: var(--surface); }

.contact-info-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
    transition: all var(--transition);
}

[data-theme="dark"] .contact-info-card {
    background: var(--surface-2);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.contact-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-md);
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info-card h5 {
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.contact-info-card p {
    font-size: 14px;
    color: var(--text);
    margin: 0;
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.contact-form-wrap {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

[data-theme="dark"] .contact-form-wrap {
    background: var(--surface-2);
}

.form-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 6px;
}

.form-control {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    font-size: 14px;
    color: var(--heading);
    background: var(--bg);
    transition: all var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 182, 237, 0.15);
    background: var(--surface);
    outline: none;
}

[data-theme="dark"] .form-control {
    background: var(--surface);
    color: var(--heading);
    border-color: var(--border);
}

[data-theme="dark"] .form-control:focus {
    background: var(--surface-2);
}

.btn-submit {
    width: 100%;
    padding: 14px;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 4px 14px rgba(0, 182, 237, 0.35);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 182, 237, 0.45);
}

/* â”€â”€ 19. FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#footer {
    background: var(--dark);
    color: rgba(255,255,255,0.65);
}

[data-theme="dark"] #footer {
    background: #080E1B;
}

.footer-top { padding: 72px 0 48px; }

.footer-logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    display: inline-block;
    margin-bottom: 14px;
}

.footer-logo span { color: var(--accent); }

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
    max-width: 260px;
    margin-bottom: 24px;
}

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

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-col h5 {
    font-size: 13px;
    font-weight: 800;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

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

.footer-links a i {
    font-size: 11px;
    color: var(--accent);
}

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

.footer-copy {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    text-align: center;
}

/* â”€â”€ 20. BACK TO TOP â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 14px rgba(0, 182, 237, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-4px);
}

/* â”€â”€ 21. LIGHTBOX â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

#lightbox.open { display: flex; }

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius-md);
    object-fit: contain;
}

.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute;
    color: #fff;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all var(--transition);
}

.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }

/* â”€â”€ 22. VIDEO LIGHTBOX â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#video-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

#video-lightbox.open { display: flex; }

.video-container {
    position: relative;
    width: min(900px, 92vw);
    aspect-ratio: 16/9;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.video-container iframe { width: 100%; height: 100%; border: none; }

.close-video {
    position: absolute;
    top: -44px;
    right: 0;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    transition: color var(--transition);
}

.close-video:hover { color: var(--accent); }

/* â”€â”€ 23. RESPONSIVE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1199px) {
    :root { --section-py: 80px; }
    
    .nav-link { padding: 0 10px !important; font-size: 13px; }
    .header-actions { gap: 6px; }
}

@media (max-width: 991px) {
    :root { --section-py: 64px; }
    
    #header .logo a { letter-spacing: -0.5px; }

    .hero-float-card { display: none; }

    .about-badge-card { position: static; margin-top: 16px; justify-content: center; }

    #cta h3 { text-align: center; }
    #cta p { margin: 0 auto 32px; text-align: center; }
    .cta-content { text-align: center; }
    .cta-content .d-flex { justify-content: center; }
}

@media (max-width: 767px) {
    :root { --section-py: 56px; }

    .section-title { margin-bottom: 40px; }

    .hero-cta-wrap { justify-content: center; }
    .hero-stats { justify-content: center; }
    #hero h1 { text-align: center; }
    .hero-subtitle { margin: 0 auto 32px; text-align: center; }
    .hero-badge { margin: 0 auto 20px; }

    .contact-form-wrap { padding: 24px 20px; }

    .stat-divider { display: none; }
}

@media (max-width: 575px) {
    .hero-stats { gap: 20px; }
    .hero-stat-num { font-size: 22px; }
}

/* â”€â”€ 24. PREFERS REDUCED MOTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
