:root {
    /* Colors */
    --primary-navy: #0f172a;
    --primary-navy-light: #1e293b;
    --accent-red: #ef4444;
    --accent-red-hover: #dc2626;
    --accent-gold: #fbbf24;
    --accent-green: #10b981;
    --accent-blue: #3b82f6;
    --accent-purple: #8b5cf6;
    --accent-pink: #ec4899;
    --white: #ffffff;
    --off-white: #f8fafc;
    --text-dark: #1a1a1a;
    --text-light: #e2e8f0;
    --border-light: rgba(255, 255, 255, 0.15);

    /* Gradients */
    --bg-gradient: linear-gradient(135deg, #0f172a 0%, #020617 100%);
    --white-gradient: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    --card-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.08));
    --shimmer-gradient: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
    --rainbow-gradient: linear-gradient(90deg, var(--accent-red), var(--accent-gold), var(--accent-green), var(--accent-blue), var(--accent-purple));

    /* Glass & Cards */
    --glass-white: rgba(255, 255, 255, 0.95);
    --glass-dark: rgba(15, 23, 42, 0.85);
    --glass-border: rgba(255, 255, 255, 0.15);
    --card-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    --white-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --glow-shadow: 0 0 40px rgba(239, 68, 68, 0.3);

    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;
    --section-padding: 5rem 0;

    /* Animation Timings - Enhanced for Fluid Motion */
    --transition-fast: 0.15s;
    --transition-normal: 0.25s;
    --transition-slow: 0.4s;
    --transition-slower: 0.6s;
    
    /* Premium Easing Curves */
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out-cubic: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --ease-elastic: cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Fluid scroll for all scrollable elements */
* {
    scroll-behavior: smooth;
}

/* GPU acceleration for animations */
.gpu-accelerated,
.glass-card,
.white-card,
.service-card,
.btn,
header,
.hero-visual img,
.float-card,
.step,
.testimonial-card {
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Smooth transitions for all interactive elements */
a, button, input, textarea, select {
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

/* Smooth image rendering */
img {
    image-rendering: -webkit-optimize-contrast;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1),
                opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

::selection {
    background: var(--accent-gold);
    color: var(--primary-navy);
}

/* Fluid Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-navy);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-red), var(--accent-gold));
    border-radius: 10px;
    border: 2px solid var(--primary-navy);
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--accent-gold), var(--accent-red));
}

/* Firefox Scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-red) var(--primary-navy);
}

/* ========================================
   SCROLL PROGRESS INDICATOR
   ======================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-gold), var(--accent-green));
    z-index: 10000;
    transition: width 0.05s linear;
    box-shadow: 0 0 10px var(--accent-gold);
}

/* ========================================
   PRELOADER
   ======================================== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.loader-ring {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--accent-red);
    border-right-color: var(--accent-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-gradient);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: var(--section-padding);
}

.text-center {
    text-align: center;
}

.text-gold {
    color: var(--accent-gold);
}

.text-red {
    color: var(--accent-red);
}

.text-white {
    color: var(--white);
}

.text-navy {
    color: var(--primary-navy);
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.gap-1 {
    gap: 0.5rem;
}

.gap-2 {
    gap: 1rem;
}

.gap-4 {
    gap: 2rem;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mt-4 {
    margin-top: 1rem;
}

.p-4 {
    padding: 1.5rem;
}

/* Glass Card - Fluid */
.glass-card {
    background: rgba(255, 255, 255, 0.08);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1),
                box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1),
                border-color 0.3s ease;
    will-change: transform;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.25);
}

/* White Card - Fluid */
.white-card {
    background: var(--glass-white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--white-shadow);
    color: var(--text-dark);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1),
                box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    will-change: transform;
}

.white-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Buttons - Fluid */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1),
                background-color 0.25s ease,
                box-shadow 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    border: none;
    font-size: 1rem;
    will-change: transform;
}

.btn-primary {
    background: var(--accent-red);
    color: white;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.4);
}

.btn-primary:hover {
    background: var(--accent-red-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.5);
}

.btn-secondary {
    background: white;
    color: var(--primary-navy);
    border: 2px solid white;
}

.btn-secondary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: white;
    color: var(--primary-navy);
    border-color: white;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Header */
header {
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

header .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--primary-navy);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    will-change: width;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-gold);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-navy);
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
    color: white;
}

.hero-text .subtext {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.tagline-pill {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(251, 191, 36, 0.15);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 50px;
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.hero-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* Enhanced Hero Visual with Glow Effect */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.hero-visual::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.2) 0%, rgba(239, 68, 68, 0.05) 40%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
    animation: glow 4s ease-in-out infinite;
}

