/* ============================================
   AquaArt Moldova - Premium Auto Detailing
   Modern Dark Theme with Blue Accents
   ============================================ */

/* CSS Variables */
:root {
    /* Primary Colors */
    --primary-blue: #0066ff;
    --primary-blue-light: #3385ff;
    --primary-blue-dark: #0052cc;
    --primary-cyan: #00d4ff;
    
    /* Dark Theme */
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-tertiary: #1a1a25;
    --bg-card: #15151f;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #6b6b7b;
    
    /* Accent & Effects */
    --glow-blue: rgba(0, 102, 255, 0.5);
    --glow-cyan: rgba(0, 212, 255, 0.5);
    --gradient-blue: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #12121a 100%);
    
    /* Borders & Shadows */
    --border-color: rgba(255, 255, 255, 0.08);
    --shadow-glow: 0 0 40px rgba(0, 102, 255, 0.3);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.5);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-display: 'Playfair Display', serif;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.loader span {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.water-drop {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-blue);
    animation: drop 1.5s ease-in-out infinite;
    position: relative;
}

.water-drop::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: ripple 1.5s ease-out infinite;
}

@keyframes drop {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(0.9); }
}

@keyframes ripple {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(2); opacity: 0; }
}

/* 3D Canvas Background */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Custom Cursor */
.cursor {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-blue);
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--primary-blue);
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
}

.cursor-hover {
    transform: scale(1.5);
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-medium);
}

#navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    font-size: 1.8rem;
    font-weight: 800;
}

.logo-aqua {
    color: var(--primary-blue);
}

.logo-art {
    color: var(--text-primary);
}

.logo-tag {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-left: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-blue);
    transition: var(--transition-medium);
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    padding: 0.8rem 1.8rem;
    background: var(--gradient-blue);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    box-shadow: 0 5px 20px var(--glow-blue);
    transition: var(--transition-medium);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--glow-blue);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-medium);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-medium);
    z-index: 999;
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-nav-links a {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.mobile-nav-links a:hover {
    color: var(--primary-blue);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 5%;
    position: relative;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-content {
    flex: 1;
    max-width: 650px;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 1.5rem;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--primary-cyan);
    margin-bottom: 2rem;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--primary-cyan);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease forwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.title-line:nth-child(3) {
    animation-delay: 0.4s;
}

.title-line.highlight {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-medium);
}

.btn-primary {
    background: var(--gradient-blue);
    color: var(--text-primary);
    box-shadow: 0 5px 30px var(--glow-blue);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px var(--glow-blue);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-blue);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.car-showcase {
    position: relative;
    width: 100%;
    max-width: 700px;
}

/* 3D Car Showcase */
.car-showcase-3d {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#car-canvas {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    cursor: grab;
}

#car-canvas:active {
    cursor: grabbing;
}

.car-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--text-primary);
    font-size: 0.9rem;
    text-align: center;
}

.car-loading.hidden {
    display: none;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid var(--border-color);
    border-top-color: var(--cyan);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.loading-progress {
    width: 200px;
    height: 4px;
    background: var(--bg-card);
    border-radius: 2px;
    overflow: hidden;
}

.loading-progress .progress-bar {
    height: 100%;
    width: 0%;
    background: var(--gradient-blue);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.car-controls {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    z-index: 5;
}

.car-controls span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.car-controls i {
    color: var(--cyan);
}

.glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 2px solid var(--primary-blue);
    opacity: 0.3;
    animation: glowRing 3s ease-in-out infinite;
}

.glow-ring.delay-1 {
    animation-delay: 1s;
    width: 500px;
    height: 500px;
}

.glow-ring.delay-2 {
    animation-delay: 2s;
    width: 600px;
    height: 600px;
}

@keyframes glowRing {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.1; }
}

.hero-car {
    position: relative;
    width: 100%;
    max-width: 700px;
    border-radius: 0;
    filter: drop-shadow(0 0 30px rgba(0, 102, 255, 0.4));
    animation: carFloat 6s ease-in-out infinite;
    z-index: 2;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.hero-car:hover {
    transform: translateY(-10px) scale(1.02);
    filter: drop-shadow(0 0 50px rgba(0, 212, 255, 0.6));
}

.car-reflection {
    position: absolute;
    bottom: -60%;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to bottom, 
        rgba(0, 102, 255, 0.1) 0%, 
        transparent 100%);
    transform: scaleY(-1);
    opacity: 0.3;
    filter: blur(10px);
    pointer-events: none;
    mask-image: linear-gradient(to bottom, white 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, white 0%, transparent 100%);
}

@keyframes carFloat {
    0%, 100% { transform: translateY(0) rotateY(0deg); }
    25% { transform: translateY(-15px) rotateY(2deg); }
    50% { transform: translateY(-20px) rotateY(0deg); }
    75% { transform: translateY(-15px) rotateY(-2deg); }
}

