/* ====================================================================
   LUMENFRAME STUDIO — PREMIUM CINEMATIC STYLESHEET
   Custom CSS only. Bootstrap used strictly for grid/layout.
==================================================================== */

/* ---------- CSS VARIABLES / THEME TOKENS ---------- */
:root {
    --accent: #54b32b;
    --accent-rgb: 84, 179, 43;
    --accent-soft: rgba(var(--accent-rgb), 0.16);
    --accent-2: #8A6BFF;
    --bg: #08080c;
    --bg-alt: #0e0e15;
    --surface: rgba(255, 255, 255, 0.03);
    --surface-strong: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.08);
    --text: #f5f5f7;
    --text-muted: rgba(245, 245, 247, 0.65);
    --text-faint: rgba(245, 245, 247, 0.4);
    --font-display: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-body: 'Poppins', sans-serif;
    --radius: 20px;
    --radius-sm: 12px;
    --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.45);
    --shadow-glow: 0 0 40px rgba(var(--accent-rgb), 0.25);
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --transition: 0.5s var(--ease);
}

[data-theme="light"] {
    --accent: #7c3aed;
    --accent-rgb: 124, 58, 237;
    --bg: #f7f6f2;
    --bg-alt: #ffffff;
    --surface: rgba(10, 10, 15, 0.03);
    --surface-strong: rgba(10, 10, 15, 0.06);
    --border: rgba(10, 10, 15, 0.08);
    --text: #0f0f14;
    --text-muted: rgba(15, 15, 20, 0.65);
    --text-faint: rgba(15, 15, 20, 0.42);
    --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    overflow-x: hidden;
    transition: background var(--transition), color var(--transition);
    cursor: default;
}

h2, .section-title {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
    font-size: clamp(32px, 4.5vw, 54px);
    font-weight: 900 !important;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.04em !important;
}

::selection {
    background: var(--accent);
    color: #0a0a0f;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: var(--font-body);
    cursor: pointer;
}

.text-accent {
    color: var(--accent);
}

/* Custom 5-column grid for stats */
.col-lg-2-4 {
    position: relative;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x)*.5);
    padding-left: calc(var(--bs-gutter-x)*.5);
}

@media(min-width: 992px) {
    .col-lg-2-4 {
        flex: 0 0 auto;
        width: 20%;
    }
}

.section-pad {
    padding: 100px 0;
    position: relative;
}

@media(max-width: 768px) {
    .section-pad {
        padding: 70px 0;
    }
}

.section-header {
    max-width: 720px;
    margin: 0 auto 50px;
}

/* Ensure equal symmetric top & bottom padding for all sections */
.section-pad > .container > *:last-child,
.section-pad > .container-fluid > *:last-child {
    margin-bottom: 0 !important;
}

.section-eyebrow {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 54px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.custom-portfolio-title {
    display: inline-block;
    background: transparent;
    padding: 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
    font-weight: 900 !important;
    text-transform: none;
    letter-spacing: -0.04em !important;
}

.custom-portfolio-title .word-creative {
    color: #ffffff;
}

.custom-portfolio-title .word-portfolio {
    color: var(--accent);
}

[data-theme="light"] .custom-portfolio-title {
    background: transparent;
}

[data-theme="light"] .custom-portfolio-title .word-creative {
    color: #0f0f14;
}


.section-subtitle {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.7;
}

/* ---------- LOADER SCREEN ---------- */
.loader-screen {
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: #08080c;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}

.loader-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    text-align: center;
}

.loader-logo {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 4px;
    color: #f5f5f7;
    margin-bottom: 30px;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        text-shadow: 0 0 20px rgba(var(--accent-rgb), 0.3);
    }

    50% {
        text-shadow: 0 0 40px rgba(var(--accent-rgb), 0.7);
    }
}

.loader-bar {
    width: 260px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto 16px;
    border-radius: 10px;
    overflow: hidden;
}

.loader-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    transition: width 0.2s ease;
}

.loader-percent {
    font-size: 13px;
    letter-spacing: 2px;
    color: rgba(245, 245, 247, 0.5);
}

/* ---------- CURSOR GLOW ---------- */
.cursor-glow {
    position: fixed;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 5;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    left: 0;
    top: 0;
}

/* ---------- ANIMATED BG SHAPES ---------- */
.bg-shapes {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.18;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--accent);
    top: -10%;
    left: -10%;
    animation: floatShape 18s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-2);
    bottom: -10%;
    right: -5%;
    animation: floatShape 22s ease-in-out infinite reverse;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    top: 40%;
    right: 30%;
    animation: floatShape 26s ease-in-out infinite;
}

@keyframes floatShape {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(60px, -40px) scale(1.1);
    }
}

/* ---------- TOP HEADER BAR ---------- */
.top-header-bar {
    display: none !important;
}

.video-controls-pill {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    gap: 8px;
    color: var(--text);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

[data-theme="light"] .video-controls-pill {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    color: #111;
}

.vid-ctrl-btn {
    background: transparent;
    border: none;
    color: inherit;
    font-size: 15px;
    cursor: pointer;
    padding: 0 2px;
    margin: 0;
    display: flex;
    align-items: center;
    transition: opacity 0.2s, transform 0.2s;
}

.vid-ctrl-btn:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

.vid-time {
    font-size: 12px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.5px;
}

.vid-divider {
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.25);
    margin: 0 4px;
}

[data-theme="light"] .vid-divider {
    background: rgba(0, 0, 0, 0.2);
}

.top-bar-phone {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.top-bar-phone:hover {
    color: #fff;
    opacity: 0.8;
}

/* ---------- INTRO VIDEO ---------- */
.intro-video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: #000;
}

.intro-video-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---------- NAVBAR ---------- */
.main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
    background: transparent;
}