@keyframes glow {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

.floating-rider {
    max-width: 110%;
    animation: floatSmooth 6s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    transform-origin: center center;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.floating-rider:hover {
    transform: scale(1.02) translateY(-5px);
}

/* Ultra-smooth floating animation */
@keyframes floatSmooth {
    0%, 100% {
        transform: translateY(0px);
    }
    25% {
        transform: translateY(-8px);
    }
    50% {
        transform: translateY(-15px);
    }
    75% {
        transform: translateY(-8px);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.float-card {
    position: absolute;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    min-width: 200px;
    animation: float-card 5s ease-in-out infinite;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    z-index: 2;
    border-radius: 16px;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1),
                box-shadow 0.4s ease;
}

.float-card:hover {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

.float-card strong {
    display: block;
    font-size: 1.1rem;
    color: white;
    margin-top: 0.25rem;
}

.float-card small {
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

/* Fluid float card animation */
@keyframes float-card {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
}

.float-card.card-1 {
    top: 15%;
    left: -15%;
    animation: float-card 5s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
    animation-delay: 0s;
    border-left: 4px solid var(--accent-gold);
}

.float-card.card-2 {
    bottom: 15%;
    right: -10%;
    animation: float-card 5s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
    animation-delay: 1.5s;
    border-left: 4px solid var(--accent-red);
}

/* Trust Strip */
.trust-strip {
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-strip p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.partners {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.partner-logo {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Services - Fluid Motion */
.service-card {
    text-align: center;
    background: white;
    color: var(--text-dark);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.service-card img {
    max-height: 180px;
    margin-bottom: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.service-card:hover img {
    transform: scale(1.05) rotate(2deg);
}

.service-card h3 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
    transition: color 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.service-card:hover h3 {
    color: var(--accent-red);
}

.service-card p {
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 1.5rem;
}

.text-link {
    color: var(--accent-red);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}

.text-link:hover {
    gap: 0.75rem;
    color: var(--accent-gold);
}

/* Section Headers */
.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 0.5rem;
}

.section-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

/* Footer - Fluid Transitions */
footer {
    background: #020617;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
    font-size: 0.9rem;
    transition: color 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: all 0.35s cubic-bezier(0.19, 1, 0.22, 1);
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* Forms - Fluid Transitions */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    will-change: border-color, background, box-shadow, transform;
}

.form-control:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.15);
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
    transition: opacity 0.3s ease;
}

.form-control:focus::placeholder {
    opacity: 0.6;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2em;
    padding-right: 3rem;
    cursor: pointer;
}

/* Order Wizard */
.wizard-container {
    max-width: 650px;
    margin: 4rem auto;
    min-height: 600px;
}

.progress-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    width: 80%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
    transform: translateY(-50%);
}

.step-indicator {
    width: 50px;
    height: 50px;
    background: var(--primary-navy-light);
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    font-weight: 700;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.step-indicator.active {
    background: var(--accent-red);
    border-color: var(--accent-red);
    color: white;
    box-shadow: 0 0 25px rgba(239, 68, 68, 0.6);
    transform: scale(1.15);
}

.step-indicator.completed {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-navy);
}

.wizard-step {
    display: none;
    animation: wizardFadeIn 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.wizard-step.active {
    display: block;
}

@keyframes wizardFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.radio-group {
    display: flex;
    gap: 1rem;
}

.radio-option {
    flex: 1;
    position: relative;
}

.radio-option input {
    position: absolute;
    opacity: 0;
}

.radio-option label {
    display: block;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.radio-option input:checked+label {
    background: rgba(239, 68, 68, 0.15);
    border-color: var(--accent-red);
    color: white;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.3);
}

.radio-option label:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.summary-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row span {
    color: rgba(255, 255, 255, 0.7);
}

.summary-row strong {
    color: white;
}

/* ========================================
   ADDITIONAL UI ENHANCEMENTS
   ======================================== */

/* Badge Pulse Animation */
.badge-pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    margin-right: 8px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
    }
    50% { 
        transform: scale(1.1); 
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(90deg, var(--accent-red), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-rider {
    animation: float 3s ease-in-out infinite;
}

/* Icon Spin on Hover */
.interactive-icon:hover i {
    animation: iconSpin 0.5s ease;
}

@keyframes iconSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Tagline Pill Enhancement */
.tagline-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

/* Hero Note Enhancement */
.hero-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--accent-gold);
}

.hero-note small {
    color: rgba(255, 255, 255, 0.7);
}

.hero-note i {
    color: var(--accent-gold);
    margin-right: 4px;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        order: -1;
        margin-bottom: 2rem;
    }

    .float-card {
        display: none;
    }

    .hero-ctas {
        justify-content: center;
    }

    .grid-4,
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
    
    .scroll-down-arrow {
        display: none;
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 2rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .section-padding {
        padding: 3rem 0;
    }
    
    .tagline-pill {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}