/* ==========================================
   IRONDRIVER PALERMO - STYLES
   ========================================== */

/* ==========================================
   Variables & Reset
   ========================================== */
:root {
    --primary-color: #FF6B35;
    --secondary-color: #F7931E;
    --dark-bg: #0A0A0A;
    --dark-gray: #1A1A1A;
    --light-gray: #2A2A2A;
    --text-primary: #FFFFFF;
    --text-secondary: #CCCCCC;
    --text-muted: #999999;
    --accent-gradient: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    --shadow-glow: 0 0 30px rgba(255, 107, 53, 0.3);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.5);
    --shadow-card-hover: 0 20px 60px rgba(255, 107, 53, 0.2), 0 10px 30px rgba(0, 0, 0, 0.6);
    --border-radius-sm: 12px;
    --border-radius-md: 20px;
    --border-radius-lg: 28px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 50px,
            rgba(255, 107, 53, 0.02) 50px,
            rgba(255, 107, 53, 0.02) 51px
        );
    pointer-events: none;
    z-index: 0;
}

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

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

ul {
    list-style: none;
}

/* ==========================================
   Container
   ========================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

section {
    position: relative;
    z-index: 1;
}

/* ==========================================
   Navigation
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 1rem 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

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

.nav-logo {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

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

.logo-driver {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-location {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.2em;
}

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

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
}

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

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

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

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

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(26, 26, 26, 0.6) 100%);
    z-index: 2;
}

/* Capas de trama técnica */
.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Grid de telemetría */
    background-image: 
        linear-gradient(rgba(255, 107, 53, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 53, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

/* Patrón hexagonal (fibra de carbono) */
.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            30deg,
            transparent,
            transparent 2px,
            rgba(255, 107, 53, 0.02) 2px,
            rgba(255, 107, 53, 0.02) 4px
        ),
        repeating-linear-gradient(
            -30deg,
            transparent,
            transparent 2px,
            rgba(247, 147, 30, 0.02) 2px,
            rgba(247, 147, 30, 0.02) 4px
        );
    opacity: 0.5;
}

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

/* Líneas de velocidad que pasan */
.speed-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.3;
}

.speed-lines::before,
.speed-lines::after {
    content: '';
    position: absolute;
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255, 107, 53, 0.4),
        transparent
    );
    animation: speedLineMove 3s linear infinite;
}

.speed-lines::before {
    top: 20%;
    animation-delay: 0s;
}

.speed-lines::after {
    top: 80%;
    animation-delay: 1.5s;
}

@keyframes speedLineMove {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Efecto de escaneo HUD vertical */
.hud-scan {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 107, 53, 0.3),
        rgba(247, 147, 30, 0.5),
        rgba(255, 107, 53, 0.3),
        transparent
    );
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
    animation: hudScan 8s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes hudScan {
    0%, 100% {
        transform: translateY(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        transform: translateY(100vh);
        opacity: 0.6;
    }
    90% {
        opacity: 0;
    }
}

/* Corners técnicos en las esquinas */
.tech-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 107, 53, 0.2);
    pointer-events: none;
}

.tech-corner::before,
.tech-corner::after {
    content: '';
    position: absolute;
    background: rgba(255, 107, 53, 0.3);
}

.tech-corner::before {
    width: 20px;
    height: 2px;
}

.tech-corner::after {
    width: 2px;
    height: 20px;
}

.tech-corner.top-left {
    top: 100px;
    left: 50px;
    border-right: none;
    border-bottom: none;
}

.tech-corner.top-left::before {
    top: 0;
    left: 0;
}

.tech-corner.top-left::after {
    top: 0;
    left: 0;
}

.tech-corner.top-right {
    top: 100px;
    right: 50px;
    border-left: none;
    border-bottom: none;
}

.tech-corner.top-right::before {
    top: 0;
    right: 0;
}

.tech-corner.top-right::after {
    top: 0;
    right: 0;
}

.tech-corner.bottom-left {
    bottom: 100px;
    left: 50px;
    border-right: none;
    border-top: none;
    animation: cornerPulse 3s ease-in-out infinite;
}

.tech-corner.bottom-left::before {
    bottom: 0;
    left: 0;
}

.tech-corner.bottom-left::after {
    bottom: 0;
    left: 0;
}

.tech-corner.bottom-right {
    bottom: 100px;
    right: 50px;
    border-left: none;
    border-top: none;
    animation: cornerPulse 3s ease-in-out infinite 1.5s;
}

