/* ============================================
   AC VISUAL - BRAND & DESIGN
   Modern Bold Design System
   ============================================ */

/* CSS Variables */
:root {
    /* Colors - Professional Slate & Azure Palette */
    --bg-primary: #0a0a0a;
    --bg-secondary: #141414;
    --bg-tertiary: #1a1a1a;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-glass: rgba(255, 255, 255, 0.05);

    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-muted: #666666;

    --accent-primary: #3b82f6;
    --accent-secondary: #0ea5e9;
    --accent-tertiary: #06b6d4;

    --gradient-main: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    --gradient-hover: linear-gradient(135deg, #60a5fa 0%, #22d3ee 100%);
    --gradient-subtle: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);

    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-width: 1400px;
    --gap-sm: 12px;
    --gap-md: 24px;
    --gap-lg: 48px;
    --gap-xl: 80px;

    /* Borders */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.3);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-main);
    border-radius: 4px;
}

/* Selection */
::selection {
    background: var(--accent-primary);
    color: var(--text-primary);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
}

h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 65ch;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--gap-md);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary {
    background: var(--gradient-main);
    color: var(--text-primary);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 60px rgba(59, 130, 246, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--accent-primary);
    background: rgba(59, 130, 246, 0.1);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-main);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.logo-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text span {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--gap-lg);
    list-style: none;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-fast);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(10, 10, 10, 0.7) 0%,
            rgba(10, 10, 10, 0.5) 50%,
            rgba(10, 10, 10, 0.9) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    padding: var(--gap-xl) var(--gap-md);
    max-width: 1000px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: var(--gap-md);
    backdrop-filter: blur(10px);
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title {
    margin-bottom: var(--gap-sm);
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.3s;
}

.hero-title .gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: var(--gap-lg);
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.5s;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin: 0 auto var(--gap-lg);
    max-width: 600px;
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.7s;
}

.hero-buttons {
    display: flex;
    gap: var(--gap-md);
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.9s;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.hero-scroll-icon {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    position: relative;
}

.hero-scroll-icon::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gradient-main);
    border-radius: 2px;
    animation: scrollDown 1.5s infinite;
}

@keyframes scrollDown {
    0% {
        opacity: 1;
        top: 8px;
    }

    100% {
        opacity: 0;
        top: 20px;
    }
}

/* Lottie Container in Hero */
.hero-lottie {
    position: absolute;
    width: 400px;
    height: 400px;
    opacity: 0.3;
    pointer-events: none;
}

.hero-lottie-left {
    left: -100px;
    top: 20%;
}

.hero-lottie-right {
    right: -100px;
    bottom: 20%;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--gap-xl);
}

.section-label {
    display: inline-block;
    padding: 8px 16px;
    background: var(--gradient-subtle);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--gap-md);
}

.section-title {
    margin-bottom: var(--gap-md);
}

.section-description {
    margin: 0 auto;
    max-width: 600px;
}

/* ============================================
   PREMADE PACKAGES SECTION
   ============================================ */
.premade-packages {
    background: var(--bg-primary);
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
}

.premade-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap-lg);
}

.premade-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-xl);
    padding: var(--gap-lg);
    padding-top: 160px;
    padding-bottom: calc(var(--gap-lg) + 20px);
    margin-top: 80px;
    text-decoration: none;
    color: inherit;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
    cursor: pointer;
}

