/* ==========================================================================
   TaxiGo (texigo_theme) Stylesheet — Website Builder
   Pixel-Perfect Match with Reference Design
   Isolated & Encapsulated Scoped Styling (.tx-)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ── Design Tokens ─────────────────────────────────────────────────────── */
:root {
    --tx-primary:        #FFB800;
    --tx-primary-dark:   #E6A600;
    --tx-primary-light:  #FFCF4D;
    --tx-secondary:      #0D0F12;
    --tx-dark-surface:   #16181F;
    --tx-bg-light:       #F8F9FA;
    --tx-bg-card:        #FFFFFF;
    --tx-badge-bg:       #FFF8E6;
    --tx-text-dark:      #0D0F12;
    --tx-text-muted:     #64748B;
    --tx-text-light:     #94A3B8;
    --tx-border:         #E2E8F0;
    --tx-border-light:   #F1F5F9;

    --tx-font-heading: 'Outfit', 'Inter', system-ui, sans-serif;
    --tx-font-cursive: 'Caveat', cursive;
    --tx-font-body:    'Inter', system-ui, sans-serif;

    --tx-radius-sm:   8px;
    --tx-radius-md:   16px;
    --tx-radius-lg:   24px;
    --tx-radius-pill: 9999px;

    --tx-shadow-sm: 0 2px 10px rgba(0,0,0,0.04);
    --tx-shadow-md: 0 8px 28px rgba(0,0,0,0.07);
    --tx-shadow-lg: 0 16px 48px rgba(0,0,0,0.10);

    --tx-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset / Base ──────────────────────────────────────────────────────── */
html, body, .tx-body {
    margin: 0; padding: 0;
    font-family: var(--tx-font-body);
    color: var(--tx-text-dark);
    background-color: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden !important;
    max-width: 100vw !important;
}
html { overflow-y: auto !important; scroll-behavior: smooth; }
body, .tx-body { min-height: 100vh; }
main, section, header, footer { max-width: 100% !important; box-sizing: border-box !important; }
main { overflow: visible !important; }

/* ── Container ─────────────────────────────────────────────────────────── */
.tx-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
    box-sizing: border-box;
}
@media (max-width: 767.98px) {
    .tx-container { padding: 0 16px !important; }
}

/* ── Typography helpers ────────────────────────────────────────────────── */
.tx-heading {
    font-family: var(--tx-font-heading);
    font-weight: 800;
    color: var(--tx-text-dark);
    line-height: 1.12;
    letter-spacing: -0.5px;
}
.tx-cursive { font-family: var(--tx-font-cursive); font-weight: 600; }

/* ── Pill / badge ──────────────────────────────────────────────────────── */
.tx-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 16px;
    background: var(--tx-badge-bg);
    color: #945B00;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.6px;
    border-radius: var(--tx-radius-pill);
    margin-bottom: 14px;
    text-transform: uppercase;
    border: 1px solid rgba(255,184,0,0.3);
}

/* ── Buttons ───────────────────────────────────────────────────────────── */
.tx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 26px;
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--tx-radius-pill);
    text-decoration: none;
    transition: var(--tx-transition);
    cursor: pointer;
    border: 1.5px solid transparent;
    white-space: nowrap;
}
.tx-btn-yellow {
    background: var(--tx-primary);
    color: var(--tx-secondary);
    border-color: var(--tx-primary);
}
.tx-btn-yellow:hover {
    background: var(--tx-primary-dark);
    color: var(--tx-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,184,0,0.35);
}
.tx-btn-outline-dark {
    background: #ffffff;
    color: var(--tx-text-dark);
    border-color: var(--tx-secondary);
}
.tx-btn-outline-dark:hover {
    background: var(--tx-secondary);
    color: #ffffff;
    transform: translateY(-2px);
}

