
        /* ===== SERVICES PAGE CUSTOM STYLES ===== */

        /* STEPS SECTION (Easy Booking Steps) */
        .trv-step-bx1-wrap {
            background: #f8f6f2;
        }

        /* SERVICE CARDS SECTION */
        .trv-services-section {
            padding: 100px 0 80px;
            background: #fff;
        }

        .trv-service-card {
            background: #fff;
            border-radius: 18px;
            box-shadow: 0 4px 32px rgba(0,0,0,0.08);
            padding: 36px 28px 28px;
            margin-bottom: 30px;
            transition: all 0.35s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .trv-service-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 4px;
            background: var(--card-accent, #f7b731);
            border-radius: 18px 18px 0 0;
        }

        .trv-service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 48px rgba(0,0,0,0.14);
            border-color: var(--card-accent, #f7b731);
        }

        .trv-service-card .svc-icon {
            width: 68px;
            height: 68px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 18px;
            background: var(--card-bg, #fff8e6);
            color: var(--card-accent, #f7b731);
        }

        .trv-service-card h4 {
            font-size: 20px;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 10px;
        }

        .trv-service-card p {
            color: #666;
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 14px;
        }

        .trv-service-card ul {
            list-style: none;
            padding: 0;
            margin: 0 0 20px;
        }

        .trv-service-card ul li {
            font-size: 13.5px;
            color: #444;
            padding: 4px 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .trv-service-card ul li::before {
            content: '✓';
            color: var(--card-accent, #f7b731);
            font-weight: 700;
            font-size: 13px;
            flex-shrink: 0;
        }
/* Make both CTA buttons equal size */
.cta-btns a {
    min-width: 220px;   /* same width */
    justify-content: center;
    text-align: center;
}
        .trv-service-card .svc-tag {
            display: inline-block;
            background: var(--card-bg, #fff8e6);
            color: var(--card-accent, #f7b731);
            font-size: 12px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 20px;
            margin-top: 6px;
        }

        /* Color themes per card */
        .svc-taxi   { --card-accent: #f7b731; --card-bg: #fff8e6; }
      
        /* WHY CHOOSE US */
        .trv-why-us-wrap {
            background: linear-gradient(135deg, #024b99 0%, #024b99 60%, #024b99 100%);
            padding: 100px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .trv-why-us-wrap::before {
            content: '';
            position: absolute;
            width: 500px; height: 500px;
            background: radial-gradient(circle, rgba(247,183,49,0.12) 0%, transparent 70%);
            top: -100px; right: -100px;
            border-radius: 50%;
        }

        .trv-why-feature {
            display: flex;
            align-items: flex-start;
            gap: 18px;
            margin-bottom: 28px;
        }

        .trv-why-feature .feat-icon {
            width: 52px;
            height: 52px;
            border-radius: 12px;
            background: rgba(247,183,49,0.15);
            border: 1px solid rgba(247,183,49,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: #f7b731;
            flex-shrink: 0;
        }

        .trv-why-feature .feat-info h5 {
            color: #fff;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .trv-why-feature .feat-info p {
            color: rgba(255,255,255,0.65);
            font-size: 13.5px;
            margin: 0;
            line-height: 1.5;
        }

        .trv-why-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 10px;
        }

        .trv-stat-card {
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 14px;
            padding: 24px 20px;
            text-align: center;
        }

        .trv-stat-card .stat-num {
            font-size: 36px;
            font-weight: 800;
            color: #f7b731;
            line-height: 1;
        }

        .trv-stat-card .stat-label {
            font-size: 13px;
            color: rgba(255,255,255,0.7);
            margin-top: 6px;
        }

        /* CTA SECTION */
        .trv-cta-services {
            padding: 40px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .trv-cta-services::before {
            content: '✈';
            position: absolute;
            font-size: 200px;
            opacity: 0.07;
            top: -30px; right: 5%;
            color: #fff;
        }

        .trv-cta-services h2 {
            font-size: 38px;
            font-weight: 800;
            color: #1a1a2e;
            margin-bottom: 14px;
        }

        .trv-cta-services p {
            font-size: 17px;
            color: rgba(26,26,46,0.75);
            max-width: 550px;
            margin: 0 auto 32px;
        }

        .trv-cta-services .cta-btns {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn-cta-primary {
            background: #fcbf14 ;
            color: #000;
            padding: 14px 36px;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-cta-primary:hover {
            background: #fcbf14  ;
            color: #000;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(26,26,46,0.3);
        }

        .btn-cta-outline {
            background: transparent;
            color: #1a1a2e;
            padding: 14px 36px;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 700;
            text-decoration: none;
            border: 2px solid #1a1a2e;
            transition: all 0.3s;
        }

        .btn-cta-outline:hover {
            background: #85D200;
            color: #000;
        }

        /* TICKET BOOKING COMBINED */
        .trv-ticket-section {
            background: #f8f6f2;
            padding: 80px 0;
        }

        .trv-ticket-card {
            background: #fff;
            border-radius: 16px;
            padding: 36px 32px;
            box-shadow: 0 4px 24px rgba(0,0,0,0.06);
            height: 100%;
            transition: transform 0.3s;
        }

        .trv-ticket-card:hover {
            transform: translateY(-6px);
        }

        .trv-ticket-card .ticket-icon {
            font-size: 48px;
            margin-bottom: 18px;
        }

        .trv-ticket-card h4 {
            font-size: 22px;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 10px;
        }

        .trv-ticket-card p {
            color: #666;
            line-height: 1.7;
            margin-bottom: 16px;
        }

        .trv-ticket-card ul {
            list-style: none;
            padding: 0; margin: 0;
        }

        .trv-ticket-card ul li {
            padding: 6px 0;
            color: #444;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            border-bottom: 1px solid #f0f0f0;
        }

        .trv-ticket-card ul li:last-child { border-bottom: none; }

        .trv-ticket-card ul li i {
            color: #f7b731;
            font-size: 15px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .trv-why-stats { grid-template-columns: 1fr 1fr; }
            .trv-cta-services h2 { font-size: 26px; }
            .trv-service-card { padding: 28px 20px 22px; }
        }
    