.car-showcase {
    position: relative;
    width: 100%;
    max-width: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    animation: fadeIn 1s ease 1.5s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

.scroll-indicator span {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Section Styles */
section {
    padding: 8rem 0;
    position: relative;
}

.section-bg-text {
    position: absolute;
    top: 5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(4rem, 15vw, 12rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-cyan);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-title .highlight {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Services Section */
.services {
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-medium);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 102, 255, 0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card .card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--primary-blue), transparent 30%);
    animation: rotate-glow 4s linear infinite paused;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .card-glow {
    animation-play-state: running;
    opacity: 0.1;
}

@keyframes rotate-glow {
    100% { transform: rotate(360deg); }
}

.service-card:hover {
    border-color: rgba(0, 102, 255, 0.5);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(0, 102, 255, 0.2),
        inset 0 0 60px rgba(0, 102, 255, 0.05);
}

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

.service-card.featured {
    border-color: var(--primary-blue);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, var(--bg-card) 100%);
}

.service-card.featured::before {
    height: 4px;
    transform: scaleX(1);
}

.service-card.featured .featured-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

/* 3D Tilt container */
.services-3d-container {
    perspective: 2000px;
}

.service-card.tilt-effect {
    transform-style: preserve-3d;
}

.service-card .card-content {
    position: relative;
    z-index: 2;
    transform: translateZ(30px);
}

.service-card h3 {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.service-card > p {
    position: relative;
    z-index: 2;
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.4rem 1rem;
    background: var(--gradient-blue);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.service-icon {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    z-index: 2;
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-blue);
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-card:hover .service-icon i {
    transform: scale(1.2) rotateY(360deg);
    color: var(--primary-cyan);
    text-shadow: 0 0 30px var(--glow-cyan);
}

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 102, 255, 0.15);
    border-radius: 20px;
    transform: rotate(45deg);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-card:hover .icon-glow {
    transform: rotate(45deg) scale(1.2);
    background: rgba(0, 212, 255, 0.25);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.4);
}

.icon-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.icon-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-cyan);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s ease;
}

.service-card:hover .icon-particles span {
    animation: particle-float 1s ease-out forwards;
}

.icon-particles span:nth-child(1) { top: 50%; left: 0; animation-delay: 0s; }
.icon-particles span:nth-child(2) { top: 0; left: 50%; animation-delay: 0.1s; }
.icon-particles span:nth-child(3) { top: 50%; right: 0; animation-delay: 0.2s; }
.icon-particles span:nth-child(4) { bottom: 0; left: 50%; animation-delay: 0.3s; }
.icon-particles span:nth-child(5) { top: 10%; left: 10%; animation-delay: 0.15s; }
.icon-particles span:nth-child(6) { top: 10%; right: 10%; animation-delay: 0.25s; }
.icon-particles span:nth-child(7) { bottom: 10%; left: 10%; animation-delay: 0.35s; }
.icon-particles span:nth-child(8) { bottom: 10%; right: 10%; animation-delay: 0.05s; }

@keyframes particle-float {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(var(--tx, 20px), var(--ty, -20px)) scale(0);
    }
}

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

.service-card > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    transform: translateX(0);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-card:hover .service-features li {
    transform: translateX(10px);
}

.service-card:hover .service-features li:nth-child(1) { transition-delay: 0.05s; }
.service-card:hover .service-features li:nth-child(2) { transition-delay: 0.1s; }
.service-card:hover .service-features li:nth-child(3) { transition-delay: 0.15s; }
.service-card:hover .service-features li:nth-child(4) { transition-delay: 0.2s; }

.service-features li i {
    color: var(--primary-cyan);
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-features li i {
    transform: scale(1.3);
    text-shadow: 0 0 10px var(--glow-cyan);
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.price-from {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.price-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-cyan);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
    padding: 0.5rem 0;
    overflow: hidden;
}

.service-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-blue);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.service-link:hover::before {
    transform: translateX(0);
}

.service-link i {
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-link:hover i {
    transform: translateX(8px) scale(1.2);
    text-shadow: 0 0 15px var(--glow-cyan);
}

/* Ripple effect pentru carduri */
.service-card .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.3);
    transform: scale(0);
    animation: ripple-effect 0.6s linear;
    pointer-events: none;
    z-index: 1;
}

@keyframes ripple-effect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Floating elements în background */
.service-card .floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.service-card .floating-shapes span {
    position: absolute;
    display: block;
    background: rgba(0, 102, 255, 0.05);
    animation: float-shape 15s linear infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover .floating-shapes span {
    opacity: 1;
}

.service-card .floating-shapes span:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: -10%;
    border-radius: 50%;
    animation-delay: 0s;
}

.service-card .floating-shapes span:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    right: -5%;
    border-radius: 30%;
    animation-delay: 2s;
}

.service-card .floating-shapes span:nth-child(3) {
    width: 40px;
    height: 40px;
    bottom: 10%;
    left: 20%;
    border-radius: 50%;
    animation-delay: 4s;
}

@keyframes float-shape {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
    100% {
        transform: translateY(0) rotate(360deg);
    }
}

