/* ========================================
   G&P Servicio Mecánico Spa - Design System
   ======================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800&display=swap');

/* --- Variables --- */
:root {
    --dark: #1a1a2e;
    --dark-2: #16213e;
    --dark-3: #0f3460;
    --steel: #4a6fa5;
    --steel-light: #6b8fbe;
    --orange: #ff6b35;
    --orange-light: #ff8f5e;
    --orange-glow: rgba(255, 107, 53, 0.25);
    --light: #f8f9fa;
    --light-2: #e9ecef;
    --white: #ffffff;
    --text: #2d3436;
    --text-muted: #636e72;
    --success: #00b894;
    --danger: #e74c3c;
    --warning: #f39c12;

    --font-primary: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-orange: 0 8px 25px rgba(255,107,53,0.35);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

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

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

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

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    position: relative;
}

.section-title span {
    color: var(--orange);
}

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

/* --- Container --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Section --- */
.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--dark);
    color: var(--white);
}

.section-dark .section-title {
    color: var(--white);
}

.section-dark .section-subtitle {
    color: rgba(255,255,255,0.6);
}

/* =====================
   NAVBAR
   ===================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--white);
}

.navbar-brand .logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.navbar-nav a {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.navbar-nav a:hover,
.navbar-nav a.active {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.nav-cta {
    background: linear-gradient(135deg, var(--orange), var(--orange-light)) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-md) !important;
    font-weight: 600 !important;
}

.nav-cta:hover {
    box-shadow: var(--shadow-orange);
    transform: translateY(-2px);
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
}

/* =====================
   HERO
   ===================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255,107,53,0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroGlow 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(74,111,165,0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroGlow 10s ease-in-out infinite reverse;
}

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

/* =====================
   HERO VISUAL ANIMATION
   ===================== */
.hero-visual {
    animation: fadeInUp 1s ease 0.5s both;
}

/* Engine Block — center */
.engine-block {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 160px; height: 160px;
}

.engine-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 0 40px var(--orange-glow), 0 0 80px var(--orange-glow);
    z-index: 3;
    animation: enginePulse 3s ease-in-out infinite;
}

@keyframes enginePulse {
    0%, 100% { box-shadow: 0 0 40px var(--orange-glow), 0 0 80px var(--orange-glow); }
    50% { box-shadow: 0 0 60px var(--orange-glow), 0 0 120px var(--orange-glow); transform: translate(-50%, -50%) scale(1.05); }
}

.engine-gear {
    position: absolute;
    color: var(--steel);
    opacity: 0.25;
    z-index: 1;
}

.gear-large {
    font-size: 7rem;
    top: -30px; left: -40px;
    animation: gearSpin 12s linear infinite;
}

.gear-medium {
    font-size: 4.5rem;
    top: 60px; right: -30px;
    animation: gearSpin 8s linear infinite reverse;
}

.gear-small {
    font-size: 3rem;
    bottom: -10px; left: 20px;
    animation: gearSpin 6s linear infinite;
}

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

/* Floating Parts */
.floating-part {
    position: absolute;
    width: 52px; height: 52px;
    background: var(--orange-glow);
    border: 1px solid var(--orange);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--orange);
    z-index: 4;
    transition: all 0.4s;
}

.floating-part:hover {
    background: var(--orange);
    color: #fff;
    transform: scale(1.2) !important;
    box-shadow: 0 8px 25px var(--orange-glow);
}

.fp-1 { top: 30px; left: 10px; animation: floatPart 5s ease-in-out infinite; }
.fp-2 { top: 10px; right: 50px; animation: floatPart 6s ease-in-out 0.5s infinite; }
.fp-3 { top: 50%; right: 0; animation: floatPart 4.5s ease-in-out 1s infinite; }
.fp-4 { bottom: 60px; right: 30px; animation: floatPart 5.5s ease-in-out 1.5s infinite; }
.fp-5 { bottom: 20px; left: 40px; animation: floatPart 6.5s ease-in-out 0.8s infinite; }
.fp-6 { top: 45%; left: -10px; animation: floatPart 5s ease-in-out 2s infinite; }

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

/* Orbit Rings */
.orbit-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 300px; height: 300px;
    border: 1px solid var(--orange-glow);
    border-radius: 50%;
    animation: orbitSpin 20s linear infinite;
}

.orbit-ring::after {
    content: '';
    position: absolute;
    top: -4px; left: 50%;
    width: 8px; height: 8px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--orange-glow);
}

