/* ===== CSS Variables ===== */
:root {
    --bg-primary: #0a0a0b;
    --bg-secondary: #111113;
    --bg-card: #161618;
    --bg-card-hover: #1a1a1d;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a5;
    --text-muted: #6b6b70;
    --accent: #ffffff;
    --accent-hover: #e0e0e0;
    --border: #2a2a2d;
    --border-light: #3a3a3d;
    --success: #22c55e;
    --gradient-start: #1a1a1d;
    --gradient-end: #0a0a0b;
    
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== Loading Screen ===== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* Car SVG */
.car-silhouette {
    width: 400px;
    height: 120px;
}

@media (max-width: 480px) {
    .car-silhouette {
        width: 320px;
        height: 96px;
    }
}

/* Main car outline animation */
.car-outline {
    fill: none;
    stroke: url(#carGradient);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 6000;
    stroke-dashoffset: 6000;
    animation: drawCar 2.5s ease-out forwards;
    filter: drop-shadow(0 0 8px rgba(96, 165, 250, 0.4));
}

/* Wheel animations */
.wheel-outline {
    fill: none;
    stroke: url(#carGradient);
    stroke-width: 4;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawCar 1s ease-out forwards;
    filter: drop-shadow(0 0 6px rgba(96, 165, 250, 0.5));
}

.wheel-left {
    animation-delay: 0.8s;
}

.wheel-right {
    animation-delay: 1s;
}

/* Glow effect after draw */
.car-glow {
    fill: none;
    stroke: #60a5fa;
    stroke-width: 8;
    opacity: 0;
    filter: blur(10px);
    animation: glowPulse 2s ease-in-out infinite 2.5s;
}

@keyframes drawCar {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.5;
    }
}

/* Headlight effects */
.headlight {
    fill: #60a5fa;
    opacity: 0;
    animation: headlightOn 0.5s ease forwards 2.2s;
    filter: drop-shadow(0 0 15px #60a5fa) drop-shadow(0 0 30px #60a5fa);
}

.taillight {
    fill: #ef4444;
    opacity: 0;
    animation: headlightOn 0.5s ease forwards 2.3s;
    filter: drop-shadow(0 0 15px #ef4444) drop-shadow(0 0 30px #ef4444);
}

@keyframes headlightOn {
    0% { opacity: 0; }
    50% { opacity: 1; }
    75% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Brand Name */
.loader-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 1.2s;
}

.loader-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #60a5fa 50%, #ffffff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 2s ease-in-out infinite 1.5s;
}

.loader-tagline {
    font-size: 0.9rem;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Progress Bar */
.loader-progress {
    width: 200px;
    height: 2px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 0.4s ease forwards 1.5s;
}

.loader-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #60a5fa, #ffffff, #60a5fa);
    background-size: 200% 100%;
    border-radius: 2px;
    transition: width 0.1s linear;
    animation: progressShimmer 1.5s ease-in-out infinite;
}

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

@keyframes progressShimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* ===== Floating WhatsApp Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.whatsapp-float.visible {
    opacity: 1;
    pointer-events: auto;
}

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

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* Body no-scroll while loading */
body.loading {
    overflow: hidden;
}

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

html {
    scroll-behavior: smooth;
}

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

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

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

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 11, 0.95);
    backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
}

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

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.85rem;
    transition: all var(--transition-fast);
}

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

.lang-toggle svg {
    width: 16px;
    height: 16px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.btn-primary {
    background: var(--text-primary);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

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

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

.btn-filled {
    background: var(--text-primary);
    color: var(--bg-primary);
}

.btn-filled:hover {
    background: var(--accent-hover);
}

.btn-small {
    padding: 10px 24px;
    font-size: 0.875rem;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease, transform 0.2s ease;
}

.btn-small::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    z-index: -1;
    transition: width 0.4s ease;
}

.btn-small:hover {
    color: white;
    border-color: #3b82f6;
    transform: scale(1.05);
}

.btn-small:hover::before {
    width: 100%;
}

.btn-full {
    width: 100%;
}

/* ===== Mobile Menu Button ===== */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-fast);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
}

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

