/* Professional D-Tech CSS - Dark Theme with 3D Design */
:root {
    --primary: #00d4ff;
    --secondary: #ff006e;
    --accent: #00ff88;
    --dark-bg: #0a0e27;
    --dark-2: #151b2f;
    --dark-3: #1e2749;
    --light-text: #e0e8ff;
    --gray-text: #a0aec0;
    --border: #2d3748;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--light-text);
    background-color: var(--dark-bg);
    background-image:
        radial-gradient(at 20% 50%, rgba(0, 212, 255, 0.1) 0px, transparent 50%),
        radial-gradient(at 80% 80%, rgba(255, 0, 110, 0.1) 0px, transparent 50%);
    line-height: 1.6;
    overflow-x: hidden;
}

.dark-theme {
    --text: var(--light-text);
    --bg: var(--dark-bg);
}

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

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    background: linear-gradient(90deg, rgba(2,10,35,0.96), rgba(4,12,42,0.92));
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0,255,255,0.12);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 3px;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    text-decoration: none;
}

.logo .d {
    color: #27d7ff;
}

.logo .tech {
    color: #ff4bd1;
}

.right-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cart-btn,
.lang-toggle,
.menu-btn {
    border: 1px solid rgba(54,217,255,0.22);
    background: rgba(7,20,52,0.72);
    color: #fff;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.25s ease;
    backdrop-filter: blur(10px);
}

.cart-btn:hover,
.lang-toggle:hover,
.menu-btn:hover {
    border-color: rgba(54,217,255,0.55);
    box-shadow: 0 0 18px rgba(39,215,255,0.16);
    transform: translateY(-1px);
}

.cart-btn {
    padding: 0 16px;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.cart-count {
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: linear-gradient(135deg,#27d7ff,#00aaff);
    color: #03102b;
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-wrapper {
    position: relative;
}

.lang-toggle {
    padding: 0 14px;
    gap: 10px;
    min-width: 136px;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 10px;
}

.flag {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.06);
}

.chevron {
    width: 10px;
    height: 10px;
    border-right: 2px solid #8feeff;
    border-bottom: 2px solid #8feeff;
    transform: rotate(45deg);
    transition: 0.25s ease;
    margin-top: -3px;
}

.lang-wrapper.active .chevron {
    transform: rotate(-135deg);
    margin-top: 4px;
}

.lang-menu {
    position: absolute;
    top: 58px;
    right: 0;
    width: 220px;
    background: rgba(4,12,38,0.95);
    border: 1px solid rgba(54,217,255,0.18);
    border-radius: 18px;
    padding: 8px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.42);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.22s ease;
}

.lang-wrapper.active .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-item {
    width: 100%;
    border: none;
    background: transparent;
    color: #dbeeff;
    padding: 12px 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-align: left;
    font-size: 14px;
    transition: 0.2s ease;
}

.lang-item:hover {
    background: rgba(39,215,255,0.11);
}

.lang-item.active {
    background: linear-gradient(90deg, rgba(39,215,255,0.18), rgba(255,75,209,0.10));
    color: #fff;
}

.lang-code {
    margin-left: auto;
    font-size: 11px;
    font-weight: 700;
    color: #8feeff;
    letter-spacing: 1px;
}

.menu-btn {
    width: 46px;
    flex-direction: column;
    gap: 5px;
}

.menu-btn span {
    width: 20px;
    height: 2px;
    background: #27d7ff;
    border-radius: 10px;
    display: block;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.desktop-nav a {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
    text-decoration: none;
}

.desktop-nav a:hover {
    color: #27d7ff;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(2,10,35,0.98), rgba(4,12,42,0.98));
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0,255,255,0.12);
    z-index: 998;
    padding: 20px 0;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    color: #fff;
    padding: 12px 22px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-nav a:hover {
    background: rgba(39,215,255,0.1);
    border-left-color: #27d7ff;
    color: #27d7ff;
}

@media (min-width: 641px) {
    .menu-btn {
        display: none !important;
    }

    .mobile-nav {
        display: none !important;
    }
}

@media (max-width: 640px) {
    .desktop-nav {
        display: none;
    }
    .header-inner {
        padding: 14px 14px;
    }

    .logo {
        font-size: 28px;
    }

    .cart-btn .label {
        display: none;
    }

    .cart-btn {
        padding: 0 12px;
    }

    .lang-wrapper {
        display: flex !important;
    }

    .lang-toggle {
        display: flex !important;
        min-width: 46px;
        width: 46px;
        padding: 0;
        height: 46px;
        justify-content: center;
        align-items: center;
    }

    .lang-current {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .lang-toggle .lang-name {
        display: none;
    }

    .flag {
        width: 20px;
        height: 20px;
    }

    .lang-menu {
        width: 200px;
        right: 0;
    }
}

/* CART ICON BUTTON */
.cart-icon-btn {
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid #00d4ff;
    color: #00d4ff;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

.cart-icon-btn:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.cart-count {
    background: #ff006e;
    color: #fff;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    min-width: 24px;
    text-align: center;
}

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 25%),
        linear-gradient(180deg, #0a0e27 0%, #050810 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(90deg, transparent 0%, rgba(0, 212, 255, 0.03) 50%, transparent 100%),
        linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
    z-index: 2;
}

.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.02) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 1;
    animation: subtleGlow 6s ease-in-out infinite;
}

@keyframes subtleGlow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

/* 3D DEVICES */
.hero-3d-devices {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    perspective: 1200px;
    display: flex;
    gap: 30px;
    align-items: center;
}

/* IPHONE */
.iphone {
    width: 280px;
    height: 560px;
    perspective: 1000px;
}

.iphone-body {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.5);
    transform: rotateY(-25deg) rotateX(5deg);
}

.iphone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: #000;
    border-radius: 0 0 20px 20px;
    z-index: 20;
}

.iphone-screen {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    background: linear-gradient(135deg, #0a0e27, #1a0033);
    border-radius: 35px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iphone-home {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 5px;
    background: #000;
    border-radius: 3px;
}

/* LAPTOP */
.laptop {
    width: 500px;
    height: 320px;
    perspective: 1000px;
}

.laptop-screen-bezels {
    position: relative;
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #0d0d1a 0%, #1a1a2e 100%);
    border-radius: 12px 12px 8px 8px;
    padding: 6px;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.9),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.8);
    transform: rotateX(25deg) rotateY(20deg);
    transform-style: preserve-3d;
}

