
:root {
    --accent: #5C80BC;
    --light: #F8F9FA;
    --dark: #212529;
    --homepage-section: #ffc800a8;
    --promo-banner: linear-gradient(135deg, #e8c54724 0%, #e8c5474f 100%);
}
html {
    scroll-padding-top: 70px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-seri;
    color: #333;
    overflow-x: hidden;
}

.navbar {
    background: var(--primary);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 24px;
    color: white !important;
    margin-left: 1rem;
}

.navbar-brand span {
    color: var(--secondary);
}

.navbar-dark .navbar-nav .nav-link {
    position: relative;
    padding-left: 22px;
}

.navbar-dark .navbar-nav .nav-link::before {
    content: "+";
    position: absolute;
    right: -10px;
    top: 46%;
    transform: translateY(-50%);
    font-weight: 700;
    font-size: 20px;
    color: var(--secondary);
    transition: transform 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover::before {
    transform: translateY(-50%) rotate(90deg);
}

.nav-link {
    color: var(--text-primary) !important;
    font-weight: 600;
    margin: 0 10px;
    transition: all 0.3s;
}

.navbar-dark .navbar-toggler {
    color: rgb(255 255 255);
    border-color: rgb(255 255 255);
    margin-right: 10px;
}
.nav-link:hover{
    transform: translateX(-2px);
}

.btn-primary,
.card-dark {
    background-color: #ffffff !important;
    border: 2px solid var(--secondary) !important;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    color: #000;
    position: relative;
    overflow: hidden;
    transition: color 0.35s ease;
}

/* text above animation */
.btn-primary span,
.card-dark span {
    position: relative;
    z-index: 2;
}

/* fill layer */
.btn-primary::after,
.card-dark::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #000000;
    transition: width 0.35s ease;
    z-index: 1;
}

/* hover state */
.btn-primary:hover,
.card-dark:hover {
    color: #fff !important;
    transform: translateY(-2px);
}

/* animate fill */
.btn-primary:hover::after,
.card-dark:hover::after {
     color: #fff !important;
    width: 100%;
}

.card-dark {
    padding: 12px 14px;
    border: 2px solid var(--gold);
    background: transparent;
    color: var(--gold);
    border-radius: 40px;
    transition: 0.3s ease;
    font-weight: 600;
    transition: all 0.3s;
}
/* hero section */
.hero-section {
    background: linear-gradient(rgb(44 62 80 / 73%), rgb(44 62 80 / 81%)), url(/promo/home.png);
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-blend-mode: multiply;
}

.hero-content h1{
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gold-text {
    background: var(--secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#route-package .btn-warning, .innovation-line {
    background-color: var(--secondary) !important;
}
#innovation .text-warning {
    color: var(--secondary) !important;
}
/* Base fade-in animation */
.animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* When element is in view */
.animate-fade-in.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation for child elements */
.animate-fade-in.animated .row > * {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Stagger the animation for multiple elements */
.animate-fade-in.animated .row > *:nth-child(1) { animation-delay: 0.1s; }
.animate-fade-in.animated .row > *:nth-child(2) { animation-delay: 0.2s; }
.animate-fade-in.animated .row > *:nth-child(3) { animation-delay: 0.3s; }
.animate-fade-in.animated .row > *:nth-child(4) { animation-delay: 0.4s; }
.animate-fade-in.animated .row > *:nth-child(5) { animation-delay: 0.5s; }
.animate-fade-in.animated .row > *:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero section specific animation */
.hero-section .animate-fade-in {
    animation: heroFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.3s;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.download-buttons {
    opacity: 0;
    transform: translateY(20px);
    animation: textReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.9s;
}

.compact-booking-card {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: cardReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 1.1s;
}

@keyframes textReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardReveal {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


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

.compact-booking-card {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    top: 128px;
}
.vehicle-tab {
    display: flex !important;
}

.trip-underline-tabs {
    display: flex;
    background: #ffffff;
    width: 300px;
}

.trip-u-tab {
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 20px;
    cursor: pointer;
    color: #777;
    position: relative;
    transition: 0.3s;
}

.trip-u-tab.active {
    color: #000;
}

.trip-u-tab.active::after {
    content: "";
    position: absolute;
    left: 20%;
    right: 20%;
    bottom: -4px;
    height: 2px;
    background: #000;
    border-radius: 10px;
}

/* Main Horizontal Row */
.main-booking-row {
    display: flex;
    align-items: center;
    background: #f8f8f8;
    padding: 12px 20px;
    gap: 16px;
    flex-wrap: wrap;
}

.location-field {
    flex: 1;
    min-width: 250px;
    position: relative;
}

.location-field input {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 1.1rem;
    padding: 8px 0;
    color: #333;
}

.location-field input::placeholder {
    color: #999;
}

.location-field input:focus {
    outline: none;
}

.location-label {
    font-size: 0.85rem;
    color: #ff6200;
    margin-bottom: 4px;
    font-weight: 600;
}

.dot {
    position: absolute;
    left: 5px;
    top: 14px;
    width: 14px;
    height: 14px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.pickup-dot {
    background-image: url('/images/map.png');
}

.dropoff-dot {
    background-image: url('/images/map.png');
}


/* Car Type Dropdown Style */
.car-type-select {
    min-width: 220px;
}

.location-label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    color: #555;
}

.car-dropdown-btn {
    height: 46px;
    border-radius: 6px;
    border: 1px solid #ddd;
    background: #fff;
    text-align: left;
    padding: 10px 14px;
    font-weight: 500;
}

.car-dropdown-menu {
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 4px 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.car-dropdown-menu .dropdown-item {
    padding: 10px 14px;
    font-size: 14px;
}

.car-dropdown-menu .dropdown-item:hover {
    background: #f5f5f5;
}
.dropup .dropdown-toggle::after{
    display: none;
}

/* Continue Button - Orange */
.continue-btn {
    background: #000000;
    color: white;
    border: none;
    padding: 8px 40px;
    margin-top: 1.2rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.3s;
    box-shadow: 0 6px 20px rgba(138, 148, 61, 0.3);
}

.continue-btn:hover {
    background: #000000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(182, 182, 72, 0.4);
}

/* Price Bar - Below (Optional) */
.price-bar {
    margin-top: 24px;
    background: #f0f0f0;
    padding: 20px;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
}

.est-time {
    font-weight: normal;
    color: #666;
}
#promo-banner{
    position: relative;
    top: 59px;
    margin-bottom: 59px;
}
@media (max-width: 992px) {
    .main-booking-row {
        flex-direction: column;
        align-items: stretch;
    }
    .continue-btn {
        width: 100%;
        margin-top: 16px;
    }
    .trip-toggle {
        margin-bottom: 24px;
    }
    .trip-toggle label{
        padding: 12px 20px;
    }
    .compact-booking-card {
        position: static;
    }
    #promo-banner{
        position: static;
        top: 150px;
        margin-bottom: 10px;
    }
}
/* End hero section */


/* section title */
.hero-content p {
    font-size: 1.3rem;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-weight: 700;
    color: #000000;
    text-shadow: 1.152px 1.152px 0 #fff, 1.728px 1.728px 0 var(--secondary);
    margin-bottom: 15px;
}

.section-title:after {
    content: '';
    display: none;
    width: 80px;
    height: 4px;
    background: var(--secondary);
    margin: 2rem auto 0;
}
/*End section title */

.why-card {
    border-radius: 12px;
    padding: 24px;
    text-align: left;
    transition: 0.3s;
    height: 100%;
}

.why-card:hover {
    transform: translateY(-4px);
}

.why-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-icon .fas{
    font-size: 100px;
    margin-bottom: 1rem;
    background: #e8c5471c;
    padding: 2rem 5rem;
    border-radius: 8px;
}

.why-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}
.why-card .mb-3 img{
    height: 250px;
    width: 300px;
}


.pricing-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    background: #fff;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.pricing-img {
    width: 100%;
    text-align: center;
    background: #fdfdfe;
    transition: all 0.4s ease;
}

.pricing-img img {
    width: 80%;
    transition: transform 0.5s ease;
}

.pricing-card:hover .pricing-img img {
    transform: scale(1.1) rotate(-2deg);
}

.pricing-header {
    background: #202121;
    color: rgb(255 255 255);
    padding: 20px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.pricing-body {
    padding: 30px;
}

.pricing-header h4{
    font-weight: 600;
}

.faq-section {
    padding: 60px 0;
}

.faq-item {
    padding: 20px 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.faq-answer {
    display: none;
    padding: 10px 0 20px 0;
    font-size: 16px;
    color: #444;
}

.faq-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

footer {
    background: var(--primary);
    color: var(--text-primary);
    padding: 60px 0 20px;
    /* clip-path: polygon(0 5%, 100% 0%, 100% 100%, 0 100%); */
}

footer .row{
    margin-top: 3rem;
}
.footer-logo{
    margin-bottom: 20px;
    font-weight: bolder;
}
.footer-links h5 {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1.5rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li, .footer-links p {
    margin-bottom: 10px;
    font-weight: 500;
}

.footer-links a, .social-icons a{
    color: var(--text-primary);
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--secondary) !important;
    text-decoration: none;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s;
}

.app-download a{
    color: #000000 !important;
    background-color: var(--secondary) !important;
}
.social-icons a:hover {
    background: #e8c547f3;
    transform: translateY(-5px);
}

.app-download .btn-dark:hover{
    color: #000000 !important;
    transform: translateY(-2px);
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        min-height: auto;
        }
    .hero-content h1{
        font-size: 32px;
        line-height: 40px;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .ride-type-btn {
        margin: 0 5px 10px;
        padding: 6px 15px;
        font-size: 14px;
    }
    .download-buttons{
        flex-direction: column;
        width: 200px;
    }
    .why-card .mb-3 img{
        height: 100px;
        width: 100px;
    }
    .why-card{
        display: flex;
        padding: 6px;
    }
    .newsletter-title {
        font-size: 30px !important;
    }
}

/* Additional custom styles */


.hero-section{
    transform: skewY(-2deg);
    background-color: #e8c5471c;
}

#pricing, .testimonial-sec{
    transform: skewY(-2deg);
    background: linear-gradient(180deg, var(--secondary), #fff);
}

.social-icons .fab {
    color: black;
}

#pricing .container, .testimonial-sec .container, .hero-section .container{
    transform: skewY(2deg) !important;
}
.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle
{
    color: #000000 !important;
 }
.app-video-wrapper {
    margin: auto;
}

.app-video {
    width: 100%;
    height: auto;
    display: block;
}

.innovation-line {
    width: 4px;
    min-height: 55px;
    border-radius: 4px;
}
/* #pricing {
    background: linear-gradient(180deg, #f9fafb, #fff);
} */

/* ROAD */
.road {
    max-width: 900px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* EACH RIDE */
.road-ride {
    position: relative;
    display: grid;
    grid-template-columns: 80px 220px 1fr 200px;
    align-items: center;
    margin-bottom: 6rem;
}

/* ROAD LINE */
.road-line {
    width: 4px;
    height: 100%;
    background: repeating-linear-gradient(
        to bottom,
        #111 0 18px,
        transparent 18px 36px
    );
    justify-self: center;
}

/* CAR */
.road-car img {
    max-width: 200px;
    transform: translateX(-20px);
    transition: transform 0.5s ease;
}

/* INFO */
.road-info h4 {
    font-weight: 700;
    margin-bottom: 4px;
}

.road-info p {
    color: #6b7280;
    font-size: 14px;
}

/* PRICE SIGN */
.road-price {
    text-align: right;
    font-size: 24px;
    font-weight: 900;
}

.road-price span {
    display: block;
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 6px;
}

.road-price a {
    font-size: 18px;
    font-weight: 700;
    border-radius: 40px;
    background-color: var(--secondary);
    color: #111;
    text-decoration: none;
    padding: 8px 26px;
    border-radius: 40px;
}

/* HOVER MAGIC */
.road-ride:hover .road-car img {
    transform: translateX(20px);
}

.road-price {
    color: #000000e0;
}

/* ACTIVE */
.road-ride.active .road-line {
    background: repeating-linear-gradient(
        to bottom,
        #e8c547e0 0 18px,
        transparent 18px 36px
    );
}
@media (min-width: 1024px) {
.navbar-brand .px-3 {
    width: 250px;
    height: 100px;
}
}
@media (max-width: 768px) {
    /* Vertical spacing */
    .road {
        gap: 60px;
    }

    .road-ride {
        grid-template-columns: 1fr;
        text-align: center;
        position: relative;
        padding: 10px 30px;
    }

    /* Car floats above road */
    .road-car {
        position: relative;
        z-index: 2;
    }

    .road-car img {
        max-width: 260px;
        transform: translateY(0);
        animation: carFloat 3.5s ease-in-out infinite;
    }

    @keyframes carFloat {
        0%,100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }

    /* Info */
    .road-info {
        margin-top: 10px;
    }

    .road-info h4 {
        font-size: 20px;
    }

    .road-info p {
        font-size: 14px;
    }

    /* Price pops */
    .road-price {
        margin-top: 10px;
        font-size: 28px;
        font-weight: 900;
        color: #111;
        text-align: center;
    }

    .road-price span {
        font-size: 13px;
    }

    /* CTA feels premium */
    .road-price a {
        display: inline-block;
        margin-top: 8px;
        padding: 8px 26px;
        border-radius: 40px;
        background: linear-gradient(135deg, #e8c547e0, #caa62c);
        color: #111;
        font-weight: 600;
    }
    .road-ride::before {
        content: '';
        position: absolute;
        left: 5%;
        top: 0;
        transform: translateX(-50%);
        width: 6px;
        height: 100%;
        background: repeating-linear-gradient(
            to bottom,
            #000000ed 0 16px,
            transparent 16px 32px
        );
        border-radius: 10px;
        opacity: 0.45;
        z-index: 0;
    }
    .road-ride.active::before {
        background: repeating-linear-gradient(
            to bottom,
            #e8c547e0 0 16px,
            transparent 16px 32px
        );
    }
}
.testimonial-masonry {
    columns: 3;
    column-gap: 30px;
}

.t-block {
    break-inside: avoid;
    margin-bottom: 30px;
    padding-left: 24px;
    position: relative;
    animation: fadeUp .8s ease both;
}

.t-block::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #000000e0, transparent);
}

.t-block p {
    font-size: 15px;
    line-height: 1.6;
    color: #374151;
}

.t-block strong {
    display: block;
    margin-top: 12px;
    font-weight: 800;
}

.t-block span {
    font-size: 13px;
    color: #6b7280;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
    .testimonial-masonry {
        columns: 1;
    }
    .about-overlay-img {
        width: 130px !important;
    }
}
.newsletter-wrap {
    border-radius: 20px;
    padding: 50px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    gap: 30px;
    top: 60px;
    z-index: 3;
}

/* Background color change */
.custom-bg {
    background-color: var(--secondary);
}

/* Optional pattern overlay (if you want texture like image) */
.custom-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("assets/img/bg/newsletter_bg_1.png");
    background-size: cover;
    opacity: 0.12;
    border-radius: 20px;
    pointer-events: none;
}

.newsletter-title {
    color: #000;
    font-size: 42px;
    font-weight: 700;
    margin: 0;
}

/* Call button */
.th-btn.style6 {
    background: #000;
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.th-btn.style6:hover {
    background: #222;
}

.about-modern {
    background: #fff;
}

.about-image-wrapper {
    position: relative;
    max-width: 520px;
}

.about-main-img {
    width: 100%;
    border-radius: 20px;
    z-index: 1;
    position: relative;
}

.about-overlay-img {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 180px;
    border-radius: 16px;
    border: 6px solid #fff;
    z-index: 2;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.experience-box {
    position: absolute;
    bottom: -25px;
    right: 30px;
    background: #fff;
    padding: 18px 22px;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    text-align: center;
    z-index: 3;
}

.experience-box h2 {
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 0;
}

.experience-box p {
    font-size: 14px;
    margin: 0;
    color: #555;
}

.shape-red {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 170px;
    height: 161px;
    background: var(--secondary);
    border-radius: 12px;
    z-index: 0;
    clip-path: polygon(0px 0px, 0% 100%, 100% 100%);
}

/* Text Side */
.about-tag {
    display: inline-block;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 10px;
}

.about-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 991px) {
    .about-overlay-img {
        right: 0;
        top: -77px;
    }
    .shape-red {
        display: none;
    }
}
@keyframes floatUpDown {
    0% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0); }
}

.about-overlay-img {
    animation: floatUpDown 6s cubic-bezier(0.4, 0.0, 0.2, 1) infinite;
}
.promo-banner-full {
    border-radius: 20px;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    padding: 30px;
    color: white;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    background-color: var(--primary) !important;
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    z-index: 2;
}

.promo-text {
    flex: 1;
    padding: 30px;
}

.promo-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    background: var(--secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promo-description {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
    max-width: 500px;
}

.discount-badge {
    display: inline-block;
    background: var(--primary);
    border: 1px solid var(--secondary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px var(--secondary-light);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.btn-promo {
    background: var(--secondary);
    border: none;
    color: #000;
    margin-right: 2rem;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px var(--secondary-light);
}

.btn-promo:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--secondary);
    color: #000;
}

.promo-foreground-img {
    max-height: 250px;
    width: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Simple image-only promo */
.promo-image-only .promo-image {
    width: 100%;
    height: 300px;
    object-fit: fill;
    border-radius: 15px !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Carousel controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: var(--secondary);
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    border: 2px solid transparent;
}

.carousel-indicators li.active {
    background-color: var(--secondary);
    border-color: var(--secondary);
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .promo-banner-full {
        min-height: 250px;
        padding: 20px;
        margin: 10px;
    }
    .btn-promo {
        margin: 20px 0;
    }

    .promo-content {
        flex-direction: column;
        text-align: center;
    }

    .promo-text {
        padding: 10px;
    }

    .promo-title {
        font-size: 1.8rem;
    }

    .promo-description {
        font-size: 1rem;
    }

    .promo-foreground-img {
        max-height: 150px;
    }

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

    .carousel-control-prev {
        left: 10px;
    }

    .carousel-control-next {
        right: 10px;
    }
}

.ride-type-btn, .vehicle-tab {
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 30px;
    padding: 8px 25px;
    margin: 0 10px 10px;
    font-weight: 600;
    color: #495057;
    transition: all 0.3s ease;
}

.ride-type-btn:hover, .vehicle-tab:hover {
    color: #000;
    background: #e9ecef;
    border-color: #495057;
    transform: translateY(-2px);
}

.ride-type-btn.active, .vehicle-tab.active {
    background: var(--primary);
    border-color: var(--secondary);
    color: white;
}

.book-btn {
    transition: all 0.3s ease;
}

.vehicle-group {
    animation: fadeIn 0.5s ease;
}
.btn.focus, .btn:focus {
    box-shadow: none !important;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

