/* ==========================================================================
   CSS VARIABLES & THEME SETUP
   ========================================================================== */
   :root {
    /* Colors */
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --warning-color: #f5a623;
    --success-color: #198754;
    --info-color: #0dcaf0;
    --danger-color: #dc3545;
    
    /* Section Backgrounds requested */
    --bg-dark-blue-grad: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    --bg-light-grey: #f8f9fa;
    --bg-sky-blue: #e0f2fe;
    --bg-white: #ffffff;
    --bg-light-orange: #fff7ed;
    --bg-light-purple: #f3e8ff;
    --bg-light-green: #dcfce7;
    --bg-dark: #1e293b;
    --bg-light-cream: #fdfbf7;
    --bg-dark-navy: #0f172a;
    --bg-black: #000000;

    /* Fonts */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Playfair Display', serif;

    /* Transitions & Effects */
    --transition-fast: 0.3s ease;
    --transition-slow: 0.5s ease;
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-hover: 0 20px 40px rgba(0,0,0,0.1);
}

/* Dark Mode Variables */
body.dark-mode {
    --bg-light-grey: #121212;
    --bg-sky-blue: #1a1a2e;
    --bg-white: #1e1e1e;
    --bg-light-orange: #2c1a00;
    --bg-light-purple: #1f1035;
    --bg-light-green: #0a2e16;
    --bg-light-cream: #121212;
    color: #e0e0e0 !important;
}

body.dark-mode h1, body.dark-mode h2, body.dark-mode h3, body.dark-mode h4, body.dark-mode h5, body.dark-mode h6, body.dark-mode .text-dark {
    color: #ffffff !important;
}

body.dark-mode .card, body.dark-mode .bg-white {
    background-color: #242424 !important;
    border-color: #333;
}

body.dark-mode .text-muted {
    color: #a0a0a0 !important;
}

/* ==========================================================================
   GLOBAL STYLES
   ========================================================================== */
body {
    font-family: var(--font-primary);
    overflow-x: hidden;
    scroll-behavior: smooth;
    transition: background-color 0.4s ease, color 0.4s ease;
}

.font-playfair {
    font-family: var(--font-secondary);
}

.section-padding {
    padding: 100px 0;
}

.tracking-wide {
    letter-spacing: 2px;
}

.transition-all {
    transition: all var(--transition-fast);
}

/* Custom Cursor */
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--warning-color);
}
.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--warning-color);
}
.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    transition: width 0.2s, height 0.2s;
}
@media (max-width: 992px) {
    .cursor-dot, .cursor-outline { display: none; }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--warning-color);
}

/* Scroll Progress */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 10000;
}
.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--warning-color));
    width: 0%;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 100000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}
body.dark-mode #preloader { background: #121212; }
.car-animation {
    animation: drive 2s infinite linear;
    display: block;
    text-align: center;
    margin-bottom: 10px;
}
@keyframes drive {
    0% { transform: translateX(-50px) scale(1); opacity: 0.5; }
    50% { transform: translateX(0px) scale(1.1); opacity: 1; }
    100% { transform: translateX(50px) scale(1); opacity: 0.5; }
}

