/* =========================================
   BusBooker India - Premium Homepage Styles
   ========================================= */

:root {
    --primary: #ff6b00;
    --secondary: #ffb703;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --text-color: #333333;
    --text-light: #777777;
    --gradient-primary: linear-gradient(135deg, #ff6b00 0%, #ffb703 100%);
    --gradient-overlay: linear-gradient(to top, rgba(26,26,26,0.9) 0%, rgba(26,26,26,0.1) 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

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

.btn-gradient-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-gradient-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
    color: white;
}

/* Cursor Glow Effect */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out;
}

/* Navbar */
.premium-navbar {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    padding: 15px 0;
}

.premium-navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 10px 0;
}

.premium-navbar .navbar-brand, .premium-navbar .nav-link {
    color: white !important;
    transition: color 0.3s ease;
}

.premium-navbar.scrolled .navbar-brand, .premium-navbar.scrolled .nav-link {
    color: var(--dark) !important;
}

.premium-navbar .nav-link {
    position: relative;
    font-weight: 500;
    margin: 0 10px;
}

.premium-navbar .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.premium-navbar .nav-link:hover::after {
    width: 100%;
}

.custom-toggler {
    border: none;
    background: rgba(255, 255, 255, 0.1);
}

.premium-navbar.scrolled .custom-toggler {
    background: rgba(0, 0, 0, 0.05);
}

/* Hero Slider */
.hero-slider {
    height: 100vh;
    width: 100%;
    position: relative;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 6s ease;
}

.swiper-slide-active .hero-slide-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    z-index: 10;
    max-width: 600px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-btn {
    opacity: 0;
    transform: translateY(30px);
}

.swiper-slide-active .hero-title {
    animation: fadeInUp 1s ease 0.5s forwards;
}

.swiper-slide-active .hero-subtitle {
    animation: fadeInUp 1s ease 0.8s forwards;
}

.swiper-slide-active .hero-btn {
    animation: fadeInUp 1s ease 1.1s forwards;
}

.hero-floating-bus {
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 300px;
    z-index: 5;
    animation: float 4s ease-in-out infinite;
    opacity: 0.8;
}

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

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

/* Section Shared Styles */
.section-padding {
    padding: 60px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--dark);
}

.section-subtitle {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    margin: 0 auto 30px auto;
}

/* Trip Cards - Glassmorphism */
.premium-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-primary);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    z-index: 2;
}

.card-body-premium {
    padding: 25px;
}

.destination-route {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.city-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark);
}

.route-icon {
    color: var(--primary);
    font-size: 1.2rem;
}

.trip-details-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.trip-details-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.trip-details-list li i {
    width: 20px;
    color: var(--primary);
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(rgba(26,26,26,0.9), rgba(26,26,26,0.9)), url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?q=80&w=2069') center/cover fixed;
    color: white;
}

.stat-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.stat-icon {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 5px;
}

/* Why Choose Us */
.feature-card {
    padding: 30px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 107, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--gradient-primary);
    color: white;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 20px;
    grid-auto-flow: dense;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item:nth-child(2) {
    grid-column: span 2;
    grid-row: span 2;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-text {
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-text {
    transform: translateY(0);
}

/* About Us */
.about-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-img {
    width: 100%;
    border-radius: 20px;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-primary);
    color: white;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 10px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(255, 107, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); }
}

/* Contact Section */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.form-floating-custom {
    position: relative;
    margin-bottom: 25px;
}

.form-control-custom {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid #ddd;
    padding: 10px 0;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control-custom:focus {
    outline: none;
    border-bottom-color: var(--primary);
}

.form-control-custom:focus + label,
.form-control-custom:not(:placeholder-shown) + label {
    top: -20px;
    font-size: 0.8rem;
    color: var(--primary);
}

.form-floating-custom label {
    position: absolute;
    top: 10px;
    left: 0;
    color: var(--text-light);
    transition: all 0.3s ease;
    pointer-events: none;
}

/* Footer */
.footer-premium {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    position: relative;
    overflow: hidden;
}

.footer-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
}

/* Floating Utilities */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--dark);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

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

.scroll-to-top:hover {
    background: var(--gradient-primary);
    color: white;
}

.floating-whatsapp {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    animation: bounce 2s infinite;
}

.floating-whatsapp:hover {
    background: #128C7E;
    color: white;
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero-title { font-size: 3rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .gallery-item:nth-child(2) { grid-column: span 1; grid-row: span 1; }
    .premium-navbar { background: rgba(26,26,26,0.95); padding: 10px 0; }
}

/* Page Loader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.loader-bus {
    font-size: 4rem;
    color: var(--primary);
    animation: drive 2s ease-in-out infinite;
}

@keyframes drive {
    0% { transform: translateX(-50px) scale(0.9); opacity: 0; }
    50% { transform: translateX(0) scale(1.1); opacity: 1; }
    100% { transform: translateX(50px) scale(0.9); opacity: 0; }
}

/* Lightbox Styles */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 7, 18, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3.5rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    user-select: none;
    z-index: 1000000;
}

.lightbox-close:hover {
    color: var(--primary);
    transform: rotate(90deg) scale(1.1);
}

.lightbox-content-container {
    max-width: 85%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lightbox-overlay.active .lightbox-content-container {
    transform: scale(1);
}

.lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.1);
    object-fit: contain;
}

.lightbox-caption {
    text-align: center;
    margin-top: 20px;
    color: white;
}

.lightbox-caption h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   PREMIUM TRIP CARDS - JAW-DROPPING MODERN TRAVEL UI
   ========================================================================== */
.premium-trip-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(241, 245, 249, 0.9);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03), 0 1px 3px rgba(15, 23, 42, 0.01);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.premium-trip-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 0, 0.15);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.06), 0 1px 3px rgba(255, 107, 0, 0.02);
}