.laptop-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0e27 0%, #1a0033 100%);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.laptop-screen video,
.laptop-screen canvas {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.laptop-base {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-2px) rotateX(25deg);
    width: 480px;
    height: 20px;
    background: linear-gradient(90deg, #0d0d1a 0%, #1a1a2e 50%, #0d0d1a 100%);
    border-radius: 2px 2px 12px 12px;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* DEVICE CONTENT */
.device-content {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    color: var(--light-text);
}

.device-content-active {
    opacity: 1;
    z-index: 1;
}

.device-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.device-content p {
    font-size: 0.85rem;
    color: var(--gray-text);
    line-height: 1.6;
}

.hero-content {
    position: relative;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
    padding-left: 60px;
}

.hero-text {
    max-width: 700px;
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

.hero-text h1 {
    font-size: 3.5rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
    min-height: 4rem;
}

.typewriter {
    font-family: inherit;
    font-weight: 800;
    letter-spacing: inherit;
}

#typewriter-text {
    display: inline;
    color: var(--light-text);
}

#typewriter-cursor {
    display: inline-block;
    width: 3px;
    height: 1.1em;
    background: linear-gradient(180deg, var(--primary), #0099ff);
    margin-left: 4px;
    margin-right: 0;
    animation: blink 0.8s infinite;
    vertical-align: baseline;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.cursor {
    display: inline-block;
    width: 3px;
    height: 1.1em;
    background: linear-gradient(180deg, var(--primary), #0099ff);
    margin-left: 4px;
    animation: blink 0.8s infinite;
    vertical-align: baseline;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

@keyframes blink {
    0%, 49% {
        background-color: var(--primary);
        box-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
    }
    50%, 100% {
        background-color: transparent;
        box-shadow: none;
    }
}

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

.hero-text p {
    font-size: 1.25rem;
    color: var(--gray-text);
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #0099ff);
    color: var(--dark-bg);
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--dark-bg);
    transform: translateY(-4px);
}

/* STATS */
.stats {
    background: linear-gradient(135deg, rgba(21, 27, 47, 0.5), rgba(30, 39, 73, 0.5));
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(21, 27, 47, 0.3);
    transition: all 0.3s ease;
}

.stat:hover {
    border-color: var(--primary);
    background: rgba(0, 212, 255, 0.05);
    transform: translateY(-4px);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--gray-text);
    font-size: 0.95rem;
}

/* SERVICES */
.services {
    padding: 6rem 0;
}

.services h2 {
    font-size: 3rem;
    color: var(--light-text);
    margin-bottom: 0.5rem;
    text-align: center;
    font-weight: 800;
}

.subtitle {
    text-align: center;
    color: var(--gray-text);
    margin-bottom: 4rem;
    font-size: 1.1rem;
}

/* 3D Stack Cards */
.services-stack-container {
    perspective: 1200px;
    position: relative;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4rem;
    overflow: visible;
}

.service-card-3d {
    position: absolute;
    width: 90%;
    max-width: 700px;
    height: 420px;
    cursor: pointer;
    pointer-events: auto;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.service-card-3d.flipped .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2.5rem;
    border-radius: 20px;
    color: var(--dark-bg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.card-back {
    transform: rotateY(180deg);
    text-align: left;
    justify-content: flex-start;
    padding: 2.5rem;
}

/* Color variants for each card */
.service-card-3d[data-color="cyan"] .card-front {
    background: linear-gradient(135deg, #00d4ff, #0099ff);
}

.service-card-3d[data-color="cyan"] .card-back {
    background: linear-gradient(135deg, #0099ff, #006bb3);
}

.service-card-3d[data-color="magenta"] .card-front {
    background: linear-gradient(135deg, #ff006e, #ff3385);
}

.service-card-3d[data-color="magenta"] .card-back {
    background: linear-gradient(135deg, #ff3385, #cc0059);
}

.service-card-3d[data-color="green"] .card-front {
    background: linear-gradient(135deg, #00ff88, #00dd77);
}

.service-card-3d[data-color="green"] .card-back {
    background: linear-gradient(135deg, #00dd77, #00aa55);
}

.service-card-3d[data-color="orange"] .card-front {
    background: linear-gradient(135deg, #ffa500, #ff8c00);
}

.service-card-3d[data-color="orange"] .card-back {
    background: linear-gradient(135deg, #ff8c00, #cc6600);
}

.service-card-3d[data-color="purple"] .card-front {
    background: linear-gradient(135deg, #9d4edd, #7b2cbf);
}

.service-card-3d[data-color="purple"] .card-back {
    background: linear-gradient(135deg, #7b2cbf, #5a1f99);
}

.service-card-3d[data-color="teal"] .card-front {
    background: linear-gradient(135deg, #06aed5, #0494d1);
}

.service-card-3d[data-color="teal"] .card-back {
    background: linear-gradient(135deg, #0494d1, #036b9e);
}

.service-card-3d[data-color="red"] .card-front {
    background: linear-gradient(135deg, #e1306c, #c13584);
}

.service-card-3d[data-color="red"] .card-back {
    background: linear-gradient(135deg, #c13584, #9a2860);
}

.card-number {
    font-size: 4.5rem;
    font-weight: 800;
    opacity: 0.25;
    margin-bottom: 1rem;
}

.card-front h3 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.card-front p {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 600;
}

.card-back h3 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.card-back p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.feature-row span {
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.card-price {
    font-size: 1.1rem;
    font-weight: 700;
    padding-top: 1rem;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

/* Stack positioning */
.service-card-3d[data-index="0"] {
    z-index: 70;
    transform: translateX(-100px) translateY(0) scale(1) rotateY(0deg);
}

.service-card-3d[data-index="1"] {
    z-index: 60;
    transform: translateX(-70px) translateY(30px) scale(0.92) rotateY(5deg);
    opacity: 0.8;
    pointer-events: auto;
}

.service-card-3d[data-index="2"] {
    z-index: 50;
    transform: translateX(-40px) translateY(60px) scale(0.84) rotateY(10deg);
    opacity: 0.65;
    pointer-events: auto;
}

.service-card-3d[data-index="3"] {
    z-index: 40;
    transform: translateX(-10px) translateY(90px) scale(0.76) rotateY(15deg);
    opacity: 0.5;
    pointer-events: auto;
}

.service-card-3d[data-index="4"] {
    z-index: 30;
    transform: translateX(20px) translateY(120px) scale(0.68) rotateY(20deg);
    opacity: 0.35;
    pointer-events: auto;
}

.service-card-3d[data-index="5"] {
    z-index: 20;
    transform: translateX(50px) translateY(150px) scale(0.6) rotateY(25deg);
    opacity: 0.2;
    pointer-events: auto;
}

.service-card-3d[data-index="6"] {
    z-index: 10;
    transform: translateX(80px) translateY(180px) scale(0.52) rotateY(30deg);
    opacity: 0.05;
    pointer-events: auto;
}

/* PORTFOLIO */
.portfolio {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(21, 27, 47, 0.3), rgba(30, 39, 73, 0.3));
}

.portfolio h2 {
    font-size: 3rem;
    color: var(--light-text);
    margin-bottom: 0.5rem;
    text-align: center;
    font-weight: 800;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.portfolio-card {
    background: rgba(21, 27, 47, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.portfolio-card:hover {
    border-color: var(--primary);
    transform: translateY(-12px);
    box-shadow: 0 16px 48px rgba(0, 212, 255, 0.2);
}

.port-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.port-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 0, 110, 0.1));
}

.portfolio-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.3rem;
    color: var(--light-text);
}

.portfolio-card p {
    padding: 0 1.5rem;
    color: var(--gray-text);
    font-size: 0.95rem;
}

.result {
    padding: 1rem 1.5rem;
    color: var(--primary);
    font-weight: 600;
}

.port-tags {
    padding: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.port-tags span {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid var(--primary);
}

/* ABOUT */
.about {
    padding: 6rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.about-text p {
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.features {
    list-style: none;
}

.features li {
    color: var(--light-text);
    margin-bottom: 1rem;
    font-weight: 500;
}

.features li:before {
    content: "✓ ";
    color: var(--primary);
    font-weight: bold;
    margin-right: 0.75rem;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 0, 110, 0.1));
    border: 2px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-text);
    font-weight: 600;
}

/* PRICING */
.pricing {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(21, 27, 47, 0.3), rgba(30, 39, 73, 0.3));
}

.pricing h2 {
    font-size: 3rem;
    color: var(--light-text);
    margin-bottom: 0.5rem;
    text-align: center;
    font-weight: 800;
}

/* Pricing Accordion */
.pricing-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.accordion-group {
    background: rgba(21, 27, 47, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 1.75rem 2rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 0, 110, 0.05));
    border: none;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--light-text);
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(255, 0, 110, 0.1));
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.accordion-group.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    display: none;
    padding: 2rem;
    background: rgba(10, 14, 39, 0.3);
}

.accordion-group.active .accordion-content {
    display: block;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-package {
    background: rgba(21, 27, 47, 0.5);
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.pricing-package:hover {
    border-left-color: var(--secondary);
    background: rgba(21, 27, 47, 0.8);
    transform: translateX(10px);
}

.pricing-package:last-child {
    margin-bottom: 0;
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.package-header h4 {
    font-size: 1.15rem;
    color: var(--light-text);
    margin: 0;
    flex: 1;
}

.package-header .price {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.pricing-package ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.pricing-package li {
    color: var(--gray-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

    .package-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* CONTACT */
.contact {
    padding: 6rem 0;
}

.contact h2 {
    font-size: 3rem;
    color: var(--light-text);
    margin-bottom: 4rem;
    text-align: center;
    font-weight: 800;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(21, 27, 47, 0.6);
    color: var(--light-text);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--gray-text);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 212, 255, 0.05);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-info {
    background: rgba(21, 27, 47, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: 12px;
}

.contact-info h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item strong {
    display: block;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.contact-item a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary);
}

.contact-item p {
    color: var(--light-text);
}

.social {
    display: flex;
    gap: 1rem;
}

.social a {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid var(--primary);
}

.social a:hover {
    background: var(--primary);
    color: var(--dark-bg);
    transform: translateY(-4px);
}

/* FOOTER - Modern Design */
.footer {
    background: linear-gradient(180deg, rgba(10, 14, 39, 0.95) 0%, rgba(21, 27, 47, 0.98) 100%);
    border-top: 2px solid var(--primary);
    color: var(--light-text);
    padding: 5rem 0 1rem;
    margin-top: 8rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

/* Footer Top Section */
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    margin: 0;
}

.footer-desc {
    font-size: 0.95rem;
    color: var(--gray-text);
    line-height: 1.8;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-icon:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(255, 0, 110, 0.2));
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-title {
    font-size: 1rem;
    color: var(--light-text);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    color: var(--gray-text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
    pointer-events: auto !important;
    cursor: pointer;
    padding: 6px 0;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(6px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--gray-text);
}

.contact-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary);
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
    margin: 3rem 0 2rem 0;
}

/* Footer Bottom */
.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2rem 0;
}

.footer-bottom-left,
.footer-bottom-center,
.footer-bottom-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom p {
    color: var(--gray-text);
    font-size: 0.85rem;
    margin: 0;
}

.footer-bottom-center {
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    padding: 0 2rem;
}

.payment-methods {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1rem;
    }

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

    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .footer-bottom-center {
        border: none;
        padding: 0;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        padding: 1rem 0;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .header-content {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .header-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .cta-phone {
        width: 100%;
        text-align: center;
    }

    .nav {
        order: 3;
        width: 100%;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

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

    .services-stack-container {
        height: 500px;
    }

    .service-card-3d {
        max-width: 95%;
        height: auto;
        min-height: 420px;
    }

    .card-front,
    .card-back {
        padding: 1.5rem;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .card-front h3 {
        font-size: 1.3rem;
    }

    .card-back h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .card-back ul {
        font-size: 0.8rem;
        overflow-y: auto;
        max-height: 280px;
    }

    .card-back li {
        margin-bottom: 0.4rem;
    }

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

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

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

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

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

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-links {
        justify-content: center;
    }

    .hero-3d {
        opacity: 0.3;
    }

    .accordion-header {
        padding: 1.5rem;
        font-size: 1rem;
    }

    .accordion-content {
        padding: 1.5rem;
    }

    .pricing-package ul {
        gap: 0.75rem;
    }

    .package-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.75rem;
    }

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

    .btn {
        width: 100%;
    }

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

    .services h2,
    .portfolio h2,
    .pricing h2 {
        font-size: 2rem;
    }

    .hero-3d {
        display: none;
    }
}

/* ===== SERVICES STACKED SCROLL - NEW SECTION ===== */

.services-stacked {
    position: relative;
    background: var(--dark-bg);
    padding: 120px 0;
    overflow: hidden;
}

.stacked-header {
    text-align: center;
    margin-bottom: 20px;
    padding: 0 20px;
}

.stacked-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stacked-header .subtitle {
    font-size: 1.1rem;
    color: var(--gray-text);
    max-width: 500px;
    margin: 0 auto;
}

.stacked-scene {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-2) 100%);
}

.stacked-cards {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.stacked-card {
    position: absolute;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    opacity: 0;
    pointer-events: none;
    transform: translateY(100px);
}

.stacked-card.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.card-visual {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.card-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
    pointer-events: none;
}

.card-content {
    position: relative;
    z-index: 2;
    width: 55%;
    padding: 60px;
    background: rgba(10, 14, 39, 0.8);
    border: 2px solid;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    margin-right: 40px;
    min-height: 400px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.card-tag {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #ffffff;
    text-transform: uppercase;
}

.card-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin: 10px 0;
}

.card-text {
    font-size: 1rem;
    color: #f0f0f0;
    line-height: 1.8;
    margin: 15px 0;
}

.card-label {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 600;
    margin-top: 10px;
    opacity: 0.9;
}

/* RESPONSIVE - Tablet */
@media (max-width: 1024px) {
    .card-content {
        width: 60%;
        padding: 40px;
        margin-right: 30px;
        min-height: 350px;
    }

    .card-title {
        font-size: 1.6rem;
    }

    .card-text {
        font-size: 0.95rem;
    }
}

/* RESPONSIVE - Mobile */
@media (max-width: 640px) {
    .services-stacked {
        padding: 60px 20px;
    }

    .stacked-header h2 {
        font-size: 2rem;
    }

    .stacked-scene {
        height: auto;
        padding: 40px 0;
    }

    .stacked-cards {
        padding: 0;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
        position: relative;
    }

    .stacked-card {
        position: relative !important;
        width: 100% !important;
        height: 350px !important;
        opacity: 1 !important;
        transform: none !important;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        border-radius: 20px;
        overflow: hidden;
        margin-bottom: 20px;
    }

    .card-visual {
        position: absolute !important;
        inset: 0;
        width: 100% !important;
        height: 100% !important;
        border-radius: 20px;
        z-index: 0;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        opacity: 1;
    }

    .card-visual::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
        pointer-events: none;
        z-index: 1;
    }

    .card-visual::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
        pointer-events: none;
        z-index: 2;
        border-radius: 20px;
    }

    .card-content {
        position: absolute !important;
        z-index: 3;
        width: 90% !important;
        height: auto !important;
        max-width: none !important;
        padding: 28px 24px !important;
        background: rgba(7, 17, 46, 0.85) !important;
        border: 1px solid rgba(39, 215, 255, 0.2) !important;
        border-radius: 16px;
        margin: 0 !important;
        min-height: auto;
        display: flex;
        flex-direction: column;
        gap: 12px;
        right: 20px;
        bottom: 20px;
    }

    .card-tag {
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 1.5px;
        color: rgba(255, 255, 255, 0.7);
        text-transform: uppercase;
        order: 3;
        align-self: flex-start;
        opacity: 0.8;
    }

    .card-title {
        font-size: 1.75rem;
        font-weight: 800;
        color: #ffffff;
        line-height: 1.2;
        margin: 0;
        order: 1;
        letter-spacing: -0.5px;
    }

    .card-text {
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.65;
        margin: 0;
        order: 2;
    }

    .card-label {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.7);
        font-weight: 600;
        margin: 0;
        opacity: 0.75;
        order: 4;
        align-self: flex-start;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
}

/* PORTFOLIO VIDEO STYLES */
.portfolio {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-2) 100%);
}

.portfolio h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.portfolio .subtitle {
    font-size: 1.1rem;
    color: var(--gray-text);
    max-width: 600px;
    margin: 0 auto 60px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    width: 100%;
}

.portfolio-video-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 550px;
}

.portfolio-video-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    overflow: hidden;
    min-height: 420px;
}

.video-thumbnail video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.portfolio-video-card:hover .video-thumbnail video {
    opacity: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3) 0%, rgba(255, 0, 110, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.portfolio-video-card:hover .video-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.portfolio-video-card:hover .play-button {
    background: rgba(0, 212, 255, 0.25);
    transform: scale(1.15);
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}

.video-info {
    padding: 8px 15px;
    flex: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.video-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--light-text);
    margin: 0;
    line-height: 1.2;
}

.video-category {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.video-description {
    font-size: 0.8rem;
    color: var(--gray-text);
    margin: 0;
    flex: 0;
    line-height: 1.2;
}

/* VIDEO MODAL */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 1000px;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 100px rgba(0, 212, 255, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.video-modal-content video {
    width: 100%;
    height: auto;
    display: block;
}

.video-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 36px;
    font-weight: bold;
    color: var(--primary);
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1001;
    border: 2px solid var(--primary);
}

.video-modal-close:hover {
    background: var(--primary);
    color: #000;
    transform: scale(1.1);
}

/* RESPONSIVE - Tablet */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }

    .portfolio h2 {
        font-size: 2.5rem;
    }

    .video-modal-content {
        max-width: 90vw;
    }
}

/* RESPONSIVE - Mobile */
@media (max-width: 640px) {
    .portfolio {
        padding: 60px 20px;
    }

    .portfolio h2 {
        font-size: 1.8rem;
    }

    .portfolio .subtitle {
        font-size: 0.95rem;
        margin-bottom: 40px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .video-info {
        padding: 20px;
    }

    .video-title {
        font-size: 1.1rem;
    }

    .video-modal-content {
        max-width: 100%;
        border-radius: 8px;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }
}

/* NEW PRICING STYLES */
.pricing {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-2) 100%);
}

.pricing-section {
    margin-bottom: 100px;
}

.pricing-section:last-child {
    margin-bottom: 0;
}

.pricing-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.pricing-section .subtitle {
    font-size: 1rem;
    color: var(--gray-text);
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 100%;
}

.price-card {
    background: rgba(30, 39, 73, 0.6);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(0, 212, 255, 0.05), transparent);
    pointer-events: none;
    border-radius: 20px;
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.15);
    background: rgba(30, 39, 73, 0.8);
}

.price-card.featured {
    border-color: var(--secondary);
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
    box-shadow: 0 15px 40px rgba(255, 0, 110, 0.15);
}

.price-card.featured:hover {
    box-shadow: 0 25px 70px rgba(255, 0, 110, 0.25);
    transform: translateY(-15px) scale(1.02);
}

.price-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary), #00ff88);
    color: #000;
    padding: 6px 12px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0 20px 0 8px;
    z-index: 10;
    white-space: nowrap;
}

.price-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-text);
    margin: 10px 0 0;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 10px;
}

.original-price {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    background: none !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.5) !important;
    margin-right: 5px;
}

.price-desc {
    font-size: 0.95rem;
    color: var(--gray-text);
    margin: 0;
}

.price-saving {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    background: rgba(0, 255, 136, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    border-left: 3px solid var(--accent);
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-features li {
    font-size: 0.95rem;
    color: var(--light-text);
    padding: 6px 0;
}

.price-features li::before {
    content: '✓ ';
    color: var(--primary);
    font-weight: 700;
    margin-right: 8px;
}

.price-card .btn {
    margin-top: auto;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.price-card .btn:hover {
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .pricing {
        padding: 80px 0;
    }

    .pricing-section {
        margin-bottom: 60px;
    }

    .pricing-section h2 {
        font-size: 1.8rem;
    }

    .pricing-section .subtitle {
        font-size: 0.9rem;
        margin-bottom: 35px;
    }

    .pricing-grid {
        gap: 20px;
    }

    .price-card {
        padding: 30px 20px;
    }

    .price-card h3 {
        font-size: 1.2rem;
    }

    .price-amount {
        font-size: 1.8rem;
    }
}

/* MASCOT CHARACTER */
#pricing-mascot {
    position: absolute;
    top: 50px;
    left: -60px;
    width: 120px;
    height: 140px;
    pointer-events: none;
    z-index: 50;
    filter: drop-shadow(0 8px 20px rgba(0, 212, 255, 0.4));
    transition: transform 0.3s ease, visibility 0.3s ease, opacity 0.3s ease;
    visibility: hidden;
    opacity: 0;
}

#pricing-mascot.mascot-clapping {
    filter: drop-shadow(0 12px 30px rgba(0, 255, 136, 0.6));
}

@keyframes clap-left {
    0%, 100% {
        transform: rotate(-20deg) translateX(0);
    }
    50% {
        transform: rotate(-20deg) translateX(30px);
    }
}

@keyframes clap-right {
    0%, 100% {
        transform: rotate(20deg) translateX(0);
    }
    50% {
        transform: rotate(20deg) translateX(-30px);
    }
}

/* Speech Bubble */
.mascot-speech {
    position: absolute;
    top: -50px;
    right: -40px;
    background: linear-gradient(135deg, var(--primary), #00ff88);
    color: #000;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    display: none;
    z-index: 100;
    animation: speechPop 0.3s ease-out;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.mascot-speech::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 0px solid transparent;
    border-top: 8px solid #00ff88;
}

@keyframes speechPop {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes blink {
    0%, 100% {
        cy: 45;
        r: 8;
    }
    50% {
        cy: 47;
        r: 2;
    }
}

#right-eye circle:first-child {
    animation: blink 3s ease-in-out infinite;
}

#right-eye circle:nth-child(2) {
    animation: blinkPupil 3s ease-in-out infinite;
}

@keyframes blinkPupil {
    0%, 100% {
        cy: 45;
        r: 5;
    }
    50% {
        cy: 48;
        r: 1;
    }
}

/* Mobile adjust */
@media (max-width: 768px) {
    #pricing-mascot {
        width: 80px;
        height: 100px;
        bottom: 60px !important;
    }
}

/* MODERN FOOTER */
.footer-modern {
    position: relative;
    margin-top: 80px;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: #04070d;
    padding: 56px 24px;
    overflow: hidden;
    box-shadow: 0 30px 120px rgba(0, 0, 0, 0.6);
}

.footer-neon-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #06b6d4, #a855f7, #ec4899);
    opacity: 0.7;
}

.footer-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.12), transparent 25%),
                radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.14), transparent 30%);
    pointer-events: none;
}