.orbit-ring-2 {
    width: 220px; height: 220px;
    border-color: var(--steel);
    opacity: 0.15;
    animation-duration: 15s;
    animation-direction: reverse;
}

.orbit-ring-2::after {
    background: var(--steel-light);
    box-shadow: 0 0 12px rgba(107,143,190,0.3);
}

@keyframes orbitSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Sparks */
.spark {
    position: absolute;
    width: 3px; height: 3px;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0;
    animation: sparkle 3s ease-in-out infinite;
}

.s1 { top: 20%; left: 30%; animation-delay: 0s; }
.s2 { top: 40%; right: 20%; animation-delay: 0.6s; }
.s3 { bottom: 30%; left: 25%; animation-delay: 1.2s; }
.s4 { top: 60%; right: 35%; animation-delay: 1.8s; }
.s5 { bottom: 20%; right: 45%; animation-delay: 2.4s; }

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1.5); box-shadow: 0 0 8px var(--orange-glow); }
}

/* =====================
   MOBILE HERO ANIMATION — Car with speed lines
   ===================== */
.hero-mobile-anim {
    display: none;
}

@media (max-width: 768px) {
    .hero-mobile-anim {
        display: block;
        width: 100%;
        height: 100px;
        position: relative;
        overflow: hidden;
        margin: 12px 0;
    }

    /* Animated car */
    .mobile-car {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        font-size: 3.5rem;
        color: var(--orange);
        filter: drop-shadow(0 0 20px var(--orange-glow));
        animation: carBounce 3s ease-in-out infinite;
        z-index: 3;
    }

    @keyframes carBounce {
        0%, 100% { transform: translate(-50%, -50%); }
        25% { transform: translate(-50%, -54%); }
        75% { transform: translate(-50%, -46%); }
    }

    /* Speed lines */
    .speed-line {
        position: absolute;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--orange), transparent);
        border-radius: 2px;
        animation: speedDash 1.8s linear infinite;
        opacity: 0.5;
    }

    .speed-line:nth-child(2) { top: 28%; width: 60px; left: -60px; animation-delay: 0s; animation-duration: 1.5s; }
    .speed-line:nth-child(3) { top: 42%; width: 80px; left: -80px; animation-delay: 0.3s; animation-duration: 1.2s; }
    .speed-line:nth-child(4) { top: 56%; width: 50px; left: -50px; animation-delay: 0.6s; animation-duration: 1.7s; }
    .speed-line:nth-child(5) { top: 70%; width: 70px; left: -70px; animation-delay: 0.9s; animation-duration: 1.4s; }
    .speed-line:nth-child(6) { top: 35%; width: 40px; left: -40px; animation-delay: 1.2s; animation-duration: 1.6s; }
    .speed-line:nth-child(7) { top: 62%; width: 55px; left: -55px; animation-delay: 0.4s; animation-duration: 1.3s; }

    @keyframes speedDash {
        0% { transform: translateX(-10px); opacity: 0; }
        20% { opacity: 0.6; }
        100% { transform: translateX(calc(100vw + 100px)); opacity: 0; }
    }

    /* Spinning wheel on car */
    .mobile-wheel {
        position: absolute;
        left: calc(50% + 20px);
        top: calc(50% + 10px);
        font-size: 0.75rem;
        color: var(--orange-light);
        animation: wheelSpin 0.8s linear infinite;
        z-index: 4;
    }

    .mobile-wheel-2 {
        left: calc(50% - 30px);
    }

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

    /* Road line */
    .mobile-road {
        position: absolute;
        bottom: 15px;
        left: 0; right: 0;
        height: 2px;
        background: repeating-linear-gradient(90deg, var(--orange) 0px, var(--orange) 20px, transparent 20px, transparent 40px);
        opacity: 0.2;
        animation: roadScroll 2s linear infinite;
    }

    @keyframes roadScroll {
        from { background-position: 0 0; }
        to { background-position: -40px 0; }
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,107,53,0.15);
    border: 1px solid rgba(255,107,53,0.3);
    color: var(--orange-light);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    color: rgba(255,255,255,0.65);
    font-size: 1.15rem;
    margin-bottom: 36px;
    max-width: 540px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.3s both;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-orange);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.25);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--dark-2);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

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

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

.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
}