.tech-corner.bottom-right::before {
    bottom: 0;
    right: 0;
}

.tech-corner.bottom-right::after {
    bottom: 0;
    right: 0;
}

@keyframes cornerPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1200px;
    padding: 0 2rem;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-color);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

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

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

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.title-line {
    display: block;
    overflow: hidden;
}

/* Primera línea - Pequeña */
.title-line:nth-child(1) {
    font-size: clamp(1.4rem, 5vw, 4rem);
}

/* Segunda línea - Mediana */
.title-line:nth-child(2) {
    font-size: clamp(2.2rem, 8vw, 7rem);
}

/* Tercera línea - Grande */
.title-line:nth-child(3) {
    font-size: clamp(3rem, 11vw, 10rem);
}

.word {
    display: inline-block;
    margin: 0 0.2em;
}

.word.highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: var(--shadow-glow);
}

/* Animación épica para REAL */
.word.speed-word {
    position: relative;
    display: inline-block;
    animation: speedSlide 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) 2s forwards;
    transform: translateX(-200%);
    opacity: 0;
}

@keyframes speedSlide {
    0% {
        transform: translateX(-200%);
        opacity: 0;
    }
    70% {
        transform: translateX(20%);
        opacity: 1;
    }
    85% {
        transform: translateX(-10%);
    }
    95% {
        transform: translateX(5%);
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Rastro de velocidad/tierra */
.speed-trail {
    position: absolute;
    left: -50px;
    top: 50%;
    width: 40px;
    height: 8px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 107, 53, 0.6), 
        rgba(247, 147, 30, 0.4),
        transparent
    );
    transform: translateY(-50%) skewX(-25deg);
    opacity: 0;
    border-radius: 4px;
    filter: blur(2px);
}

.speed-trail:nth-child(2) {
    animation: trail 2s ease-out 2s;
    animation-delay: 2.1s;
    top: 30%;
    width: 35px;
    height: 6px;
}

.speed-trail:nth-child(3) {
    animation: trail 2s ease-out 2s;
    animation-delay: 2.15s;
    top: 70%;
    width: 30px;
    height: 5px;
}

.speed-trail:nth-child(4) {
    animation: trail 2s ease-out 2s;
    animation-delay: 2.2s;
    top: 40%;
    width: 25px;
    height: 4px;
    left: -30px;
}

.speed-trail:nth-child(5) {
    animation: trail 2s ease-out 2s;
    animation-delay: 2.25s;
    top: 60%;
    width: 20px;
    height: 3px;
    left: -20px;
}

.speed-trail:nth-child(6) {
    animation: trail 2s ease-out 2s;
    animation-delay: 2.3s;
    top: 80%;
    width: 15px;
    height: 2px;
    left: -10px;
}

@keyframes trail {
    0% {
        opacity: 0;
        transform: translateX(0) translateY(-50%) skewX(-25deg) scale(1);
    }
    20% {
        opacity: 0.8;
    }
    50% {
        opacity: 0.6;
        transform: translateX(-100px) translateY(-50%) skewX(-25deg) scale(0.8);
    }
    100% {
        opacity: 0;
        transform: translateX(-200px) translateY(-50%) skewX(-25deg) scale(0.3);
    }
}

/* Partículas continuas que siguen pasando */
.continuous-particle {
    position: absolute;
    right: -20px;
    width: 30px;
    height: 5px;
    background: linear-gradient(90deg, 
        rgba(255, 107, 53, 0.4),
        rgba(247, 147, 30, 0.3),
        transparent
    );
    transform: skewX(-25deg);
    opacity: 0;
    border-radius: 3px;
    filter: blur(1.5px);
    animation: continuousFlow 2.5s ease-in-out infinite;
    z-index: -1;
}

/* Diferentes delays y posiciones para cada partícula */
.continuous-particle:nth-child(7) {
    animation-delay: 4s;
    top: 35%;
    width: 35px;
    height: 6px;
}

.continuous-particle:nth-child(8) {
    animation-delay: 4.6s;
    top: 55%;
    width: 28px;
    height: 4px;
}

.continuous-particle:nth-child(9) {
    animation-delay: 5.2s;
    top: 70%;
    width: 32px;
    height: 5px;
}

.continuous-particle:nth-child(10) {
    animation-delay: 5.8s;
    top: 45%;
    width: 25px;
    height: 4px;
}