.main-navbar.scrolled {
    top: 0;
    padding: 12px 0;
    background: rgba(8, 8, 12, 0.85);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .main-navbar.scrolled {
    background: rgba(247, 246, 242, 0.8);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 2px;
    color: var(--text);
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar-logo-img {
    height: 44px;
    max-height: 48px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-logo:hover .navbar-logo-img {
    transform: scale(1.04);
}

.nav-links {
    gap: 8px;
    align-items: center;
}

.nav-link {
    position: relative;
    padding: 10px 18px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.3s ease;
    border-radius: 8px;
    z-index: 1;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #ffffff;
    border-radius: 8px;
    transform: scale(0.85);
    opacity: 0;
    transition: all 0.3s var(--ease);
    z-index: -1;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 8px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s var(--ease);
}

.nav-link:hover,
.nav-link.active {
    color: #0f0f14;
}

.nav-link.active::before,
.nav-link:hover::before {
    transform: scale(1);
    opacity: 1;
}

.nav-link.active::after,
.nav-link:hover::after {
    transform: scaleX(1);
}

/* Light Theme Nav Link Hover/Active Override */
[data-theme="light"] .nav-link::before {
    background: #0f0f14;
}

[data-theme="light"] .nav-link:hover,
[data-theme="light"] .nav-link.active {
    color: #ffffff;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.theme-toggle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.theme-toggle i {
    position: absolute;
    transition: all 0.4s var(--ease);
    font-size: 16px;
}

.theme-toggle .bi-sun-fill {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

.theme-toggle .bi-moon-stars-fill {
    opacity: 1;
    transform: rotate(0) scale(1);
}

[data-theme="light"] .theme-toggle .bi-sun-fill {
    opacity: 1;
    transform: rotate(0) scale(1);
}

[data-theme="light"] .theme-toggle .bi-moon-stars-fill {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

.theme-toggle:hover {
    border-color: var(--accent);
}

.nav-burger {
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--surface);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.nav-burger span {
    width: 16px;
    height: 1.5px;
    background: var(--text);
    transition: all 0.3s ease;
}

.nav-burger.open span:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
}

.nav-burger.open span:nth-child(2) {
    opacity: 0;
}

.nav-burger.open span:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
}

.mobile-nav {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease);
    background: rgba(8, 8, 12, 0.97);
    backdrop-filter: blur(20px);
}

[data-theme="light"] .mobile-nav {
    background: rgba(247, 246, 242, 0.98);
}

.mobile-nav.open {
    max-height: 500px;
}

.mobile-nav ul {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-link {
    padding: 14px 0;
    font-size: 17px;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
    display: block;
}

/* ---------- BUTTONS ---------- */
.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: #0a0a0f !important;
    font-weight: 600;
    font-size: 15px;
    padding: 16px 32px;
    border-radius: 100px;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease);
    box-shadow: 0 8px 30px rgba(var(--accent-rgb), 0.25);
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(var(--accent-rgb), 0.4);
}

.btn-premium-sm {
    padding: 11px 22px;
    font-size: 13.5px;
}

.btn-lg-premium {
    padding: 19px 42px;
    font-size: 16px;
}

.btn-outline-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--text);
    font-weight: 600;
    font-size: 15px;
    padding: 16px 32px;
    border-radius: 100px;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.btn-outline-premium:hover {
    border-color: var(--accent);
    background: var(--accent-soft);
    transform: translateY(-3px);
}

.btn-ripple {
    position: relative;
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: rippleAnim 0.7s ease-out;
    pointer-events: none;
}

@keyframes rippleAnim {
    to {
        transform: scale(3);
        opacity: 0;
    }
}