.premade-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius-xl);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.premade-card:hover {
    transform: translateY(-12px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(59, 130, 246, 0.15);
}

.premade-card:hover::before {
    opacity: 1;
}

/* Card Image - Overflow effect */
.premade-card-image {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
}

.premade-card-image img {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

.premade-card:hover .premade-card-image img {
    transform: scale(1.08) translateY(-10px);
}

/* Decorative dots */
.premade-card-dot {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    transition: transform 0.4s ease;
}

.premade-card-dot-1 {
    top: 10px;
    right: 15px;
    background: #9AB0FD;
}

.premade-card-dot-2 {
    top: 10px;
    right: 15px;
    background: #D4B455;
}

.premade-card-dot-3 {
    top: 10px;
    right: 15px;
    background: #2BBDEF;
}

.premade-card:hover .premade-card-dot {
    transform: scale(1.3);
}

/* Card Content */
.premade-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.premade-card-subtitle {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.premade-card-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.premade-card-title .title-suffix {
    font-size: 1rem;
    font-weight: 400;
    background: none;
    -webkit-text-fill-color: var(--text-muted);
}

.premade-card-tags {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: var(--gap-md);
    flex-wrap: wrap;
}

.premade-tag {
    font-size: 0.75rem;
    font-weight: 500;
    color: #fbbf24;
    text-transform: lowercase;
}

.premade-tag-divider {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.premade-card-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    max-width: none;
}

/* Card Link Button */
.premade-card-link {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Card 1 link button - #9AB0FD */
.premade-card:nth-child(1) .premade-card-link {
    background: #9AB0FD;
    box-shadow: 0 4px 20px rgba(154, 176, 253, 0.5);
}

.premade-card:nth-child(1):hover .premade-card-link {
    transform: translateX(-50%) scale(1.2);
    box-shadow: 0 8px 30px rgba(154, 176, 253, 0.7);
    background: #b3c4fe;
}

/* Card 2 link button - #D4B455 */
.premade-card:nth-child(2) .premade-card-link {
    background: #D4B455;
    box-shadow: 0 4px 20px rgba(212, 180, 85, 0.5);
}

.premade-card:nth-child(2):hover .premade-card-link {
    transform: translateX(-50%) scale(1.2);
    box-shadow: 0 8px 30px rgba(212, 180, 85, 0.7);
    background: #e0c76d;
}

/* Card 3 link button - #2BBDEF */
.premade-card:nth-child(3) .premade-card-link {
    background: #2BBDEF;
    box-shadow: 0 4px 20px rgba(43, 189, 239, 0.5);
}

.premade-card:nth-child(3):hover .premade-card-link {
    transform: translateX(-50%) scale(1.2);
    box-shadow: 0 8px 30px rgba(43, 189, 239, 0.7);
    background: #52cbf5;
}

.premade-card-link svg {
    transition: transform 0.3s ease;
}

.premade-card:hover .premade-card-link svg {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 1100px) {
    .premade-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .premade-grid {
        grid-template-columns: 1fr;
        gap: var(--gap-xl);
    }

    .premade-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .premade-card-image {
        height: 160px;
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--gap-md);
}

.service-card {
    position: relative;
    padding: var(--gap-lg);
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-main);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    background: var(--bg-glass);
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: var(--gap-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-subtle);
    border-radius: var(--border-radius-md);
    font-size: 2rem;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-title {
    margin-bottom: var(--gap-sm);
    font-size: 1.5rem;
}

.service-description {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.service-features {
    margin-top: var(--gap-md);
    padding-top: var(--gap-md);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.service-feature svg {
    width: 16px;
    height: 16px;
    color: var(--accent-primary);
}

/* ============================================
   3D MODELS SHOWCASE SECTION
   ============================================ */
.models-showcase {
    background: var(--bg-primary);
    overflow: hidden;
}

.models-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-xl);
    align-items: center;
}

.models-content {
    padding-right: var(--gap-lg);
}

.models-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--gap-lg);
}

.models-features {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
}

.models-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--gap-md);
    padding: var(--gap-md);
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    transition: var(--transition-fast);
}

.models-feature:hover {
    background: var(--bg-glass);
    border-color: rgba(59, 130, 246, 0.2);
}

.models-feature .feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--gradient-subtle);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.models-feature .feature-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.models-feature .feature-text p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

/* Model Viewer Container */
.models-viewer {
    position: relative;
}

.model-container {
    position: relative;
    width: 100%;
    height: 600px;
    background: transparent;
    border-radius: var(--border-radius-lg);
    overflow: visible;
}

.model-container model-viewer {
    width: 100%;
    height: 100%;
    --poster-color: transparent;
}

/* Loading Placeholder */
.model-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
}

.model-loader {
    text-align: center;
    padding: var(--gap-lg);
}

.model-loader svg {
    animation: float 3s ease-in-out infinite;
    margin-bottom: var(--gap-md);
}

.model-loader p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: var(--gap-sm);
}

.model-loader .loader-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: monospace;
    background: var(--bg-card);
    padding: 8px 12px;
    border-radius: var(--border-radius-sm);
    display: inline-block;
}

/* Model Hints */
.model-hints {
    position: absolute;
    bottom: var(--gap-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--gap-md);
    padding: 10px 20px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.model-hints .hint {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.model-hints .hint svg {
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 992px) {
    .models-grid {
        grid-template-columns: 1fr;
    }

    .models-content {
        padding-right: 0;
        text-align: center;
    }

    .models-features {
        max-width: 500px;
        margin: 0 auto;
    }

    .model-container {
        height: 500px;
    }
}

@media (max-width: 576px) {
    .model-container {
        height: 400px;
    }

    .model-hints {
        flex-direction: column;
        gap: 8px;
        padding: 12px 16px;
    }
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.portfolio {
    background: var(--bg-primary);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: var(--gap-sm);
    margin-bottom: var(--gap-lg);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-main);
    border-color: transparent;
    color: var(--text-primary);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap-md);
}

.portfolio-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.portfolio-item.large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(10, 10, 10, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--gap-md);
    opacity: 0;
    transition: var(--transition-smooth);
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-primary);
    margin-bottom: 8px;
}