/* ── Slider nav buttons (< >) ──────────────────────────────────────────── */
.tx-slider-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid var(--tx-border);
    color: var(--tx-text-dark);
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--tx-transition);
    flex-shrink: 0;
}
.tx-slider-btn:hover {
    background: var(--tx-secondary);
    color: #ffffff;
    border-color: var(--tx-secondary);
    transform: scale(1.06);
}

/* ═══════════════════════════════════════════════════════════════════════
   TOP ANNOUNCEMENT BAR  (Reference Image 2 — InteriorCRAFT style)
   Thin grey strip: tagline left, email · phone right
   ═══════════════════════════════════════════════════════════════════════ */
.tx-topbar {
    background: #ffffff;
    border-bottom: 1px solid var(--tx-border-light);
    padding: 9px 0;
    font-size: 12.5px;
    color: var(--tx-text-muted);
}
.tx-topbar-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--tx-primary);
    color: #0D0F12;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 13px;
    border-radius: var(--tx-radius-pill);
    letter-spacing: 0.3px;
}
.tx-topbar-tagline {
    color: var(--tx-text-muted);
    font-size: 12.5px;
    margin-left: 6px;
}
.tx-topbar-link {
    color: var(--tx-text-muted);
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 500;
    transition: var(--tx-transition);
}
.tx-topbar-link:hover { color: var(--tx-primary-dark); }
.tx-topbar-divider {
    width: 1px;
    height: 14px;
    background: var(--tx-border);
    display: inline-block;
}

/* ═══════════════════════════════════════════════════════════════════════
   MAIN HEADER  (sticky, white bg, logo left · nav centre · CTA right)
   ═══════════════════════════════════════════════════════════════════════ */
.tx-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--tx-border-light);
    transition: box-shadow 0.3s;
}
.tx-header-scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.tx-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 20px;
}

/* Logo */
.tx-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    font-size: 24px;
    font-weight: 800;
    color: var(--tx-secondary);
    font-family: var(--tx-font-heading);
    flex-shrink: 0;
}
.tx-logo span { color: var(--tx-primary); }
.tx-logo-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--tx-primary);
    color: var(--tx-secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

/* Nav */
.tx-nav {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
    margin: 0; padding: 0;
}
.tx-nav-link {
    text-decoration: none;
    color: var(--tx-text-dark);
    font-size: 14.5px;
    font-weight: 600;
    transition: var(--tx-transition);
    padding: 8px 0;
    position: relative;
}
/* Active underline (InteriorCRAFT style) */
.tx-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--tx-primary-dark);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4,0,0.2,1);
}
.tx-nav-link:hover::after,
.tx-nav-link.active::after { width: 100%; }
.tx-nav-link:hover,
.tx-nav-link.active { color: var(--tx-primary-dark); }

/* Logo image (PNG brand assets) */
.tx-logo-img-wrap {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}
.tx-header-logo-img {
    height: 58px;
    width: auto;
    max-height: 58px;
    display: block;
    object-fit: contain;
    transition: height 0.3s ease;
}
.tx-footer-logo-img {
    height: 54px;
    width: auto;
    max-height: 54px;
    display: block;
    object-fit: contain;
    filter: none;
}

/* Header phone block */
.tx-header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
}
.tx-header-phone-icon {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--tx-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tx-text-dark);
    font-size: 14px;
    border: 1px solid var(--tx-border-light);
}
.tx-header-phone-label {
    font-size: 10.5px;
    color: var(--tx-text-muted);
    line-height: 1;
    margin-bottom: 2px;
}
.tx-header-phone-num {
    font-size: 13.5px;
    font-weight: 800;
    color: var(--tx-text-dark);
    line-height: 1;
}