.footer-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.65fr 0.65fr 0.8fr;
    gap: 30px;
    margin-bottom: 56px;
}

.footer-container > .footer-section:nth-child(3) {
    margin-right: -15px;
}

.footer-container > .footer-section:nth-child(4) {
    margin-left: -15px;
}

.footer-brand h3 {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #fff;
    margin-bottom: 20px;
}

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

.footer-cta-btn {
    padding: 12px 24px;
    border-radius: 9999px;
    background: linear-gradient(135deg, #06b6d4, #a855f7);
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
}

.footer-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(139, 92, 246, 0.6);
}

.footer-section {
    position: relative;
    z-index: 10;
}

.footer-section-title {
    font-size: 11px;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    margin-bottom: 20px;
}

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

.footer-link {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    padding: 8px 0;
    margin: 0;
    pointer-events: auto !important;
    z-index: 10;
    -webkit-user-select: none;
    user-select: none;
}

.footer-link::before {
    content: '';
    width: 4px;
    height: 4px;
    background-color: #06b6d4;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #fff;
}

.footer-link:hover::before {
    width: 12px;
    background-color: #a855f7;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.footer-contact-item {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-contact-item:hover {
    color: var(--primary);
}

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

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-social:hover {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom p {
    margin: 0;
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

.footer-legal-link {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.footer-legal-link:hover {
    color: #fff;
}

/* LEGAL MODALS */

.legal-modal {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.legal-modal.active {
    display: flex;
}

.legal-modal-content {
    background-color: #04070d;
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    max-width: 700px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease;
}

.legal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.legal-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.legal-modal-content h2 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 24px;
    margin-top: 10px;
}

.legal-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 14px;
}

.legal-text p {
    margin-bottom: 16px;
}

.legal-text strong {
    color: var(--primary);
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-modern {
        padding: 40px 20px;
        margin-top: 50px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 12px;
    }

    .legal-modal-content {
        padding: 30px 20px;
        border-radius: 16px;
    }
}

/* HERO BADGE - ICON CAROUSEL */
.hero-badge {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 50;
    transition: all 0.5s ease;
}

.hero-badge.hidden {
    opacity: 0;
    transform: translateY(24px) scale(0.9);
    pointer-events: none;
}

.badge-container {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-border {
    position: absolute;
    inset: 1px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(99, 102, 241, 0.3));
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.45);
    z-index: 1;
}

.badge-spinner {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    animation: spin 3s linear infinite;
    z-index: 2;
}

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

.badge-content {
    position: relative;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    cursor: pointer;
}

.badge-icon {
    width: 24px;
    height: 24px;
    color: white;
    position: absolute;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.badge-icon.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    animation: iconWave 0.6s ease-in-out infinite;
}

@keyframes iconWave {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.1) rotate(-15deg);
    }
    75% {
        transform: scale(1.1) rotate(15deg);
    }
}