.portfolio-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.portfolio-link {
    position: absolute;
    top: var(--gap-md);
    right: var(--gap-md);
    width: 48px;
    height: 48px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-20px);
    opacity: 0;
    transition: var(--transition-smooth);
}

.portfolio-item:hover .portfolio-link {
    transform: translateY(0);
    opacity: 1;
}

/* ============================================
   3D PRODUCT VIDEO SHOWCASE SECTION
   ============================================ */
.product-video-showcase {
    background: #1c1c1c;
    overflow: hidden;
    position: relative;
}

.product-video-showcase .section-header {
    margin-bottom: calc(var(--gap-xl) + 20px);
}

.product-video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-xl);
    align-items: center;
}

/* Phone Mockup Block */
.phone-mockup-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gap-lg);
}

.phone-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    position: relative;
    width: 280px;
    height: 580px;
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    border-radius: 44px;
    padding: 12px;
    box-shadow:
        0 50px 100px -20px rgba(0, 0, 0, 0.5),
        0 30px 60px -30px rgba(0, 0, 0, 0.6),
        inset 0 2px 1px rgba(255, 255, 255, 0.1),
        inset 0 -2px 1px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.phone-notch {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #0a0a0a;
    border-radius: 20px;
    z-index: 10;
}

.phone-notch::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #1e3a5f 40%, #0a0a0a 60%);
    border-radius: 50%;
}

.phone-notch::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #1a1a1a;
    border-radius: 50%;
    box-shadow: inset 0 0 2px rgba(255, 255, 255, 0.1);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 34px;
    overflow: hidden;
    position: relative;
}

.phone-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 34px;
}

.phone-shadow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 30px;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    filter: blur(15px);
}

/* Phone Ribbons - Positioned at top left of phone */
.phone-ribbons {
    position: absolute;
    top: 60px;
    left: 0;
    transform: translateX(calc(-100% + 50px));
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 20;
    max-width: calc(100% + 140px);
}

.ribbon {
    display: flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 8px;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    white-space: normal;
    word-wrap: break-word;
    animation: ribbon-slide 0.6s ease-out;
}

@keyframes ribbon-slide {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.ribbon-primary {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.95) 0%, rgba(14, 165, 233, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    gap: 10px;
}

.ribbon-icon {
    flex-shrink: 0;
    color: white;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
}

.ribbon-primary span {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.ribbon-secondary {
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation-delay: 0.15s;
}

.ribbon-secondary span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Interactive Model Block */
.interactive-model-block {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--gap-lg);
    z-index: 1;
}


/* Laptop Mockup Styles */
.laptop-mockup {
    display: flex;
    flex-direction: column;
    align-items: center;
    perspective: 1000px;
    margin-bottom: var(--gap-lg);
    transform: scale(1.7) translateX(30%);
    transform-origin: center right;
    margin-right: -150px;
    position: relative;
    /* Context for ribbons */
}

.laptop-lid {
    position: relative;
    width: 600px;
    height: 380px;
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 24px;
    padding: 12px;
    box-shadow:
        0 20px 50px -10px rgba(0, 0, 0, 0.5),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transform-style: preserve-3d;
}

.laptop-camera {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #0f0f0f;
    border-radius: 50%;
    box-shadow: inset 0 0 2px rgba(255, 255, 255, 0.2);
    z-index: 5;
}

.laptop-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.laptop-base {
    width: 720px;
    height: 18px;
    background: linear-gradient(to bottom, #3a3a3a, #1a1a1a);
    border-radius: 0 0 20px 20px;
    margin-top: -10px;
    position: relative;
    z-index: 2;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.2), 0 20px 40px rgba(0, 0, 0, 0.4);
}

.laptop-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 6px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0 0 8px 8px;
}

/* Fake Browser Interface */
.fake-browser-header {
    height: 32px;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 16px;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
}

.browser-dots span:nth-child(1) {
    background: #ef4444;
}

.browser-dots span:nth-child(2) {
    background: #eab308;
}

.browser-dots span:nth-child(3) {
    background: #22c55e;
}