/* Hamburger */
.tx-hamburger {
    width: 44px; height: 44px;
    border: 1.5px solid var(--tx-border);
    background: #ffffff;
    border-radius: var(--tx-radius-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 0;
}
.tx-hamburger span {
    display: block;
    width: 20px; height: 2px;
    background: var(--tx-text-dark);
    border-radius: 2px;
    transition: var(--tx-transition);
}

/* ═══════════════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════════════ */
.tx-hero { position: relative; background: var(--tx-bg-light); }
.tx-hero-title {
    font-size: clamp(38px, 5.5vw, 62px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 18px;
    letter-spacing: -1.5px;
}
.tx-hero-subtitle {
    font-size: 15.5px;
    color: var(--tx-text-muted);
    margin-bottom: 30px;
    max-width: 480px;
    line-height: 1.65;
}
.tx-hero-badge-icon {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--tx-badge-bg);
    color: var(--tx-primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════════
   ABOUT US — Mission / Vision / Values cards  (Reference Image 3)
   ═══════════════════════════════════════════════════════════════════════ */
.tx-mvv-card {
    background: #ffffff;
    border: 1.5px solid var(--tx-border-light);
    border-radius: var(--tx-radius-md);
    padding: 28px 22px;
    box-shadow: var(--tx-shadow-sm);
    transition: var(--tx-transition);
}
.tx-mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--tx-shadow-md);
    border-color: rgba(255,184,0,0.4);
}
.tx-mvv-icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--tx-badge-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border: 1px solid rgba(255,184,0,0.25);
}
.tx-mvv-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--tx-text-dark);
    margin-bottom: 10px;
    font-family: var(--tx-font-heading);
}
.tx-mvv-desc {
    font-size: 12.5px;
    color: var(--tx-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════
   STATS DARK BAR — Homepage (Reference Image 1st screenshot)
   Black bg, border-radius, inside tx-container for left/right gap
   ═══════════════════════════════════════════════════════════════════════ */
.tx-dark-stats-bar {
    background: var(--tx-secondary);
    border-radius: var(--tx-radius-md);
    padding: 28px 0;
    margin: 32px 0;
}

/* ═══════════════════════════════════════════════════════════════════════
   STATS LIGHT BAR — About Us page (Reference Image 4)
   Light grey bg, outlined yellow circles, dark text
   ═══════════════════════════════════════════════════════════════════════ */
.tx-light-stats-bar {
    background: #F4F5F7;
    border-radius: var(--tx-radius-md);
    border: 1.5px solid var(--tx-border);
    padding: 28px 0;
    margin: 32px 0;
}
.tx-light-stats-bar .tx-stat-icon {
    background: #FFF8E6;
    color: var(--tx-secondary);
    border: 2px solid rgba(255,184,0,0.45);
}
.tx-light-stats-bar .tx-stat-num {
    color: var(--tx-text-dark);
}
.tx-light-stats-bar .tx-stat-label {
    color: var(--tx-text-muted);
}
.tx-light-stats-bar .tx-stat-border {
    border-right: 1px solid var(--tx-border);
}
.tx-stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 8px 28px;
}
.tx-stat-border {
    border-right: 1px solid rgba(255,255,255,0.12);
}
.tx-stat-icon {
    width: 54px; height: 54px;
    border-radius: 50%;
    background: var(--tx-primary);
    color: var(--tx-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.tx-stat-num {
    font-family: var(--tx-font-heading);
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
}
.tx-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
    margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════════════════════
   SERVICES SLIDER  (Reference Image 4 — top portion)
   Horizontally scrollable track with tall image + info footer cards
   ═══════════════════════════════════════════════════════════════════════ */
.tx-srv-slider-wrap {
    overflow: hidden;
    position: relative;
}
.tx-srv-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
}
.tx-srv-track::-webkit-scrollbar { display: none; }

.tx-srv-card-wrap {
    flex: 0 0 calc(20% - 13px);
    min-width: 200px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}
@media (max-width: 991.98px) {
    .tx-srv-card-wrap { flex: 0 0 calc(50% - 8px); min-width: 240px; }
}
@media (max-width: 575.98px) {
    .tx-srv-card-wrap { flex: 0 0 calc(100% - 0px); min-width: 100%; }
}

.tx-srv-card {
    border: 1.5px solid var(--tx-border-light);
    border-radius: var(--tx-radius-md);
    overflow: hidden;
    background: #ffffff;
    box-shadow: var(--tx-shadow-sm);
    transition: var(--tx-transition);
    height: 100%;
}
.tx-srv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--tx-shadow-md);
    border-color: rgba(255,184,0,0.4);
}
.tx-srv-img {
    width: 100%;
    height: 160px;
    overflow: hidden;
    background: var(--tx-bg-light);
}
.tx-srv-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}
.tx-srv-card:hover .tx-srv-img img { transform: scale(1.06); }
.tx-srv-info {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 14px 12px;
}
.tx-srv-icon {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--tx-primary);
    color: var(--tx-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 2px;
}
.tx-srv-title {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--tx-text-dark);
    margin: 0 0 4px;
    font-family: var(--tx-font-heading);
}
.tx-srv-desc {
    font-size: 11.5px;
    color: var(--tx-text-muted);
    line-height: 1.45;
    margin: 0;
}
.tx-srv-arrow-btn {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--tx-bg-light);
    border: 1px solid var(--tx-border);
    color: var(--tx-text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    text-decoration: none;
    flex-shrink: 0;
    align-self: flex-end;
    transition: var(--tx-transition);
}
.tx-srv-arrow-btn:hover {
    background: var(--tx-secondary);
    color: #ffffff;
    border-color: var(--tx-secondary);
}