.badge-tooltip {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: #000;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.hero-badge:hover .badge-tooltip {
    opacity: 1;
}

/* HERO CONTACT MODAL - BOTTOM UP */
.hero-contact-modal {
    position: fixed;
    bottom: -100vh;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 90vh;
    background: #04070d;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    z-index: 999;
    transition: bottom 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow-y: auto;
    box-shadow: 0 -20px 80px rgba(0, 0, 0, 0.6);
}

.hero-contact-modal.active {
    bottom: 0;
}

/* Close button in modal */
.hero-contact-modal .contact-modal-close {
    position: fixed;
    top: 20px;
    right: 30px;
    font-size: 32px;
    z-index: 1001;
}

.hero-contact-modal .contact-modal-content {
    background: transparent;
    border: none;
    box-shadow: none;
    width: 100%;
    max-width: 100%;
    max-height: none;
    border-radius: 0;
    animation: none;
}

/* CONTACT MODAL */
.contact-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: none;
    overflow-y: auto;
    animation: modalFadeIn 0.3s ease;
}

.contact-modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(4px);
    }
}

.contact-modal-content {
    background-color: #04070d;
    border-radius: 34px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    max-width: 1400px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.contact-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 32px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
    user-select: none;
}

.contact-modal-close:hover {
    color: #00d4ff;
    transform: rotate(90deg);
}

