/* Utility Classes */
.btn-block {
    width: 100%;
}

.text-gray {
    color: var(--text-gray);
}

.popular-ribbon {
    position: absolute;
    top: 10px;
    right: -30px;
    background: var(--gradient-gold);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.popular-badge {
    font-size: 0.85rem;
    color: #10B981;
    margin-bottom: 10px;
}

.rating-summary {
    text-align: center;
    margin-bottom: 20px;
}

.rating-score {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
}

.rating-score span {
    font-size: 1.5rem;
    color: var(--text-gray);
}

.rating-stars {
    color: #FFA114;
    font-size: 1.5rem;
}

.rating-count {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: 5px;
}

.footer-logo-invert {
    filter: brightness(0) invert(1);
}

/* Trust Section - Premium Redesign */
.trust-section {
    background: linear-gradient(135deg, var(--primary) 0%, #0a1f38 100%);
    color: var(--bg-white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Subtle background glow effect */
.trust-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(13, 110, 253, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.trust-grid>div {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.trust-grid>div:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(13, 110, 253, 0.1);
}

.trust-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--accent);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02);
}

.trust-grid>div:hover .trust-icon {
    background: rgba(0, 153, 255, 0.1);
    border-color: rgba(0, 153, 255, 0.3);
    color: #fff;
    transform: scale(1.1);
}

.trust-title {
    color: var(--bg-white);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.trust-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Recent Bookings Ticker */
.ticker-section {
    background: var(--bg-white);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.ticker-wrap {
    display: inline-block;
    animation: ticker 40s linear infinite;
    color: var(--text-gray);
}

.ticker-item {
    display: inline-block;
    padding: 0 40px;
}

.ticker-item span {
    font-weight: 600;
    color: var(--primary);
}

@keyframes ticker {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Popular Routes Grid */
.routes-section {
    background-color: var(--bg-main);
    padding: 100px 0;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.route-card {
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    padding: 25px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.route-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
    border-color: var(--blue);
}

.route-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.route-places {
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.route-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 700;
}

.route-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-gray);
    font-size: 0.85rem;
}

/* Fleet Section */
.fleet-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.fleet-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.fleet-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.fleet-img-wrapper {
    background-color: var(--bg-main);
    padding: 40px;
    text-align: center;
}

.fleet-img {
    height: 180px;
    object-fit: contain;
    transition: var(--transition);
}

.fleet-card:hover .fleet-img {
    transform: scale(1.05);
}

.fleet-body {
    padding: 30px;
}

.fleet-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.fleet-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.fleet-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fleet-price-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    display: block;
}

.fleet-price-val {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 700;
}

/* How It Works */
.steps-section {
    background-color: var(--bg-main);
    padding: 100px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}

.step-card {
    position: relative;
    z-index: 2;
    text-align: center;
    background: var(--bg-main);
}

.step-number {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 2px solid var(--accent);
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.step-card:hover .step-number {
    background: var(--gradient-gold);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 153, 255, 0.4);
}

.step-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.reviews-section {
    background-color: var(--primary);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.reviews-section .section-title,
.reviews-section .section-subtitle {
    color: var(--bg-white);
}

.reviews-slider {
    display: flex;
    gap: 30px;
    padding: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.reviews-slider::-webkit-scrollbar {
    display: none;
}

.review-card {
    min-width: 350px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    scroll-snap-align: start;
}

.stars {
    color: #FFA500;
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.8;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--bg-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
}

.reviewer-info h5 {
    font-family: var(--font-text);
    font-size: 1rem;
    margin-bottom: 5px;
}

.reviewer-info span {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Bottom CTA */
.cta-section {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(to bottom, var(--bg-white), var(--bg-main));
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 30px;
}

.btn-large {
    padding: 20px 50px;
    font-size: 1.2rem;
    border-radius: var(--radius-md);
}