@keyframes continuousFlow {
    0% {
        opacity: 0;
        transform: translateX(0) skewX(-25deg) scale(0.8);
    }
    15% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.4;
        transform: translateX(-150px) skewX(-25deg) scale(0.6);
    }
    100% {
        opacity: 0;
        transform: translateX(-300px) skewX(-25deg) scale(0.3);
    }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 3rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: none;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

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

.btn:hover::before {
    left: 100%;
}

.btn svg {
    width: 20px;
    height: 20px;
    transition: var(--transition);
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--text-primary);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    border: none;
}

@keyframes btn-pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 107, 53, 0.4);
    }
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 107, 53, 0.5);
    filter: brightness(1.1);
    animation: none;
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

/* Hero Button - Extra Large & Impactful */
.hero-btn-reservas {
    padding: 1.5rem 4rem;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
    animation: btn-pulse 2s ease-in-out infinite;
}

.hero-btn-reservas:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(255, 107, 53, 0.5);
}

.hero-btn-reservas svg {
    width: 24px;
    height: 24px;
}

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

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

.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: var(--text-muted);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: var(--primary-color);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(400%);
    }
}

/* ==========================================
   Stats Section
   ========================================== */
.stats-section {
    padding: 8rem 0;
    background: var(--dark-gray);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
    gap: 3rem;
}

.stat-item:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-item:nth-child(4) {
    animation-delay: 0.4s;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--dark-bg);
    border-radius: var(--border-radius-md);
    border: 2px solid var(--light-gray);
    border-top: 3px solid var(--primary-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-card-hover);
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.stat-plus,
.stat-percent {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--primary-color);
    display: inline-block;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ==========================================
   Section Headers
   ========================================== */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--primary-color);
}

.section-tag {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    padding: 0.3rem 1rem;
    border: 2px solid var(--primary-color);
    border-left: 4px solid var(--primary-color);
    position: relative;
}

.section-tag::before {
    content: '//';
    position: absolute;
    left: -1.5rem;
    color: var(--primary-color);
    opacity: 0.5;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
}

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

/* ==========================================
   Experience Section
   ========================================== */
.experience-section {
    padding: 8rem 0;
    background: var(--dark-bg);
    position: relative;
}

.experience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.experience-content {
    display: grid;
    gap: 1rem;
}

.experience-text {
    max-width: 900px;
    margin: 0 auto;
}

.large-text {
    font-size: 1.65rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.experience-text p {
    font-size: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.experience-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    padding: 2.5rem;
    background: var(--dark-gray);
    border-radius: var(--border-radius-lg);
    border: 2px solid var(--light-gray);
    border-left: 4px solid transparent;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-card);
}

.feature-card::after {
    display: none;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-left-color: var(--primary-color);
    box-shadow: var(--shadow-card-hover);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: var(--border-radius-sm);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.6);
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    color: var(--text-primary);
}

.feature-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==========================================
   Divider Section
   ========================================== */
.divider-section {
    position: relative;
    padding: 6rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-gray);
    overflow: hidden;
}

.divider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(247, 147, 30, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.divider-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(255, 107, 53, 0.06);
    pointer-events: none;
}

.divider-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.divider-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.divider-content p {
    font-size: 1.4rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 300;
}

/* ==========================================
   Simulators Section
   ========================================== */
.simulators-section {
    padding: 8rem 0;
    background: var(--dark-gray);
}

.simulators-grid {
    display: grid;
    gap: 3rem;
}

.simulator-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--dark-bg);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 2px solid var(--light-gray);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-card);
}

.simulator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--accent-gradient);
    transition: height 0.4s ease;
}

.simulator-card:hover::before {
    height: 100%;
}

.simulator-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-card-hover);
    transform: translateX(8px) scale(1.01);
}

.simulator-card:nth-child(even) {
    direction: rtl;
    border-left: none;
    border-right: 4px solid var(--primary-color);
}

.simulator-card:nth-child(even)::before {
    left: auto;
    right: 0;
}

.simulator-card:nth-child(even):hover {
    transform: translateX(-8px) scale(1.01);
}

.simulator-card:nth-child(even) > * {
    direction: ltr;
}

.simulator-image {
    position: relative;
    overflow: hidden;
    background: var(--dark-bg);
    min-height: 280px;
}

.simulator-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.6s ease, filter 0.3s ease;
    filter: grayscale(0.2);
    position: absolute;
    top: 0;
    left: 0;
}

.simulator-card:hover .simulator-image img {
    filter: grayscale(0);
}

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

.simulator-overlay {
    position: absolute;
    top: 0;
    left: 0;
}