/* MODERN CONTACT SECTION */
.contact-modern {
    padding: 100px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-bg);
}

.contact-wrapper {
    position: relative;
    width: 100%;
    max-width: 1400px;
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    background-color: #04070d;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
}

.contact-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(37, 99, 235, 0.18), transparent 26%),
                radial-gradient(circle at 75% 35%, rgba(168, 85, 247, 0.14), transparent 24%);
    pointer-events: none;
}

.contact-capsule {
    position: absolute;
    left: 50%;
    top: 0;
    width: 176px;
    height: 64px;
    background-color: #0a1624;
    opacity: 0.95;
    transform: translateX(-50%);
    border-radius: 0 0 999px 999px;
    z-index: 10;
}

.contact-capsule-icon {
    position: absolute;
    left: 50%;
    top: 12px;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    font-size: 24px;
    color: rgba(255, 255, 255, 0.7);
    z-index: 11;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-capsule-icon:hover {
    background-color: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.5);
    color: var(--primary);
}

.contact-grid-modern {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.9fr 1.05fr;
    gap: 32px;
    min-height: 540px;
    align-items: center;
    padding: 40px;
}

.contact-left {
    max-width: 360px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-title-left {
    font-size: 44px;
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: #fff;
}

.contact-subtitle-left {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
}

.contact-info-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 20px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
}

