:root {
    --primary: #10b981;
    /* Emerald */
    --primary-dark: #059669;
    --secondary: #3b82f6;
    /* Electric Blue */
    --background: #0f172a;
    /* Deep Slate */
    --card-bg: rgba(30, 41, 59, 0.7);
    --text: #f8fafc;
    --text-muted: #94a3b8;
    --accent: #10b981;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

/* Scroll Animation Classes */
.js-loaded .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.js-loaded .reveal.active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.reveal.delay-1 {
    transition-delay: 0.1s;
}

.reveal.delay-2 {
    transition-delay: 0.2s;
}

.reveal.delay-3 {
    transition-delay: 0.3s;
}

/* Vector Icon Background Pattern */
.bg-scooter {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    background-color: var(--background);
    /* Electric Bolt SVG Pattern */
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5l-8 25h12l-10 25 18-30h-12z' fill='%2310b981' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-size: 60px 60px;
    opacity: 1;
}

/* Responsive Background Optimization */
@media (max-width: 768px) {
    .bg-scooter {
        opacity: 0.2;
        /* Slightly more visible on mobile */
    }

    .bg-scooter dotlottie-wc {
        top: 65% !important;
        /* Move down further on mobile to reveal heads */
        transform: translate(-50%, -50%) scale(2.2) !important;
        /* Balanced scale for mobile */
    }

    .scooter-traveler {
        width: 120px;
        height: 120px;
        bottom: -40px;
    }
}

@media (min-width: 1400px) {
    .bg-scooter dotlottie-wc {
        transform: translate(-50%, -50%) scale(1.4) !important;
        /* Less scale for ultra-wide desktop */
    }
}



/* Traveling Scooter Animation - Professional Version */
.scooter-road {
    position: fixed;
    bottom: 40px;
    left: 0;
    width: 100%;
    height: 1px;
    /* Subtle line */
    z-index: 1001;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.05);
}

.scooter-traveler {
    position: absolute;
    bottom: -60px;
    /* Adjusted for smaller 180px size */
    left: 0;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.1s linear;
    z-index: 1001;
}

.scooter-traveler dotlottie-wc {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease;
}

/* Flip effect when moving backward */
.scooter-traveler.flipped dotlottie-wc {
    transform: scaleX(-1);
}

/* Mobile Responsiveness for Traveling Scooter */
@media (max-width: 768px) {
    .scooter-traveler {
        width: 100px;
        height: 100px;
        bottom: -35px;
    }
}

.speed-lines {
    display: none;
}

.speed-lines span {
    display: block;
    width: 15px;
    height: 1px;
    background: linear-gradient(to left, var(--primary), transparent);
    margin: 3px 0;
    opacity: 0;
    animation: windLine 0.8s infinite linear;
}

.speed-lines span:nth-child(2) {
    animation-delay: 0.2s;
    width: 10px;
}

.speed-lines span:nth-child(3) {
    animation-delay: 0.4s;
    width: 20px;
}

@keyframes windLine {
    0% {
        transform: translateX(10px);
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: translateX(-10px);
        opacity: 0;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.brand-text {
    font-family: 'Outfit', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo .brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.accent {
    color: var(--accent);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hide mobile menu button on desktop */
.mobile-menu-btn {
    display: none;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background: radial-gradient(circle at top right, rgba(16, 185, 129, 0.1), transparent);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #10b981, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
}

.rating {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fbbf24;
}

.rating-text {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Brands Section */
.brands-section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.center {
    text-align: center;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.brand-card {
    background: var(--glass);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s;
}

.brand-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.brand-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

/* Models Section */
.models-section {
    padding: 100px 0;
    background: rgba(16, 185, 129, 0.03);
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.model-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
}

.model-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.model-image-container {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.model-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.model-card:hover .model-image-container img {
    transform: scale(1.1) rotate(-3deg);
}

.model-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.model-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    flex-grow: 1;
}

/* Services */
.service-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 100px 0;
}

.service-image img {
    width: 100%;
    border-radius: 24px;
}

.service-list {
    list-style: none;
    margin-top: 2rem;
}

.service-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-list i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 0.3rem;
}

.service-list h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.service-list p {
    color: var(--text-muted);
}

/* Reviews */
.reviews-section {
    padding: 100px 0;
    background: rgba(30, 41, 59, 0.3);
}

.review-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.review-header {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.avatar {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.stars {
    color: #fbbf24;
    font-size: 0.8rem;
}

/* Contact */
.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
}

.info-item i {
    font-size: 1.2rem;
    color: var(--primary);
    margin-top: 0.3rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-links a {
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary);
}

.map-placeholder {
    height: 100%;
    min-height: 400px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--text-muted);
}

.map-placeholder i {
    font-size: 4rem;
}

/* Footer */
footer {
    padding: 50px 0;
    border-top: 1px solid var(--glass-border);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {

    .hero-content,
    .service-layout,
    .contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text p {
        margin: 0 auto 2.5rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-image {
        margin-top: 3rem;
    }

    .service-layout .service-image {
        order: 2;
    }

    .nav-links {
        display: none;
    }
}

/* Hero Enhanced */
.badge-new {
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

/* Multi-Brand Section */
.multibrand-section {
    padding: 100px 0;
    background: radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.1), transparent);
}

.multibrand-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary);
    background: var(--glass);
    padding: 1rem;
    border-radius: 12px;
}

.multibrand-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
}

/* Reviews Infinite Scroll */
.reviews-slider-container {
    overflow: hidden;
    padding: 2rem 0;
    position: relative;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.reviews-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.reviews-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 1rem));
    }
}