/* ═══════════════════════════════════════════════════════════════════════
   FLEET CARDS  (Reference Image 4 — bottom portion)
   White cards on grey bg: centered car image (contain) + name + meta
   ═══════════════════════════════════════════════════════════════════════ */
.tx-fleet-card {
    background: #ffffff;
    border-radius: var(--tx-radius-md);
    padding: 20px 20px 18px;
    text-align: center;
    box-shadow: var(--tx-shadow-sm);
    border: 1.5px solid var(--tx-border-light);
    transition: var(--tx-transition);
}
.tx-fleet-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--tx-shadow-md);
    border-color: rgba(255,184,0,0.35);
}
.tx-fleet-img-wrap {
    width: 100%;
    height: 150px;
    background: var(--tx-bg-light);
    border-radius: var(--tx-radius-sm);
    overflow: hidden;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tx-fleet-img-wrap img {
    max-width: 100%; max-height: 100%;
    object-fit: contain;
    display: block;
}
.tx-fleet-name {
    font-family: var(--tx-font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--tx-text-dark);
    margin-bottom: 8px;
}
.tx-fleet-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 12.5px;
    color: var(--tx-text-muted);
    font-weight: 500;
}
.tx-fleet-meta i { color: var(--tx-primary); }

/* Mobile slider for fleet / testimonials */
@media (max-width: 991.98px) {
    .tx-mobile-slider {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 0 !important;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }
    .tx-mobile-slider::-webkit-scrollbar { display: none; }
    .tx-mobile-slider > [class*="col-"] {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        scroll-snap-align: start !important;
        scroll-snap-stop: always !important;
        margin: 0 !important;
        padding-left: 6px !important;
        padding-right: 6px !important;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   TESTIMONIALS CARDS  (Reference Image 5 — top portion)
   White bordered card: large yellow quote, italic text, stars, avatar row
   ═══════════════════════════════════════════════════════════════════════ */
.tx-tst-card {
    background: #ffffff;
    border: 1.5px solid var(--tx-border-light);
    border-radius: var(--tx-radius-md);
    padding: 28px 26px 24px;
    height: 100%;
    box-shadow: var(--tx-shadow-sm);
    transition: var(--tx-transition);
    display: flex;
    flex-direction: column;
}
.tx-tst-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--tx-shadow-md);
    border-color: rgba(255,184,0,0.4);
}
.tx-tst-quote {
    font-size: 28px;
    color: var(--tx-primary);
    margin-bottom: 12px;
    line-height: 1;
}
.tx-tst-text {
    font-size: 13.5px;
    color: var(--tx-text-muted);
    line-height: 1.65;
    font-style: italic;
    flex-grow: 1;
    margin-bottom: 14px;
}
.tx-tst-stars {
    color: var(--tx-primary);
    font-size: 14px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}
