/* ================================
   GM Enerji Otomasyon - Modern CSS
   ================================ */

/* ---- CSS Variables ---- */
:root {
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-light: #38bdf8;
    --primary-glow: rgba(14, 165, 233, 0.3);
    --accent: #06d6a0;
    --accent-dark: #05b384;
    --dark: #0b1121;
    --dark-2: #111827;
    --dark-3: #1e293b;
    --dark-4: #334155;
    --gray: #94a3b8;
    --light: #e2e8f0;
    --white: #f8fafc;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    --gradient-text: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
    --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-full: 9999px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background: var(--dark);
    color: var(--light);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: default;
}

::selection {
    background: var(--primary);
    color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

/* ---- Preloader ---- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, #0d1a2d 0%, #070e1a 50%, #030810 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    overflow: hidden;
}

#preloader-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    position: relative;
    width: 600px;
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Energy Pulse Rings */
.energy-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
    animation: energyPulse 2.5s ease-in-out infinite;
}

.energy-ring-1 {
    width: 520px;
    height: 520px;
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.15), inset 0 0 20px rgba(14, 165, 233, 0.05);
    animation-delay: 0s;
}

.energy-ring-2 {
    width: 440px;
    height: 440px;
    border-color: rgba(6, 214, 160, 0.25);
    box-shadow: 0 0 15px rgba(6, 214, 160, 0.1), inset 0 0 15px rgba(6, 214, 160, 0.05);
    animation-delay: 0.4s;
}

.energy-ring-3 {
    width: 360px;
    height: 360px;
    border-color: rgba(56, 189, 248, 0.2);
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.1), inset 0 0 12px rgba(56, 189, 248, 0.05);
    animation-delay: 0.8s;
}

@keyframes energyPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.4;
        border-color: rgba(14, 165, 233, 0.3);
    }
    25% {
        transform: scale(1.08) rotate(90deg);
        opacity: 1;
        border-color: rgba(14, 165, 233, 0.6);
        box-shadow: 0 0 30px rgba(14, 165, 233, 0.3), inset 0 0 30px rgba(14, 165, 233, 0.1);
    }
    50% {
        transform: scale(1) rotate(180deg);
        opacity: 0.5;
        border-color: rgba(6, 214, 160, 0.4);
    }
    75% {
        transform: scale(1.05) rotate(270deg);
        opacity: 0.9;
        border-color: rgba(56, 189, 248, 0.5);
        box-shadow: 0 0 25px rgba(56, 189, 248, 0.2), inset 0 0 25px rgba(56, 189, 248, 0.08);
    }
}

/* Electric Arcs SVG */
.electric-arcs {
    position: absolute;
    width: 600px;
    height: 600px;
    animation: arcRotate 8s linear infinite;
}

@keyframes arcRotate {
    to { transform: rotate(360deg); }
}

/* Logo Wrapper */
.loader-logo-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: logoFloat 3s ease-in-out infinite;
    width: 320px;
    text-align: center;
}

.loader-logo {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(14, 165, 233, 0.4)) drop-shadow(0 0 40px rgba(14, 165, 233, 0.2));
    position: relative;
    z-index: 2;
    display: block;
    margin: 0 auto;
}

.logo-glow {
    position: absolute;
    width: 350px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, rgba(6, 214, 160, 0.08) 40%, transparent 70%);
    animation: glowPulse 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes logoFloat {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-8px); }
}

@keyframes glowPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

/* Loading Progress Bar */
.loader-progress {
    position: absolute;
    bottom: -80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 350px;
}

.loader-bar {
    width: 100%;
    height: 3px;
    background: rgba(14, 165, 233, 0.15);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.loader-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 3px;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.5);
}

.loader-percent {
    font-family: var(--font-display);
    font-size: 13px;
    color: var(--primary-light);
    letter-spacing: 3px;
    text-transform: uppercase;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ---- Custom Cursor ---- */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.15s ease;
    transform: translate(-50%, -50%);
}