.contact-icon {
    font-size: 24px;
}

.btn-detailed-quote {
    margin-top: 16px;
    padding: 12px 32px;
    border-radius: 9999px;
    background: linear-gradient(to right, #9333ea, #4f46e5);
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
}

.btn-detailed-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.4);
}

.contact-center-static {
    position: relative;
    display: flex;
    min-height: 280px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-image-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: rgba(168, 85, 247, 0.3);
    filter: blur(120px);
    border-radius: 50%;
    pointer-events: none;
}

.contact-image-static {
    max-height: 320px;
    width: auto;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.4),
                0 0 80px rgba(168, 85, 247, 0.2);
    position: relative;
    z-index: 2;
}

.contact-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-title-right {
    font-size: 42px;
    font-weight: 500;
    line-height: 1.2;
    text-align: right;
    color: #fff;
}

.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-input {
    height: 56px;
    border-radius: 9999px;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 0 24px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-input:focus {
    outline: none;
    background-color: rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
}

.contact-phone-input {
    display: flex;
    height: 56px;
    align-items: center;
    border-radius: 9999px;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 0 24px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    gap: 8px;
}

.phone-prefix {
    color: #fff;
    white-space: nowrap;
    font-weight: 500;
}

.contact-phone-input input {
    background: transparent;
    width: 100%;
    outline: none;
    border: none;
    color: #fff;
    font-size: 16px;
}

.contact-phone-input input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
}

.contact-kvkk {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    cursor: pointer;
    user-select: none;
}

.btn-send {
    background-color: #fff;
    color: #000;
    padding: 12px 32px;
    border-radius: 9999px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-send:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .contact-grid-modern {
        grid-template-columns: 1fr;
        gap: 48px;
        min-height: auto;
        padding: 40px 30px;
    }

    .contact-center-static {
        min-height: 300px;
    }

    .contact-image-static {
        max-height: 320px;
    }

    .contact-title-left,
    .contact-title-right {
        font-size: 36px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .contact-modern {
        padding: 50px 15px;
    }

    .contact-wrapper {
        border-radius: 20px;
    }

    .contact-grid-modern {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 30px 20px;
    }

    .contact-title-left,
    .contact-title-right {
        font-size: 28px;
    }

    .contact-subtitle-left {
        font-size: 14px;
    }

    .contact-info-left {
        font-size: 18px;
        gap: 16px;
    }

    .contact-left {
        max-width: 100%;
        gap: 20px;
    }

    .contact-center-static {
        min-height: 250px;
    }

    .contact-image-static {
        max-height: 250px;
    }

    .contact-input,
    .contact-phone-input {
        height: 48px;
        padding: 0 16px;
    }

    .contact-form-footer {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .btn-send {
        width: 100%;
    }
}

/* MODERN ABOUT SECTION - NEDEN D-TECH */
.about-modern {
    position: relative;
    margin-top: 80px;
    padding: 40px 24px;
    border-radius: 36px;
    background-color: #05070c;
    overflow: hidden;
}

.about-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.15), transparent 25%),
                radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.18), transparent 30%);
    pointer-events: none;
}