/* Gallery Section */
.gallery {
    background: var(--bg-primary);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.8rem;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-secondary);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-medium);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-blue);
    border-color: transparent;
    color: var(--text-primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.gallery-item {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition-medium);
}

.gallery-item:hover {
    border-color: rgba(0, 102, 255, 0.5);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 50px rgba(0, 102, 255, 0.2);
}

/* ============================================
   3D Comparison Slider - Immersive WOW Effect
   ============================================ */
.comparison-container-3d {
    position: relative;
    perspective: 1000px;
}

.comparison-glow {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(ellipse at center, rgba(0, 102, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.gallery-item:hover .comparison-glow {
    opacity: 1;
    animation: glowPulse 2s ease-in-out infinite;
}

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

/* Sparkle Effects */
.comparison-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    overflow: hidden;
}

.comparison-sparkles span {
    position: absolute;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    filter: blur(1px);
    box-shadow: 0 0 10px white, 0 0 20px var(--cyan);
}

.gallery-item:hover .comparison-sparkles span {
    animation: sparkle 2s ease-in-out infinite;
}

.comparison-sparkles span:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.comparison-sparkles span:nth-child(2) { top: 30%; left: 80%; animation-delay: 0.3s; }
.comparison-sparkles span:nth-child(3) { top: 60%; left: 10%; animation-delay: 0.6s; }
.comparison-sparkles span:nth-child(4) { top: 80%; left: 70%; animation-delay: 0.9s; }
.comparison-sparkles span:nth-child(5) { top: 50%; left: 50%; animation-delay: 1.2s; }

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
    50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

.comparison-slider {
    position: relative;
    height: 300px;
    overflow: hidden;
    cursor: ew-resize;
    border-radius: 16px 16px 0 0;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.gallery-item:hover .comparison-slider {
    transform: rotateX(2deg);
}

.comparison-before,
.comparison-after {
    position: absolute;
    top: 0;
    height: 100%;
    overflow: hidden;
}

.comparison-before {
    left: 0;
    width: 50%;
    z-index: 2;
}

.comparison-after {
    right: 0;
    width: 100%;
    z-index: 1;
}

.comparison-before img,
.comparison-after img {
    position: absolute;
    top: 0;
    height: 100%;
    width: auto;
    min-width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.comparison-before img {
    left: 0;
    filter: grayscale(70%) brightness(0.6) contrast(0.9);
}

.gallery-item:hover .comparison-before img {
    filter: grayscale(80%) brightness(0.5) contrast(0.8);
}

.comparison-after img {
    right: 0;
    filter: brightness(1.05) contrast(1.1) saturate(1.2);
}

.gallery-item:hover .comparison-after img {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.15) saturate(1.3);
}

/* Shine Effect on After Image */
.shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    z-index: 5;
    pointer-events: none;
}

.gallery-item:hover .shine-effect {
    animation: shineMove 1.5s ease-in-out infinite;
}

@keyframes shineMove {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* Labels - Enhanced */
.comparison-slider .label {
    position: absolute;
    bottom: 1rem;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.label-before {
    left: 1rem;
    background: rgba(255, 71, 87, 0.8);
    border: 1px solid rgba(255, 71, 87, 0.5);
}

.label-before i {
    color: #ff4757;
}

.label-after {
    right: 1rem;
    background: rgba(0, 212, 255, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.label-after i {
    color: var(--cyan);
}

.gallery-item:hover .label-after {
    background: var(--gradient-blue);
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--glow-blue);
}

/* Handle - Enhanced */
.comparison-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--cyan) 0%, var(--primary-blue) 100%);
    transform: translateX(-50%);
    z-index: 7;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px var(--glow-blue);
}

.handle-line {
    flex: 1;
    width: 3px;
    background: linear-gradient(180deg, transparent 0%, var(--cyan) 50%, transparent 100%);
}

.handle-circle {
    width: 55px;
    height: 55px;
    background: var(--bg-card);
    border: 3px solid var(--cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.gallery-item:hover .handle-circle {
    background: var(--gradient-blue);
    border-color: white;
    transform: scale(1.1);
    box-shadow: 0 0 30px var(--glow-blue);
}

.handle-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--cyan);
    border-radius: 50%;
    animation: handlePulse 2s ease-out infinite;
}

@keyframes handlePulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

.handle-circle i {
    color: var(--cyan);
    font-size: 1.1rem;
    transition: color 0.3s ease;
    z-index: 1;
}

.gallery-item:hover .handle-circle i {
    color: white;
}

/* Reveal Text */
.comparison-reveal-text {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: 8;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover .comparison-reveal-text {
    opacity: 1;
    animation: revealBounce 1s ease-in-out infinite;
}

@keyframes revealBounce {
    0%, 100% { transform: translate(-50%, 50%); }
    50% { transform: translate(-50%, 45%); }
}

.comparison-reveal-text span {
    display: block;
    padding: 0.8rem 1.5rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--cyan);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--cyan);
    white-space: nowrap;
}

/* Gallery Info - Enhanced */
.gallery-info {
    padding: 1.5rem;
    position: relative;
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(0, 102, 255, 0.05) 100%);
}