/* ---------- HERO SECTION ---------- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0 60px;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 8, 12, 0.55) 0%, rgba(8, 8, 12, 0.75) 60%, rgba(8, 8, 12, 0.95) 100%),
        linear-gradient(90deg, rgba(8, 8, 12, 0.7) 0%, rgba(8, 8, 12, 0.2) 60%);
}

[data-theme="light"] .hero-overlay {
    background: linear-gradient(180deg, rgba(247, 246, 242, 0.5) 0%, rgba(247, 246, 242, 0.75) 60%, rgba(247, 246, 242, 0.95) 100%),
        linear-gradient(90deg, rgba(247, 246, 242, 0.65) 0%, rgba(247, 246, 242, 0.15) 60%);
}

.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 1000px;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-heading {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(38px, 6vw, 76px);
    line-height: 1.1;
    margin-bottom: 26px;
    min-height: 1.3em;
}

.typed-cursor {
    color: var(--accent);
    animation: blinkCursor 0.8s infinite;
    font-weight: 300;
}

@keyframes blinkCursor {
    50% {
        opacity: 0;
    }
}

.hero-desc {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 560px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 56px;
}

.hero-clients {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-clients-label {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-faint);
}

.hero-clients-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.hero-client-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 17px;
    color: var(--text-muted);
    opacity: 0.7;
    letter-spacing: 1px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero-scroll-indicator span {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(245, 245, 247, 0.4);
    border-radius: 20px;
    position: relative;
}

.hero-scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: var(--accent);
    border-radius: 4px;
    transform: translateX(-50%);
    animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
    0% {
        opacity: 1;
        top: 8px;
    }

    100% {
        opacity: 0;
        top: 22px;
    }
}

.hero-scroll-indicator p {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-faint);
}

/* ---------- MOBILE RESPONSIVE — HERO & GLOBAL ---------- */
@media(max-width: 767px) {

    /* Override Bootstrap container max-width so content goes edge-to-edge on mobile */
    .container {
        max-width: 100% !important;
        padding-left: 16px;
        padding-right: 16px;
    }

    /* Compact navbar on mobile */
    .main-navbar {
        padding: 14px 0;
    }

    .main-navbar.scrolled {
        padding: 10px 0;
    }

    .nav-actions {
        gap: 10px;
    }

    .theme-toggle {
        width: 36px;
        height: 36px;
    }

    .theme-toggle i {
        font-size: 14px;
    }

    .nav-burger {
        width: 36px;
        height: 36px;
    }

    .nav-burger span {
        width: 14px;
    }

    /* Hero: fill viewport with safe height for mobile address bars */
    .hero-section {
        min-height: 100svh;
        min-height: 100vh;
        /* fallback for older browsers */
        height: auto;
        padding: 70px 0 30px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: calc(100svh - 130px);
    }

    .hero-eyebrow {
        font-size: 10px;
        letter-spacing: 3px;
        margin-bottom: 12px;
    }

    .hero-heading {
        font-size: clamp(26px, 7.5vw, 38px);
        margin-bottom: 14px;
        min-height: auto;
    }

    .hero-desc {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 24px;
        max-width: 100%;
    }

    .hero-btns {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 28px;
    }

    .hero-btns .btn-premium,
    .hero-btns .btn-outline-premium {
        width: 100%;
        justify-content: center;
        padding: 13px 20px;
        font-size: 14px;
    }

    .hero-clients {
        gap: 10px;
    }

    .hero-clients-label {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .hero-clients-logos {
        gap: 8px 16px;
    }

    .hero-client-name {
        font-size: 13px;
    }

    .hero-scroll-indicator {
        display: none;
    }

    /* Navbar */
    .brand-logo {
        font-size: 18px;
    }

    /* Section headers */
    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: clamp(24px, 6vw, 34px);
    }

    .section-subtitle {
        font-size: 14px;
    }

    .section-eyebrow {
        font-size: 11px;
        letter-spacing: 3px;
    }

    /* Buttons */
    .btn-premium {
        padding: 13px 24px;
        font-size: 14px;
    }

    .btn-outline-premium {
        padding: 13px 24px;
        font-size: 14px;
    }

    .btn-lg-premium {
        padding: 15px 28px;
        font-size: 14px;
    }

    /* Portfolio */
    .portfolio-thumb-wrap {
        height: 200px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 28px 18px;
    }

    .testimonial-card p {
        font-size: 15px;
    }

    .testimonial-quote {
        font-size: 32px;
    }

    /* CTA */
    .cta-section {
        padding: 70px 0;
    }

    .cta-content p {
        font-size: 15px;
    }

    /* Contact */
    .contact-info-card,
    .contact-form {
        padding: 22px;
    }

    /* Footer */
    .site-footer {
        padding: 50px 0 20px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
        margin-top: 40px;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
    }

    /* Chat widget & go-top */
    .chat-widget {
        bottom: 16px;
        right: 16px;
    }

    .chat-toggle {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .go-top-btn {
        bottom: 16px;
        left: 16px;
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    /* Toast */
    .toast-container {
        right: 12px;
        left: 12px;
        top: 16px;
    }

    .toast-item {
        min-width: auto;
        max-width: 100%;
    }

    /* Stats */
    .stats-section {
        padding: 40px 0;
    }

    /* Section spacing */
    .section-pad {
        padding: 70px 0;
    }

    /* About floating card */
    .about-floating-card {
        left: 8px;
        bottom: 12px;
        padding: 12px 16px;
    }

    /* FAQ */
    .faq-question {
        font-size: 15px;
        padding: 20px 0;
    }

    /* Awards */
    .award-card {
        padding: 24px 18px;
    }
}

/* ---------- STATS SECTION ---------- */
.stats-section {
    padding: 70px 0;
    background: var(--bg-alt);
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stat-card {
    text-align: center;
    padding: 20px 10px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--accent);
}

.stat-label {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 6px;
    letter-spacing: 0.5px;
}

/* ---------- ABOUT SECTION ---------- */
.about-section {
    position: relative;
    z-index: 1;
    background-color: var(--bg);
    background-image: 
        radial-gradient(circle at 18% 30%, rgba(var(--accent-rgb), 0.16) 0%, rgba(var(--accent-rgb), 0.03) 45%, transparent 70%),
        radial-gradient(circle at 82% 70%, rgba(124, 58, 237, 0.12) 0%, rgba(124, 58, 237, 0.02) 45%, transparent 70%);
}

.about-image-wrap {
    position: relative;
}

.about-image {
    border-radius: var(--radius);
    width: 100%;
    height: 560px;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

.about-image-frame {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent);
    border-radius: var(--radius);
    z-index: -1;
}

.about-floating-card {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 20px 26px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
}

.about-floating-card i {
    font-size: 30px;
    color: var(--accent);
}

.about-floating-card strong {
    display: block;
    font-size: 22px;
    font-family: var(--font-display);
}

.about-floating-card span {
    font-size: 12px;
    color: var(--text-muted);
}

.about-lead {
    font-size: 19px;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 20px;
    font-family: var(--font-display);
    font-style: italic;
}

.about-content p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 16px;
}

.about-value-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 26px;
    height: 100%;
    transition: all 0.4s var(--ease);
}

.about-value-box:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.about-value-box i {
    font-size: 26px;
    color: var(--accent);
    margin-bottom: 12px;
}

.about-value-box h5 {
    font-weight: 700;
    margin-bottom: 8px;
}

.about-value-box p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.about-signature {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.signature-script {
    font-family: 'Playfair Display', cursive;
    font-size: 32px;
    font-style: italic;
    color: var(--accent);
}

.about-signature strong {
    display: block;
}

.about-signature span {
    font-size: 13px;
    color: var(--text-muted);
}

/* ---------- WHY CHOOSE US ---------- */
.why-section {
    position: relative;
    z-index: 1;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.why-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 42px 32px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease);
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}

.why-card:hover .why-icon {
    background: var(--accent);
    color: #0a0a0f;
    transform: rotateY(360deg);
}

.why-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--accent-soft);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 24px;
    transition: all 0.6s var(--ease);
}

.why-card h4 {
    font-weight: 700;
    margin-bottom: 12px;
    font-family: var(--font-display);
}

.why-card p {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.75;
    margin: 0;
}

.why-card-index {
    position: absolute;
    right: 20px;
    top: 10px;
    font-family: var(--font-display);
    font-size: 50px;
    font-weight: 800;
    color: var(--surface-strong);
    z-index: 0;
    line-height: 1;
}

/* ---------- SERVICES CAROUSEL ---------- */
.services-section {
    position: relative;
    z-index: 1;
    background-color: var(--bg);
    background-image: 
        radial-gradient(circle at 18% 30%, rgba(var(--accent-rgb), 0.16) 0%, rgba(var(--accent-rgb), 0.03) 45%, transparent 70%),
        radial-gradient(circle at 82% 70%, rgba(124, 58, 237, 0.12) 0%, rgba(124, 58, 237, 0.02) 45%, transparent 70%);
}