.mobile-menu a {
    font-size: 1.1rem;
    color: var(--text-secondary);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.mobile-menu .btn {
    margin-top: 8px;
}

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

.hero-video-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 11, 0.3) 0%,
        rgba(10, 10, 11, 0.1) 40%,
        rgba(10, 10, 11, 0.4) 70%,
        rgba(10, 10, 11, 0.95) 100%
    );
}

/* Bottom content layout */
.hero-content-bottom {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    padding: 0 48px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left h1 {
    margin: 0;
}

.hero-line-1 {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-line-2 {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 400px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.hero-cta span {
    border-bottom: 1px solid var(--text-primary);
    padding-bottom: 2px;
}

.hero-cta:hover {
    gap: 12px;
}

.hero-cta svg {
    transition: transform var(--transition-fast);
}

.hero-cta:hover svg {
    transform: translateX(4px);
}

/* Scroll dots */
.hero-scroll-dots {
    position: absolute;
    right: 48px;
    bottom: 80px;
    display: flex;
    gap: 8px;
    z-index: 3;
}

.hero-scroll-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all var(--transition-fast);
}

.hero-scroll-dots .dot.active {
    background: var(--text-primary);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(30, 30, 35, 0.4) 0%, transparent 70%);
}

/* Hero responsive */
@media (max-width: 992px) {
    .hero-content-bottom {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 24px 60px;
    }
    
    .hero-scroll-dots {
        right: 24px;
        bottom: 60px;
    }
}

@media (max-width: 768px) {
    .hero-line-1,
    .hero-line-2 {
        font-size: 2rem;
    }
    
    .hero-description {
        display: none;
    }
    
    .hero-content-bottom {
        padding: 0 20px 40px;
    }
    
    .hero-video-overlay {
        background: linear-gradient(
            180deg,
            rgba(10, 10, 11, 0.1) 0%,
            rgba(10, 10, 11, 0.05) 40%,
            rgba(10, 10, 11, 0.2) 70%,
            rgba(10, 10, 11, 0.85) 100%
        );
    }
}

/* ===== Section Styles ===== */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-title-left {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    letter-spacing: -0.02em;
}

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

/* ===== Scroll Reveal Animations ===== */
/* Elements only hide when JS has loaded and added the class */
.js-reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-reveal.visible,
.js-reveal-left.visible,
.js-reveal-right.visible {
    opacity: 1;
    transform: translate(0);
}

/* Stagger delays for children */
.js-reveal[data-delay="1"] { transition-delay: 0.1s; }
.js-reveal[data-delay="2"] { transition-delay: 0.2s; }
.js-reveal[data-delay="3"] { transition-delay: 0.3s; }
.js-reveal[data-delay="4"] { transition-delay: 0.35s; }
.js-reveal[data-delay="5"] { transition-delay: 0.4s; }

/* ===== Delivery Map Section ===== */
.delivery-section {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.delivery-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
    margin-top: 48px;
}

.delivery-info h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.delivery-info > p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.delivery-locations {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.delivery-locations li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    cursor: pointer;
    font-size: 0.95rem;
}

.delivery-locations li:hover,
.delivery-locations li.active {
    border-color: #60a5fa;
    background: rgba(96, 165, 250, 0.05);
}

.delivery-locations .pin-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #60a5fa;
    flex-shrink: 0;
}

.delivery-locations .loc-name {
    font-weight: 500;
    color: var(--text-primary);
}

.delivery-locations .loc-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.delivery-map {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.delivery-map svg {
    width: 100%;
    height: 100%;
}

.map-pin {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

/* Prevent child elements from triggering separate mouse events */
.map-pin * {
    pointer-events: none;
}

.map-pin-pulse {
    animation: pinPulse 2s ease-in-out infinite;
}

@keyframes pinPulse {
    0%, 100% { opacity: 0.4; r: 14; }
    50% { opacity: 0; r: 22; }
}

.map-tooltip {
    position: absolute;
    background: rgba(10, 10, 11, 0.95);
    border: 1px solid #60a5fa;
    border-radius: var(--radius-md);
    padding: 12px 16px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.2s ease;
    z-index: 10;
    white-space: nowrap;
}

.map-tooltip.show {
    opacity: 1;
}

.map-tooltip strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-primary);
}

.map-tooltip span {
    font-size: 0.75rem;
    color: #60a5fa;
}