.info-badge {
    position: absolute;
    top: -12px;
    right: 1.5rem;
    padding: 0.4rem 1rem;
    background: var(--gradient-blue);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px var(--glow-blue);
}

.info-badge.ceramic {
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
}

.info-badge.interior {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
}

.info-badge.ppf {
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
}

.gallery-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    margin-top: 0.5rem;
}

.gallery-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.info-stats {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.info-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.info-stats i {
    color: var(--cyan);
    font-size: 0.9rem;
}

/* About Section */
.about {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

/* Water Flow Effect */
.water-flow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.water-wave {
    position: absolute;
    width: 200%;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%230066ff' fill-opacity='0.05' d='M0,160L48,176C96,192,192,224,288,213.3C384,203,480,149,576,154.7C672,160,768,224,864,229.3C960,235,1056,181,1152,165.3C1248,149,1344,171,1392,181.3L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") repeat-x;
    background-size: 50% 100%;
    opacity: 0.5;
}

.water-wave.wave1 {
    bottom: 0;
    animation: wave 15s linear infinite;
}

.water-wave.wave2 {
    bottom: 20px;
    animation: wave 20s linear infinite reverse;
    opacity: 0.3;
}

.water-wave.wave3 {
    bottom: 40px;
    animation: wave 25s linear infinite;
    opacity: 0.2;
}

@keyframes wave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.water-drops {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-content .section-tag {
    margin-bottom: 1rem;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

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

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.value-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.value-item:hover::before {
    left: 100%;
}

.value-item:hover {
    border-color: rgba(0, 102, 255, 0.5);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(0, 102, 255, 0.2);
}

.value-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.5s ease;
}

.value-icon-ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    border: 2px solid var(--primary-blue);
    opacity: 0;
    animation: valueRipple 2s ease-out infinite;
}

.value-item:hover .value-icon-ripple {
    opacity: 1;
}

@keyframes valueRipple {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.value-item:hover .value-icon {
    background: var(--gradient-blue);
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 0 30px var(--glow-blue);
}

.value-icon i {
    font-size: 1.3rem;
    color: var(--primary-blue);
    transition: all 0.5s ease;
    z-index: 1;
}

.value-item:hover .value-icon i {
    color: var(--text-primary);
    transform: scale(1.2);
}

.value-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    transition: color 0.3s ease;
}

.value-item:hover .value-content h4 {
    color: var(--primary-cyan);
}

.value-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.about-visual {
    position: relative;
    z-index: 1;
}

.about-image-container {
    position: relative;
    perspective: 1000px;
}

.about-image-container[data-tilt-about] {
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

/* Frame corners */
.about-image-frame {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    z-index: 3;
    pointer-events: none;
}

.frame-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid var(--primary-blue);
}

.frame-corner.top-left {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.frame-corner.top-right {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.frame-corner.bottom-left {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.frame-corner.bottom-right {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.about-image-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: var(--gradient-blue);
    border-radius: 24px;
    opacity: 0.2;
    z-index: 0;
    transition: all 0.5s ease;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.02); }
}

.about-image-container:hover .about-image-glow {
    opacity: 0.4;
    transform: scale(1.05);
}

/* Water overlay effect */
.water-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 212, 255, 0.1) 50%,
        transparent 100%
    );
    z-index: 2;
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: waterFlowOverlay 3s ease-in-out infinite;
    pointer-events: none;
}

.about-image-container:hover .water-overlay {
    opacity: 1;
}

@keyframes waterFlowOverlay {
    0%, 100% { transform: translateY(-100%); }
    50% { transform: translateY(100%); }
}

/* Image shine effect */
.image-shine {
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    z-index: 2;
    border-radius: 24px;
    transform: skewX(-25deg);
    pointer-events: none;
}

.about-image-container:hover .image-shine {
    animation: imageShine 1s ease forwards;
}

@keyframes imageShine {
    0% { left: -150%; }
    100% { left: 150%; }
}

.about-image {
    position: relative;
    border-radius: 24px;
    z-index: 1;
    box-shadow: var(--shadow-card);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-image-container:hover .about-image {
    transform: scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 50px rgba(0, 102, 255, 0.3);
}

/* Floating droplets */
.floating-droplets {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 4;
}

.droplet {
    position: absolute;
    width: 10px;
    height: 14px;
    background: radial-gradient(ellipse at 30% 30%, rgba(0, 212, 255, 0.8), rgba(0, 102, 255, 0.4));
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0;
    animation: dropletFloat 4s ease-in-out infinite;
}

.droplet:nth-child(1) {
    top: 10%;
    left: -20px;
    animation-delay: 0s;
}

.droplet:nth-child(2) {
    top: 30%;
    right: -20px;
    animation-delay: 0.8s;
}

.droplet:nth-child(3) {
    top: 50%;
    left: -30px;
    animation-delay: 1.6s;
}

.droplet:nth-child(4) {
    top: 70%;
    right: -25px;
    animation-delay: 2.4s;
}

.droplet:nth-child(5) {
    top: 90%;
    left: -15px;
    animation-delay: 3.2s;
}

@keyframes dropletFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-50px) scale(1);
    }
}