.cursor-outline {
    position: fixed;
    width: 35px;
    height: 35px;
    border: 2px solid var(--primary-glow);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99997;
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
    transform: translate(-50%, -50%);
}

.cursor-hover .cursor-outline {
    width: 50px;
    height: 50px;
    border-color: var(--primary);
    background: rgba(14, 165, 233, 0.1);
}

/* ---- Gradient Text ---- */
.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Section Labels & Titles ---- */
.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.section-label.center {
    justify-content: center;
}

.label-line {
    width: 40px;
    height: 2px;
    background: var(--gradient);
    border-radius: 2px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
}

.section-title.center {
    text-align: center;
}

.section-desc {
    text-align: center;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-main);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 8px 32px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px var(--primary-glow);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--dark-4);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(14, 165, 233, 0.1);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #22c55e;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ============================
   NAVBAR
   ============================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(11, 17, 33, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.logo-icon {
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-icon img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.logo-sub {
    font-size: 0.7rem;
    color: var(--gray);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 18px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray);
    border-radius: var(--radius-full);
    position: relative;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link.active {
    background: rgba(14, 165, 233, 0.15);
    color: var(--primary-light);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: var(--radius-full);
    color: var(--primary-light);
    font-size: 0.85rem;
    font-weight: 600;
}

.nav-phone:hover {
    background: rgba(14, 165, 233, 0.2);
    border-color: var(--primary);
}

.nav-phone i {
    font-size: 0.8rem;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Nav Contact Icons */
.nav-contact-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 24px;
}

.nav-contact-icon {
    position: relative;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.08);
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 8px;
    color: var(--primary);
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-contact-icon:hover {
    background: rgba(0, 255, 255, 0.15);
    border-color: rgba(0, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
}

.nav-contact-icon::after {
    content: attr(data-tooltip);
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(11, 17, 33, 0.95);
    border: 1px solid rgba(0, 255, 255, 0.2);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    font-weight: 500;
}

.nav-contact-icon::before {
    content: '';
    position: absolute;
    top: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid rgba(11, 17, 33, 0.95);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 11;
}

.nav-contact-icon:hover::after,
.nav-contact-icon:hover::before {
    opacity: 1;
    visibility: visible;
}

.nav-whatsapp {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.2);
    color: #25d366;
}

.nav-whatsapp:hover {
    background: rgba(37, 211, 102, 0.2);
    border-color: rgba(37, 211, 102, 0.4);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* Tablet adjustments */
@media (max-width: 1024px) {
    .nav-contact-icons {
        gap: 8px;
        margin-left: 16px;
    }
    
    .nav-contact-icon {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .nav-contact-icon::after {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
}

/* Hide contact icons on mobile */
@media (max-width: 768px) {
    .nav-contact-icons {
        display: none;
    }
}

/* ============================
   HERO
   ============================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
    background: transparent;
}

/* Global fixed canvas background */
.global-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

#hero-canvas {
    pointer-events: auto;
    cursor: crosshair;
    z-index: 0;
}

#hero-canvas:active {
    cursor: pointer;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    pointer-events: auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 32px;
    animation: fadeInDown 0.8s ease;
}

.hero-badge i {
    font-size: 0.8rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--white);
}

.hero-line {
    display: block;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--gray);
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--dark-4);
}

/* Hero Sliders */
.hero-slider {
    position: absolute;
    top: 140px;
    width: 180px;
    height: 550px;
    overflow: hidden;
    z-index: 1;
    border-radius: var(--radius);
    background: rgba(11, 17, 33, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(14, 165, 233, 0.1);
    pointer-events: auto;
}

.hero-slider-left {
    left: 40px;
}

.hero-slider-right {
    right: 40px;
}

.hero-slider-track {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px 0;
}

.hero-slider-left .hero-slider-track {
    animation: slideUp 30s linear infinite;
}

.hero-slider-right .hero-slider-track {
    animation: slideDown 30s linear infinite;
}

.hero-slide {
    position: relative;
    width: 100%;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--dark-2);
}