.simulator-tag {
    padding: 0.6rem 1.5rem;
    background: var(--primary-color);
    color: var(--text-primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    border-radius: 0 0 var(--border-radius-sm) 0;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.5);
}

.simulator-content {
    padding: 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.simulator-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.simulator-content > p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.simulator-features {
    list-style: none;
    display: grid;
    gap: 1rem;
}

.simulator-features li {
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.simulator-features li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* ==========================================
   Services Section
   ========================================== */
.services-section {
    padding: 8rem 0;
    background: var(--dark-bg);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(247, 147, 30, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.service-card {
    padding: 3rem;
    background: var(--dark-gray);
    border-radius: var(--border-radius-lg);
    border: 2px solid var(--light-gray);
    border-top: 4px solid var(--primary-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1));
    transition: width 0.4s ease;
}

.service-card:hover::before {
    width: 100%;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-top-color: var(--secondary-color);
    box-shadow: var(--shadow-card-hover);
}

.service-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* ==========================================
   Location Section
   ========================================== */
.location-section {
    padding: 8rem 0;
    background: var(--dark-gray);
}

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

.location-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-info h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
}

.address,
.hours {
    display: flex;
    gap: 1.5rem;
}

.address svg,
.hours svg {
    width: 30px;
    height: 30px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.address strong,
.hours strong {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.address p,
.hours p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.1rem;
}

.location-map {
    height: 500px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 2px solid var(--light-gray);
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.location-map:hover {
    box-shadow: var(--shadow-card-hover);
    transform: scale(1.01);
}

/* ==========================================
   Contact Section
   ========================================== */
.contact-section {
    padding: 8rem 0;
    background: var(--dark-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2.5rem;
    background: var(--dark-gray);
    border-radius: var(--border-radius-lg);
    border: 2px solid var(--light-gray);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    transition: var(--transition);
}

.contact-card-whatsapp::before {
    background: #25D366;
}

.contact-card-instagram::before {
    background: linear-gradient(90deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.contact-card-email::before {
    background: var(--accent-gradient);
}

.contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.1);
}

.contact-card-whatsapp:hover {
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.15);
}

.contact-card-instagram:hover {
    box-shadow: 0 12px 40px rgba(225, 48, 108, 0.15);
}

.contact-card-email:hover {
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.15);
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-sm);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1);
}

.whatsapp-icon {
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
}

.instagram-icon {
    background: rgba(225, 48, 108, 0.15);
    color: #E1306C;
}

.email-icon {
    background: rgba(255, 107, 53, 0.15);
    color: var(--primary-color);
}

.contact-card-icon svg {
    width: 28px;
    height: 28px;
}

.contact-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.contact-card p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.contact-card-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
}

.contact-card-whatsapp .contact-card-action {
    color: #25D366;
}

.contact-card-instagram .contact-card-action {
    color: #E1306C;
}

.contact-card-email .contact-card-action {
    color: var(--primary-color);
}

.contact-card:hover .contact-card-action {
    gap: 0.75rem;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: var(--dark-gray);
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--light-gray);
}

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

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

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    border-radius: var(--border-radius-sm);
    border: 2px solid transparent;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.footer-social a:hover {
    background: transparent;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.footer-social a:hover svg {
    color: var(--primary-color);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

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

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

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

.footer-column a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--light-gray);
    text-align: center;
}

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

/* ==========================================
   Responsive Design
   ========================================== */

/* Prevent horizontal overflow globally */
#main-container {
    overflow-x: hidden;
    width: 100%;
}