.about-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 130px;
    height: 130px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 10px 40px var(--glow-blue);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
}

.about-image-container:hover .about-badge {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 50px var(--glow-cyan);
}

.badge-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), transparent);
    animation: badgeGlow 2s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.badge-text {
    font-size: 0.75rem;
    text-align: center;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.about-brands {
    margin-top: 3rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.about-brands::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.about-brands:hover::before {
    transform: scaleX(1);
}

.about-brands > span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.brands-list {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.brand-item {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    cursor: default;
}

.brand-item:hover {
    background: rgba(0, 102, 255, 0.2);
    color: var(--primary-cyan);
    transform: translateY(-2px);
}

/* Team Section */
.team {
    background: var(--bg-primary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    perspective: 1000px;
}

/* ============================================
   3D Team Cards - Person Pop-Out Effect
   ============================================ */
.team-card-3d {
    height: 480px;
    perspective: 1200px;
}

.card-3d-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
}

.card-3d-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.team-card-3d:hover .card-3d-inner {
    transform: rotateY(-5deg) rotateX(5deg);
}

/* Background Layer */
.card-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-card);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transform: translateZ(-30px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.team-card-3d:hover .card-bg-layer {
    transform: translateZ(-50px);
    border-color: rgba(0, 102, 255, 0.5);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(0, 102, 255, 0.2);
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.team-card-3d:hover .bg-pattern {
    opacity: 1;
}

.bg-glow {
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 100%;
    background: radial-gradient(ellipse at center, var(--primary-blue) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.team-card-3d:hover .bg-glow {
    opacity: 0.15;
}

/* Person Layer - The Main 3D Effect */
.card-person-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 65%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    transform: translateZ(0px);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 2;
    pointer-events: none;
}

.team-card-3d:hover .card-person-layer {
    transform: translateZ(60px) translateY(-15px) scale(1.05);
}

.person-image-wrapper {
    position: relative;
    width: 85%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.person-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    filter: brightness(0.9);
}

.team-card-3d:hover .person-image-wrapper img {
    filter: brightness(1.1) contrast(1.05);
}

.person-shadow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 30px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.6) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.6s ease;
    filter: blur(10px);
}

.team-card-3d:hover .person-shadow {
    opacity: 1;
    transform: translateX(-50%) translateY(40px) scaleX(1.2);
}

/* Info Layer */
.card-info-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45%;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    transform: translateZ(20px);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 3;
}

.team-card-3d:hover .card-info-layer {
    transform: translateZ(40px);
}

.team-info-3d {
    width: 100%;
    text-align: center;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 15, 0.95) 30%);
    padding: 3rem 1rem 1rem;
    border-radius: 0 0 20px 20px;
    margin: 0 -1.5rem -1.5rem;
    width: calc(100% + 3rem);
}

.team-info-3d h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-info-3d .team-role {
    display: block;
    color: var(--primary-cyan);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-info-3d p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.2s;
}

.team-card-3d:hover .team-info-3d p {
    opacity: 1;
    transform: translateY(0);
}

.team-social-3d {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s ease 0.3s;
}

.team-card-3d:hover .team-social-3d {
    opacity: 1;
    transform: translateY(0);
}

.team-social-3d a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 255, 0.2);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.team-social-3d a:hover {
    background: var(--gradient-blue);
    border-color: var(--primary-blue);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 20px var(--glow-blue);
}

/* Floating Particles */
.card-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.card-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-blue);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card-3d:hover .card-particles span {
    opacity: 0.6;
    animation: particleFloat 3s ease-in-out infinite;
}

.card-particles span:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-particles span:nth-child(2) {
    top: 40%;
    right: 15%;
    animation-delay: 0.5s;
    background: var(--cyan);
}

.card-particles span:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 1s;
}

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(10px, -15px) scale(1.2); }
    50% { transform: translate(-5px, -25px) scale(0.8); }
    75% { transform: translate(15px, -10px) scale(1.1); }
}

/* Old team card styles kept for backwards compatibility */
.team-card {
    background: var(--bg-card);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition-medium);
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 102, 255, 0.3);
    box-shadow: var(--shadow-card);
}

.team-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 102, 255, 0.9) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 2rem;
    opacity: 0;
    transition: var(--transition-medium);
}

.team-card:hover .team-overlay {
    opacity: 1;
}

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

.team-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--text-primary);
    transition: var(--transition-fast);
    transform: translateY(20px);
    opacity: 0;
}

.team-card:hover .team-social a {
    transform: translateY(0);
    opacity: 1;
}