/* =====================
   SERVICES
   ===================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255,107,53,0.1), rgba(255,107,53,0.05));
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--orange);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: var(--white);
    transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.service-price {
    display: inline-block;
    margin-top: 16px;
    padding: 6px 16px;
    background: rgba(255,107,53,0.08);
    color: var(--orange);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* =====================
   VIDEOS
   ===================== */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

.video-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    background: var(--dark);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.video-card iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    display: block;
}

/* =====================
   ABOUT
   ===================== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.about-image .accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.about-text h2 span {
    color: var(--orange);
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--dark);
    font-size: 0.9rem;
}

.about-feature i {
    color: var(--orange);
    font-size: 1.1rem;
}

/* =====================
   REVIEWS
   ===================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.review-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--steel), var(--steel-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}

.review-author {
    font-weight: 600;
    color: var(--dark);
}

.review-stars {
    color: #f39c12;
    font-size: 0.85rem;
    margin-top: 2px;
}

.review-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    font-style: italic;
}

.google-review-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    padding: 12px 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition);
}

.google-review-badge:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.google-review-badge img {
    height: 24px;
}

/* =====================
   CONTACT
   ===================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, rgba(255,107,53,0.1), rgba(255,107,53,0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.2rem;
}

.contact-item h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: var(--dark);
}

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

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 400px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}

/* =====================
   FOOTER
   ===================== */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.6);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-3px);
}

/* =====================
   ANIMATIONS
   ===================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =====================
   BOOKING FORM
   ===================== */
.booking-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.booking-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    padding: 48px;
}

.form-steps {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
}

.step-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.step-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.step-dot.active {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: var(--white);
}

.step-dot.completed {
    background: var(--success);
    color: var(--white);
}

.step-line {
    width: 40px;
    height: 2px;
    background: rgba(255,255,255,0.1);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--orange);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 0 3px rgba(255,107,53,0.12);
}

.form-control::placeholder {
    color: rgba(255,255,255,0.3);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='rgba(255,255,255,0.5)' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

select.form-control option {
    background: var(--dark);
    color: var(--white);
}

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

.form-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
}

/* Image upload zone */
.upload-zone {
    border: 2px dashed rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.upload-zone:hover,
.upload-zone.dragover {
    border-color: var(--orange);
    background: rgba(255,107,53,0.05);
}

.upload-zone i {
    font-size: 2.5rem;
    color: var(--orange);
    margin-bottom: 12px;
}

.upload-zone p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.upload-preview {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.upload-preview .preview-item {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
}

.upload-preview .preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.upload-preview .preview-item .remove-btn {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 22px;
    height: 22px;
    background: rgba(231,76,60,0.9);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 11px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Date/time picker */
.time-slots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.time-slot {
    padding: 10px;
    text-align: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
}

.time-slot:hover {
    border-color: var(--orange);
    color: var(--white);
}

.time-slot.selected {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    border-color: var(--orange);
    color: var(--white);
    font-weight: 600;
}

.time-slot.disabled {
    opacity: 0.3;
    pointer-events: none;
}

/* =====================
   WHATSAPP FLOAT
   ===================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37,211,102,0.5);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 6px 30px rgba(37,211,102,0.6); }
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 992px) {
    .hero h1 { font-size: 2.8rem; }
    .about-content { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .section { padding: 70px 0; }
    .section-title { font-size: 2rem; text-align: center; }
    .section-subtitle { text-align: center; font-size: 1rem; padding: 0 10px; }
}

@media (max-width: 768px) {
    .navbar-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26,26,46,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 16px;
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }

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

    .navbar-toggle {
        display: block;
    }

    .hero { padding-top: 100px; min-height: auto; padding-bottom: 60px; }
    .hero h1 { font-size: 2.2rem; }
    .hero-stats { gap: 20px; flex-wrap: wrap; }
    .stat-number { font-size: 1.8rem; }
    .hero .container { flex-direction: column !important; }
    .hero-visual { display: none; }

    .form-row { grid-template-columns: 1fr; }
    .time-slots { grid-template-columns: repeat(3, 1fr); }
    .about-features { grid-template-columns: 1fr; }
    .videos-grid { grid-template-columns: 1fr; }

    .booking-form-container { padding: 28px 20px; }

    .form-steps { gap: 4px; }
    .step-line { width: 24px; }

    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { justify-content: center; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .services-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .time-slots { grid-template-columns: repeat(2, 1fr); }
}