.services-carousel-wrap {
    position: relative;
}

.services-carousel {
    display: flex;
    gap: 26px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 4px 30px;
    scrollbar-width: none;
}

.services-carousel::-webkit-scrollbar {
    display: none;
}

.service-card {
    flex: 0 0 340px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.5s var(--ease);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: var(--shadow-soft);
}

.service-video-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #000;
}

.service-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
    display: block;
}

.service-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease), opacity 0.4s ease;
    opacity: 0;
}

.service-video-wrap.is-playing .service-video {
    opacity: 1;
}

.service-card:hover .service-video,
.service-card:hover .service-thumb {
    transform: scale(1.1);
}

.service-video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-video-overlay {
    opacity: 1;
}

.service-video-overlay i {
    font-size: 46px;
    color: #fff;
}

.service-body {
    padding: 26px;
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--accent-soft);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.service-body h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.service-body p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 14px;
}

.service-features li {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.service-features i {
    color: var(--accent);
    margin-right: 6px;
}

.carousel-controls {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 10px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--accent);
    color: #0a0a0f;
    border-color: var(--accent);
}

/* ---------- PROCESS TIMELINE ---------- */
.process-section {
    position: relative;
    z-index: 1;
    background-color: var(--bg);
    background-image: 
        radial-gradient(circle at 18% 30%, rgba(var(--accent-rgb), 0.16) 0%, rgba(var(--accent-rgb), 0.03) 45%, transparent 70%),
        radial-gradient(circle at 82% 70%, rgba(124, 58, 237, 0.12) 0%, rgba(124, 58, 237, 0.02) 45%, transparent 70%);
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.process-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
    transform: translateX(-50%);
}

.process-line-fill {
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, var(--accent), var(--accent-2));
    transition: height 0.3s ease;
}

.process-step {
    position: relative;
    width: 50%;
    padding: 0 50px 70px;
}

.process-step-left {
    left: 0;
    text-align: right;
}

.process-step-right {
    left: 50%;
    text-align: left;
}

.process-dot {
    position: absolute;
    top: 6px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--bg);
    border: 3px solid var(--border);
    z-index: 2;
    transition: all 0.4s ease;
}

.process-step-left .process-dot {
    right: -9px;
}

.process-step-right .process-dot {
    left: -9px;
}

.process-step.in-view .process-dot {
    border-color: var(--accent);
    background: var(--accent);
    box-shadow: 0 0 0 6px var(--accent-soft);
}

.process-card {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    padding: 28px;
    position: relative;
    transition: all 0.4s var(--ease);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.process-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(var(--accent-rgb), 0.3);
}

.process-number {
    position: absolute;
    top: -14px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    background: var(--accent);
    color: #0a0a0f;
    padding: 4px 12px;
    border-radius: 20px;
}

.process-step-left .process-number {
    right: 20px;
}

.process-step-right .process-number {
    left: 20px;
}

.process-icon {
    font-size: 24px;
    color: var(--accent);
    margin-bottom: 10px;
}

.process-card h5 {
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f0f14;
}

.process-card p {
    color: #4a4a52;
    font-size: 14px;
    margin: 0;
    line-height: 1.7;
}

[data-theme="light"] .process-card {
    background: #0d0d12;
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

[data-theme="light"] .process-card:hover {
    border-color: var(--accent);
}

[data-theme="light"] .process-card h5 {
    color: #ffffff;
}

[data-theme="light"] .process-card p {
    color: #a0a0aa;
}

@media(max-width: 767px) {
    .process-line {
        left: 20px;
    }

    .process-step,
    .process-step-left,
    .process-step-right {
        width: 100%;
        left: 0;
        text-align: left;
        padding: 0 0 50px 55px;
    }

    .process-step-left .process-dot,
    .process-step-right .process-dot {
        left: 11px;
    }

    .process-step-left .process-number,
    .process-step-right .process-number {
        left: 20px;
    }
}

/* ---------- PORTFOLIO ---------- */
.portfolio-section {
    position: relative;
    z-index: 1;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 11px 26px;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.35s var(--ease);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none !important;
}

.filter-btn i {
    font-size: 15px;
    color: var(--accent);
    transition: color 0.35s ease;
}

.filter-btn:hover {
    border-color: var(--accent);
    color: var(--text);
}

.filter-btn:hover i {
    color: var(--accent);
}

.filter-btn.active {
    background: var(--accent);
    color: #0a0a0f;
    border-color: var(--accent);
    font-weight: 600;
}

.filter-btn.active i {
    color: #0a0a0f;
}

.portfolio-item {
    transition: all 0.5s var(--ease);
}

.portfolio-item.hide {
    display: none;
}

.portfolio-card {
    cursor: pointer;
}

.portfolio-thumb-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 280px;
}

.portfolio-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}

.portfolio-card:hover .portfolio-thumb {
    transform: scale(1.15) rotate(1deg);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.85));
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-play {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: var(--accent);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #0a0a0f;
    transform: scale(0.5);
    transition: transform 0.4s var(--ease);
    box-shadow: 0 0 40px rgba(var(--accent-rgb), 0.6);
}

.portfolio-card:hover .portfolio-play {
    transform: scale(1);
    animation: playPulse 1.6s ease-in-out infinite;
}

@keyframes playPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0.5);
    }

    50% {
        box-shadow: 0 0 0 16px rgba(var(--accent-rgb), 0);
    }
}

.portfolio-cat-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(8, 8, 12, 0.7);
    backdrop-filter: blur(6px);
    color: #fff;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 600;
}

.portfolio-info {
    padding: 20px 4px 0;
}

.portfolio-info h5 {
    font-weight: 700;
    margin-bottom: 4px;
}

.portfolio-info span {
    font-size: 13px;
    color: var(--text-muted);
}

/* ---------- PREMIUM MODAL ---------- */
.premium-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.premium-modal.active {
    display: flex;
}

.premium-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.4s ease;
}

.premium-modal-dialog {
    position: relative;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 2;
    animation: modalPop 0.5s var(--ease);
}