.team-card:hover .team-social a:nth-child(1) { transition-delay: 0.1s; }
.team-card:hover .team-social a:nth-child(2) { transition-delay: 0.2s; }
.team-card:hover .team-social a:nth-child(3) { transition-delay: 0.3s; }

.team-social a:hover {
    background: var(--text-primary);
    color: var(--primary-blue);
}

.team-info {
    padding: 2rem;
    text-align: center;
}

.team-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.team-role {
    display: block;
    color: var(--primary-cyan);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials {
    background: var(--bg-secondary);
    padding: 6rem 0;
}

.testimonials-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 1rem;
    scrollbar-width: none;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 1.333rem);
    min-width: 350px;
    background: var(--bg-card);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    scroll-snap-align: start;
    transition: var(--transition-medium);
}

.testimonial-card:hover {
    border-color: rgba(0, 102, 255, 0.3);
}

.testimonial-rating {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 1rem;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-blue);
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 700;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.nav-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-medium);
}

.nav-btn:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--text-primary);
}

.nav-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background: var(--primary-blue);
    width: 30px;
    border-radius: 5px;
}

/* Contact Section */
.contact {
    background: var(--bg-primary);
}

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

.contact-info .section-tag,
.contact-info .section-title {
    text-align: left;
}

.contact-info .section-title {
    margin-bottom: 1.5rem;
}

.contact-text {
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 16px;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.3rem;
    color: var(--primary-blue);
}

.contact-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.contact-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: var(--transition-medium);
}

.social-link:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--text-primary);
    transform: translateY(-3px);
}

.contact-form-container {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid var(--border-color);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-medium);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1.2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    pointer-events: none;
    transition: var(--transition-fast);
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
    top: -0.6rem;
    left: 0.8rem;
    font-size: 0.75rem;
    color: var(--primary-blue);
    background: var(--bg-card);
    padding: 0 0.5rem;
}

.form-group select {
    cursor: pointer;
    appearance: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    margin-top: 1rem;
}

/* Map Section */
.map-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-primary) 0%, #050510 100%);
}

/* Journey Container */
.map-journey-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1s ease;
}

.map-section.journey-active .map-journey-container {
    opacity: 1;
}

/* Journey Layers */
.journey-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(3);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.journey-layer.active {
    opacity: 1;
    transform: scale(1);
}

.journey-layer.passed {
    opacity: 0;
    transform: scale(0.5);
}

/* Layer 1: Space */
.layer-space {
    background: radial-gradient(ellipse at center, #0a1628 0%, #000510 100%);
}

.layer-space .stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, white, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, white, transparent),
        radial-gradient(2px 2px at 160px 120px, rgba(255,255,255,0.9), transparent),
        radial-gradient(1px 1px at 230px 80px, white, transparent),
        radial-gradient(2px 2px at 300px 150px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 350px 50px, white, transparent),
        radial-gradient(2px 2px at 420px 180px, white, transparent);
    background-repeat: repeat;
    background-size: 500px 200px;
    animation: twinkle 4s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.layer-space .earth-glow {
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 100%;
    background: radial-gradient(ellipse at bottom, var(--primary-blue) 0%, transparent 50%);
    opacity: 0.3;
    animation: earthPulse 3s ease-in-out infinite;
}

@keyframes earthPulse {
    0%, 100% { opacity: 0.3; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.5; transform: translateX(-50%) scale(1.1); }
}

/* Layer 2: Country */
.layer-country {
    background: linear-gradient(180deg, #0a1628 0%, #0f2847 100%);
}

.layer-country .country-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 400px;
    border: 2px solid var(--primary-blue);
    border-radius: 30% 70% 70% 30% / 60% 40% 60% 40%;
    opacity: 0.5;
    box-shadow: 
        0 0 30px var(--glow-blue),
        inset 0 0 30px rgba(0, 102, 255, 0.1);
    animation: countryGlow 2s ease-in-out infinite;
}

@keyframes countryGlow {
    0%, 100% { box-shadow: 0 0 30px var(--glow-blue), inset 0 0 30px rgba(0, 102, 255, 0.1); }
    50% { box-shadow: 0 0 50px var(--glow-blue), inset 0 0 50px rgba(0, 102, 255, 0.2); }
}

/* Layer 3: City */
.layer-city {
    background: linear-gradient(180deg, #0f2847 0%, #1a1a2e 100%);
}

.layer-city .city-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--primary-blue) 1px, transparent 1px),
        linear-gradient(90deg, var(--primary-blue) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.1;
    animation: gridMove 10s linear infinite;
    perspective: 500px;
    transform: rotateX(60deg);
    transform-origin: center bottom;
}

@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

/* Layer 4: Street */
.layer-street {
    background: radial-gradient(ellipse at center, #1a1a2e 0%, var(--bg-primary) 100%);
}

.layer-street .street-view {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gradient-blue);
    opacity: 0.3;
    animation: streetPulse 2s ease-in-out infinite;
}

@keyframes streetPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.5; }
}

/* Location Pin */
.location-pin-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.map-section.pin-visible .location-pin-container {
    opacity: 1;
}

