/* Global Styles */
:root {
    --bs-primary: #ff7a00;
    /* Will override this */
    --bs-primary-rgb: 255, 122, 0;
    --primary-color: #ff7a00;
    /* Theme Orange */
    --secondary-color: #1e293b;
    /* Slate Dark */
    --accent-color: #f59e0b;
    /* Amber */
    --dark-bg: #0f172a;
    --font-heading: 'Outfit', sans-serif;
}

body {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    background-color: #f8f9fa;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

/* Spacing */
.section-padding {
    padding: 7rem 0;
}

/* Custom Primary Color Override */
.text-primary {
    color: var(--primary-color) !important;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #e66e00;
    /* Darker shade of #ff7a00 */
    border-color: #e66e00;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 122, 0, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-width: 2px;
    font-weight: 600;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 122, 0, 0.2);
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

/* Navbar */
.navbar {
    transition: all 0.3s ease;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.navbar.bg-dark {
    background-color: rgba(15, 23, 42, 0.95) !important;
    /* Glass effect-ish dark */
    backdrop-filter: blur(10px);
}

.nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8) !important;
    margin: 0 5px;
}

.nav-link.active,
.nav-link:hover {
    color: #fff !important;
}

/* Hero Section */
/* Hero Section */
.hero-section {
    min-height: 100vh;
    background-color: var(--dark-bg);
    position: relative;
    padding-top: 80px;
    overflow: hidden;
    perspective: 1000px;
    /* For depth */
}

/* Premium Aurora Background */
.hero-overlay {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1), transparent 50%),
        radial-gradient(circle at 10% 10%, rgba(245, 158, 11, 0.08), transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(255, 122, 0, 0.05), transparent 40%);
    filter: blur(80px);
    animation: aurora-move 20s linear infinite alternate;
    z-index: 0;
}

@keyframes aurora-move {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(-50px, -20px) rotate(5deg);
    }
}

/* Watermark Text */
.hero-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    z-index: 0;
    pointer-events: none;
    letter-spacing: 20px;
    white-space: nowrap;
}

/* Entrance + Float Animation */
.car-entrance {
    animation: slideInRight 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
    /* Starts invisible */
}

.floating-animation-delayed {
    animation: floating 4s ease-in-out infinite;
    animation-delay: 1.5s;
    /* Starts after entrance */
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px) scale(0.9);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: blur(0);
    }
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Booking Card */
.booking-card {
    transition: transform 0.3s ease;
}

.booking-card:hover {
    transform: translateY(-5px);
}

/* Service Card */
.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1) !important;
}

.icon-box {
    width: 80px;
    height: 80px;
}

.icon-box-lg {
    width: 100px;
    height: 100px;
}

/* Fleet Card */
.car-card {
    transition: all 0.3s ease;
}

.car-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1) !important;
}

.car-card .card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.car-card:hover .card-img-top {
    transform: scale(1.05);
}

/* Footer */
.hover-primary:hover {
    color: var(--primary-color) !important;
    transition: color 0.2s ease;
}

.hover-white:hover {
    color: #fff !important;
    transition: color 0.2s ease;
}

/* Utilities */
.ls-2 {
    letter-spacing: 2px;
}

.mt-n5 {
    margin-top: -5rem !important;
}

/* Process Section */
.step-icon {
    width: 80px;
    height: 80px;
    font-family: var(--font-heading);
}

/* App Section */
.bg-gradient-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--dark-bg));
}

.opacity-10 {
    opacity: 0.1;
}

.opacity-25 {
    opacity: 0.25;
}


/* --- Premium Refinements --- */

/* 1. Spacing */
.section-padding {
    padding-top: 120px;
    padding-bottom: 120px;
}

/* 2. Solid Accent Color (No Gradient) */
.text-accent {
    color: #f59e0b;
    /* Amber 500 - Sophisticated Gold tone */
}

.text-accent-secondary {
    color: var(--primary-color);
}

/* 3. Distinct Backgrounds */
.bg-hero {
    background-color: #0f172a;
    /* Deep Slate Base */
}

.bg-services {
    background-color: #f8fafc;
    /* Very light cool gray */
}