@keyframes modalPop {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.premium-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.premium-modal-close:hover {
    background: var(--accent);
    color: #0a0a0f;
    transform: rotate(90deg);
}

.premium-modal-video {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
    border-radius: var(--radius) var(--radius) 0 0;
    overflow: hidden;
}

.premium-modal-video iframe,
.premium-modal-video #youtubePlayer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.premium-modal-body {
    padding: 34px;
}

.premium-modal-body h3 {
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: 12px;
}

.premium-modal-body p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 26px;
}

.modal-meta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.modal-meta-grid div {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
}

.modal-meta-grid span {
    display: block;
    font-size: 11px;
    color: var(--text-faint);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.modal-meta-grid strong {
    font-size: 14.5px;
}

@media(max-width: 576px) {
    .modal-meta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-section {
    position: relative;
    z-index: 1;
}

.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s var(--ease);
}

.testimonial-slide {
    flex: 0 0 100%;
    padding: 10px;
}

.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 50px;
    text-align: center;
    position: relative;
}

.testimonial-quote {
    font-size: 46px;
    color: var(--accent);
    opacity: 0.4;
    margin-bottom: 10px;
}

.testimonial-rating {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 15px;
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    font-family: var(--font-display);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.testimonial-author img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.testimonial-author strong {
    display: block;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-muted);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots span.active {
    background: var(--accent);
    width: 28px;
    border-radius: 6px;
}

/* ---------- CLIENTS MARQUEE ---------- */
.clients-section {
    padding: 70px 0;
    position: relative;
    z-index: 1;
}

.clients-label {
    color: var(--text-faint);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 40px;
}

.clients-marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.clients-track {
    display: flex;
    gap: 70px;
    width: max-content;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.client-logo-item {
    filter: grayscale(1);
    opacity: 0.5;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
}

.client-logo-item:hover {
    filter: grayscale(0);
    opacity: 1;
}

.client-logo-item img {
    height: 40px;
    width: auto;
}

.client-logo-item span {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    white-space: nowrap;
}

/* ---------- AWARDS ---------- */
.awards-section {
    position: relative;
    z-index: 1;
    background: var(--bg-alt);
}

.award-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 34px 24px;
    text-align: center;
    height: 100%;
    transition: all 0.4s var(--ease);
    position: relative;
}

.award-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
}

.award-icon {
    font-size: 34px;
    color: var(--accent);
    margin-bottom: 16px;
}

.award-year {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 12px;
    color: var(--text-faint);
    font-weight: 600;
}

.award-card h5 {
    font-weight: 700;
    margin-bottom: 8px;
}

.award-card p {
    color: var(--text-muted);
    font-size: 13.5px;
    margin: 0;
}

/* ---------- TEAM ---------- */
.team-section {
    position: relative;
    z-index: 1;
}

.team-card {
    text-align: center;
}

.team-photo-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 18px;
    aspect-ratio: 3/4;
}

.team-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.team-card:hover .team-photo-wrap img {
    transform: scale(1.1);
}

.team-socials {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), transparent);
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.4s var(--ease);
}

.team-card:hover .team-socials {
    transform: translateY(0);
    opacity: 1;
}

.team-socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--accent);
    color: #0a0a0f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.team-socials a:hover {
    transform: translateY(-4px);
}

.team-card h6 {
    font-weight: 700;
    margin-bottom: 4px;
}

.team-card span {
    font-size: 13px;
    color: var(--accent);
}

/* ---------- FAQ ---------- */
.faq-section {
    position: relative;
    z-index: 1;
    background: var(--bg-alt);
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text);
    font-size: 17px;
    font-weight: 600;
    font-family: var(--font-display);
}

.faq-question i {
    transition: transform 0.4s var(--ease);
    color: var(--accent);
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item.active .faq-question i {
    transform: rotate(135deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}

/* ---------- CTA SECTION ---------- */
.cta-section {
    position: relative;
    padding: 130px 0;
    overflow: hidden;
    z-index: 1;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.15), rgba(138, 107, 255, 0.15));
    z-index: -1;
}

.cta-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(var(--accent-rgb), 0.2), transparent 60%);
    animation: gradientShift 8s ease-in-out infinite alternate;
}

@keyframes gradientShift {
    from {
        opacity: 0.6;
    }

    to {
        opacity: 1;
    }
}

.cta-content h2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(32px, 5vw, 56px);
    margin-bottom: 20px;
}

.cta-content p {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 40px;
}

.cta-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- CONTACT ---------- */
.contact-section {
    position: relative;
    z-index: 1;
}

.contact-info-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    height: 100%;
}

.contact-info-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 28px;
}