/* Buttons & Gradients */
.btn-premium-gradient {
    background: linear-gradient(45deg, #ff7e5f, #feb47b);
    border: none;
    transition: 0.3s;
}
.btn-premium-gradient:hover {
    background: linear-gradient(45deg, #feb47b, #ff7e5f);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 126, 95, 0.4);
}
.hover-gradient:hover {
    background: linear-gradient(45deg, var(--primary-color), #00c6ff) !important;
    color: white !important;
    border-color: transparent !important;
}

/* Floating Buttons */
.floating-btn {
    position: fixed;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: 0.3s;
    border: none;
}
.floating-btn:hover {
    transform: scale(1.1);
    color: white;
}
.float-call { left: 20px; bottom: 90px; background: #007bff; }
.float-whatsapp { left: 20px; bottom: 20px; background: #25d366; }
.float-top { right: 20px; bottom: 20px; background: #333; opacity: 0; pointer-events: none; }
.float-top.show { opacity: 1; pointer-events: auto; }
.float-darkmode { right: 20px; bottom: 90px; background: #6c757d; }

/* ==========================================================================
   LAYOUT SECTIONS
   ========================================================================== */

/* Background Utility Classes */
.bg-light-grey { background-color: var(--bg-light-grey); }
.bg-sky-blue { background-color: var(--bg-sky-blue); }
.bg-white { background-color: var(--bg-white); }
.bg-light-orange { background-color: var(--bg-light-orange); }
.bg-light-purple { background-color: var(--bg-light-purple); }
.bg-light-green { background-color: var(--bg-light-green); }
.bg-light-cream { background-color: var(--bg-light-cream); }
.bg-dark-navy { background-color: var(--bg-dark-navy); }
.bg-primary-light { background-color: rgba(13, 110, 253, 0.1); }
.bg-warning-light { background-color: rgba(245, 166, 35, 0.1); }

/* Header */
.top-bar { font-size: 14px; background: rgba(0,0,0,0.8); }
.top-social-icons a { color: #fff; margin-left: 15px; transition: 0.3s; }
.top-social-icons a:hover { color: var(--warning-color); }

.header {
    background: transparent;
    transition: var(--transition-fast);
    position: absolute;
    width: 100%;
}
.header.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.navbar-nav .nav-link {
    color: rgba(255,255,255,0.8) !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: 0.3s;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    color: var(--warning-color) !important;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--warning-color);
    transition: 0.3s;
}
.navbar-nav .nav-link:hover::after { width: 100%; }

/* Hero Section */
.hero-section {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1549317661-bd32c8ce0db2?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    position: relative;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg-dark-blue-grad);
    opacity: 0.85;
}
.text-gradient {
    background: -webkit-linear-gradient(#f5a623, #ff7e5f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-btn-glow {
    box-shadow: 0 0 15px rgba(245, 166, 35, 0.6);
    animation: pulseGlow 2s infinite;
}
@keyframes pulseGlow {
    0% { box-shadow: 0 0 15px rgba(245, 166, 35, 0.4); }
    50% { box-shadow: 0 0 25px rgba(245, 166, 35, 0.8); }
    100% { box-shadow: 0 0 15px rgba(245, 166, 35, 0.4); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 10;
}
.scroll-indicator span {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 20px;
    margin: 0 auto;
    position: relative;
}
.wheel {
    width: 4px;
    height: 10px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouse 2s infinite;
}
@keyframes scrollMouse {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

/* About Section */
.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.2);
    min-width: 180px;
}
body.dark-mode .experience-badge {
    background: rgba(0,0,0,0.5);
}

/* Services */
.glass-card-light {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}
body.dark-mode .glass-card-light {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255,255,255,0.1);
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    background: var(--bg-white);
}
body.dark-mode .service-card:hover { background: #2a2a2a; }
.service-icon-wrapper {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: var(--bg-white);
    transition: 0.3s;
}
body.dark-mode .service-icon-wrapper { background: #333; }
.service-card:hover .service-icon-wrapper {
    background: var(--primary-color);
}
.service-card:hover .service-icon-wrapper i {
    color: white !important;
}

/* Fleet */
.fleet-card { transition: 0.4s; }
.fleet-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover) !important; }
.fleet-img {
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.fleet-card:hover .fleet-img {
    transform: scale(1.05);
}
body.dark-mode .fleet-card .badge.bg-light { background: #333 !important; color: white !important; border-color: #444 !important; }

/* Why Choose Us */
.hover-lift:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }

/* Process Timeline */
.timeline-row::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: rgba(13, 110, 253, 0.2);
    z-index: 0;
}
@media (max-width: 992px) { .timeline-row::before { display: none; } }
.process-step { position: relative; z-index: 1; }
.step-icon {
    width: 50px; height: 50px;
    line-height: 50px;
    background: var(--primary-color);
    color: white;
    font-size: 20px;
    font-weight: bold;
    border-radius: 50%;
    margin: 0 auto;
    border: 5px solid white;
}
body.dark-mode .step-icon { border-color: #1e1e1e; }

/* Packages */
.pkg-img-wrap { height: 250px; }
.pkg-img-wrap img { height: 100%; object-fit: cover; transition: 0.5s; }
.package-card:hover .pkg-img-wrap img { transform: scale(1.1); }
.pkg-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: 0.3s;
}
.package-card:hover .pkg-overlay { opacity: 1; }

/* Counter / Parallax */
.parallax { background-attachment: fixed; background-size: cover; background-position: center; }
.overlay-dark { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); }

/* Gallery */
.gallery-item { cursor: pointer; position: relative; height: 250px; }
.gallery-item img { height: 100%; object-fit: cover; transition: 0.5s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(13, 110, 253, 0.6);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* FAQ */
.custom-accordion .accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}
.custom-accordion .accordion-button:focus { box-shadow: none; }
body.dark-mode .accordion-item { background: #1e1e1e; border: 1px solid #333 !important; }
body.dark-mode .accordion-button { background: #2a2a2a; color: white; }

/* Contact Form */
.glass-panel {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}
.contact-form .form-control, .contact-form .form-select {
    border-radius: 8px;
}
body.dark-mode .contact-form .form-control, body.dark-mode .contact-form .form-select {
    background-color: #333 !important;
    color: white;
}

/* Footer */
.social-icon-box {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.1);
    display: inline-flex; justify-content: center; align-items: center;
    border-radius: 50%; color: white; transition: 0.3s;
}
.social-icon-box:hover { background: var(--warning-color); color: black; transform: translateY(-3px); }
.footer-links a { color: #6c757d; text-decoration: none; transition: 0.3s; display: block; margin-bottom: 10px; }
.footer-links a:hover { color: var(--warning-color); padding-left: 5px; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .display-3 { font-size: 2.5rem; }
    .display-5 { font-size: 2rem; }
    .section-padding { padding: 60px 0; }
}