/* ==========================================
   my Rides / Rides Plus Premium Design System
   ========================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,900;1,400&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/*:root {*/
    /* Color Palette */
/*    --bg-primary: #0a0c0d;*/
/*    --bg-secondary: #111416;*/
/*    --bg-tertiary: #181c1f;*/
/*    --accent-gold: #ffcb05;*/
/*    --accent-gold-rgb: 255, 203, 5;*/
/*    --accent-gold-hover: #e0b300;*/
/*    --text-primary: #ffffff;*/
/*    --text-secondary: #cbd5e1;*/
/*    --text-muted: #94a3b8;*/
    
    /* UI Elements */
/*    --glass-bg: rgba(17, 20, 22, 0.75);*/
/*    --glass-border: rgba(255, 255, 255, 0.07);*/
/*    --glass-border-gold: rgba(255, 203, 5, 0.2);*/
/*    --card-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);*/
/*    --gold-shadow: 0 8px 30px rgba(255, 203, 5, 0.15);*/
/*    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);*/
/*}*/


:root {
    --bg-primary: #f8f9fb;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f1f3f5;

    --accent-gold: #d4a017;
    --accent-gold-rgb: 212,160,23;
    --accent-gold-hover: #b8860b;

    --text-primary: #1a1a1a;
    --text-secondary: #555555;
    --text-muted: #777777;

    --glass-bg: rgba(255,255,255,0.85);
    --glass-border: rgba(0,0,0,0.08);
    --glass-border-gold: rgba(212,160,23,0.25);

    --card-shadow: 0 10px 30px rgba(0,0,0,0.08);
    --gold-shadow: 0 8px 25px rgba(212,160,23,0.15);
}




.navbar-toggler-icon {
    filter: invert(1);
}

/* General Reset & Styles */
body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

/* Scrollbar customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: #23282b;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* Selection Highlight */
::selection {
    background: var(--accent-gold);
    color: var(--bg-primary);
}

/* Custom Text Gradients */
.text-gradient-gold {
    background: linear-gradient(135deg, #ffffff 30%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gold {
    color: var(--accent-gold) !important;
}

/* Spinner Loader */
#spinner {
    opacity: 1;
    visibility: visible;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
    background-color: var(--bg-primary) !important;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.spinner-border {
    color: var(--accent-gold) !important;
}

/* Glassmorphism Utilities */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
}

.glass-card {
    background: rgb(17 20 22 / 85%) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: var(--transition-smooth);
    box-shadow: var(--card-shadow);
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: var(--glass-border-gold);
    box-shadow: var(--gold-shadow);
}

/* Dynamic Buttons */
.btn-gold {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #e0b300 100%);
    color: #000000 !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    box-shadow: 0 4px 15px rgba(255, 203, 5, 0.2);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gold::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-gold) 100%);
    opacity: 0;
    z-index: -1;
    transition: var(--transition-smooth);
}

.btn-gold:hover::after {
    opacity: 1;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 203, 5, 0.4);
}

.btn-outline-gold {
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold) !important;
    background: transparent;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    border-radius: 50px;
    padding: 10px 28px;
    transition: var(--transition-smooth);
}

.btn-outline-gold:hover {
    background: var(--accent-gold);
    color: #000000 !important;
    box-shadow: var(--gold-shadow);
    transform: translateY(-2px);
}

/* Navbar Customization */
.glass-navbar {
    background: rgb(255 255 255 / 85%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.navbar-brand img {
    height: 90px;
    transition: var(--transition-smooth);
}

.nav-link {
    color: var(--text-primary) !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 1.05rem;
    padding: 20px 15px !important;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 15px;
    left: 15px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 30px);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold) !important;
}

/* Hero Carousel and Ken Burns effect */
.header-carousel {
    position: relative;
    overflow: hidden;
    height: 90vh;
}

.carousel-inner, .carousel-item {
    height: 100%;
}

