:root {
    --primary-blue: #0e1a35;
    --dark-blue: #0a0f1e;
    --blue-card: #111c38;
    --yellow: #f5c518;
    --orange: #ff9e1b;
    --light-grey: #0e1a35;
    --white: #111c38;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Outfit', sans-serif;
    color: #fff;
    background-color: var(--dark-blue);
    overflow-x: hidden;
}

h1,
h2,
h3,
.brand-text {
    font-family: 'Outfit', sans-serif;
}

.content-wrapper {
  overflow-x: hidden;
  width: 100%;
}
/* Navbar */
.main-nav {
    transition: all 0.4s ease;
    padding: 20px 0;
}

.main-nav.bg-white {
    padding: 10px 0;
}
    .navbar-expand-lg .navbar-toggler{
        display:none !important;
    }
.logo-img{
height: 60px;
  transition: transform 0.3s ease;
    
}
.logo-img:hover {
  transform: scale(1.05);
}
.brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 650px;
    background: url('../img/hero_bg.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 35, 102, 0.8) 0%, rgba(0, 10, 30, 0.6) 100%);
}

.landing-heading {
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.op-9 {
    opacity: 0.9;
}

.icon-list i {
    font-size: 1.2rem;
}

.btn-gradient-warning {
    background: linear-gradient(135deg, var(--yellow), var(--orange));
    border: none;
    color: #000;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-gradient-warning:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(245, 197, 24, 0.4);
    background: linear-gradient(135deg, var(--orange), #ff6600);
    color: #000;
}

/* Modern Booking Card */
.booking-card-modern {
    background: rgba(10, 20, 40, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    z-index: 2;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3) !important;
}

.form-control-modern {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
    backdrop-filter: blur(5px);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.form-control-modern:focus {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: var(--yellow) !important;
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.2) !important;
}

.form-floating label {
    color: rgba(255, 255, 255, 0.7) !important;
}

.form-floating > .form-control-modern:focus ~ label,
.form-floating > input.form-control-modern:not(:placeholder-shown) ~ label,
.form-floating > select.form-control-modern:focus ~ label,
.form-floating > select.form-control-modern:valid ~ label {
    color: var(--yellow) !important;
    font-weight: 600;
    transform: scale(0.85) translateY(-1.2rem) translateX(0.15rem) !important;
    background: transparent !important;
}

.form-floating > select.form-control-modern:invalid ~ label {
    transform: none !important;
    padding-top: 1rem !important;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7) !important;
}
.form-floating > .form-control-modern:focus ~ label::after,
.form-floating > .form-control-modern:not(:placeholder-shown) ~ label::after,
.form-floating > select.form-control-modern ~ label::after {
    background: transparent !important;
}

.form-control-modern option{
    color:#000;
}
/* Chrome autofill fix for glassmorphism */
input.form-control-modern:-webkit-autofill,
input.form-control-modern:-webkit-autofill:hover, 
input.form-control-modern:-webkit-autofill:focus, 
input.form-control-modern:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px #1a2a40 inset !important;
    -webkit-text-fill-color: white !important;
}

.hover-warning:hover {
    background: var(--orange) !important;
    border-color: var(--orange) !important;
    color: #fff !important;
}

/* Available Cars */
.bg-light-grey {
    background-color: var(--primary-blue) !important;
}

/* Override Boostrap light classes */
.bg-light { background-color: var(--dark-blue) !important; }
.bg-white { background-color: var(--blue-card) !important; border: 1px solid rgba(245,197,24,0.15) !important; }
.text-dark { color: #fff !important; }
.text-muted { color: rgba(255, 255, 255, 0.6) !important; }

.underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--yellow), var(--orange));
    border-radius: 4px;
}

.car-card-modern {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(245,197,24,0.15) !important;
    background-color: var(--blue-card) !important;
}

.car-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
    border-color: rgba(255, 204, 0, 0.5);
}

.car-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--primary-blue) 0%, rgba(255,255,255,0.05) 100%);
}

.car-img {
    max-height: 180px;
    object-fit: contain;
    filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.15));
}

.car-card-modern:hover .car-img {
    transform: scale(1.08) translateX(5px);
}

.car-card-modern:hover .feature-box {
    background-color: rgba(255,255,255,0.05) !important;
    border-color: var(--yellow) !important;
}

.text-primary-blue {
    color: var(--yellow) !important;
}

.transition-transform {
    transition: transform 0.5s ease;
}

/* Bento Grid Insights */
.bento-card {
    cursor: pointer;
}

.bento-card img {
    transition: transform 0.8s ease;
}

.bento-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    opacity: 0.9;
    transition: all 0.4s ease;
}

.bento-card:hover img {
    transform: scale(1.1);
}

.bento-card:hover .bento-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
}