.hero-slide img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.hero-slide:hover img {
    transform: scale(1.08);
}

.slide-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
}

@keyframes slideUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(calc(-50% - 8px)); }
}

@keyframes slideDown {
    0% { transform: translateY(calc(-50% - 8px)); }
    100% { transform: translateY(0); }
}

/* Hide sliders on smaller screens */
@media (max-width: 1200px) {
    .hero-slider {
        width: 140px;
        height: 450px;
        top: 120px;
    }
    .hero-slider-left {
        left: 20px;
    }
    .hero-slider-right {
        right: 20px;
    }
    .hero-slide img {
        height: 110px;
    }
    .slide-label {
        font-size: 0.7rem;
        padding: 8px 10px;
    }
}

@media (max-width: 1024px) {
    .hero-slider {
        display: none;
    }
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    text-align: center;
    pointer-events: auto;
}

.hero-scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--dark-4);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.mouse-wheel {
    width: 3px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(12px); }
}

/* Floating Shapes */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
    filter: blur(40px);
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -80px;
    right: -80px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    bottom: -50px;
    left: -50px;
    animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--primary-light);
    top: 40%;
    left: 5%;
    animation: float 12s ease-in-out infinite;
}

.shape-4 {
    width: 250px;
    height: 250px;
    background: var(--accent);
    top: 25%;
    right: 10%;
    animation: float 9s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================
   ABOUT
   ============================ */
.about {
    background: rgba(17, 24, 39, 0.55);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about-visual {
    position: relative;
}

.about-content {
    text-align: center;
}

.about-content .section-label {
    justify-content: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient);
    border-radius: calc(var(--radius) + 2px);
    z-index: -1;
    opacity: 0.5;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-experience {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--gradient);
    padding: 24px 32px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    z-index: 2;
}

.exp-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.exp-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.about-small-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.about-small-img {
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.about-small-img img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-small-img:hover img {
    transform: scale(1.1);
}

.about-text {
    color: var(--gray);
    margin-bottom: 16px;
    font-size: 1rem;
    text-align: center;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    gap: 14px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.about-feature:hover {
    background: rgba(14, 165, 233, 0.05);
    border-color: rgba(14, 165, 233, 0.15);
    transform: translateY(-2px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.about-feature h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}

.about-feature p {
    font-size: 0.8rem;
    color: var(--gray);
}

/* Activity Areas */
.activity-areas {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.activity-title {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.activity-title i {
    color: var(--primary);
    font-size: 1.6rem;
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.activity-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.4s ease;
    overflow: hidden;
}

.activity-card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.activity-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.activity-card:hover .activity-card-glow {
    opacity: 1;
}

.activity-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(0, 200, 255, 0.1));
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.activity-icon i {
    font-size: 1.8rem;
    color: var(--primary);
    transition: transform 0.4s ease;
}

.activity-card:hover .activity-icon {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.activity-card:hover .activity-icon i {
    transform: rotate(360deg);
}

.activity-card h4 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 600;
}

.activity-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.activity-list li {
    font-size: 0.9rem;
    color: var(--gray);
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.activity-list li i {
    color: var(--primary);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.activity-list li:hover {
    color: var(--white);
    padding-left: 5px;
}

.activity-list li:hover i {
    transform: translateX(3px);
}

/* ============================
   SERVICES
   ============================ */
.services {
    background: rgba(11, 17, 33, 0.5);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.service-card {
    position: relative;
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    transition: var(--transition);
    overflow: hidden;
    cursor: pointer;
}

/* Service Image Slider */
.service-image-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.service-slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: none;
}

.service-slider-track img {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.8s ease-in-out, transform 0.5s ease;
}

.service-slider-track img.active {
    opacity: 0.35;
}

.service-card:hover .service-slider-track img.active {
    opacity: 0.5;
    transform: scale(1.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(11, 17, 33, 0.85) 0%, 
        rgba(11, 17, 33, 0.9) 50%,
        rgba(11, 17, 33, 0.95) 100%);
    z-index: 0;
    pointer-events: none;
}

.service-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-card:hover .service-card-glow {
    opacity: 0.15;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(14, 165, 233, 0.2);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 32px var(--primary-glow);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.service-tags span {
    padding: 4px 12px;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary-light);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-light);
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* ============================
   STATS
   ============================ */
.stats {
    background: rgba(17, 24, 39, 0.55);
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#stats-canvas {
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 40px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(14, 165, 233, 0.2);
}

.stat-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 8px 32px var(--primary-glow);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    display: inline;
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-light);
    display: inline;
}

.stat-label {
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 8px;
}

/* ============================
   WHY US
   ============================ */
.why-us {
    background: rgba(11, 17, 33, 0.5);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.why-card {
    position: relative;
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    transition: var(--transition);
    overflow: hidden;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: rgba(14, 165, 233, 0.2);
    background: rgba(14, 165, 233, 0.03);
}

.why-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
}

.why-icon {
    width: 56px;
    height: 56px;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-light);
    margin-bottom: 24px;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 32px var(--primary-glow);
}

.why-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.why-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================
   CTA
   ============================ */
.cta {
    background: rgba(11, 17, 33, 0.5);
    padding: 60px 0;
}

.cta-card {
    position: relative;
    padding: 80px 60px;
    background: var(--gradient);
    border-radius: calc(var(--radius) * 2);
    overflow: hidden;
    text-align: center;
}

.cta-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
    animation: float 8s ease-in-out infinite;
}

.cta-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -80px;
    left: -40px;
    animation: float 10s ease-in-out infinite reverse;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.cta-content h2 .gradient-text {
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: white;
    color: var(--primary-dark);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.cta .btn-primary:hover {
    background: var(--white);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}



/* ============================
   FOOTER
   ============================ */
.footer {
    background: rgba(17, 24, 39, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--gradient);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--gray);
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
    padding-left: 0;
}

.footer-links ul li a:hover {
    color: var(--primary-light);
    padding-left: 8px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--gray);
    font-size: 0.9rem;
}

.footer-contact-item i {
    color: var(--primary-light);
    font-size: 0.85rem;
    width: 16px;
    text-align: center;
}

.footer-contact-item a {
    color: var(--gray);
}

.footer-contact-item a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--dark-4);
    font-size: 0.85rem;
}