#heroCarousel .carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    filter: brightness(0.4);
    transform: scale(1);
    transition: transform 12s ease-out;
}

#heroCarousel .carousel-item.active img {
    transform: scale(1.08);
}

.carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    text-align: left;
    z-index: 10;
}




.header-carousel {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.header-carousel .carousel,
.header-carousel .carousel-inner,
.header-carousel .carousel-item {
    height: 100%;
}

.header-carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark Overlay */
.header-carousel .carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

.carousel-caption-custom {
    position: absolute;
    inset: 0;
    z-index: 2;

    display: flex;
    align-items: center;
}

.carousel-caption-custom h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.carousel-caption-custom p {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    z-index: 10;
}

/* Tablet */
@media (max-width: 991px) {

    .header-carousel {
        height: 80vh;
    }

    .carousel-caption-custom h1 {
        font-size: 2.8rem;
    }

    .carousel-caption-custom p {
        font-size: 1rem;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .header-carousel {
        height: 80vh;
    }

    .carousel-caption-custom {
        text-align: center;
        padding: 20px;
    }

    .carousel-caption-custom h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .carousel-caption-custom p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 0px 0px;
        font-size: 16px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .header-carousel {
        height: 65vh;
    }

    .carousel-caption-custom h1 {
        font-size: 1.2rem;
    }

    .carousel-caption-custom p {
        font-size: 0.9rem;
    }
}





/* Booking Widget Floating Card */
.booking-widget {
    background: rgba(17, 20, 22, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.booking-widget h4 {
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 10px;
}

.form-select, .form-control {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--text-primary) !important;
    border-radius: 8px !important;
    padding: 12px 16px;
    transition: var(--transition-smooth);
}

.form-select:focus, .form-control:focus {
    border-color: var(--accent-gold) !important;
    box-shadow: 0 0 10px rgba(255, 203, 5, 0.25) !important;
}

.form-select option {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
}

/* Features Grid */
.feature-box {
    text-align: center;
    padding: 35px 25px;
    border-radius: 16px;
    height: 100%;
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(255, 203, 5, 0.1);
    border: 1px solid rgba(255, 203, 5, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.feature-box:hover .feature-icon-wrapper {
    background: var(--accent-gold);
    color: #000000;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(255, 203, 5, 0.4);
}

/* About Collage Visual styling */
.about-collage {
    position: relative;
    height: 480px;
}

.about-img-main {
    width: 75%;
    border-radius: 16px;
    border: 4px solid var(--bg-primary);
    box-shadow: var(--card-shadow);
    z-index: 2;
    position: relative;
}

.about-img-sub {
    width: 55%;
    position: absolute;
    bottom: -20px;
    right: 0;
    border-radius: 16px;
    border: 4px solid var(--bg-primary);
    box-shadow: var(--card-shadow);
    z-index: 3;
}

.about-badge {
    position: absolute;
    top: 30px;
    left: -20px;
    background: var(--accent-gold);
    color: #000000;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: var(--gold-shadow);
    z-index: 4;
    font-weight: 800;
}

/* Services section cards */
.service-card {
    height: 100%;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
    background-color: var(--bg-secondary);
}

.service-img-container {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-card:hover img {
    transform: scale(1.08);
}

.service-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(10, 12, 13, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border-gold);
    color: var(--accent-gold);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 30px;
}

.service-content {
    padding: 25px;
}

.service-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: var(--gold-shadow);
}

/* Commission Matrix Styles */
.matrix-table {
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    background-color: var(--bg-secondary);
}

.matrix-table th {
    background-color: rgba(255, 203, 5, 0.15) !important;
    color: var(--accent-gold) !important;
    border-color: rgba(255, 255, 255, 0.05) !important;
    font-weight: 600;
}

.matrix-table td {
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.05) !important;
    background-color: transparent !important;
    font-weight: 500;
}

.matrix-table tr:hover td {
    background-color: rgba(255, 255, 255, 0.02) !important;
    color: var(--accent-gold);
}

/* Interactive Calculator Widget */
.calc-card {
    background: linear-gradient(135deg, rgba(24, 28, 31, 0.8) 0%, rgba(17, 20, 22, 0.8) 100%);
    border: 1px solid var(--glass-border-gold);
}

.range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #23282b;
    outline: none;
    margin: 20px 0;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent-gold);
    cursor: pointer;
    box-shadow: 0 0 15px rgba(255, 203, 5, 0.5);
    transition: var(--transition-smooth);
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

/* Testimonial slider customization */
.testimonial-card {
    padding: 40px 30px;
    border-radius: 16px;
    background-color: var(--bg-secondary);
    position: relative;
    border: 1px solid var(--glass-border);
}

.testimonial-avatar {
    width: 100px !important;
    height: 100px !important;
    object-fit: cover;
    border-radius: 50% !important;
    border: 3px solid var(--accent-gold);
    margin: 0 auto 20px auto !important;
    display: block !important;
    box-shadow: var(--gold-shadow);
}

.testimonial-card .fa-quote-left {
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 2rem;
    color: rgba(255, 203, 5, 0.1);
}

/* Contact Info styling */
.contact-item-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 203, 5, 0.08);
    border: 1px solid rgba(255, 203, 5, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent-gold);
    margin-right: 20px;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.contact-item-box:hover .contact-icon {
    background: var(--accent-gold);
    color: #000000;
    box-shadow: var(--gold-shadow);
}

/* Social links button */
.social-btn {
    width: 45px;
    height: 45px;
    background-color: #1a1e21;
    border: 1px solid var(--glass-border);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    transition: var(--transition-smooth);
}

.social-btn:hover {
    background-color: var(--accent-gold);
    color: #000000 !important;
    box-shadow: var(--gold-shadow);
    transform: translateY(-3px);
}

/* Footer & copyright custom styling */
footer {
    background-color: #070809;
    border-top: 1px solid var(--glass-border);
    padding-top: 80px;
    padding-bottom: 40px;
}

footer .footer-logo img {
    height: 90px;
    margin-bottom: 25px;
}

footer h5 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 8px;
}

footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 40px;
    background-color: var(--accent-gold);
}

footer ul li {
    margin-bottom: 12px;
}

footer ul li a {
    color: var(--text-secondary);
    transition: var(--transition-smooth);
    display: inline-block;
}

footer ul li a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
    margin-top: 50px;
}

/* Animations classes */
.hover-glow:hover {
    box-shadow: var(--gold-shadow);
}

/* Back to top button style */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--accent-gold);
    color: #000000 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    box-shadow: var(--gold-shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #ffffff;
    transform: translateY(-5px);
}

/* Custom list items with checkmark styling */
.list-premium {
    list-style: none;
    padding-left: 0;
}

.list-premium li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.list-premium li::before {
    content: '\F272'; /* Bootstrap icons check-circle-fill */
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-gold);
    font-size: 1.1rem;
}

/* Mobile responsive style adjustments */
@media (max-width: 991.98px) {
    .nav-link {
        padding: 12px 15px !important;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .header-carousel {
        height: auto;
        /*min-height: 90vh;*/
    }
    
    .carousel-caption {
        position: relative;
        transform: none;
        top: 0;
        left: 0;
        width: 100%;
        padding: 120px 20px 50px !important;
    }
    
    .booking-widget {
        margin-top: 40px;
    }
    
    .about-collage {
        height: 380px;
        margin-bottom: 50px;
    }
    
    .about-badge {
        font-size: 0.85rem;
        padding: 10px 15px;
    }
}















.form-select, .form-control {
    background-color: rgb(255 255 255 / 75%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--text-primary) !important;
    border-radius: 8px !important;
    padding: 12px 16px;
    transition: var(--transition-smooth);
}