.contact-info-item i {
    font-size: 20px;
    color: var(--accent);
    width: 46px;
    height: 46px;
    background: var(--accent-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item span {
    display: block;
    font-size: 12px;
    color: var(--text-faint);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-info-item strong {
    font-size: 15px;
}

.contact-socials {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.contact-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-socials a:hover {
    background: var(--accent);
    color: #0a0a0f;
    border-color: var(--accent);
    transform: translateY(-4px);
}

.contact-form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
}

.form-floating-premium {
    position: relative;
    margin-bottom: 6px;
}

.form-floating-premium input,
.form-floating-premium select,
.form-floating-premium textarea {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 18px 8px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
}

.form-floating-premium textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 24px;
}

.form-floating-premium label {
    position: absolute;
    left: 18px;
    top: 16px;
    color: var(--text-faint);
    font-size: 15px;
    transition: all 0.25s ease;
    pointer-events: none;
}

.form-floating-premium input:focus,
.form-floating-premium select:focus,
.form-floating-premium textarea:focus {
    border-color: var(--accent);
}

.form-floating-premium input:focus~label,
.form-floating-premium input:not(:placeholder-shown)~label,
.form-floating-premium textarea:focus~label,
.form-floating-premium textarea:not(:placeholder-shown)~label,
.form-floating-premium select~label {
    top: 6px;
    font-size: 11px;
    color: var(--accent);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-floating-premium.error input,
.form-floating-premium.error select,
.form-floating-premium.error textarea {
    border-color: #e5484d;
}

.field-error {
    display: block;
    font-size: 12px;
    color: #e5484d;
    margin-top: 6px;
    min-height: 16px;
}

.spin {
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ---------- FOOTER ---------- */
.site-footer {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    padding: 90px 0 30px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-tagline {
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 14px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.8;
    max-width: 340px;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: var(--accent);
    color: #0a0a0f;
    border-color: var(--accent);
}

.footer-heading {
    font-weight: 700;
    margin-bottom: 22px;
    font-family: var(--font-display);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 14.5px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 6px;
}

.footer-bottom {
    margin-top: 70px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    color: var(--text-faint);
    font-size: 13.5px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a:hover {
    color: var(--accent);
}

/* ---------- GO TO TOP ---------- */
.go-top-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent);
    color: #0a0a0f;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s var(--ease);
    z-index: 999;
    box-shadow: 0 8px 25px rgba(var(--accent-rgb), 0.4);
}

.go-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.go-top-btn:hover {
    transform: translateY(-6px);
}

/* ---------- CHAT WIDGET ---------- */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
}

.chat-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s var(--ease);
}

.chat-options.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chat-option {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: transform 0.3s ease;
}

.chat-option:hover {
    transform: scale(1.1) translateX(-4px);
}

.chat-option::before {
    content: attr(data-label);
    position: absolute;
    right: 60px;
    background: var(--bg-alt);
    color: var(--text);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    border: 1px solid var(--border);
}

.chat-option:hover::before {
    opacity: 1;
}

.chat-whatsapp {
    background: #25D366;
}

.chat-messenger {
    background: linear-gradient(135deg, #00c6ff, #a729f5, #ff54ac);
}

.chat-telegram {
    background: #229ED9;
}

.chat-email {
    background: var(--accent);
    color: #0a0a0f;
}

.chat-toggle {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--accent);
    border: none;
    color: #0a0a0f;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(var(--accent-rgb), 0.45);
    animation: chatPulse 2.4s ease-in-out infinite;
}

.chat-toggle i {
    position: absolute;
    transition: all 0.4s var(--ease);
}

.chat-toggle .bi-x-lg {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

.chat-toggle.open .bi-chat-dots-fill {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

.chat-toggle.open .bi-x-lg {
    opacity: 1;
    transform: rotate(0) scale(1);
}

@keyframes chatPulse {

    0%,
    100% {
        box-shadow: 0 10px 30px rgba(var(--accent-rgb), 0.45);
    }

    50% {
        box-shadow: 0 10px 30px rgba(var(--accent-rgb), 0.15), 0 0 0 14px rgba(var(--accent-rgb), 0.08);
    }
}

/* ---------- CLIENT MARQUEE ---------- */
.client-marquee-section {
    position: relative;
    padding-top: 28px;
    background: var(--bg);
}

[data-theme="light"] .client-marquee-section {
    background: var(--bg);
}

.marquee-title-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: 28px;
    z-index: 2;
}

.marquee-title-box {
    background: transparent;
    color: var(--accent);
    padding: 0;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.marquee-band {
    background: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 24px 0;
    overflow: hidden;
    position: relative;
}

[data-theme="light"] .marquee-band {
    background: #fdfdfd;
    border-color: #ddd;
}

.marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee-item {
    padding: 0 50px;
    display: flex;
    align-items: center;
}

.marquee-item img {
    height: 45px;
    max-width: 180px;
    object-fit: contain;
    filter: grayscale(100%) contrast(1.2);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.marquee-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.marquee-dummy-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: #1a1a20;
    letter-spacing: -0.5px;
    white-space: nowrap;
    opacity: 0.75;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.marquee-dummy-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.marquee-dummy-logo i {
    font-size: 32px;
    color: var(--accent);
}

[data-theme="light"] .marquee-dummy-logo {
    color: #555555;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ---------- TOASTS ---------- */
.toast-container {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 100001;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast-item {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: 12px;
    padding: 18px 22px;
    min-width: 300px;
    max-width: 380px;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transform: translateX(120%);
    transition: transform 0.5s var(--ease);
    color: var(--text);
}

.toast-item.show {
    transform: translateX(0);
}

.toast-item.error {
    border-left-color: #e5484d;
}

.toast-item i {
    font-size: 20px;
    color: var(--accent);
    margin-top: 2px;
}

.toast-item.error i {
    color: #e5484d;
}

.toast-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

/* ---------- SCROLL REVEAL ANIMATIONS ---------- */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
    opacity: 0;
    transition: all 1s var(--ease);
}

.reveal-up {
    transform: translateY(60px);
}

.reveal-left {
    transform: translateX(-60px);
}

.reveal-right {
    transform: translateX(60px);
}

.reveal-scale {
    transform: scale(0.85);
}

.reveal-up.in-view,
.reveal-left.in-view,
.reveal-right.in-view,
.reveal-scale.in-view {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

@media(max-width: 992px) {
    .about-floating-card {
        left: 10px;
        bottom: 16px;
        padding: 14px 18px;
    }

    .modal-meta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ---------- CLEAN ABOUT SECTION ---------- */
.about-image-clean img {
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.about-clean-title {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    color: var(--text);
}
.about-clean-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.btn-clean-portfolio {
    display: inline-flex;
    align-items: center;
    background: #000;
    color: #fff;
    padding: 6px 20px 6px 6px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid #000;
}
.btn-clean-portfolio:hover {
    background: #222;
    color: #fff;
    transform: translateY(-2px);
    border-color: #222;
}
.btn-clean-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--accent);
    color: #000;
    border-radius: 50%;
    margin-right: 14px;
    font-size: 16px;
    transition: transform 0.3s ease;
}
.btn-clean-portfolio:hover .btn-clean-icon {
    transform: scale(1.05);
}
[data-theme="dark"] .btn-clean-portfolio {
    background: #fff;
    color: #000;
    border-color: #fff;
}
[data-theme="dark"] .btn-clean-portfolio:hover {
    background: #f0f0f0;
    color: #000;
}

/* ---------- SERVICES CAROUSEL OVERLAY ---------- */
.carousel-controls-overlay {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 100;
}
.carousel-btn-overlay {
    pointer-events: auto;
    width: 48px;
    height: 48px;
    background: rgba(10, 10, 15, 0.88);
    color: #fff;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    z-index: 101;
    user-select: none;
    -webkit-user-select: none;
}
.carousel-btn-overlay i {
    pointer-events: none;
}
.carousel-btn-overlay:first-child {
    transform: translateX(-35%);
}
.carousel-btn-overlay:last-child {
    transform: translateX(35%);
}
.carousel-btn-overlay:hover {
    background: var(--accent) !important;
    color: #0a0a0f !important;
    border-color: var(--accent) !important;
    box-shadow: 0 10px 30px rgba(var(--accent-rgb), 0.5) !important;
}
.carousel-btn-overlay:first-child:hover {
    transform: translateX(-35%) scale(1.12);
}
.carousel-btn-overlay:last-child:hover {
    transform: translateX(35%) scale(1.12);
}
[data-theme="light"] .carousel-btn-overlay {
    background: rgba(255, 255, 255, 0.92);
    color: #0f0f14;
    border-color: var(--border);
}
[data-theme="light"] .carousel-btn-overlay:hover {
    background: var(--accent) !important;
    color: #0a0a0f !important;
}

/* ---------- REVEAL SPIN ANIMATIONS (WORK PROCESS) ---------- */
.reveal-spin-left,
.reveal-spin-right {
    opacity: 0;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}
.reveal-spin-left {
    transform: translateX(-160px) scale(0.9) rotate(-6deg);
}
.reveal-spin-right {
    transform: translateX(160px) scale(0.9) rotate(6deg);
}
.reveal-spin-left.in-view,
.reveal-spin-right.in-view {
    opacity: 1;
    transform: translateX(0) scale(1) rotate(0deg);
}

/* ---------- TESTIMONIALS CLEAN CAROUSEL ---------- */
.testimonials-carousel-wrap {
    position: relative;
    padding: 10px 0;
}
.testimonials-carousel {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 15px 5px 30px;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}
.testimonials-carousel::-webkit-scrollbar {
    display: none;
}
.testimonial-card-clean {
    flex: 0 0 calc(50% - 12px);
    width: calc(50% - 12px);
    min-width: 260px;
    min-height: 280px;
    scroll-snap-align: start;
    background: #111118;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Fill card from bottom to top on hover */
.testimonial-card-clean::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent) 0%, rgba(var(--accent-rgb), 0.88) 100%);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
    border-radius: 15px;
}

.testimonial-card-clean:hover::before {
    transform: translateY(0);
}

.testimonial-card-clean .testimonial-rating {
    color: #ffc107;
    margin-bottom: 14px;
    font-size: 15px;
    position: relative;
    z-index: 2;
    transition: color 0.35s ease;
}
.testimonial-card-clean .testimonial-feedback {
    font-size: 14px;
    line-height: 1.65;
    color: #b0b0b8;
    flex-grow: 1;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
    transition: color 0.35s ease;
}
.testimonial-author-clean {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 10px;
    position: relative;
    z-index: 2;
}
.testimonial-author-clean img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: border-color 0.35s ease;
}
.testimonial-author-clean strong {
    display: block;
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 2px;
    transition: color 0.35s ease;
}
.testimonial-author-clean span {
    display: block;
    font-size: 12px;
    color: #e5484d;
    font-weight: 500;
    transition: color 0.35s ease;
}

/* Hovering Effects — Dark Theme */
.testimonial-card-clean:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45), 0 4px 15px rgba(var(--accent-rgb), 0.12);
}
.testimonial-card-clean:hover .testimonial-feedback {
    color: #0a0a0f !important;
    font-weight: 500;
}
.testimonial-card-clean:hover .testimonial-author-clean strong {
    color: #0a0a0f !important;
    font-weight: 700;
}
.testimonial-card-clean:hover .testimonial-author-clean span {
    color: #0a0a0f !important;
    opacity: 0.85;
}
.testimonial-card-clean:hover .testimonial-author-clean img {
    border-color: #0a0a0f;
}
.testimonial-card-clean:hover .testimonial-rating {
    color: #0a0a0f;
}

/* Light Theme Styles & Hover */
[data-theme="light"] .testimonial-card-clean {
    background: #f8f9fa;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}
[data-theme="light"] .testimonial-card-clean .testimonial-feedback {
    color: #333338;
}
[data-theme="light"] .testimonial-card-clean .testimonial-author-clean strong {
    color: #0a0a0f;
}
[data-theme="light"] .testimonial-card-clean:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1), 0 4px 15px rgba(var(--accent-rgb), 0.12);
}
[data-theme="light"] .testimonial-card-clean:hover .testimonial-feedback {
    color: #0a0a0f !important;
}
[data-theme="light"] .testimonial-card-clean:hover .testimonial-author-clean strong {
    color: #0a0a0f !important;
}

@media (max-width: 768px) {
    .testimonial-card-clean {
        flex: 0 0 280px;
        width: 280px;
        min-height: 400px;
    }
}
.testimonial-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
}
[data-theme="dark"] .testimonial-desc {
    color: #e0e0e0;
}