.location-pin {
    width: 60px;
    height: 60px;
    background: var(--gradient-blue);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.5);
    animation: pinBounce 2s ease-in-out infinite;
}

.location-pin i {
    transform: rotate(45deg);
    font-size: 1.5rem;
    color: white;
}

@keyframes pinBounce {
    0%, 100% { transform: rotate(-45deg) translateY(0); }
    50% { transform: rotate(-45deg) translateY(-10px); }
}

.pin-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    animation: pinPulse 2s ease-out infinite;
}

.pin-pulse.delay {
    animation-delay: 1s;
}

@keyframes pinPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(3); opacity: 0; }
}

/* Journey Path */
.journey-path {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.map-section.journey-active .journey-path {
    opacity: 1;
}

.path-line {
    fill: none;
    stroke: var(--cyan);
    stroke-width: 0.5;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    filter: drop-shadow(0 0 5px var(--cyan));
    transition: stroke-dashoffset 3s ease-out;
}

.map-section.journey-active .path-line {
    stroke-dashoffset: 0;
}

.path-dot {
    fill: var(--cyan);
    filter: drop-shadow(0 0 10px var(--cyan));
    animation: dotMove 3s ease-in-out forwards;
    opacity: 0;
}

.map-section.journey-active .path-dot {
    opacity: 1;
}

@keyframes dotMove {
    0% { cy: 0; }
    100% { cy: 100; }
}

/* Progress Indicator */
.journey-progress {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 400px;
    z-index: 15;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.map-section.journey-active .journey-progress {
    opacity: 1;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--gradient-blue);
    border-radius: 2px;
    transition: width 0.5s ease;
    box-shadow: 0 0 10px var(--glow-blue);
}

.map-section[data-progress="1"] .progress-bar::after { width: 0%; }
.map-section[data-progress="2"] .progress-bar::after { width: 33%; }
.map-section[data-progress="3"] .progress-bar::after { width: 66%; }
.map-section[data-progress="4"] .progress-bar::after { width: 100%; }

.progress-markers {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.progress-markers .marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.4;
    transition: all 0.3s ease;
    cursor: pointer;
}

.progress-markers .marker.active {
    opacity: 1;
}

.progress-markers .marker i {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.progress-markers .marker.active i {
    background: var(--gradient-blue);
    border-color: var(--primary-blue);
    color: white;
    box-shadow: 0 0 20px var(--glow-blue);
}

.progress-markers .marker::after {
    content: attr(data-label);
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Map Overlay - Updated */
.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.95) 0%, rgba(10, 10, 15, 0.7) 50%, transparent 100%);
    z-index: 10;
    display: flex;
    align-items: center;
    padding-left: 5%;
    opacity: 0;
    transition: opacity 1s ease 2s;
}

.map-section.map-visible .map-overlay {
    opacity: 1;
}

.map-card {
    background: rgba(20, 20, 30, 0.9);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(0, 102, 255, 0.3);
    max-width: 350px;
    position: relative;
    overflow: hidden;
    transform: translateX(-50px);
    opacity: 0;
    transition: all 0.8s ease 2.5s;
}

.map-section.map-visible .map-card {
    transform: translateX(0);
    opacity: 1;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent 0%, var(--primary-blue) 10%, transparent 20%);
    animation: cardGlowRotate 4s linear infinite;
    opacity: 0.1;
}

@keyframes cardGlowRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

.card-icon {
    position: relative;
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
}

.card-icon i {
    width: 70px;
    height: 70px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    position: relative;
    z-index: 1;
}

.card-icon .icon-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    animation: iconRing 2s ease-out infinite;
}

@keyframes iconRing {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.map-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

.map-card .address {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.map-card .travel-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(0, 102, 255, 0.2);
}

.map-card .travel-info span {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.map-card .travel-info i {
    color: var(--cyan);
    width: 20px;
}

/* Map Wrapper */
.map-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.5);
    transition: all 1.5s ease 1.5s;
}

.map-section.map-visible .map-wrapper {
    opacity: 1;
    transform: scale(1);
}

.map-section iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: grayscale(100%) invert(90%) contrast(90%) brightness(0.8);
}

/* Contact Item Styles - Travel Time */
.contact-item .travel-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--cyan);
}

.contact-item .travel-time i {
    animation: carDrive 2s ease-in-out infinite;
}