.map-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(96, 165, 250, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.25);
    border-radius: 100px;
    padding: 8px 16px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #60a5fa;
    display: flex;
    align-items: center;
    gap: 6px;
}

@media (max-width: 992px) {
    .delivery-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .delivery-map {
        aspect-ratio: 16/10;
    }
}

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

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
    align-items: stretch;
}

.fleet-grid > * {
    height: 100%;
}

.car-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.car-card:hover {
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(59, 130, 246, 0.1);
}

.car-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.car-card:hover .car-image img {
    transform: scale(1.05);
}

.car-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.car-badge.sports-car {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}

.car-badge.suv {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
}

.car-badge.luxury {
    background: rgba(168, 85, 247, 0.2);
    color: #c084fc;
}

.car-rating {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
}

.car-rating svg {
    color: #60a5fa;
}

.car-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.car-info h3 {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.car-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    align-items: center;
}

.spec {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.car-footer {
    display: flex;
    flex-direction: column;
    margin-top: auto;
    gap: 0;
}

.car-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.price {
    font-size: 1.5rem;
    font-weight: 600;
}

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

.car-footer .btn-small {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 14px 24px;
    margin-top: 16px;
}

/* Fleet CTA Button */
.fleet-cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 60px;
    text-align: center;
}

.fleet-cta-container {
    text-align: center;
}

.fleet-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.fleet-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease, transform 0.2s ease, gap 0.3s ease;
}

.fleet-cta-button.primary {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    border: none;
    color: white;
}

.fleet-cta-button.primary:hover {
    transform: scale(1.05);
    gap: 16px;
}

.fleet-cta-button.secondary {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
}

.fleet-cta-button.secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    z-index: -1;
    transition: width 0.4s ease;
}

.fleet-cta-button.secondary:hover {
    color: white;
    border-color: #3b82f6;
    transform: scale(1.05);
    gap: 16px;
}

.fleet-cta-button.secondary:hover::before {
    width: 100%;
}

.fleet-cta-button svg {
    transition: transform var(--transition-fast);
}

.fleet-cta-button:hover svg {
    transform: translateX(4px);
}

.fleet-cta-subtext {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===== Services Section - Bento Grid ===== */
.services-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 48px;
}

.services-header-right p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.services-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    padding-bottom: 4px;
    border-bottom: 2px solid #60a5fa;
    transition: all var(--transition-fast);
}

.services-cta:hover {
    gap: 12px;
}

.services-cta svg {
    transition: transform var(--transition-fast);
}

.services-cta:hover svg {
    transform: translateX(4px);
}

/* Bento Grid Layout */
.services-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 200px 200px 200px;
    gap: 16px;
}

.bento-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 200px;
}

.bento-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.bento-card:hover .bento-bg {
    transform: scale(1.05);
}

/* Bento Video Styles */
.bento-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bento-card:hover .bento-video {
    transform: scale(1.05);
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.bento-overlay-light {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 60%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

.bento-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

/* Large featured card */
.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
}

.bento-content h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 16px;
}

.bento-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 400px;
}

/* Image only card */
.bento-image {
    grid-column: span 2;
}

/* Stat card */
.bento-stat {
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.bento-stat-content {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
    background: linear-gradient(135deg, #60a5fa, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.bento-stat-content p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: auto;
    padding-bottom: 8px;
}

.bento-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.bento-link:hover {
    gap: 10px;
    color: #60a5fa;
}

/* Offer card */
.bento-offer {
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.bento-offer-content {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.bento-offer-content h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.bento-offer-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Events card */
.bento-events {
    grid-column: span 2;
}

.bento-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    padding: 6px 12px;
    background: #60a5fa;
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
}

.bento-events-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
}

.bento-events-content h4 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.bento-events-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
}

/* Delivery card */
.bento-delivery {
    grid-column: span 2;
}

.bento-delivery-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
}

.bento-delivery-content h4 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.bento-delivery-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
}