/* Testimonial Cards */
        .testimonials-bg {
            background: linear-gradient(135deg, rgba(10, 15, 30, 0.9) 0%, rgba(10, 15, 30, 0.98) 100%), url('../img/hero_bg.png') no-repeat center center/cover;
            position: relative;
        }
        .testimonial-card {
            background-color: var(--blue-card) !important;
            transition: all 0.4s ease;
            border: 1px solid rgba(245,197,24,0.15) !important;
            overflow: visible !important;
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(245, 197, 24, 0.1) !important;
            border-color: rgba(255, 204, 0, 0.5) !important;
        }
        
        /* Fix for circular image visibility */
        .testimonial-card .position-absolute.top-0 {
            overflow: visible !important;
        }
        
        .testimonial-card img.rounded-circle {
            border: 4px solid var(--primary-blue);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            z-index: 2;
        }

        .text-light {
            color: rgba(255,255,255,0.05) !important;
        }

        .bg-primary-blue {
            background-color: var(--primary-blue) !important;
        }

        /* Ensure cards don't clip the image */
        .testimonial-card {
            overflow: visible !important;
            margin-top: 45px;
        }
        
        .testimonial-card .position-absolute {
            top: -45px !important;
            left: 50% !important;
            transform: translateX(-50%) !important;
        }
        /* preserve original spacing and layout */
        .testimonials-bg .row.g-4 {
            margin: 0 !important;
        }
        .testimonials-bg .col-md-4 {
            padding: 0 !important;
        } 
        /* Modern Tour Packages */
        .package-card-modern {
            background-color: var(--blue-card) !important;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            border: 1px solid rgba(245,197,24,0.15) !important;
        }

        .package-card-modern:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1) !important;
            border-color: rgba(255, 204, 0, 0.5) !important;
        }

        .package-img-wrapper {
            height: 240px;
            overflow: hidden;
        }

        .package-img-wrapper img {
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .package-card-modern:hover .package-img-wrapper img {
            transform: scale(1.1);
        }

        .package-price-tag {
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            background: var(--blue-card) !important;
            border: 1px solid rgba(245,197,24,0.15);
            color: var(--yellow) !important;
        }
        
        /* Slider specific styles - Fixed button positioning */
        .testimonial-slider-container,
        .routes-slider-container {
            position: relative;
            padding: 0 50px;
        }
        
        .testimonial-slider,
        .routes-slider {
            overflow: hidden;
        }
        
        .testimonial-track,
        .routes-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            gap: 24px;
        }
        
        .testimonial-slide,
        .routes-slide {
            flex: 0 0 calc(33.333% - 16px);
            min-width: 0;
            overflow: visible;
        }
        
        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 44px;
            height: 44px;
            background: var(--blue-card);
            border: 1px solid rgba(245,197,24,0.3);
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(245,197,24,0.1);
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--yellow);
            font-size: 1.2rem;
        }
        
        .slider-btn:hover {
            background: linear-gradient(135deg, var(--yellow), var(--orange));
            color: #000;
            transform: translateY(-50%) scale(1.05);
        }
        
        .slider-btn-prev,.routes-slider-btn-prev {
            left: 0;
        }
        
        .slider-btn-next,.routes-slider-btn-next {
            right: 0;
        }
        
        .slider-dots {
            display: none;
            justify-content: center;
            gap: 12px;
            margin-top: 40px;
        }
        
        .slider-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(0,0,0,0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            padding: 0;
        }
        
        .slider-dot.active {
            background: #ffc107;
            width: 28px;
            border-radius: 20px;
        }
        


/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

/* FOOTER */
footer{background:#060b18;padding:40px 0 20px;border-top:1px solid rgba(245,197,24,.15)}
footer .foot-logo{height:44px;margin-bottom:12px}
footer h6{font-weight:700;color:var(--yellow);margin-bottom:16px}
footer a{color:rgba(255,255,255,.5);text-decoration:none;font-size:.9rem;display:block;margin-bottom:8px;transition:color .2s}
footer a:hover{color:var(--yellow)}
footer .foot-copy{color:rgba(255,255,255,.3);font-size:.82rem;text-align:center;margin-top:32px;padding-top:20px;border-top:1px solid rgba(255,255,255,.07)}

.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.wa-float,
.btn-whatsapp {
            background-color: #25d366;
            color: #fff;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 8px 24px rgba(37,211,102,.5);
            text-decoration: none;
            animation: pulse 2s infinite;
            transition: all 0.3s ease;
        }
        
        @keyframes pulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
            70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
        }

.btn-call {
    background: linear-gradient(135deg, var(--yellow), var(--orange));
    color: #000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(245, 197, 24, 0.4);
    transition: all 0.3s ease;
}

.btn-whatsapp:hover,
.btn-call:hover {
    transform: scale(1.1);
    color: #fff;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-section {
        height: auto;
        padding-top: 100px;
        padding-bottom: 80px;
    }

    .landing-heading {
        font-size: 2.5rem;
    }

    .testimonial-slide,
    .routes-slide {
        flex: 0 0 calc(50% - 12px);
    }
    .testimonial-slider-container,
    .routes-slider-container {
        padding: 0 40px;
    }    
}

@media (max-width: 767px) {
  
.main-nav .navbar-brand{
width: 100%;
  text-align: center;    
}  

.testimonial-slide,
.routes-slide {
    flex: 0 0 100%;
}
.testimonial-slider-container,
.routes-slider-container {
    padding: 0 35px;
}
.slider-btn-prev,.routes-slider-btn-prev {
    left: -5px;
}
.slider-btn-next,.routes-slider-btn-next {
    right: -5px;
}

.sticky-cta {
        bottom: 20px;
        right: 20px;
    }

.wa-float,
.btn-whatsapp,
.btn-call {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
}
}



