*{
  margin: -0;
  padding: 0;
  box-sizing: border-box;
}

body { padding-top: 80px; }

.transition { transition: all 0.3s ease; }

.border-custom{
    border-top: 6px solid #DC143C !important;
    border-radius: 12px;
}

/* Global Navbar Styles */
.navbar-glass {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(220, 53, 69, 0.1);
    transition: all 0.3s ease;
}

.navbar-glass.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* Navigation Links */
.nav-hover-effect {
    position: relative;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.nav-hover-effect:hover {
    color: #dc3545 !important;
    background: rgba(220, 53, 69, 0.05);
}

.nav-hover-effect.active {
    color: #dc3545 !important;
    background: rgba(220, 53, 69, 0.1);
}

/* Dropdown Menus */
.nav-mega-menu, .nav-book-menu {
    animation: slideDown 0.2s ease-out;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15) !important;
    border: none !important;
}

.nav-mega-menu {
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin-top: 10px !important;
}

.nav-book-menu {
    margin-top: 10px !important;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-15px) translateX(-50%);
    }
    to {
        opacity: 1;
        transform: translateY(0) translateX(-50%);
    }
}

.nav-book-menu {
    animation: slideDownBook 0.2s ease-out;
}

@keyframes slideDownBook {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* City Cards in Dropdown */
.city-card {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.city-card:hover {
    border-color: rgba(220, 53, 69, 0.2);
    background: rgba(220, 53, 69, 0.05);
    transform: translateY(-3px);
}

.city-icon {
    transition: all 0.3s ease;
}

.city-card:hover .city-icon {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.2), rgba(220, 53, 69, 0.3)) !important;
    transform: scale(1.1);
}

/* Book Options */
.book-option {
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.book-option:hover {
    background: rgba(255,255,255,0.1) !important;
    border-color: rgba(255,255,255,0.2);
    transform: translateX(5px);
}

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

.book-option:hover .book-icon-wrapper {
    background: rgba(255,255,255,0.25) !important;
    transform: scale(1.1);
}

/* Mobile Navigation */
.mobile-nav-link {
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-link:hover {
    background: rgba(220, 53, 69, 0.05);
    padding-left: 3rem;
}

.mobile-nav-accordion[aria-expanded="true"] .bi-chevron-down {
    transform: rotate(180deg);
}

.mobile-submenu {
    border-left: 3px solid #dc3545;
    margin-left: 1rem;
}

.city-icon-sm {
    transition: all 0.3s ease;
}

.city-icon-sm:hover {
    background: rgba(220, 53, 69, 0.2) !important;
}

/* Dropdown hover functionality - Desktop only */
@media (min-width: 992px) {
    .dropdown-hover-wrapper:hover .dropdown-menu {
        display: block !important;
    }
    
    /* Fix dropdown positioning */
    .nav-mega-menu {
        position: absolute !important;
        max-height: 70vh;
        overflow-y: auto;
    }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: white;
        border-radius: 1rem;
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        margin-top: 10px;
        padding: 1rem;
    }
    
    .nav-mega-menu {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        margin: 10px 0 !important;
        max-height: 70vh;
        overflow-y: auto;
    }
    
    .nav-book-menu {
        position: static !important;
        width: 100% !important;
        margin: 10px 0 !important;
    }
}

/* Loading Animation */
@keyframes rotateIn {
    from {
        transform: rotate(-90deg);
        opacity: 0;
    }
    to {
        transform: rotate(0);
        opacity: 1;
    }
}

/* Custom scrollbar for mega menu */
.nav-mega-menu::-webkit-scrollbar {
    width: 6px;
}

.nav-mega-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.nav-mega-menu::-webkit-scrollbar-thumb {
    background: rgba(220, 53, 69, 0.5);
    border-radius: 3px;
}

.nav-mega-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(220, 53, 69, 0.7);
}

/* Dropdown header styles */
.dropdown-header {
    border-radius: 0.5rem 0.5rem 0 0;
}

/* Section headers in dropdown */
h6.text-danger {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* City names */
.city-card span.fw-semibold {
    font-size: 0.95rem;
}

.city-card small {
    font-size: 0.8rem;
}
.navbar-toggler:focus{
    box-shadow: none !important;
}

/* Slider Section */
.premium-slider-section {
    position: relative;
    overflow: hidden;
    background-color: #1a1a1a;
}

/* Carousel Container - Custom Height */
#premiumCarousel {
    height: calc(100vh - 90px);
    min-height: 500px;
}

/* Carousel Inner */
#premiumCarousel .carousel-inner {
    height: 100%;
}

/* Carousel Item */
#premiumCarousel .carousel-item {
    height: 100%;
    transition: opacity 0.8s ease-in-out;
}

/* Image Wrapper */
.slide-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Slide Image with Zoom Effect */
.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.1);
    transition: transform 8s ease-out;
}

.carousel-item.active .slide-image {
    transform: scale(1);
}

/* Dark Overlay with Red Tint */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(17, 17, 17, 0.3) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

/* Slide Caption Container */
.slide-caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