@keyframes carDrive {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

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

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

.status-closed {
    color: #ff4757;
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background: var(--gradient-blue);
    box-shadow: 0 0 50px var(--glow-blue);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.footer-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: var(--transition-medium);
}

.footer-social a:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--text-primary);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

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

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.footer-contact i {
    color: var(--primary-blue);
    width: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--primary-blue);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 55px;
    height: 55px;
    background: var(--gradient-blue);
    border: none;
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
    z-index: 999;
    box-shadow: 0 5px 30px var(--glow-blue);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 10rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 4rem;
    }

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

    .about-content .section-title {
        text-align: center;
    }

    .about-content {
        text-align: center;
    }

    .about-values {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-visual {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-image-container {
        max-width: 100%;
    }
    
    .about-badge {
        bottom: -20px;
        right: -10px;
        width: 100px;
        height: 100px;
    }
    
    .badge-number {
        font-size: 2rem;
    }
    
    .floating-droplets {
        display: none;
    }

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

    .contact-info {
        text-align: center;
    }

    .contact-info .section-tag,
    .contact-info .section-title {
        text-align: center;
    }

    .contact-details {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-item {
        text-align: left;
    }

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

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

@media (max-width: 992px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

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

    .testimonial-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .about-values {
        grid-template-columns: 1fr;
    }
    
    .water-flow-container {
        height: 80px;
    }
    
    .water-wave {
        height: 60px;
    }
    
    .frame-corner {
        width: 40px;
        height: 40px;
    }
    
    .about-image-frame::before {
        display: none;
    }
    
    .about-badge {
        width: 80px;
        height: 80px;
        bottom: -15px;
        right: -5px;
    }
    
    .badge-number {
        font-size: 1.5rem;
    }
    
    .badge-text {
        font-size: 0.6rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .team-card-3d {
        height: 420px;
    }
    
    .team-card-3d:hover .card-person-layer {
        transform: translateZ(40px) translateY(-10px) scale(1.03);
    }
    
    .person-image-wrapper {
        width: 90%;
    }

    .testimonial-card {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .footer-social,
    .footer-links ul {
        justify-content: center;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .cursor,
    .cursor-follower {
        display: none;
    }

    /* Map Section Responsive */
    .map-section {
        height: 500px;
    }
    
    .map-overlay {
        background: linear-gradient(180deg, rgba(10, 10, 15, 0.98) 0%, rgba(10, 10, 15, 0.8) 60%, transparent 100%);
        padding: 2rem;
        align-items: flex-start;
        justify-content: center;
        padding-top: 3rem;
    }
    
    .map-card {
        max-width: 100%;
        margin: 0 1rem;
    }
    
    .journey-progress {
        width: 90%;
        bottom: 20px;
    }
    
    .progress-markers .marker i {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .progress-markers .marker::after {
        font-size: 0.6rem;
    }
    
    .location-pin {
        width: 50px;
        height: 50px;
    }
    
    .location-pin i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    section {
        padding: 5rem 0;
    }

    .hero {
        padding: 8rem 1rem 4rem;
    }

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

    .btn {
        width: 100%;
        justify-content: center;
    }

    .gallery-filter {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .comparison-slider {
        height: 250px;
    }

    .contact-form-container {
        padding: 2rem 1.5rem;
    }
}

/* Animation Classes */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-blue-light);
}

/* Selection */
::selection {
    background: var(--primary-blue);
    color: var(--text-primary);
}

/* ============================================
   Process Section - Interactive Timeline
   ============================================ */
.process-section {
    padding: 8rem 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.process-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 0;
}

.process-line {
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 4px;
    background: var(--border-color);
    transform: translateY(-50%);
    border-radius: 2px;
    overflow: hidden;
}

.process-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--gradient-blue);
    transition: width 1s ease;
    box-shadow: 0 0 20px var(--glow-blue);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 22%;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.process-step:hover {
    transform: translateY(-10px);
}

.step-icon {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    z-index: 2;
}

.step-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    transition: all 0.5s ease;
}

.process-step:hover .step-icon-bg,
.process-step.active .step-icon-bg {
    background: var(--gradient-blue);
    border-color: var(--primary-blue);
    box-shadow: 0 0 40px var(--glow-blue);
    transform: scale(1.1);
}

.step-icon i {
    font-size: 2rem;
    color: var(--text-muted);
    z-index: 2;
    transition: all 0.5s ease;
}

.process-step:hover .step-icon i,
.process-step.active .step-icon i {
    color: var(--text-primary);
    transform: scale(1.2);
}

.step-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary-blue);
    opacity: 0;
    animation: stepPulse 2s ease-out infinite;
}

.process-step:hover .step-pulse,
.process-step.active .step-pulse {
    opacity: 1;
}

@keyframes stepPulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.process-step:hover .step-content h3,
.process-step.active .step-content h3 {
    color: var(--primary-cyan);
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
}

.process-step:hover .step-content p,
.process-step.active .step-content p {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(0, 102, 255, 0.1);
    line-height: 1;
    transition: all 0.5s ease;
}

.process-step:hover .step-number,
.process-step.active .step-number {
    color: rgba(0, 102, 255, 0.3);
    transform: scale(1.2);
}

/* Process section responsive */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 3rem;
    }
    
    .process-step {
        width: 100%;
        flex-direction: row;
        text-align: left;
        gap: 2rem;
    }
    
    .step-icon {
        flex-shrink: 0;
        margin-bottom: 0;
    }
    
    .step-content p {
        opacity: 1;
        transform: none;
    }
    
    .step-number {
        position: relative;
        top: auto;
        right: auto;
    }
}