/* Page Header Premium */
.page-header-premium {
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.7)), url('../hero_bg_garage.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    padding: 10rem 0 6rem;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    /* Angle cut */
    margin-bottom: 2rem;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    letter-spacing: -2px;
}

/* Footer Improvements */
.footer-premium {
    background-color: #111111;
    /* Pure Premium Black */
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.bg-gray-100 {
    background-color: #f1f5f9;
    /* Slate 100 - Distinct form white */
}

.bg-process {
    background-color: var(--dark-bg);
    /* Theme Dark */
}

.bg-testimonials {
    background-color: #fffbeb;
    /* Very subtle warm beige */
}

.bg-cta {
    background-color: var(--primary-color);
}

/* Scroll Animation (Reveal) */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    /* Smoother cubic bezier */
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Glassmorphism Card Polish - More subtle */
.service-card,
.car-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Very subtle border */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.car-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1) !important;
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.3);
}

/* Process Section Redesign (Dark Glass) */
/* Process Section Redesign (Dark Glass) */
.process-step {
    background: rgba(255, 255, 255, 0.05);
    /* Slightly less transparent */
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    /* Stronger border */
    border-radius: 24px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy transition */
    height: 100%;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-15px);
    border-color: rgba(245, 158, 11, 0.6);
    /* Amber glow */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(245, 158, 11, 0.2);
}

.process-step:hover .step-icon {
    background-color: #f59e0b !important;
    /* Switch to Amber on hover */
    color: white !important;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.5);
}

.step-icon {
    width: 90px;
    height: 90px;
    transition: all 0.4s ease;
}

/* Connector Line (Desktop Only) */
@media (min-width: 768px) {
    .process-wrapper {
        position: relative;
    }

    .process-wrapper::before {
        content: '';
        position: absolute;
        top: 45px;
        /* Aligns with icon center */
        left: 15%;
        width: 70%;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        /* Brighter line */
        z-index: 0;
    }
}

/* Carousel Indicators */
.carousel-indicators {
    margin-bottom: -2rem;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-color) !important;
    opacity: 0.3 !important;
    margin: 0 6px;
    border: none;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    opacity: 1 !important;
    background-color: var(--primary-color) !important;
    transform: scale(1.2);
}

/* Button Glow */
.btn-primary.glow-effect {
    position: relative;
    overflow: hidden;
}

.btn-primary.glow-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 60%);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.5s ease;
}

.btn-primary.glow-effect:hover::after {
    opacity: 1;
    transform: scale(1);
}

.text-gray-300 {
    color: #cbd5e1;
    /* Slate 300 */
}

/* Carousel Indicators (Dots) */
.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #cbd5e1;
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
    opacity: 1;
}

/* Premium Aurora Background */
/* Breadcrumb Customization */
.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6) !important;
}

.breadcrumb-item a {
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-color) !important;
}

/* Feature Glass Card (Dark) */
.feature-glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    transition: all 0.4s ease;
    height: 100%;
}

.feature-glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 122, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.4s ease;
}

.feature-glass-card:hover .feature-icon-wrapper {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* Premium Testimonials */
.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border: 3px solid var(--primary-color);
    padding: 3px;
    background: transparent;
}

.quote-icon-large {
    font-size: 4rem;
    line-height: 1;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: -20px;
}

/* App Download Section */
.bg-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.floating-phone {
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateY(-15deg);
}

@keyframes float {
    0% {
        transform: perspective(1000px) rotateY(-15deg) translateY(0px);
    }

    50% {
        transform: perspective(1000px) rotateY(-15deg) translateY(-20px);
    }

    100% {
        transform: perspective(1000px) rotateY(-15deg) translateY(0px);
    }
}

.app-btn {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.app-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}

.feature-glass-card:hover .feature-icon-wrapper i {
    color: white !important;
}

.hero-overlay {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1), transparent 50%),
        radial-gradient(circle at 10% 10%, rgba(245, 158, 11, 0.08), transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(255, 122, 0, 0.05), transparent 40%);
    filter: blur(80px);
    animation: aurora-move 20s linear infinite alternate;
    z-index: 0;
}

@keyframes aurora-move {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(-50px, -20px) rotate(5deg);
    }
}

/* Fix for Elementor Editor Visibility */
body.elementor-editor-active .reveal,
body.elementor-editor-active .car-entrance {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
}