/* Card Image Header styling */
.trip-image-sec {
    position: relative;
    height: 220px;
    width: 100%;
    overflow: hidden;
    background: #e2e8f0;
}

.trip-image-sec img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-trip-card:hover .trip-image-sec img {
    transform: scale(1.08);
}

/* Elegant Badges on Image */
.bus-type-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 5;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.live-seats-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 5;
    background: #ffffff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.seats-green {
    color: #10b981;
}

.seats-orange {
    color: #f97316;
}

/* Pulsating indicator dot */
.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.seats-green .pulse-dot {
    background-color: #10b981;
}

.seats-orange .pulse-dot {
    background-color: #f97316;
}

.pulse-dot::after {
    content: '';
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    animation: badgePulse 2s infinite ease-out;
}

.seats-green .pulse-dot::after {
    background-color: #10b981;
}

.seats-orange .pulse-dot::after {
    background-color: #f97316;
}

@keyframes badgePulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.8); opacity: 0; }
}

/* Card Body Content */
.trip-details-sec {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Trip Title Styling */
.trip-title-text {
    font-size: 1.28rem;
    font-weight: 750;
    color: #0f172a;
    line-height: 1.4;
    margin-bottom: 20px;
    transition: color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.premium-trip-card:hover .trip-title-text {
    color: #ff6b00;
}

/* Modern Timeline Route styling */
.route-timeline-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fafc;
    border-radius: 16px;
    padding: 12px 18px;
    margin-bottom: 18px;
    border: 1px solid rgba(241, 245, 249, 0.8);
}

.route-station {
    display: flex;
    flex-direction: column;
    max-width: 45%;
    min-width: 0;
}

.station-city {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.station-label {
    font-size: 0.72rem;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.route-line-box {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 10px;
}

.route-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #cbd5e1;
}

.origin-dot {
    background: #cbd5e1;
}

.dest-dot {
    background: #ff6b00;
}

.route-dashed-line {
    height: 1px;
    border-bottom: 2px dashed #e2e8f0;
    flex-grow: 1;
}

.route-moving-bus {
    color: #ff6b00;
    font-size: 0.85rem;
    margin: 0 8px;
    transition: transform 0.5s ease;
}

.premium-trip-card:hover .route-moving-bus {
    transform: translateX(4px);
}

/* Boarding Point row */
.boarding-point-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fff8f3;
    border: 1px solid rgba(255, 107, 0, 0.06);
    border-radius: 12px;
    padding: 10px 14px;
    margin-bottom: 18px;
}

.boarding-marker {
    color: #ef4444;
    font-size: 1.1rem;
    margin-top: 2px;
}

.boarding-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.boarding-label {
    font-size: 0.65rem;
    color: #ff8533;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.boarding-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
    line-height: 1.4;
    word-break: break-word;
}

/* Timing Grid style */
.timing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    background: #f8fafc;
    border-radius: 14px;
    padding: 12px;
    margin-bottom: 18px;
    border: 1px solid rgba(241, 245, 249, 0.8);
}

.timing-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.timing-item i {
    font-size: 0.95rem;
    margin-top: 3px;
}

.timing-details {
    display: flex;
    flex-direction: column;
}

.timing-title {
    font-size: 0.68rem;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.timing-val {
    font-size: 0.82rem;
    font-weight: 700;
    color: #1e293b;
    margin-top: 1px;
}

/* Amenities Row styling */
.amenities-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid #f1f5f9;
}

.amenities-icons-group {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.amenity-badge {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.badge-ac { background: #ecfdf5; color: #059669; }
.badge-pushback { background: #eff6ff; color: #2563eb; }
.badge-bolt { background: #fffbeb; color: #d97706; }
.badge-water { background: #f0f9ff; color: #0284c7; }

.services-group {
    display: flex;
    gap: 10px;
}

.service-pill {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.pill-active {
    background: #f0fdf4;
    color: #15803d;
    border: 1px solid rgba(22, 163, 74, 0.15);
}

.pill-inactive {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid rgba(220, 38, 38, 0.1);
}

/* Card Footer with Pricing and CTA button */
.trip-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.price-container {
    display: flex;
    align-items: baseline;
}

.price-currency {
    font-size: 1rem;
    font-weight: 700;
    color: #ff6b00;
    margin-right: 2px;
}

.price-val {
    font-size: 1.65rem;
    font-weight: 800;
    color: #ff6b00;
    letter-spacing: -0.5px;
}

.price-label {
    font-size: 0.75rem;
    color: #64748b;
    margin-left: 4px;
    font-weight: 500;
}

/* Call to Action Button Sizing */
.btn-book-gradient {
    background: var(--gradient-primary);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.25);
    transition: all 0.3s ease;
}

.premium-trip-card:hover .btn-book-gradient {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.35);
}

.btn-book-gradient i {
    font-size: 0.72rem;
    transition: transform 0.3s ease;
}

.premium-trip-card:hover .btn-book-gradient i {
    transform: translateX(3px);
}

/* Completed Trips styling override */
.premium-trip-card.completed-trip {
    opacity: 0.9;
    border-color: rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
}

.premium-trip-card.completed-trip:hover {
    transform: none;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
    border-color: rgba(226, 232, 240, 0.8);
}

.premium-trip-card.completed-trip .trip-image-sec {
    filter: grayscale(40%);
}

.premium-trip-card.completed-trip:hover .trip-image-sec img {
    transform: none;
}

.premium-trip-card.completed-trip:hover .trip-title-text {
    color: #0f172a;
}

.completed-badge {
    background: #10b981 !important;
    color: white !important;
}