.review-card {
    width: 380px;
    flex-shrink: 0;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: background 0.3s;
}

.review-card:hover {
    background: rgba(45, 55, 72, 0.9);
}

/* Mobile Responsiveness Refined */
@media (max-width: 992px) {

    .hero-content,
    .service-layout,
    .contact-grid,
    .multibrand-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .multibrand-grid .multibrand-image {
        order: 2;
        margin-top: 3rem;
    }

    .feature-item {
        justify-content: center;
        text-align: left;
    }
}

/* Family Frame Collage Style */
.gallery-frame {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gallery-item-frame {
    position: relative;
    overflow: hidden;
    background: #f1f5f9;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery-item-frame:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.2);
}

.gallery-item-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-item-frame:hover img {
    transform: scale(1.05);
}

.gallery-center-item {
    height: 100%;
    min-height: 550px;
}

.gallery-side-item {
    height: 260px;
}

.collage-signature {
    grid-column: span 3;
    text-align: center;
    padding-top: 2.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    color: #1e293b;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .gallery-frame {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .gallery-column {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .collage-signature {
        grid-column: span 1;
        font-size: 2rem;
    }

    .gallery-center-item {
        min-height: 400px;
        order: -1;
    }
}

@media (max-width: 600px) {
    .gallery-column {
        grid-template-columns: 1fr;
    }
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 1rem 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: #0f172a;
    /* Dark background to frame the photo */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 220px;
    /* Smaller, professional size */
    flex-shrink: 0;
    height: 160px;
    /* Landscape aspect ratio */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Shining Effect for Gallery Items - Refined */
.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    /* Softer shine */
    transform: skewX(-25deg);
    transform: skewX(-25deg);
    animation: shine 4s infinite;
    pointer-events: none;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

/* Bio Grid Layout */
.bio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* Bio Slider */
.bio-slider {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.bio-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.bio-slider img.active {
    opacity: 1;
}

.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine-alt 3s infinite;
    pointer-events: none;
}

@keyframes shine-alt {
    0% {
        left: -150%;
    }

    50%,
    100% {
        left: 150%;
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

.gallery-item:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    border-color: var(--primary);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Shows full image without cropping */
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.02);
}

/* Shiny Button Effect */
.btn-shiny {
    position: relative;
    overflow: hidden;
    /* Ensure existing button styles are respected, just adding shine capability */
}

.btn-shiny::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 100%);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
    z-index: 1;
}

.btn-shiny span,
.btn-shiny i,
.btn-shiny {
    z-index: 5;
    position: relative;
}

/* Mobile Adjustments for Gallery */
/* Mobile Adjustments */
@media (max-width: 768px) {
    .gallery-item {
        /* No specific overrides needed if fixed size fits, 
           but lets ensure it scales down if screen is somehow tiny */
        width: 220px;
    }
}

/* Quick Action Dashboard Banner */
.quick-dash-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-top: 3px solid var(--primary);
    z-index: 2000;
    padding: 2rem 0;
    transform: translateY(100%);
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.6);
}

.quick-dash-banner.active {
    transform: translateY(0);
}