/* ---------- TRIAL BANNER & MARQUEE ---------- */
.support-banner-section {
    background-color: #0a110a;
    background-image: radial-gradient(circle at center, rgba(20,40,20,0.4) 0%, rgba(5,10,5,0.9) 100%), url('https://www.transparenttextures.com/patterns/stardust.png');
    position: relative;
    overflow: hidden;
}
.trial-marquee-section {
    background: #fdfdfd;
    padding: 18px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
}
[data-theme="dark"] .trial-marquee-section {
    background: var(--surface);
}
.trial-marquee-track {
    display: inline-flex;
    align-items: center;
    animation: trialMarqueeScroll 60s linear infinite;
}
.trial-marquee-text {
    font-size: 24px;
    font-weight: 600;
    color: var(--text);
    padding: 0 40px;
    font-family: var(--font-display);
}
.trial-marquee-client {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-muted);
    opacity: 0.3;
    padding: 0 40px;
    font-family: var(--font-display);
}
@keyframes trialMarqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---------- EXPERIENCE & SKILLS BLOCK ---------- */
.experience-image-wrap {
    position: relative;
    padding-top: 40px;
    padding-left: 20px;
}
.experience-image-wrap img {
    border-radius: 6px;
    width: 100%;
    object-fit: cover;
    max-height: 420px;
    filter: grayscale(60%);
}
.experience-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: #269be6;
    color: #1a1a1a;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 2;
    border: 8px solid #fff; 
}
[data-theme="dark"] .experience-badge {
    border-color: var(--background);
}
.experience-badge .exp-number {
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    font-family: var(--font-sans);
}
.experience-badge .exp-text {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 500;
    font-family: var(--font-sans);
}
@media (max-width: 576px) {
    .experience-badge {
        padding: 20px 25px;
        border-width: 5px;
    }
    .experience-badge .exp-number { font-size: 48px; }
    .experience-badge .exp-text { font-size: 16px; }
}