.tx-tst-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.tx-tst-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--tx-border-light);
}
.tx-tst-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--tx-text-dark);
    line-height: 1.2;
}
.tx-tst-role {
    font-size: 11.5px;
    color: var(--tx-text-muted);
}

/* ═══════════════════════════════════════════════════════════════════════
   FOOTER CTA BOX (Reference Image 5 — bottom dark banner)
   ═══════════════════════════════════════════════════════════════════════ */
.tx-cta-box-edge {
    position: relative;
    overflow: hidden;
    background: var(--tx-secondary);
    border-radius: var(--tx-radius-lg);
    color: #ffffff;
}

/* ═══════════════════════════════════════════════════════════════════════
   GLOBAL FOOTER
   ═══════════════════════════════════════════════════════════════════════ */
.tx-footer {
    background: var(--tx-secondary);
    color: rgba(255,255,255,0.7);
    padding: 72px 0 30px;
    font-size: 14px;
}
.tx-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 36px;
    margin-bottom: 50px;
}
.tx-footer-heading {
    font-size: 14.5px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
    font-family: var(--tx-font-heading);
}
.tx-footer-list { list-style: none; padding: 0; margin: 0; }
.tx-footer-list li { margin-bottom: 9px; }
.tx-footer-list a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 13px;
    transition: var(--tx-transition);
}
.tx-footer-list a:hover { color: var(--tx-primary); }
.tx-social-icon {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: var(--tx-transition);
}
.tx-social-icon:hover {
    background: var(--tx-primary);
    border-color: var(--tx-primary);
    color: var(--tx-secondary);
    transform: translateY(-2px);
}

/* ─── General card hover ─────────────────────────────────────────────── */
.tx-card {
    background: #ffffff;
    border-radius: var(--tx-radius-md);
    border: 1.5px solid var(--tx-border-light);
    box-shadow: var(--tx-shadow-sm);
    transition: var(--tx-transition);
}
.tx-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--tx-shadow-md);
    border-color: rgba(255,184,0,0.4);
}

/* ─── Scroll reveal animation ────────────────────────────────────────── */
.tx-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 1.1s cubic-bezier(0.16,1,0.3,1), transform 1.1s cubic-bezier(0.16,1,0.3,1);
    will-change: opacity, transform;
}
.tx-reveal.tx-revealed { opacity: 1 !important; transform: translateY(0) !important; }

/* ─── Hero Overlay Global (Laptop view: Left soft white fade, right 100% clear) ─────── */
.tx-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #FFFFFF 42%, rgba(255,255,255,0.80) 58%, rgba(255,255,255,0) 75%);
    z-index: 1;
    pointer-events: none;
}

/* ─── Category Horizontal Scroll Track ───────────────────────────────── */
.tx-category-scroll-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
    gap: 8px;
}
.tx-category-scroll-track::-webkit-scrollbar {
    display: none;
}
.tx-category-scroll-track button {
    flex: 0 0 auto !important;
    white-space: nowrap !important;
}