@media (max-width: 1024px) {
    .simulator-card,
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .simulator-card:nth-child(even) {
        direction: ltr;
        border-left: 4px solid var(--primary-color);
        border-right: 2px solid var(--light-gray);
    }

    .simulator-card {
        gap: 0;
    }

    .simulator-image {
        min-height: 260px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }

    .location-map {
        height: 350px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 17px;
    }

    .container {
        padding: 0 1.25rem;
    }

    .nav-menu {
        display: none;
    }
    
    .nav-hamburger {
        display: flex;
    }

    .navbar {
        padding: 1rem 0;
    }

    .nav-container {
        padding: 0 1.25rem;
    }

    /* Hero mobile */
    .hero-content {
        padding: 0 1.25rem;
    }

    .hero-tag {
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    .hero-cta {
        gap: 1rem;
        padding: 0;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 1.05rem;
    }

    .hero-btn-reservas {
        padding: 1.2rem 2.5rem;
        font-size: 1.15rem;
    }

    /* Hide tech corners on mobile */
    .tech-corner {
        display: none;
    }

    /* Section headers */
    .section-header {
        margin-bottom: 3rem;
    }

    .section-tag {
        font-size: 0.8rem;
        padding: 0.25rem 0.75rem;
    }

    .section-tag::before {
        left: -1.2rem;
    }

    .section-title {
        font-size: clamp(1.8rem, 7vw, 2.8rem);
    }

    /* Experience section */
    .experience-section {
        padding: 5rem 0;
    }

    .large-text {
        font-size: 1.35rem;
        line-height: 1.7;
    }

    .experience-text p {
        font-size: 1.1rem;
        line-height: 1.8;
    }

    .experience-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2.5rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .feature-card h3 {
        font-size: 1.25rem;
    }

    .feature-card p {
        font-size: 1.05rem;
        line-height: 1.7;
    }

    /* Divider */
    .divider-section {
        padding: 4rem 0;
    }

    .divider-content h2 {
        font-size: clamp(1.6rem, 6vw, 2.5rem);
    }

    .divider-content p {
        font-size: 1.05rem;
    }

    .divider-section::after {
        width: 300px;
        height: 300px;
    }

    /* Simulators */
    .simulators-section {
        padding: 5rem 0;
    }

    .simulator-image {
        min-height: 200px;
    }

    .simulator-content {
        padding: 1.75rem 1.5rem;
    }

    .simulator-content h3 {
        font-size: 1.6rem;
    }

    .simulator-content > p {
        font-size: 1.05rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .simulator-features li {
        font-size: 1.05rem;
    }

    .simulator-card:hover {
        transform: none;
    }

    .simulator-card:nth-child(even):hover {
        transform: none;
    }

    /* Services */
    .services-section {
        padding: 5rem 0;
    }

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

    .service-card {
        padding: 2rem;
    }

    .service-number {
        font-size: 3rem;
    }

    .service-card h3 {
        font-size: 1.4rem;
    }

    .service-card p {
        font-size: 1.05rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .service-price {
        font-size: 1.2rem;
    }

    /* Location */
    .location-section {
        padding: 5rem 0;
    }

    .location-info h2 {
        font-size: 2rem;
    }

    .address strong,
    .hours strong {
        font-size: 1.15rem;
    }

    .address p,
    .hours p {
        font-size: 1.05rem;
    }

    .location-map {
        height: 300px;
    }

    /* Contact */
    .contact-section {
        padding: 5rem 0;
    }

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

    .contact-card {
        padding: 2rem;
    }

    .contact-card:hover {
        transform: none;
    }

    /* Footer */
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        gap: 2.5rem;
    }

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

    .footer-column h4 {
        margin-bottom: 0.75rem;
    }

    .footer-brand p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .footer-bottom p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    /* Stats */
    .stats-section {
        padding: 5rem 0;
    }

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

    .stat-number {
        font-size: 3rem;
    }

    .stat-plus,
    .stat-percent {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .stat-item:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        white-space: nowrap;
    }
    
    .hero-btn-reservas {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }

    .logo-image {
        height: 28px;
    }

    .logo-location {
        font-size: 0.7rem;
        letter-spacing: 0.15em;
    }

    .footer-logo-image {
        height: 36px;
    }

    .feature-card:hover {
        transform: none;
    }

    .service-card:hover {
        transform: none;
    }
}

/* ==========================================
   Animations & Utilities
   ========================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Efecto de glow en hover para elementos interactivos */
@keyframes glow-pulse {
    0%, 100% {
        box-shadow: var(--shadow-card);
    }
    50% {
        box-shadow: var(--shadow-card-hover);
    }
}

/* Animación de entrada suave para cards */
@keyframes card-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-5px) rotate(0deg);
    }
}

/* Efecto de brillo que pasa */
@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Smooth Scroll */
html.has-scroll-smooth {
    overflow: hidden;
}

html.has-scroll-dragging {
    user-select: none;
}

.has-scroll-smooth body {
    overflow: hidden;
}

.has-scroll-smooth [data-scroll-container] {
    min-height: 100vh;
}

[data-scroll-direction="horizontal"] [data-scroll-container] {
    height: 100vh;
    display: inline-block;
    white-space: nowrap;
}

[data-scroll-direction="horizontal"] [data-scroll-section] {
    display: inline-block;
    vertical-align: top;
    white-space: nowrap;
    height: 100%;
}

.c-scrollbar {
    position: absolute;
    right: 0;
    top: 0;
    width: 11px;
    height: 100%;
    transform-origin: center right;
    transition: transform 0.3s, opacity 0.3s;
    opacity: 0;
}