.about-grid-modern {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-title {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 600;
    color: #fff;
    margin-bottom: 24px;
}

.about-title-gradient {
    background: linear-gradient(to right, #06b6d4, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    line-height: 1.6;
    max-width: 520px;
    margin-bottom: 32px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-feature-item {
    display: flex;
    gap: 16px;
    transition: all 0.3s ease;
}

.about-feature-item:hover {
    transform: translateX(8px);
}

.feature-dot {
    width: 12px;
    height: 12px;
    margin-top: 4px;
    border-radius: 50%;
    background: linear-gradient(to right, #06b6d4, #a855f7);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.about-feature-item:hover .feature-dot {
    transform: scale(1.25);
}

.feature-title {
    font-weight: 500;
    color: #fff;
    font-size: 15px;
}

.feature-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

/* RIGHT SECTION - STATS */
.about-right {
    position: relative;
}

.about-stats-box {
    position: relative;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 40px;
}

.stats-blur {
    position: absolute;
    inset: 0;
    border-radius: 30px;
    filter: blur(80px);
    background: linear-gradient(to bottom right, rgba(6, 182, 212, 0.2), rgba(168, 85, 247, 0.3));
    pointer-events: none;
}

.stats-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-card {
    border-radius: 16px;
    background-color: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    text-align: left;
}

.stat-number {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive About */
@media (max-width: 1024px) {
    .about-modern {
        padding: 40px 20px;
    }

    .about-grid-modern {
        gap: 40px;
    }

    .about-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .about-modern {
        margin-top: 50px;
        border-radius: 20px;
        padding: 30px 16px;
    }

    .about-grid-modern {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-title {
        font-size: 28px;
    }

    .about-stats-box {
        padding: 24px;
    }

    .stats-grid {
        gap: 16px;
    }

    .stat-card {
        padding: 16px;
    }

    .stat-number {
        font-size: 24px;
    }
}

/* CART PAGE */
.cart-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #05070c 0%, #0a0e1a 100%);
    padding: 100px 20px 60px;
    margin-top: 0;
}

.cart-page.hidden {
    display: none;
}

.cart-container {
    max-width: 1000px;
    margin: 0 auto;
}

.cart-header {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-header h1 {
    font-size: 42px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.btn-back {
    background: none;
    border: 2px solid #00d4ff;
    color: #00d4ff;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateX(-4px);
}

.cart-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

.cart-items-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    min-height: 400px;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.cart-item:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.cart-item-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 212, 255, 0.1);
    padding: 5px 10px;
    border-radius: 6px;
}

.quantity-btn {
    background: none;
    border: none;
    color: #00d4ff;
    cursor: pointer;
    font-size: 18px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.quantity-btn:hover {
    transform: scale(1.2);
}

.quantity-input {
    width: 40px;
    text-align: center;
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.cart-item-price {
    font-size: 18px;
    font-weight: 600;
    color: #00d4ff;
    min-width: 100px;
    text-align: right;
}

.remove-item {
    background: none;
    border: none;
    color: #ff006e;
    cursor: pointer;
    font-size: 20px;
    transition: transform 0.2s;
}

.remove-item:hover {
    transform: scale(1.2);
}

.cart-summary {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(10px);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.cart-summary h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 20px 0;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.summary-item.total {
    padding-top: 15px;
    border-top: 2px solid rgba(0, 212, 255, 0.2);
    margin-bottom: 25px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.summary-item.total span:last-child {
    color: #00d4ff;
}

/* PAYMENT PAGE */
.payment-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #05070c 0%, #0a0e1a 100%);
    padding: 100px 20px 60px;
    margin-top: 0;
}

.payment-page.hidden {
    display: none;
}

.payment-container {
    max-width: 900px;
    margin: 0 auto;
}

.payment-header {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.payment-header h1 {
    font-size: 42px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.payment-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

.payment-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.form-section {
    margin-bottom: 30px;
}

.form-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #00d4ff;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 12px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    background: rgba(0, 212, 255, 0.1);
    border-color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.card-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.card-details .form-input {
    margin-bottom: 0;
}

.terms-agreement {
    margin-bottom: 30px;
    padding: 15px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 8px;
}

.terms-agreement label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.terms-agreement input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #00d4ff;
}

.payment-summary {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(10px);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.payment-summary h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 20px 0;
}

.order-summary-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    max-height: 300px;
    overflow-y: auto;
    padding-bottom: 10px;
}

.summary-item-order {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 10px;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.8);
}

.summary-item-order .item-name {
    flex: 1;
}

.summary-item-order .item-price {
    color: #00d4ff;
    font-weight: 600;
}

.summary-total {
    padding-top: 15px;
    border-top: 2px solid rgba(0, 212, 255, 0.2);
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.summary-total span:last-child {
    color: #00d4ff;
}

/* Toast Notification Animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Cart & Payment */
@media (max-width: 1024px) {
    .cart-content,
    .payment-content {
        grid-template-columns: 1fr;
    }

    .cart-summary,
    .payment-summary {
        position: static;
    }

    .payment-form {
        order: -1;
    }
}

@media (max-width: 768px) {
    .cart-page,
    .payment-page {
        padding: 80px 16px 40px;
    }

    .cart-header,
    .payment-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-header h1,
    .payment-header h1 {
        font-size: 32px;
    }

    .cart-items-section {
        padding: 20px;
    }

    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .cart-item-price {
        align-self: flex-end;
    }

    .form-input {
        font-size: 16px;
    }
}

/* ABOUT - SCROLL REVEAL WITH MASKING */
.about-scroll-reveal {
    padding: 100px 0;
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

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

/* LEFT SIDE */
.about-scroll-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 20;
}

.about-label {
    font-size: 0.85rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    opacity: 0;
}

.about-scroll-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--light-text);
}

.about-scroll-title .title-line {
    display: block;
    opacity: 0;
    transform: translateX(-40px);
}

.about-scroll-description {
    font-size: 1.05rem;
    color: var(--gray-text);
    line-height: 1.8;
    opacity: 0;
    transform: translateY(20px);
}

.about-scroll-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-scroll-feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    opacity: 0;
    transform: translateX(-30px);
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 4px;
    font-weight: bold;
    min-width: 24px;
}

.feature-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--light-text);
    margin-bottom: 4px;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--gray-text);
}

.about-scroll-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
}

.stat-num {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-txt {
    font-size: 0.85rem;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* RIGHT SIDE - VISUAL WITH LAYERED REVEAL & PARTICLES */
.about-scroll-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
}

.particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-visual-layers {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    border-radius: 12px;
    top: 0;
    left: 0;
    z-index: 10;
}

.visual-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    z-index: 1;
}

.visual-layer[data-layer="0"] {
    z-index: 4;
}

.visual-layer[data-layer="1"] {
    z-index: 3;
}

.visual-layer[data-layer="2"] {
    z-index: 2;
}

.visual-layer[data-layer="3"] {
    z-index: 1;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-scroll-title {
        font-size: 2.4rem;
    }

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

@media (max-width: 768px) {
    .about-scroll-reveal {
        padding: 60px 0;
    }

    .about-scroll-title {
        font-size: 2rem;
    }

    .about-scroll-description {
        font-size: 0.95rem;
    }

    .about-scroll-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    .stat-num {
        font-size: 1.4rem;
    }
}

/* MOBILE LANGUAGE SWITCHER */
.lang-switcher-mobile {
    display: none;
    position: relative;
}

.lang-toggle {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--border);
    color: var(--gray-text);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

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

.lang-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 14, 39, 0.98);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-top: 8px;
    min-width: 150px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 101;
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.2);
}

.lang-dropdown.active {
    max-height: 300px;
}

.lang-dropdown .lang-btn {
    width: 100%;
    padding: 12px 16px;
    text-align: left;
    border: none;
    background: transparent;
    color: var(--gray-text);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

.lang-dropdown .lang-btn:hover {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary);
}