/* ─── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 1199.98px) {
    .tx-footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 991.98px) {
    .tx-hero-overlay {
        background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%);
    }
    .tx-footer-grid { grid-template-columns: 1fr 1fr; }
    .tx-cta-box-edge { padding: 36px 28px !important; }
    .tx-stat-item { padding: 8px 16px; }
    .tx-stat-border { border-right: none; }
}
@media (max-width: 767.98px) {
    section, .tx-section, [id], .py-5, .py-4 {
        padding-top: 32px !important;
        padding-bottom: 32px !important;
    }
    .tx-heading { font-size: 24px !important; }
    .tx-hero-title { font-size: 34px; letter-spacing: -0.5px; }
    .tx-stat-item { padding: 8px 10px; gap: 10px; }
    .tx-stat-icon { width: 42px; height: 42px; font-size: 16px; }
    .tx-stat-num  { font-size: 22px; }
    .tx-stat-label{ font-size: 10.5px; }
    .tx-footer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr !important;
        gap: 28px 16px;
    }
    .tx-footer-grid > div:first-child {
        grid-column: span 2;
    }
}
@media (max-width: 575.98px) {
    .tx-fleet-card {
        padding: 8px;
    }
    .tx-fleet-img-wrap {
        height: 120px;
    }
    .tx-fleet-name {
        font-size: 14px;
        margin-top: 6px;
    }
    .tx-fleet-meta {
        font-size: 11px;
        gap: 8px;
    }
}

/* ─── Portfolio Service Cards (Pixel-Perfect Match Ref Image 2) ─────── */
.tx-portfolio-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 10px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.tx-portfolio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}
.tx-portfolio-img-wrap {
    width: 100%;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
}
.tx-portfolio-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.tx-portfolio-card:hover .tx-portfolio-img-wrap img {
    transform: scale(1.05);
}
.tx-portfolio-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 8px 6px 8px;
    margin-top: auto;
}
.tx-portfolio-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--tx-primary, #FFB800);
    color: #0D0F12;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}
.tx-portfolio-text {
    flex-grow: 1;
    min-width: 0;
}
.tx-portfolio-title {
    font-family: var(--tx-font-heading, 'Outfit', sans-serif);
    font-size: 16px;
    font-weight: 700;
    color: #0D0F12;
    margin: 0 0 2px 0;
    line-height: 1.25;
}
.tx-portfolio-desc {
    font-size: 12.5px;
    color: #64748B;
    margin: 0;
    line-height: 1.35;
}
.tx-portfolio-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #0D0F12;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.tx-portfolio-arrow:hover {
    background: var(--tx-primary, #FFB800);
    color: #0D0F12;
    transform: translateX(2px);
}

/* ─── Taxi Fare Calculator Section (Home Page) ─────────────────────── */
.tx-fare-calc-section {
    background: #ffffff;
    padding: 36px 0;
    position: relative;
    z-index: 5;
}
.tx-fare-calc-card {
    background: #FFFFFF;
    border-radius: 24px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    padding: 32px 36px;
}
@media (max-width: 767.98px) {
    .tx-fare-calc-card {
        padding: 20px 16px;
        border-radius: 18px;
    }
}
.tx-fare-input-group {
    position: relative;
}
.tx-fare-input-icon {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    color: #945B00;
    font-size: 16px;
    z-index: 2;
}
.tx-fare-input {
    padding-left: 44px !important;
    height: 50px;
    border-radius: 14px;
    border: 1.5px solid #E2E8F0;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.25s ease;
}
.tx-fare-input:focus {
    border-color: #FFB800;
    box-shadow: 0 0 0 4px rgba(255, 184, 0, 0.15);
}
.tx-vehicle-select-card {
    border: 2px solid #E2E8F0;
    border-radius: 16px;
    padding: 14px 16px;
    cursor: pointer;
    transition: all 0.25s ease;
    background: #FAFAFA;
}
.tx-vehicle-select-card:hover {
    border-color: #FFB800;
    background: #FFFDF7;
}
.tx-vehicle-select-card.active {
    border-color: #FFB800;
    background: #FFF8E6;
    box-shadow: 0 4px 16px rgba(255, 184, 0, 0.18);
}
.tx-fare-summary-box {
    background: #0D0F12;
    color: #ffffff;
    border-radius: 20px;
    padding: 24px 28px;
}