.dash-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.dash-badge {
    background: var(--primary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 0.8rem;
    display: inline-block;
}

.dash-info h3 {
    font-size: 1.8rem;
    margin: 0;
    line-height: 1.2;
}

.dash-actions {
    display: flex;
    gap: 1.5rem;
}

.dash-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1.2rem 2.2rem;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.dash-btn.booking {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.dash-btn.whatsapp {
    background: #25d366;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.dash-btn.call {
    background: var(--secondary);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.dash-btn:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: rgba(255, 255, 255, 0.5);
    filter: brightness(1.2);
}

.dash-close {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.dash-close:hover {
    background: #ef4444;
}

/* Dashboard Responsiveness */
@media (max-width: 992px) {
    .quick-dash-banner {
        padding: 2.5rem 0;
    }

    .dash-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .dash-actions {
        width: 100%;
        flex-direction: column;
        gap: 1rem;
    }

    .dash-btn {
        justify-content: center;
        width: 100%;
        padding: 1.2rem;
    }

    .dash-info h3 {
        font-size: 1.4rem;
    }
}

/* Expert Team Styling */
.team-section {
    padding: 100px 0;
    background: rgba(15, 23, 42, 0.5);
    position: relative;
    overflow: hidden;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--card-bg);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
}

.team-image-wrapper {
    position: relative;
    height: 300px;
    width: 100%;
    overflow: hidden;
}

.team-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card:hover .team-image-wrapper img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(16, 185, 129, 0.8), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.social-mini {
    display: flex;
    gap: 15px;
}

.social-mini a {
    width: 45px;
    height: 45px;
    background: white;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-mini a:hover {
    transform: scale(1.2);
    background: var(--secondary);
    color: white;
}

.team-info {
    padding: 1.5rem;
}

.team-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: white;
}

.team-info span {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* Updated Dashboard Banner with Avatar */
.dash-user-profile {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.dash-avatar-wrapper {
    position: relative;
    width: 65px;
    height: 65px;
}

.dash-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

.online-indicator {
    position: absolute;
    bottom: 3px;
    right: 3px;
    width: 14px;
    height: 14px;
    background: #22c55e;
    border: 2px solid var(--background);
    border-radius: 50%;
}

.pulse {
    animation: shadowPulse 2s infinite;
}

@keyframes shadowPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Contact Form Styles */
.contact-form-container {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(15, 23, 42, 0.8);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

.btn-full {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    cursor: pointer;
}

/* Footer Designer Link */
.designer-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.designer-link:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Responsive Form */
@media (max-width: 768px) {
    .dash-user-profile {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-form-container {
        padding: 2rem;
    }
}


/* Vajra Spotlight Section */
.vajra-spotlight {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(15, 23, 42, 1) 100%);
    border-top: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.vajra-spotlight::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.spotlight-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.spotlight-content h2 {
    font-size: 3.5rem;
    margin: 1rem 0;
    line-height: 1.1;
}

.spotlight-content .description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.specs-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.spec-mini-item {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s;
}

.spec-mini-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
}

.spec-mini-item i {
    font-size: 1.8rem;
    color: var(--primary);
}

.spec-mini-item span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spec-mini-item strong {
    font-size: 1.2rem;
    display: block;
    color: var(--text);
}

.cta-group {
    display: flex;
    gap: 1.5rem;
}

.spotlight-image-container {
    position: relative;
}

.main-image {
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.spotlight-image-container:hover .main-image img {
    transform: scale(1.05);
}

.image-decor {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    border-radius: 30px;
    z-index: -1;
    opacity: 0.2;
}

@media (max-width: 992px) {
    .spotlight-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .spotlight-content h2 {
        font-size: 2.5rem;
    }

    .specs-mini-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-group {
        justify-content: center;
    }

    .spec-mini-item {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .specs-mini-grid {
        grid-template-columns: 1fr;
    }
}

/* Floating Navigation Buttons */
.floating-nav {
    position: fixed;
    bottom: 120px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1002;
    pointer-events: none;
    /* Allow clicks to pass through container */
}

.nav-btn {
    width: 45px;
    height: 45px;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    /* Re-enable clicks for buttons */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateX(50px);
}

.nav-btn.visible {
    opacity: 1;
    transform: translateX(0);
}

.nav-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.nav-btn:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .floating-nav {
        bottom: 110px;
        right: 15px;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Model Details Modal Styles */
.model-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s;
    padding: 1rem;
}

.model-modal-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.model-modal {
    background: #1e293b;
    /* Dark slate matching card-bg approx */
    background: linear-gradient(135deg, rgba(30, 41, 59, 1), rgba(15, 23, 42, 1));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.model-modal-overlay.active .model-modal {
    transform: translateY(0) scale(1);
}

.modal-header {
    background: rgba(16, 185, 129, 0.1);
    padding: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
}

.modal-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-muted);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--primary);
    color: white;
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
    color: var(--text);
}

.modal-section {
    margin-bottom: 1.5rem;
}

.modal-section h4 {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.3rem;
    display: inline-block;
}

.modal-section ul {
    list-style: none;
    padding-left: 0;
}

.modal-section ul li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.modal-section ul li::before {
    content: "•";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: flex-end;
    background: rgba(0, 0, 0, 0.2);
    position: sticky;
    bottom: 0;
    z-index: 10;
    backdrop-filter: blur(5px);
}

/* Custom Scrollbar for Modal */
.model-modal::-webkit-scrollbar {
    width: 8px;
}

.model-modal::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

.model-modal::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.model-modal::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* --- Race Flag Popup Styles --- */
.race-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 3000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s;
    padding: 1.5rem;
}

.race-popup-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.race-popup {
    background: #0f172a;
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transform: translateY(100px) scale(0.9);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.race-popup-overlay.active .race-popup {
    transform: translateY(0) scale(1);
}

/* Checkered Flag Header Decoration */
.race-flag-header {
    height: 60px;
    background-color: #000;
    background-image:
        linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff),
        linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    position: relative;
    opacity: 0.8;
}

.race-flag-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #0f172a);
}

.race-popup-content {
    padding: 2rem 2.5rem 2.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.race-popup h2 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.race-popup p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.race-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.race-popup-close:hover {
    background: #ef4444;
    transform: rotate(90deg);
}

.race-cta-btn {
    display: inline-block;
    background: linear-gradient(90deg, #10b981, #059669);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    width: 100%;
    border: 2px solid transparent;
}

.race-cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
    background: #ffffff;
    color: #10b981;
    border-color: #10b981;
}

@media (max-width: 480px) {
    .race-popup h2 {
        font-size: 1.6rem;
    }

    .race-popup-content {
        padding: 1.5rem 1.5rem 2rem;
    }
}