.lang-dropdown .lang-btn.active {
    background: linear-gradient(135deg, var(--primary), #0099ff);
    color: var(--dark-bg);
}

/* MOBILE HAMBURGER MENU */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
    padding: 10px;
}

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

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

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

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

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .lang-switcher-mobile {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        z-index: 98;
        background: transparent;
        display: block;
    }

    .lang-toggle {
        display: none;
    }

    .lang-dropdown {
        position: static;
        background: rgba(10, 14, 39, 0.98);
        border: none;
        border-bottom: 1px solid var(--border);
        border-radius: 0;
        margin: 0;
        max-height: 130px;
        overflow-y: auto;
        box-shadow: none;
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .lang-dropdown .lang-btn {
        border-bottom: 1px solid var(--border);
    }

    .lang-dropdown .lang-btn:last-child {
        border-bottom: none;
    }

    .lang-switcher {
        display: none;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(10, 14, 39, 0.98);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 99;
    }

    .nav.active {
        max-height: 400px;
    }

    .nav a {
        padding: 15px 20px;
        border-bottom: 1px solid var(--border);
        text-align: left;
    }

    .header-content {
        gap: 8px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .header-actions {
        gap: 8px;
        flex-wrap: nowrap;
        align-items: center;
        margin-left: auto;
    }

    .cta-phone {
        display: none;
    }

    .lang-btn {
        padding: 5px 8px;
        font-size: 0.75rem;
    }

    .cart-icon-btn {
        font-size: 0.9rem;
        padding: 5px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 10px 0;
    }

    .logo {
        font-size: 1.3rem;
    }

    .hamburger {
        gap: 4px;
    }

    .hamburger span {
        width: 20px;
        height: 2.5px;
    }

    .lang-btn {
        padding: 4px 8px;
        font-size: 0.75rem;
    }
}

/* CREATE SECTION - FLOATING CARDS */
.dtech-simple-hero {
    background: linear-gradient(135deg, #02020a, #070316);
    padding: 100px 40px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    overflow: hidden;
}

.dtech-wrap {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.dtech-left h1 {
    font-size: 110px;
    margin: 0;
    color: white;
    font-weight: 800;
    letter-spacing: -2px;
}

.dtech-left p {
    color: #aaa;
    font-size: 20px;
    max-width: 400px;
    line-height: 1.6;
}

.dtech-mini {
    color: white;
    letter-spacing: 4px;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.dtech-right {
    position: relative;
    height: 500px;
    background: radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0px, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 0, 110, 0.1) 0px, transparent 50%),
                linear-gradient(135deg, rgba(2, 2, 10, 0.4), rgba(7, 3, 22, 0.4));
    border-radius: 20px;
    overflow: hidden;
}

.create-particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* KARTLAR */
.card {
    position: absolute;
    width: 360px;
    padding: 30px;
    border-radius: 20px;
    background: rgba(20, 15, 40, 0.9);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: 0.3s;
    z-index: 2;
    backdrop-filter: blur(10px);
}

/* KONUM */
.c1 {
    top: 40px;
    left: 60px;
    transform: rotate(-6deg);
}

.c2 {
    top: 180px;
    left: 120px;
    transform: rotate(-2deg);
}

.c3 {
    top: 330px;
    left: 80px;
    transform: rotate(5deg);
}

/* FLOAT ANİMASYON */
.c1 {
    animation: float1 5s ease-in-out infinite;
}

.c2 {
    animation: float2 6s ease-in-out infinite;
}

.c3 {
    animation: float3 5.5s ease-in-out infinite;
}

@keyframes float1 {
    0% { transform: rotate(-6deg) translateY(0) translateX(-5px); }
    25% { transform: rotate(-6deg) translateY(-20px) translateX(0px); }
    50% { transform: rotate(-6deg) translateY(-25px) translateX(5px); }
    75% { transform: rotate(-6deg) translateY(-15px) translateX(0px); }
    100% { transform: rotate(-6deg) translateY(0) translateX(-5px); }
}

@keyframes float2 {
    0% { transform: rotate(-2deg) translateY(0) translateX(5px); }
    25% { transform: rotate(-2deg) translateY(-25px) translateX(0px); }
    50% { transform: rotate(-2deg) translateY(-30px) translateX(-5px); }
    75% { transform: rotate(-2deg) translateY(-18px) translateX(0px); }
    100% { transform: rotate(-2deg) translateY(0) translateX(5px); }
}

@keyframes float3 {
    0% { transform: rotate(5deg) translateY(0) translateX(-3px); }
    25% { transform: rotate(5deg) translateY(-22px) translateX(0px); }
    50% { transform: rotate(5deg) translateY(-28px) translateX(3px); }
    75% { transform: rotate(5deg) translateY(-16px) translateX(0px); }
    100% { transform: rotate(5deg) translateY(0) translateX(-3px); }
}

/* TEXT */
.card h3 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
}

.card span {
    color: #ccc;
    font-size: 14px;
}

.c2 p {
    font-size: 22px;
    margin: 0;
}

.c2 span {
    color: #c86cff;
}

@media (max-width: 1024px) {
    .dtech-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .dtech-left h1 {
        font-size: 70px;
    }

    .dtech-right {
        height: 400px;
    }
}

@media (max-width: 640px) {
    .dtech-simple-hero {
        padding: 60px 20px;
    }

    .dtech-wrap {
        grid-template-columns: 1fr;
    }

    .dtech-left h1 {
        font-size: 48px;
    }

    .dtech-left p {
        font-size: 16px;
    }

    .dtech-right {
        height: 300px;
    }

    .card {
        width: 280px;
        padding: 20px;
    }

    .c1 {
        top: 20px;
        left: 20px;
    }

    .c2 {
        top: 120px;
        left: 40px;
        width: 250px;
    }

    .c3 {
        top: 240px;
        left: 15px;
    }

    .card h3 {
        font-size: 36px;
    }

    .c2 p {
        font-size: 16px;
    }
}

/* MOBILE LANGUAGE SELECTOR */
.mobile-lang-wrapper {
    position: relative;
    margin-top: 15px;
    padding: 12px 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-lang-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    padding: 0;
    width: 100%;
    text-align: left;
}

.mobile-lang-menu {
    display: none;
    flex-direction: column;
    gap: 0;
    margin-top: 10px;
    background: rgba(4, 12, 42, 0.95);
    border: 1px solid rgba(39, 215, 255, 0.15);
    border-radius: 12px;
    overflow: hidden;
}

.mobile-lang-wrapper.active .mobile-lang-menu {
    display: flex;
}

.mobile-lang-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 14px;
    cursor: pointer;
    text-align: left;
    font-size: 14px;
    transition: 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-lang-item:last-child {
    border-bottom: none;
}

.mobile-lang-item:hover,
.mobile-lang-item.active {
    background: rgba(39, 215, 255, 0.1);
    color: #fff;
}