/* Responsive Bento */
@media (max-width: 992px) {
    .services-header {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .services-bento {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-large {
        grid-column: span 2;
    }
    
    .bento-image {
        grid-column: span 2;
    }
    
    .bento-stat {
        grid-column: span 1;
    }
    
    .bento-offer {
        grid-column: span 1;
    }
    
    .bento-events {
        grid-column: span 2;
    }
    
    .bento-delivery {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .services-bento {
        grid-template-columns: 1fr;
    }
    
    .bento-large,
    .bento-image,
    .bento-stat,
    .bento-offer,
    .bento-events,
    .bento-delivery {
        grid-column: span 1;
    }
    
    .bento-large {
        min-height: 350px;
    }
    
    .bento-image {
        min-height: 200px;
    }
}

/* ===== Testimonials Section - Full Width Carousel ===== */
.testimonials-section {
    padding: 0;
    background: var(--bg-primary);
}

.testimonials-header {
    padding: 100px 0 60px;
}

.testimonials-header-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.section-title-left {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    text-align: left;
}

.testimonials-header-right p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.testimonials-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    padding-bottom: 4px;
    border-bottom: 2px solid #60a5fa;
    transition: all var(--transition-fast);
}

.testimonials-cta:hover {
    gap: 12px;
}

.testimonials-cta svg {
    transition: transform var(--transition-fast);
}

.testimonials-cta:hover svg {
    transform: translateX(4px);
}

/* Carousel Container */
.testimonials-carousel {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-slide {
    position: relative;
    min-width: 100%;
    height: 100%;
    overflow: hidden;
}

.testimonial-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 8s ease-out;
}

.testimonial-slide.active .testimonial-slide-bg {
    transform: scale(1.05);
}

.testimonial-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
}

.testimonial-slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    max-width: 800px;
}

.quote-icon {
    color: #60a5fa;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.2s;
}