/* ============================
   BACK TO TOP
   ============================ */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border: none;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 8px 32px var(--primary-glow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
}

/* ============================
   BOTTOM FLOATING BUTTONS (Desktop: Orbital)
   ============================ */
.bottom-contact-bar {
    position: fixed;
    bottom: 40px;
    left: 40px;
    width: 160px;
    height: 160px;
    z-index: 100;
    display: none; /* Hidden on desktop, shown on mobile */
}

/* Center phone button */
.bottom-bar-item.bottom-bar-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.bottom-bar-center .bottom-bar-icon {
    width: 66px;
    height: 66px;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    box-shadow: 0 6px 30px rgba(59, 130, 246, 0.5), 0 0 60px rgba(59, 130, 246, 0.15);
    animation: centerPulse 2.5s ease-in-out infinite;
}

@keyframes centerPulse {
    0%, 100% { box-shadow: 0 6px 30px rgba(59, 130, 246, 0.4); }
    50% { box-shadow: 0 6px 45px rgba(59, 130, 246, 0.7); }
}

/* Orbiting wrapper */
.bottom-bar-item.bottom-bar-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    z-index: 4;
}

/* Each orbit item is placed via CSS custom property --angle */
.bottom-bar-orbit .bottom-bar-icon {
    position: absolute;
    transform: translate(-50%, -50%);
}

/* Orbit animation - each item rotates on a circle */
.orbit-track {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
}