/* Universal Full-Page Reveal Animations (Interior Style) */
.ic-reveal, .cn-reveal, .ev-reveal, .tx-reveal, .agency-reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.ic-reveal-left, .cn-reveal-left, .ev-reveal-left, .tx-reveal-left, .agency-reveal-left { opacity: 0; transform: translateX(-35px); transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.ic-reveal-right, .cn-reveal-right, .ev-reveal-right, .tx-reveal-right, .agency-reveal-right { opacity: 0; transform: translateX(35px); transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.ic-reveal-zoom, .cn-reveal-zoom, .ev-reveal-zoom, .tx-reveal-zoom, .agency-reveal-zoom { opacity: 0; transform: scale(0.92); transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.ic-revealed, .cn-revealed, .ev-revealed, .tx-revealed, .agency-revealed { opacity: 1 !important; transform: translate(0, 0) scale(1) !important; }

/* Header & Navbar Height & Logo Sizing for Texigo */
.tx-header {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--tx-border-light);
    padding: 6px 0 !important;
    transition: all 0.25s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.tx-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px !important;
}
.tx-header-logo-img {
    height: 30px !important;
    max-height: 30px !important;
    width: auto !important;
    object-fit: contain;
}

@media (min-width: 768px) {
    .tx-header {
        padding: 8px 0 !important;
    }
    .tx-header-inner {
        min-height: 48px !important;
    }
    .tx-header-logo-img {
        height: 36px !important;
        max-height: 36px !important;
    }
}

/* Dynamic FAQ Accordion Icon Toggle */
.tx-custom-faq-button::after { display: none !important; }
.tx-custom-faq-button.collapsed .faq-icon-plus,
.tx-custom-faq-button[aria-expanded="false"] .faq-icon-plus { display: inline-block !important; }
.tx-custom-faq-button.collapsed .faq-icon-minus,
.tx-custom-faq-button[aria-expanded="false"] .faq-icon-minus { display: none !important; }
.tx-custom-faq-button:not(.collapsed) .faq-icon-plus,
.tx-custom-faq-button[aria-expanded="true"] .faq-icon-plus { display: none !important; }
.tx-custom-faq-button:not(.collapsed) .faq-icon-minus,
.tx-custom-faq-button[aria-expanded="true"] .faq-icon-minus { display: inline-block !important; }
.tx-custom-faq-button:not(.collapsed) {
    color: var(--tx-secondary) !important;
    background: var(--tx-bg-light) !important;
}
.tx-custom-faq-button:not(.collapsed) .tx-faq-icon-toggle {
    background: var(--tx-primary) !important;
    color: var(--tx-secondary) !important;
}

@media (max-width: 991.98px) {
    /* Testimonial & Mobile Sliders: 1 Container ONLY Per Row (100% Width, Zero Peaking) */
    #tstSliderTrack,
    .testimonial-scroll-track,
    .tx-mobile-slider {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        scrollbar-width: none !important;
        gap: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        -webkit-overflow-scrolling: touch;
    }
    #tstSliderTrack::-webkit-scrollbar,
    .testimonial-scroll-track::-webkit-scrollbar,
    .tx-mobile-slider::-webkit-scrollbar {
        display: none !important;
    }
    .tx-tst-card-wrap,
    #tstSliderTrack > *,
    .tx-mobile-slider > *,
    .tx-tst-card {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        scroll-snap-align: start !important;
        scroll-snap-stop: always !important;
        margin: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        box-sizing: border-box !important;
    }

    .tx-hero-actions, .tx-hero-btns {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
        gap: 8px !important;
    }
    .tx-hero-actions > a, .tx-hero-actions > button,
    .tx-hero-btns > a, .tx-hero-btns > button {
        flex: 1 1 50% !important;
        width: 50% !important;
        min-width: 0 !important;
        padding: 10px 4px !important;
        font-size: 11.5px !important;
        text-align: center !important;
        justify-content: center !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
}