.browser-bar {
    flex: 1;
    height: 20px;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
}

/* Fake Website Content - Premium Design */
.fake-website-hero {
    flex: 1;
    background: linear-gradient(145deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 15px;
    position: relative;
}

.fake-website-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.fake-hero-content {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 15px;
}

.fake-hero-left {
    flex: 1.2;
    height: 300px;
    position: relative;
}

.fake-hero-right {
    flex: 0.8;
    padding-right: 15px;
}

/* Fake Navigation */
.fake-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.fake-logo {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 800;
    color: white;
    letter-spacing: 0.1em;
}

.fake-nav-dots {
    display: flex;
    gap: 3px;
}

.fake-nav-dots span {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

.fake-badge {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    color: white;
    font-size: 0.55rem;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.fake-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    line-height: 1.1;
    color: white;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Fake Price */
.fake-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.price-old {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.price-new {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
}

.fake-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: white;
    color: #667eea;
    font-size: 0.65rem;
    border-radius: 20px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.fake-button svg {
    width: 10px;
    height: 10px;
}

/* Laptop Corner Ribbons - Positioned on laptop left edge */
.laptop-ribbons-corner {
    position: absolute;
    top: 60px;
    left: -100px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 30;
    transform: scale(0.59);
    transform-origin: right top;
}

.laptop-ribbons-corner .ribbon {
    padding: 10px 16px;
    white-space: nowrap;
}

.laptop-ribbons-corner .ribbon-primary span {
    font-size: 0.9rem;
    font-weight: 600;
}

.laptop-ribbons-corner .ribbon-secondary span {
    font-size: 0.7rem;
}

.laptop-ribbons-corner .ribbon-icon {
    width: 14px;
    height: 14px;
}

/* Laptop Ribbons */
.laptop-ribbons {
    position: absolute;
    top: -50px;
    left: -40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
}

.laptop-ribbons .ribbon {
    transform: translateX(-20px);
    opacity: 0;
    animation: slideInLeft 0.5s ease-out forwards;
}

.laptop-ribbons .ribbon:nth-child(1) {
    animation-delay: 0.3s;
}

.laptop-ribbons .ribbon:nth-child(2) {
    animation-delay: 0.4s;
}

.laptop-ribbons .ribbon:nth-child(3) {
    animation-delay: 0.5s;
}

/* Restored Hotspot Styles */
.model-hotspot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    animation: hotspot-pulse 2s infinite;
    position: relative;
    padding: 0;
}

.model-hotspot::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    animation: hotspot-ring 2s infinite;
}

@keyframes hotspot-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes hotspot-ring {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.hotspot-annotation {
    position: absolute;
    top: -4px;
    left: 22px;
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 2px 6px;
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-6px);
    transition: var(--transition-fast);
    pointer-events: none;
    white-space: nowrap;
}

.hotspot-text {
    font-size: 0.4rem;
    font-weight: 600;
    color: var(--accent-primary);
    letter-spacing: 0.01em;
}

.hotspot-annotation.annotation-left {
    left: auto;
    right: 36px;
    transform: translateX(10px);
}

.model-hotspot:hover .hotspot-annotation {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.hotspot-icon {
    display: flex;
    align-items: center;
    color: var(--accent-primary);
}

.laptop-ribbons .ribbon-icon {
    width: 16px;
    height: 16px;
}

/* Adjust Hotspots for smaller context */
.fake-hero-left .model-hotspot {
    width: 24px;
    height: 24px;
}

.fake-hero-left .hotspot-icon svg {
    width: 12px;
    height: 12px;
}

.fake-hero-left .hotspot-text {
    font-size: 0.65rem;
    padding: 4px 10px;
}

/* Responsive Laptop */
@media (max-width: 992px) {
    .laptop-lid {
        width: 100%;
        height: 300px;
    }

    .laptop-base {
        width: 110%;
    }

    .fake-hero-right {
        display: none;
        /* Hide text on smaller screens inside laptop */
    }
}

@media (max-width: 576px) {
    .laptop-lid {
        height: 240px;
    }

    .fake-hero-left {
        height: 200px;
    }
}

/* Feature Cards */
.model-feature-cards {
    display: flex;
    gap: var(--gap-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* ... existing feature card styles ... */

/* Service Info Card Overlay */
.service-info-card {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 320px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 10;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    animation: fadeInDown 0.8s ease-out 0.5s both;
}

.info-card-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-main);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.info-card-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.info-card-content p {
    font-size: 0.8rem;
    line-height: 1.4;
    color: #64748b;
    margin: 0;
}

@media (max-width: 768px) {
    .service-info-card {
        display: none;
    }
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e3a5f;
    transition: var(--transition-fast);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.feature-card:hover {
    background: #ffffff;
    color: var(--accent-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.feature-card-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card-icon svg {
    width: 18px;
    height: 18px;
}

/* Desktop narrower screens - ribbons adjust to stay visible */
@media (max-width: 1400px) {
    .phone-ribbons {
        transform: translateX(calc(-100% + 80px));
    }
}

@media (max-width: 1200px) {
    .phone-ribbons {
        transform: translateX(calc(-100% + 140px));
    }

    .ribbon-primary span {
        font-size: 1.1rem;
    }
}

/* Product Video Showcase Responsive */
@media (max-width: 992px) {
    .product-video-grid {
        grid-template-columns: 1fr;
        gap: var(--gap-xl);
    }

    .phone-ribbons {
        position: absolute;
        transform: none;
        top: auto;
        left: -20px;
        bottom: 80px;
        max-width: calc(100% - 20px);
    }

    .phone-mockup-block {
        order: 0;
    }

    .phone-mockup {
        flex-direction: column;
        align-items: center;
    }

    .phone-frame {
        width: 240px;
        height: 500px;
        border-radius: 36px;
        align-self: center;
    }

    .phone-screen {
        border-radius: 28px;
    }

    .phone-video {
        border-radius: 28px;
    }

    .phone-notch {
        width: 80px;
        height: 24px;
    }

    .model-showcase-container {
        height: 450px;
    }

    /* Laptop Mockup - Tablet */
    .interactive-model-block {
        order: 1;
        overflow: visible;
    }

    .laptop-mockup {
        transform: scale(1) translateX(0);
        margin-right: 0;
        margin-left: 0;
        transform-origin: center center;
    }

    .laptop-lid {
        width: 100%;
        max-width: 500px;
        height: 320px;
    }

    .laptop-base {
        width: calc(100% + 40px);
        max-width: 560px;
    }

    .laptop-ribbons-corner {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        transform: scale(0.8);
        transform-origin: center center;
        margin-bottom: var(--gap-md);
        align-items: center;
    }

    /* Fake Website - Tablet */
    .fake-hero-content {
        gap: 10px;
    }

    .fake-hero-left {
        height: 250px;
    }

    .fake-title {
        font-size: 1.2rem;
    }

    .fake-badge {
        font-size: 0.5rem;
    }

    .fake-button {
        padding: 6px 12px;
        font-size: 0.55rem;
    }

    .fake-price {
        gap: 6px;
    }

    .price-old {
        font-size: 0.55rem;
    }

    .price-new {
        font-size: 0.75rem;
    }

    /* Adjust background shape on tablet */
    .interactive-model-block::before {
        left: -20px;
        right: -20px;
        top: -50px;
        bottom: -50px;
        border-radius: 32px;
    }
}

@media (max-width: 576px) {
    .phone-frame {
        width: 200px;
        height: 420px;
        border-radius: 30px;
        padding: 10px;
    }

    .phone-screen,
    .phone-video {
        border-radius: 22px;
    }

    .phone-notch {
        width: 70px;
        height: 20px;
        top: 12px;
    }

    /* Phone Ribbons - Smaller on mobile */
    .phone-ribbons .ribbon {
        padding: 6px 10px;
    }

    .phone-ribbons .ribbon-primary span {
        font-size: 0.75rem;
    }

    .phone-ribbons .ribbon-secondary span {
        font-size: 0.6rem;
    }

    .phone-ribbons .ribbon-icon {
        width: 14px;
        height: 14px;
    }

    .model-showcase-container {
        height: 350px;
    }

    .model-feature-cards {
        gap: 8px;
    }

    .feature-card {
        padding: 10px 14px;
        font-size: 0.75rem;
    }

    .feature-card-icon {
        width: 24px;
        height: 24px;
    }

    .feature-card-icon svg {
        width: 14px;
        height: 14px;
    }

    .hotspot-annotation {
        display: none;
    }

    /* Laptop Mockup - Mobile */
    .laptop-mockup {
        transform: none;
        margin: 0;
    }

    .laptop-lid {
        width: 100%;
        max-width: 320px;
        height: 210px;
        padding: 8px;
        border-radius: 16px;
    }

    .laptop-base {
        width: calc(100% + 20px);
        max-width: 360px;
        height: 12px;
        border-radius: 0 0 12px 12px;
        margin-top: -6px;
    }

    .laptop-camera {
        width: 4px;
        height: 4px;
        top: 4px;
    }

    .laptop-screen {
        border-radius: 8px;
    }

    /* Laptop Ribbons - On edge of laptop like phone mockup */
    .laptop-ribbons-corner {
        position: absolute;
        top: 30px;
        left: -10px;
        right: auto;
        transform: scale(0.7);
        transform-origin: left top;
        margin-bottom: 0;
        align-items: flex-start;
    }

    /* Fake Website - Mobile */
    .fake-browser-header {
        height: 20px;
        padding: 0 8px;
        gap: 8px;
    }

    .browser-dots span {
        width: 6px;
        height: 6px;
    }

    .browser-bar {
        height: 12px;
    }

    .fake-website-hero {
        padding: 10px;
    }

    .fake-hero-content {
        gap: 8px;
    }

    .fake-hero-left {
        flex: 1;
        height: 160px;
    }

    .fake-hero-right {
        flex: 1;
        padding-right: 8px;
    }

    .fake-nav {
        margin-bottom: 8px;
    }

    .fake-logo {
        font-size: 0.5rem;
    }

    .fake-nav-dots span {
        width: 3px;
        height: 3px;
    }

    .fake-badge {
        padding: 2px 6px;
        font-size: 0.4rem;
        margin-bottom: 6px;
    }

    .fake-title {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .fake-price {
        gap: 4px;
        margin-bottom: 8px;
    }

    .price-old {
        font-size: 0.45rem;
    }

    .price-new {
        font-size: 0.6rem;
    }

    .fake-button {
        padding: 5px 10px;
        font-size: 0.45rem;
        gap: 4px;
        border-radius: 12px;
    }

    .fake-button svg {
        width: 8px;
        height: 8px;
    }
}

/* ============================================
   SOCIAL CTA SECTION
   ============================================ */
.social-cta {
    padding: var(--gap-xl) 0;
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.social-cta-content {
    text-align: center;
}

.social-cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--gap-lg);
}

.social-cta-icons {
    display: flex;
    justify-content: center;
    gap: var(--gap-lg);
}

.social-cta-link {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.social-cta-link svg {
    width: 28px;
    height: 28px;
}

.social-cta-link:hover {
    background: var(--gradient-main);
    border-color: transparent;
    color: var(--text-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-xl);
    align-items: center;
}

.about-content {
    padding-right: var(--gap-lg);
}

.about-title {
    margin-bottom: var(--gap-md);
}

.about-text {
    margin-bottom: var(--gap-md);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap-md);
    margin-top: var(--gap-lg);
}

.stat-item {
    text-align: center;
    padding: var(--gap-md);
    background: var(--bg-card);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius-lg);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-primary);
    border-radius: var(--border-radius-lg);
    z-index: -1;
}

/* Team Bubbles */
.team-bubbles {
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-bubble {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bubble-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gradient-main);
    opacity: 0.3;
    filter: blur(20px);
    transform: scale(1.2);
    z-index: -1;
}

.bubble-image {
    position: relative;
    overflow: hidden;
    border: 3px solid transparent;
    background: linear-gradient(var(--bg-secondary), var(--bg-secondary)) padding-box,
        var(--gradient-main) border-box;
    transition: var(--transition-smooth);
}

.bubble-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: var(--transition-smooth);
}

.team-bubble:hover .bubble-image img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.team-bubble:hover .bubble-glow {
    opacity: 0.5;
    transform: scale(1.3);
}

/* Bubble 1 - Largest, top right */
.bubble-1 {
    top: 0;
    right: 0;
    animation: float 6s ease-in-out infinite;
}

.bubble-1 .bubble-image {
    width: 240px;
    height: 240px;
    border-radius: 47% 53% 52% 48% / 46% 47% 53% 54%;
}

/* Bubble 2 - Medium, bottom left */
.bubble-2 {
    bottom: 40px;
    left: 0;
    animation: float 7s ease-in-out infinite;
    animation-delay: -2s;
}

.bubble-2 .bubble-image {
    width: 210px;
    height: 210px;
    border-radius: 52% 48% 45% 55% / 55% 52% 48% 45%;
}

/* Bubble 3 - Smaller, center-right */
.bubble-3 {
    top: 50%;
    right: 30%;
    transform: translateY(-50%);
    animation: float 8s ease-in-out infinite;
    animation-delay: -4s;
}

.bubble-3 .bubble-image {
    width: 180px;
    height: 180px;
    border-radius: 45% 55% 50% 50% / 50% 45% 55% 50%;
}

/* Caption styling */
.bubble-caption {
    position: absolute;
    bottom: -10px;
    right: -10px;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.bubble-role {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Float animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.bubble-3 {
    animation-name: float3;
}

@keyframes float3 {

    0%,
    100% {
        transform: translateY(-50%) translateX(0);
    }

    50% {
        transform: translateY(calc(-50% - 15px)) translateX(5px);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        padding-right: 0;
        text-align: center;
    }

    .team-bubbles {
        height: 350px;
        margin-top: var(--gap-xl);
    }

    .bubble-1 {
        top: 0;
        right: 10%;
    }

    .bubble-1 .bubble-image {
        width: 140px;
        height: 140px;
    }

    .bubble-2 {
        bottom: 20px;
        left: 5%;
    }

    .bubble-2 .bubble-image {
        width: 120px;
        height: 120px;
    }

    .bubble-3 {
        top: auto;
        bottom: 100px;
        right: 5%;
    }

    .bubble-3 .bubble-image {
        width: 100px;
        height: 100px;
    }

    .bubble-caption {
        padding: 6px 12px;
    }

    .bubble-role {
        font-size: 0.65rem;
    }
}

@media (max-width: 576px) {
    .team-bubbles {
        height: 380px;
    }

    /* Bubble 1 - Top Center */
    .bubble-1 {
        top: 0;
        left: 50%;
        right: auto;
        margin-left: -80px;
        /* Half of width (160px) */
    }

    .bubble-1 .bubble-image {
        width: 160px;
        height: 160px;
    }

    /* Bubble 2 - Bottom Left */
    .bubble-2 {
        bottom: 20px;
        left: 5px;
    }

    .bubble-2 .bubble-image {
        width: 135px;
        height: 135px;
    }

    /* Bubble 3 - Bottom Right */
    .bubble-3 {
        top: auto;
        bottom: 60px;
        right: 5px;
        transform: none;
        animation-name: float;
    }

    .bubble-3 .bubble-image {
        width: 120px;
        height: 120px;
    }
}



/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--gradient-main);
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 0, 0, 0.2) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: var(--gap-md);
}

.cta-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--gap-lg);
}

.cta .btn {
    background: var(--bg-primary);
    color: var(--text-primary);
}

.cta .btn:hover {
    background: var(--bg-secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   AI ASSISTANT SECTION
   ============================================ */
.ai-assistant {
    background: var(--bg-secondary);
}

.ai-chat-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
}

/* Chat Header */
.ai-chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px var(--gap-lg);
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ai-chat-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.ai-chat-header-info svg {
    color: var(--accent-primary);
}

.ai-chat-expand-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.ai-chat-expand-btn:hover {
    background: var(--gradient-subtle);
    border-color: var(--accent-primary);
    color: var(--text-primary);
}

.ai-chat-expand-btn .collapse-icon {
    display: none;
}

.ai-chat-container.expanded .ai-chat-expand-btn .expand-icon {
    display: none;
}

.ai-chat-container.expanded .ai-chat-expand-btn .collapse-icon {
    display: block;
}

.ai-chat-messages {
    max-height: 400px;
    min-height: 200px;
    overflow-y: auto;
    padding: var(--gap-lg);
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Expanded State */
.ai-chat-container.expanded .ai-chat-messages {
    max-height: 650px;
}

.ai-chat-messages::-webkit-scrollbar {
    width: 6px;
}

.ai-chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.ai-chat-messages::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.ai-message {
    display: flex;
    gap: var(--gap-sm);
    max-width: 85%;
    animation: messageSlide 0.3s ease-out;
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ai-message.assistant {
    align-self: flex-start;
}

.ai-message.user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.ai-message-avatar {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ai-message.assistant .ai-message-avatar {
    background: var(--gradient-main);
}

.ai-message.user .ai-message-avatar {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ai-message-content {
    padding: var(--gap-sm) var(--gap-md);
    border-radius: var(--border-radius-md);
    line-height: 1.6;
}

.ai-message.assistant .ai-message-content {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ai-message.user .ai-message-content {
    background: var(--gradient-main);
    color: var(--text-primary);
}

.ai-message-content p {
    margin: 0;
}

.ai-message-content p+p {
    margin-top: 0.5em;
}

/* Typing indicator */
.ai-typing {
    display: flex;
    gap: 4px;
    padding: var(--gap-sm);
}

.ai-typing span {
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.ai-typing span:nth-child(2) {
    animation-delay: 0.2s;
}

.ai-typing span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {

    0%,
    60%,
    100% {
        transform: translateY(0);
        opacity: 0.5;
    }

    30% {
        transform: translateY(-8px);
        opacity: 1;
    }
}

/* Chat Input */
.ai-chat-input-wrapper {
    padding: var(--gap-md);
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ai-chat-input-container {
    display: flex;
    align-items: flex-end;
    gap: var(--gap-sm);
    background: var(--bg-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    padding: var(--gap-sm);
    transition: var(--transition-smooth);
}

.ai-chat-input-container:focus-within {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.1);
}

.ai-chat-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    resize: none;
    max-height: 150px;
    line-height: 1.5;
    padding: 8px;
}

.ai-chat-input::placeholder {
    color: var(--text-muted);
}

.ai-chat-input:focus {
    outline: none;
}

.ai-chat-actions {
    display: flex;
    gap: 4px;
}

.ai-mic-btn,
.ai-send-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-sm);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.ai-mic-btn {
    background: transparent;
    color: var(--text-muted);
}

.ai-mic-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.ai-mic-btn.recording {
    background: rgba(255, 59, 48, 0.2);
    color: #ff3b30;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(255, 59, 48, 0);
    }
}

.ai-send-btn {
    background: var(--gradient-main);
    color: white;
}

.ai-send-btn:hover {
    transform: scale(1.05);
}

.ai-send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.ai-chat-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: var(--gap-sm);
}

/* Responsive */
@media (max-width: 768px) {
    .ai-chat-messages {
        max-height: 350px;
        padding: var(--gap-md);
    }

    .ai-message {
        max-width: 95%;
    }

    .ai-chat-hint {
        display: none;
    }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--gap-xl);
}

.contact-info {
    padding-right: var(--gap-lg);
}

.contact-title {
    margin-bottom: var(--gap-md);
}

.contact-text {
    margin-bottom: var(--gap-lg);
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--gap-md);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-subtle);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent-primary);
}

.contact-item-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-item-value {
    font-size: 1rem;
    color: var(--text-primary);
}

.contact-socials {
    display: flex;
    gap: var(--gap-sm);
    margin-top: var(--gap-lg);
}

.social-link {
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--gradient-main);
    border-color: transparent;
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Contact Form */
.contact-form {
    background: var(--bg-secondary);
    padding: var(--gap-lg);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: var(--gap-md);
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-md);
}