/* Slide Content */
.slide-content {
    color: #fff;
    padding: 2rem 0;
}

/* Content Animation */
.carousel-item .slide-content {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.carousel-item.active .slide-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

/* Badge Style - Yellow */
.slide-badge {
    display: inline-block;
    background: #ffc107;
    color: #1a1a1a;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

/* Title - White */
.slide-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

/* Description */
.slide-description {
    font-size: 1.25rem;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 550px;
    margin-bottom: 2rem;
    color: #f5f5f5;
}

/* Buttons Container */
.slide-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Book A Taxi Button - Red */
.btn-book {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #dc3545;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #dc3545;
}

.btn-book:hover {
    background: #bb2d3b;
    border-color: #bb2d3b;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.4);
    color: #fff;
}

.btn-book:active {
    transform: translateY(-1px);
}

.btn-book i {
    font-size: 1.25rem;
}

/* About Us Button - Yellow Outline */
.btn-about {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

.btn-about:hover {
    background: #ffc107;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
}

.btn-about:active {
    transform: translateY(-1px);
}

.btn-about i {
    font-size: 1.25rem;
}

/* Navigation Buttons */
.carousel-control-prev,
.carousel-control-next {
    width: auto;
    padding: 0 2rem;
    opacity: 1;
    z-index: 10;
}

.nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: rgba(220, 53, 69, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(220, 53, 69, 0.5);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #dc3545;
    border-color: #dc3545;
    transform: scale(1.1);
}

.nav-btn i {
    font-size: 1.25rem;
}

/* Indicators - Red & Yellow */
.premium-indicators {
    z-index: 10;
    margin-bottom: 2rem;
}

/* ===== Premium Indicators - Override Bootstrap ===== */

#premiumCarousel .carousel-indicators {
    margin-bottom: 2rem;
    gap: 8px;
}

#premiumCarousel .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    min-height: unset;
    max-height: unset;
    border-radius: 50%;
    border: none;
    border-top: none;
    border-bottom: none;
    margin: 0 4px;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transition: all 0.4s ease;
    box-sizing: border-box;
    flex: 0 0 auto;
}

#premiumCarousel .carousel-indicators [data-bs-target]:hover {
    background-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

#premiumCarousel .carousel-indicators .active {
    width: 45px;
    height: 12px;
    border-radius: 20px;
    background: linear-gradient(90deg, #dc3545, #ffc107);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
    opacity: 1;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffc107;
    cursor: pointer;
    opacity: 0.6;
    z-index: 10;
    animation: bounce 2s infinite;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

.mouse-icon {
    width: 20px;
    height: 32px;
    border: 2px solid #ffc107;
    border-radius: 13px;
    position: relative;
    margin-bottom: 0.1rem;
}

.mouse-icon::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: #ffc107;
    border-radius: 2px;
    animation: scroll-wheel 1.5s infinite;
}

.scroll-indicator i {
    font-size: 1.25rem;
}

/* ===== Animations ===== */
@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

/* ===== Responsive Styles ===== */

/* Large Devices (Desktops) */
@media (max-width: 1199.98px) {
    .slide-title {
        font-size: 3.5rem;
    }
    
    .slide-description {
        font-size: 1.15rem;
    }
}

/* Medium Devices (Tablets) */
@media (max-width: 991.98px) {
    #premiumCarousel {
        height: calc(100vh - 80px);
        min-height: 450px;
    }

    .slide-title {
        font-size: 3rem;
    }

    .slide-description {
        font-size: 1.1rem;
        max-width: 450px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        padding: 0 1rem;
    }

    .nav-btn {
        width: 48px;
        height: 48px;
    }
    
    .btn-book,
    .btn-about {
        padding: 0.875rem 1.75rem;
    }
}

/* Small Devices (Landscape Phones) */
@media (max-width: 767.98px) {
    .navbar-placeholder {
        height: 70px;
    }
    
    #premiumCarousel {
        height: calc(100vh - 70px);
        min-height: 400px;
    }

    .slide-content {
        padding: 1.5rem;
    }

    .slide-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1.25rem;
        margin-bottom: 1rem;
    }

    .slide-title {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }

    .slide-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }

    .slide-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-book,
    .btn-about {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    
    .premium-indicators {
        margin-bottom: 1.5rem;
    }
    
    .scroll-indicator {
        bottom: 1.5rem;
    }
}

/* Extra Small Devices (Portrait Phones) */
@media (max-width: 575.98px) {
    .navbar-placeholder {
        height: 60px;
    }
    
    #premiumCarousel {
        height: calc(100vh - 60px);
        min-height: 380px;
    }

    .slide-content {
        padding: 1rem;
    }

    .slide-badge {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }

    .slide-title {
        font-size: 1.85rem;
    }

    .slide-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .btn-book,
    .btn-about {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        border-radius: 40px;
    }

    .btn-book i,
    .btn-about i {
        font-size: 1.1rem;
    }
    
    .premium-indicators button {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }
    
    .premium-indicators button.active {
        width: 30px;
    }

    .scroll-indicator {
        bottom: 1rem;
    }
    
    .mouse-icon {
        width: 22px;
        height: 36px;
    }
}