.testimonial-slide.active .quote-icon {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-quote {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.4s;
}

.testimonial-slide.active .testimonial-quote {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-author-name {
    font-size: 1rem;
    font-weight: 500;
    color: #60a5fa;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.6s;
}

.testimonial-slide.active .testimonial-author-name {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation */
.testimonials-nav {
    position: absolute;
    bottom: 40px;
    left: 60px;
    right: 60px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 10;
}

.testimonials-dots {
    display: flex;
    gap: 12px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.testimonial-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.testimonial-dot.active {
    background: var(--text-primary);
    transform: scale(1.2);
}

.testimonials-progress {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.testimonials-progress-bar {
    height: 100%;
    background: #60a5fa;
    width: 0%;
    transition: width 0.1s linear;
}

/* Responsive */
@media (max-width: 992px) {
    .testimonials-header-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .testimonial-slide-content {
        padding: 40px;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .testimonials-carousel {
        height: 60vh;
        min-height: 450px;
    }
    
    .testimonial-slide-content {
        padding: 30px;
        justify-content: flex-end;
        padding-bottom: 100px;
    }
    
    .testimonials-nav {
        left: 30px;
        right: 30px;
        bottom: 30px;
    }
    
    .quote-icon svg {
        width: 36px;
        height: 36px;
    }
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

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

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    text-align: left;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    background: var(--bg-card-hover);
}

.faq-question svg {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform var(--transition-fast);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

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

.contact-text a,
.contact-text span:not(.contact-label) {
    font-size: 1rem;
    color: var(--text-primary);
}

.contact-text a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    align-items: center;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
    border-color: var(--border-light);
}

.payment-cards {
    display: flex;
    gap: 8px;
    margin-left: 12px;
}

.payment-card {
    width: 42px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border-radius: 6px;
}

.visa-text {
    font-size: 10px;
    font-weight: 700;
    font-style: italic;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.payment-card.mastercard {
    background: var(--bg-card);
}

.mc-circles {
    display: flex;
    align-items: center;
}

.mc-red {
    width: 14px;
    height: 14px;
    background: #EB001B;
    border-radius: 50%;
}

.mc-orange {
    width: 14px;
    height: 14px;
    background: #F79E1B;
    border-radius: 50%;
    margin-left: -5px;
}

.payment-card.bitcoin {
    background: #F7931A;
}

.btc-icon {
    font-size: 14px;
    font-weight: 700;
    color: white;
}

/* ===== Contact Form ===== */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-secondary);
    background: var(--bg-card-hover);
}

.form-group label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1rem;
    pointer-events: none;
    transition: all var(--transition-fast);
}

.form-group textarea ~ label {
    top: 16px;
    transform: none;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    left: 12px;
    font-size: 0.75rem;
    padding: 0 4px;
    background: var(--bg-primary);
    color: var(--text-secondary);
}

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

/* ===== Footer ===== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 48px 0 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.footer-brand .logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 8px;
    display: block;
}

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

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

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

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

.footer-payment {
    display: flex;
    justify-content: center;
    padding: 24px 0;
    border-top: 1px solid var(--border);
}

.secure-badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

.secure-icon {
    width: 20px;
    height: 20px;
    color: #d4a853;
}

.secure-badge span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

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

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

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 100px 20px 60px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .fleet-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .car-info {
        padding: 20px;
    }
    
    .car-specs {
        gap: 6px;
    }
    
    .spec {
        padding: 4px 10px;
        font-size: 0.75rem;
    }
}

/* ===== WhatsApp Chat Animation Section ===== */
.delivery-section .phone-container {
    display: flex;
    justify-content: center;
    perspective: 1000px;
    margin-top: 50px;
}

.chat-phone {
    width: 320px;
    height: 620px;
    background: linear-gradient(145deg, #1a1a1d 0%, #0d0d0e 100%);
    border-radius: 45px;
    padding: 12px;
    box-shadow: 
        0 50px 100px -20px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: transform 0.5s ease;
}

.chat-phone:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 60px 120px -20px rgba(0, 0, 0, 0.9),
        0 0 0 1px rgba(255, 255, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #111113;
    border-radius: 35px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.chat-header {
    background: linear-gradient(180deg, #1a1a1d 0%, #141416 100%);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--success) 0%, #16a34a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
}

.chat-info h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

.chat-info span {
    color: var(--success);
    font-size: 12px;
}

.chat-body {
    flex: 1;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(34, 197, 94, 0.03) 0%, transparent 50%),
        #0c0c0d;
}

.chat-message {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(20px);
    animation: chatMessageIn 0.4s ease forwards;
}

.chat-message.outgoing {
    background: linear-gradient(135deg, var(--success) 0%, #16a34a 100%);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 6px;
}

.chat-message.incoming {
    background: #1e1e21;
    color: #e4e4e7;
    align-self: flex-start;
    border-bottom-left-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-message .msg-time {
    font-size: 10px;
    opacity: 0.6;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: flex-end;
}

.chat-message.incoming .msg-time {
    justify-content: flex-start;
}

.msg-checkmarks {
    display: inline-flex;
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 16px;
    align-self: flex-start;
    opacity: 0;
}

.typing-indicator.visible {
    opacity: 1;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: #3f3f46;
    border-radius: 50%;
    animation: typingBounce 1.4s ease-in-out infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    30% {
        transform: translateY(-4px);
        opacity: 1;
    }
}

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

.result-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
    border-radius: 35px;
}

.result-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

.result-overlay .success-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--success) 0%, #16a34a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.result-overlay.visible .success-icon {
    transform: scale(1);
    transition-delay: 0.2s;
}

.result-overlay svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
    stroke-width: 3;
    fill: none;
}

.result-overlay h4 {
    color: #fff;
    font-family: var(--font-display);
    font-size: 22px;
    margin-bottom: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.result-overlay.visible h4 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.result-overlay p {
    color: var(--text-muted);
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.result-overlay.visible p {
    opacity: 1;
    transition-delay: 0.5s;
}

.delivery-image {
    width: 200px;
    height: 80px;
    margin-top: 20px;
    background: linear-gradient(135deg, #1a1a1d 0%, #0d0d0e 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.result-overlay.visible .delivery-image {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.car-text {
    font-family: var(--font-display);
    font-size: 14px;
    color: #fff;
    letter-spacing: 1px;
    font-weight: 500;
}

.restart-btn {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 10px 24px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.result-overlay.visible .restart-btn {
    opacity: 1;
    transition-delay: 0.8s;
}

.restart-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .delivery-section .phone-container {
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .chat-phone {
        width: 290px;
        height: 560px;
        border-radius: 38px;
        padding: 10px;
    }

    .phone-screen {
        border-radius: 30px;
    }

    .result-overlay {
        border-radius: 30px;
    }

    .chat-message {
        font-size: 13px;
        padding: 10px 14px;
    }

    .delivery-image {
        width: 160px;
        height: 60px;
    }

    .car-text {
        font-size: 12px;
    }
}