.form-submit {
    width: 100%;
    margin-top: var(--gap-sm);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-secondary);
    padding: var(--gap-xl) 0 var(--gap-md);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--gap-xl);
    margin-bottom: var(--gap-xl);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: var(--gap-md);
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-main);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.footer-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--gap-md);
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
}

.footer-link {
    display: block;
    padding: 8px 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--text-primary);
    padding-left: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--gap-md);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: var(--gap-md);
}

.footer-bottom-link {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-bottom-link:hover {
    color: var(--accent-primary);
}

/* ============================================
   ANIMATIONS & EFFECTS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

.stagger-5 {
    transition-delay: 0.5s;
}

.stagger-6 {
    transition-delay: 0.6s;
}

/* Floating animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Gradient text animation */
.gradient-animated {
    background: linear-gradient(90deg,
            var(--accent-primary),
            var(--accent-secondary),
            var(--accent-tertiary),
            var(--accent-primary));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 8s ease infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Glow effect */
.glow {
    box-shadow:
        0 0 20px rgba(59, 130, 246, 0.3),
        0 0 40px rgba(59, 130, 246, 0.2),
        0 0 60px rgba(59, 130, 246, 0.1);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    :root {
        --section-padding: 80px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-primary);
        flex-direction: column;
        justify-content: center;
        gap: var(--gap-lg);
        transition: var(--transition-smooth);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        padding-right: 0;
        text-align: center;
    }

    .about-image {
        order: -1;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .hero-lottie {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-item.large {
        grid-column: span 1;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        max-width: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--gap-md);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}

/* ============================================
   LIGHTBOX STYLES
   ============================================ */
.glightbox-container {
    background: rgba(10, 10, 10, 0.95);
}

.glightbox-clean .gclose,
.glightbox-clean .gnext,
.glightbox-clean .gprev {
    background: var(--gradient-main);
}

.glightbox-clean .gdesc-inner {
    background: var(--bg-secondary);
}

.glightbox-clean .gslide-title {
    font-family: var(--font-display);
    color: var(--text-primary);
}

.glightbox-clean .gslide-desc {
    color: var(--text-secondary);
}