.orbit-track-1 {
    animation: orbitSpin 12s linear infinite;
}
.orbit-track-2 {
    animation: orbitSpin 12s linear infinite;
    animation-delay: -4s;
}
.orbit-track-3 {
    animation: orbitSpin 12s linear infinite;
    animation-delay: -8s;
}

@keyframes orbitSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.orbit-track .bottom-bar-item {
    position: absolute;
    left: 70px;
    top: -24px;
}

/* Counter-rotate icon so it stays upright */
.orbit-track-1 .bottom-bar-icon {
    animation: counterSpin 12s linear infinite;
}
.orbit-track-2 .bottom-bar-icon {
    animation: counterSpin 12s linear infinite;
    animation-delay: -4s;
}
.orbit-track-3 .bottom-bar-icon {
    animation: counterSpin 12s linear infinite;
    animation-delay: -8s;
}

@keyframes counterSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(-360deg); }
}

/* Orbit ring visual */
.bottom-contact-bar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    transform: translate(-50%, -50%);
    border: 1.5px solid rgba(14, 165, 233, 0.2);
    border-radius: 50%;
    pointer-events: none;
    animation: ringPulse 4s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.08), inset 0 0 20px rgba(14, 165, 233, 0.05);
}

@keyframes ringPulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.05); }
}

/* Shared icon styles */
.bottom-bar-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    position: relative;
}

.bottom-bar-item:hover .bottom-bar-icon {
    transform: translate(-50%, -50%) scale(1.25) !important;
    z-index: 10;
}

.bottom-bar-center:hover .bottom-bar-icon {
    transform: translate(-50%, -50%) scale(1.2) !important;
}

/* Tooltip on hover */
.bottom-bar-text {
    display: flex;
    flex-direction: column;
    background: rgba(11, 17, 33, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 10px;
    pointer-events: none;
    opacity: 0;
    transform: translateX(10px) scale(0.8);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    position: absolute;
    left: calc(100% + 12px);
    top: 50%;
    margin-top: -20px;
    z-index: 20;
}

.bottom-bar-item:hover .bottom-bar-text {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}

.bottom-bar-label {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--primary-light);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.bottom-bar-value {
    font-size: 0.78rem;
    color: var(--white);
    font-weight: 500;
}

/* Individual colors */
/* Location */
.orbit-track-1 .bottom-bar-icon {
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    box-shadow: 0 4px 24px rgba(14, 165, 233, 0.5), 0 0 40px rgba(14, 165, 233, 0.12);
}
.orbit-track-1 .bottom-bar-item:hover .bottom-bar-icon {
    box-shadow: 0 6px 30px rgba(14, 165, 233, 0.7);
}

/* Email */
.orbit-track-2 .bottom-bar-icon {
    background: linear-gradient(135deg, #06b6d4, #14b8a6);
    box-shadow: 0 4px 24px rgba(6, 182, 212, 0.5), 0 0 40px rgba(6, 182, 212, 0.12);
}

/* WhatsApp */
.orbit-track-3 .bottom-bar-icon {
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.5), 0 0 40px rgba(37, 211, 102, 0.12);
}

/* Entrance animation */
.bottom-contact-bar {
    animation: orbitGroupIn 1s cubic-bezier(0.34, 1.56, 0.64, 1) 1.5s both;
}

@keyframes orbitGroupIn {
    from { opacity: 0; transform: scale(0.3); }
    to { opacity: 1; transform: scale(1); }
}

/* ============================
   MOBILE: Bottom Tab Bar
   ============================ */
@media (max-width: 768px) {
    .bottom-contact-bar {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        top: auto !important;
        width: 100% !important;
        height: 64px !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: stretch !important;
        background: rgba(11, 17, 33, 0.97) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
        box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5) !important;
        border-radius: 0 !important;
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        padding: 0 !important;
        gap: 0 !important;
    }

    .bottom-contact-bar::before {
        display: none !important;
    }

    /* Flatten orbit tracks */
    .orbit-track,
    .orbit-track-1,
    .orbit-track-2,
    .orbit-track-3 {
        position: static !important;
        display: contents !important;
        animation: none !important;
        transform: none !important;
        width: auto !important;
        height: auto !important;
    }

    /* All items become equal flex children */
    .bottom-bar-item,
    .bottom-bar-item.bottom-bar-center,
    .bottom-bar-item.bottom-bar-orbit,
    .bottom-bar-item.bottom-bar-whatsapp {
        position: static !important;
        transform: none !important;
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 3px !important;
        padding: 8px 4px !important;
        border-right: 1px solid rgba(255, 255, 255, 0.06) !important;
        text-decoration: none !important;
        width: auto !important;
        height: auto !important;
        left: auto !important;
        top: auto !important;
        margin: 0 !important;
    }

    .bottom-bar-item:last-of-type,
    .orbit-track:last-child .bottom-bar-item {
        border-right: none !important;
    }

    .bottom-bar-icon,
    .bottom-bar-center .bottom-bar-icon,
    .bottom-bar-orbit .bottom-bar-icon,
    .orbit-track .bottom-bar-icon {
        width: 36px !important;
        height: 36px !important;
        font-size: 0.95rem !important;
        animation: none !important;
        transform: none !important;
        position: static !important;
        flex-shrink: 0 !important;
    }

    .bottom-bar-text {
        position: static !important;
        background: none !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        display: flex !important;
        align-items: center !important;
        left: auto !important;
        top: auto !important;
        white-space: nowrap !important;
    }

    .bottom-bar-label {
        display: none !important;
    }

    .bottom-bar-value {
        font-size: 0.6rem !important;
        color: var(--gray) !important;
        text-align: center !important;
    }

    .footer {
        padding-bottom: 80px !important;
    }

    .back-to-top {
        bottom: 80px !important;
        right: 16px !important;
    }
}