.c-scrollbar:hover {
    transform: scaleX(1.45);
}

.c-scrollbar:hover,
.has-scroll-scrolling .c-scrollbar,
.has-scroll-dragging .c-scrollbar {
    opacity: 1;
}

.c-scrollbar_thumb {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-color);
    opacity: 0.5;
    width: 7px;
    border-radius: 10px;
    margin: 2px;
    cursor: grab;
}

.has-scroll-dragging .c-scrollbar_thumb {
    cursor: grabbing;
}

/* ==========================================
   Scroll to Top Button
   ========================================== */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    background: transparent;
    color: var(--primary-color);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.6);
}

/* ==========================================
   Custom Cursor (Optional)
   ========================================== */
.custom-cursor,
.custom-cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10001;
    mix-blend-mode: difference;
}

.custom-cursor {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.custom-cursor-follower {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.custom-cursor.active,
.custom-cursor-follower.active {
    transform: translate(-50%, -50%) scale(1.5);
}

@media (max-width: 768px) {
    .custom-cursor,
    .custom-cursor-follower {
        display: none;
    }
}

/* ==========================================
   Loading States
   ========================================== */
.loading {
    pointer-events: none;
    opacity: 0.6;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--primary-color);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

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

/* ==========================================
   Reviews Section
   ========================================== */
.reviews-section {
    padding: 6rem 2rem;
    background: var(--dark-bg);
    position: relative;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.review-card {
    background: var(--dark-gray);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--border-radius-sm);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition);
}

.review-card:hover {
    border-color: rgba(255,255,255,0.12);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.review-stars {
    color: #FBBC04;
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.review-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
    font-style: italic;
    flex: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4285F4, #34A853);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
    flex-shrink: 0;
}

.review-author strong {
    color: var(--text-primary);
    font-size: 0.95rem;
    display: block;
}

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

.reviews-summary {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.reviews-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--dark-gray);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 60px;
    padding: 1rem 2.5rem;
}

.rating-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.rating-stars {
    color: #FBBC04;
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.rating-count {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.rating-count::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%234285F4' d='M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92a5.06 5.06 0 0 1-2.2 3.32v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.1z'/%3E%3Cpath fill='%2334A853' d='M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z'/%3E%3Cpath fill='%23FBBC05' d='M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l2.85-2.22.81-.62z'/%3E%3Cpath fill='%23EA4335' d='M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* ==========================================
   FAQ Section
   ========================================== */
.faq-section {
    padding: 6rem 2rem;
    background: var(--dark-gray);
    position: relative;
}

.faq-grid {
    max-width: 800px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.faq-item:first-child {
    border-top: 1px solid rgba(255,255,255,0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 0;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
    gap: 1rem;
}

.faq-question:hover {
    color: var(--text-secondary);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 1.4rem;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

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

/* ==========================================
   Reviews & FAQ Responsive
   ========================================== */
@media (max-width: 768px) {
    .reviews-section,
    .faq-section {
        padding: 4rem 1.2rem;
    }

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

    .review-card {
        padding: 1.5rem;
    }

    .review-card:hover {
        transform: none;
    }

    .reviews-rating {
        padding: 0.8rem 1.5rem;
        gap: 0.75rem;
    }

    .rating-number {
        font-size: 1.5rem;
    }

    .faq-question {
        font-size: 1.05rem;
        padding: 1.2rem 0;
    }
}

@media (max-width: 480px) {
    .reviews-section,
    .faq-section {
        padding: 3rem 1rem;
    }

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

    .reviews-rating {
        flex-wrap: wrap;
        justify-content: center;
        border-radius: var(--border-radius-sm);
        padding: 1rem;
    }

    .faq-question {
        font-size: 1rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }
}

/* ==========================================
   Floating CTA
   ========================================== */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #fff;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0.9rem 1.8rem;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 900;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.floating-cta:hover {
    box-shadow: 0 6px 30px rgba(255, 107, 53, 0.6);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .floating-cta {
        bottom: 1.2rem;
        right: 1.2rem;
        padding: 0.75rem 1.4rem;
        font-size: 0.75rem;
    }
}

/* ==========================================
   Mobile Menu
   ========================================== */
@media (max-width: 768px) {
    .nav-menu {
        display: flex;
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: left 0.4s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.6rem;
        font-weight: 600;
    }
    
    .nav-hamburger {
        z-index: 1000;
    }
    
    .nav-hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .nav-hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
}