/* Very Small Devices */
@media (max-width: 359.98px) {
    .slide-title {
        font-size: 1.5rem;
    }
    
    .slide-description {
        font-size: 0.85rem;
    }
}

/* Landscape Mode on Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    #premiumCarousel {
        height: calc(100vh - 60px);
        min-height: 300px;
    }
    
    .slide-content {
        padding: 1rem;
    }
    
    .slide-badge {
        margin-bottom: 0.5rem;
    }
    
    .slide-title {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .slide-description {
        display: none;
    }
    
    .slide-buttons {
        flex-direction: row;
    }
    
    .btn-book,
    .btn-about {
        width: auto;
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .premium-indicators {
        margin-bottom: 0.75rem;
    }
}



/*Form*/
    .sliderform-wrapper {
        position: relative;
        margin-top: -80px;
        z-index: 999;
    }
    
    @media (max-width: 991px) {
        .sliderform-wrapper {
            margin-top: -50px;
        }
    }
    
    @media (max-width: 767px) {
        .sliderform-wrapper {
            margin-top: -30px;
        }
    }

    .sliderform-card {
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        overflow: hidden;
    }

    .sliderform-tabs {
        border: none;
        justify-content: flex-end;
        background-color: transparent;
    }

    .sliderform-tabs .nav-link {
        background-color: white;
        border: 1px solid grey;
        border-radius: 15px 15px 0 0;
        padding: 15px 40px;
        font-weight: 600;
        color: #212529;
        margin-left: 5px;
        transition: all 0.3s ease;
    }

    .sliderform-tabs .nav-link:hover {
        background-color: red;
        color: white;
    }

    .sliderform-tabs .nav-link.active {
        background-color: white;
        color: #dc3545;
    }

    .sliderform-label {
        font-weight: 600;
        color: #212529;
        margin-bottom: 8px;
    }

    .sliderform-input,
    .sliderform-select {
        border-radius: 10px;
        border: 2px solid #dee2e6;
        padding: 12px 15px;
        transition: all 0.3s ease;
    }

    .sliderform-input:focus,
    .sliderform-select:focus {
        border-color: #dc3545;
        box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
    }

    .sliderform-btn-submit {
        background-color: #212529;
        border: none;
        border-radius: 50px;
        padding: 12px 50px;
        font-weight: 600;
        color: white;
        transition: all 0.3s ease;
    }

    .sliderform-btn-submit:hover {
        background-color: #000;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .sliderform-tab-content {
        background-color: #f8f9fa;
        padding: 40px;
    }

    @media (max-width: 768px) {
        .sliderform-tabs {
            justify-content: center;
        }

        .sliderform-tabs .nav-link {
            padding: 12px 20px;
            font-size: 14px;
            margin-left: 2px;
        }

        .sliderform-tab-content {
            padding: 20px;
        }

        .sliderform-btn-submit {
            width: 100%;
        }
    }

    /* =========================
   One Way Hero Section
========================= */
.service-trip-hero {
    position: relative;
    padding: 80px 0 60px;
    background: linear-gradient(
        rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0.55)
    ),
    url("../images/breadcrumb/servicebg.jpg");
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

/* Breadcrumb */
.service-trip-breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.service-trip-breadcrumb li {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
}

.service-trip-breadcrumb li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.service-trip-breadcrumb li a:hover {
    text-decoration: underline;
}

.service-trip-breadcrumb li::after {
    content: "/";
    margin-left: 10px;
    color: rgba(255,255,255,0.6);
}

.service-trip-breadcrumb li:last-child::after {
    content: "";
}

.service-trip-breadcrumb li.active {
    color: #DC143C;
    font-weight: 600;
}

/* Hero Content */
.service-trip-hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadservice-trip: 0 6px 20px rgba(0,0,0,0.5);
}

.service-trip-hero-content p {
    max-width: 650px;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.95);
    text-shadservice-trip: 0 3px 10px rgba(0,0,0,0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .service-trip-hero {
        padding: 50px 0 25px;
    }

    .service-trip-hero-content h1 {
        font-size: 28px;
    }

    .service-trip-hero-content p {
        font-size: 15px;
    }
}

.service-trip-content {
        background: linear-gradient(180deg, #ffffff, #f8f9fa);
        padding: 35px 0;
    }

    .service-trip-title {
        font-size: 2.3rem;
        font-weight: 700;
    }

    .service-trip-list li {
        list-style: none;
        padding-left: 28px;
        margin-bottom: 10px;
        position: relative;
    }

    .service-trip-list li::before {
        content: "\f26e";
        font-family: "bootstrap-icons";
        position: absolute;
        left: 0;
        color: #dc3545;
    }

   
    .info-card {
        background: #fff;
        border-radius: 18px;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
        height: 100%;
    }

    .benefit-box {
        background: #fff;
        border-radius: 14px;
        padding: 18px;
        text-align: center;
        font-weight: 600;
        box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
    }