/* ============================
   AOS (Animate On Scroll) Custom
   ============================ */
[data-aos] {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="fade-up"] {
    transform: translateY(40px);
}

[data-aos="fade-down"] {
    transform: translateY(-40px);
}

[data-aos="fade-right"] {
    transform: translateX(-40px);
}

[data-aos="fade-left"] {
    transform: translateX(40px);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: none;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .activity-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--dark-2);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 40px;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(255, 255, 255, 0.06);
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 12px 0;
        width: 100%;
    }

    .nav-phone span {
        display: none;
    }

    .nav-phone {
        padding: 10px;
        border-radius: 12px;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-desc {
        font-size: 1rem;
    }

    .hero-stats-row {
        gap: 24px;
    }

    .hero-stat-divider {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .activity-title {
        font-size: 1.5rem;
    }

    .activity-card {
        padding: 22px;
    }

    .activity-icon {
        width: 50px;
        height: 50px;
    }

    .activity-icon i {
        font-size: 1.5rem;
    }

    .activity-grid {
        grid-template-columns: 1fr;
    }

    .cta-card {
        padding: 60px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .section {
        padding: 80px 0;
    }

    .about-experience {
        bottom: -20px;
        right: -10px;
        padding: 16px 24px;
    }

    .exp-number {
        font-size: 1.8rem;
    }

    /* Hide custom cursor on mobile */
    .cursor-dot,
    .cursor-outline {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .hero-stat-number {
        font-size: 1.4rem;
    }
}

/* ---- Print Styles ---- */
/* ---- Logo Grid (Referanslar & Tedarikçiler) ---- */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.logo-card {
    background: var(--dark-2);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 110px;
    transition: var(--transition);
}

.logo-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
    transform: translateY(-4px);
}

.logo-card img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter 0.3s ease;
}

.logo-card:hover img {
    filter: grayscale(0%);
}

@media print {
    .navbar,
    .back-to-top,
    .whatsapp-float,
    .hero-scroll,
    .cursor-dot,
    .cursor-outline,
    #preloader {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }
}