.skill-item {
    margin-bottom: 25px;
}
.skill-title {
    font-weight: 600;
    color: var(--text);
    font-size: 15px;
    display: block;
    margin-bottom: -5px;
}
.skill-track-container {
    position: relative;
    margin-top: 35px;
}
.skill-percent-bubble {
    position: absolute;
    bottom: calc(100% + 8px);
    right: 0;
    transform: translateX(50%);
    background: #269be6;
    color: #fff;
    padding: 3px 6px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
}
.skill-percent-bubble::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 4px;
    border-style: solid;
    border-color: #269be6 transparent transparent transparent;
}
.skill-progress-wrap {
    height: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 2px;
}
[data-theme="dark"] .skill-progress-wrap {
    border-color: #444;
}
.skill-progress-bar {
    height: 100%;
    background: #269be6;
    border-radius: 5px;
    position: relative;
    width: 0;
    transition: width 2.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: width;
}
.in-view .skill-progress-bar {
    width: var(--target-width);
}

/* =========================================
   SHORTS MARQUEE
   ========================================= */
.shorts-marquee-wrapper {
    position: relative;
    width: 100%;
}

.shorts-marquee-section {
    background: #000;
    padding-top: 40px;
    padding-bottom: 20px;
    overflow-x: auto;
    border-top: 1px solid #1a1a1a;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -webkit-overflow-scrolling: touch;
}

.shorts-marquee-section::-webkit-scrollbar {
    display: none;
}

.shorts-marquee-section.active-dragging {
    cursor: grabbing !important;
}

.shorts-marquee-track {
    display: flex;
    gap: 18px;
    width: max-content;
    padding: 0 30px;
}

.short-video-card {
    width: 260px;
    height: 460px;
    border-radius: 10px;
    overflow: hidden;
    background: #111;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.05);
}

.short-video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

/* Shorts Controls Below Section */
.shorts-controls-bar {
    background: #000;
    padding-top: 20px;
    padding-bottom: 40px;
    border-bottom: 1px solid #1a1a1a;
    position: relative;
    z-index: 10;
}

.shorts-control-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #181822;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.shorts-control-btn:hover {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
    color: #050d05 !important;
    transform: scale(1.08);
}

/* ---------- TRIAL MARQUEE SECTION ---------- */
.trial-marquee-section {
    background: #ffffff !important;
    padding: 16px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    z-index: 5;
}

.trial-marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    animation: trialMarquee 65s linear infinite;
}

.trial-marquee-text {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 800;
    color: #0a0a0f !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 40px;
}

.trial-marquee-text::after {
    content: '★';
    font-size: 14px;
    color: var(--accent);
}

@keyframes trialMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

[data-theme="dark"] .trial-marquee-section,
[data-theme="light"] .trial-marquee-section {
    background: #ffffff !important;
}

[data-theme="dark"] .trial-marquee-text,
[data-theme="light"] .trial-marquee-text {
    color: #0a0a0f !important;
}

/* ---------- MASSIVE BRAND SECTION ---------- */
.massive-brand-section {
    background: #0a0a0f;
    padding: 60px 4% 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.4s ease;
}

.massive-brand-section .brand-text-anymotion {
    fill: #ffffff;
    transition: fill 0.4s ease;
}

.massive-brand-section .brand-text-makers {
    fill: var(--accent);
    transition: fill 0.4s ease;
}

[data-theme="light"] .massive-brand-section {
    background: #ffffff;
}

[data-theme="light"] .massive-brand-section .brand-text-anymotion {
    fill: #000000;
}

[data-theme="light"] .massive-brand-section .brand-text-makers {
    fill: #7c3aed;
}

/* ---------- READY TO GROW TRIAL BADGE ---------- */
.ready-trial-badge-wrap {
    display: inline-block;
    position: relative;
    z-index: 2;
}

.ready-trial-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(98, 181, 60, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 36px;
    border-radius: 50px;
    color: #ffffff !important;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 25px rgba(98, 181, 60, 0.25);
    transition: all 0.4s var(--ease);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.ready-trial-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.7s ease;
}

.ready-trial-badge:hover::before {
    left: 100%;
}

.ready-trial-badge:hover {
    background: #62b53c;
    border-color: #62b53c;
    color: #050d05 !important;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 35px rgba(98, 181, 60, 0.4), 0 0 45px rgba(98, 181, 60, 0.6);
}

.ready-trial-badge .badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(98, 181, 60, 0.25);
    border-radius: 50%;
    color: #62b53c;
    font-size: 16px;
    transition: all 0.4s var(--ease);
}

.ready-trial-badge:hover .badge-icon {
    background: #050d05;
    color: #62b53c;
}

[data-theme="light"] .ready-trial-badge {
    background: rgba(124, 58, 237, 0.08);
    border-color: rgba(124, 58, 237, 0.4);
    color: #0f0f14 !important;
}

[data-theme="light"] .ready-trial-badge .badge-icon {
    background: rgba(124, 58, 237, 0.15);
    color: #7c3aed;
}

[data-theme="light"] .ready-trial-badge:hover {
    background: #7c3aed;
    border-color: #7c3aed;
    color: #ffffff !important;
    box-shadow: 0 15px 35px rgba(124, 58, 237, 0.35);
}

[data-theme="light"] .ready-trial-badge:hover .badge-icon {
    background: #ffffff;
    color: #7c3aed;
}