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

/* ═══════════════════════════════════════════════════════════════
   TRANSGLOBAL LOGISTICS - CONSOLIDATED STYLESHEET
   Merged from: index.html, about.html, services.html,
                fleet.html, routes.html, contact.html
═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════
   RESET & VARIABLES
═══════════════════════════════════════ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.3s ease;
}

:root {
    --bg-primary: #0A0C10;
    --bg-secondary: #0F1115;
    --bg-tertiary: #1A1D24;
    --bg-card: #12151A;
    --accent-orange: #F26522;
    --accent-yellow: #FBBF24;
    --accent-glow: rgba(242, 101, 34, 0.4);
    --accent-orange-dim: rgba(242, 101, 34, 0.1);
    --text-primary: #FFFFFF;
    --text-secondary: #9CA3AF;
    --text-muted: #6B7280;
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-color: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(242, 101, 34, 0.3);
    --overlay-strong: rgba(10, 12, 16, 0.92);
    --overlay-medium: rgba(10, 12, 16, 0.85);
    --overlay-light: rgba(10, 12, 16, 0.5);
    --card-overlay: rgba(10, 12, 16, 0.95);
    --gradient-orange: linear-gradient(135deg, #F26522 0%, #FBBF24 100%);
    --shadow-glow: 0 0 60px rgba(242, 101, 34, 0.15);
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Light Theme */
[data-theme="light"] {
    --bg-primary: #F8FAFC;
    --bg-secondary: #FFFFFF;
    --bg-tertiary: #E2E8F0;
    --bg-card: #FFFFFF;
    --accent-orange: #EA580C;
    --accent-yellow: #D97706;
    --accent-glow: rgba(234, 88, 12, 0.3);
    --accent-orange-dim: rgba(242, 101, 34, 0.08);
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #64748B;
    --border-subtle: rgba(0, 0, 0, 0.08);
    --border-color: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(242, 101, 34, 0.4);
    --overlay-strong: rgba(255, 255, 255, 0.88);
    --overlay-medium: rgba(255, 255, 255, 0.75);
    --overlay-light: rgba(255, 255, 255, 0.4);
    --card-overlay: rgba(255, 255, 255, 0.92);
    --shadow-glow: 0 0 60px rgba(242, 101, 34, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
}

[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .nav-links {
    flex-direction: row-reverse;
}

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(10, 12, 16, 0.95), transparent);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(10, 12, 16, 0.98);
    padding: 0.75rem 4%;
    border-bottom: 1px solid var(--border-subtle);
}

[data-theme="light"] .navbar {
    background: linear-gradient(to bottom, rgba(248, 250, 252, 0.95), transparent);
}

[data-theme="light"] .navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-icon::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 3px;
    background: var(--bg-primary);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo-icon::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 24px;
    background: var(--bg-primary);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

[data-theme="light"] .logo-icon::before,
[data-theme="light"] .logo-icon::after {
    background: var(--bg-secondary);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 2px;
    -webkit-text-fill-color: unset;
    background: none;
}

.logo-text span {
    color: var(--accent-orange);
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--accent-orange);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Theme Toggle */
.theme-toggle {
    width: 44px;
    height: 44px;
    background: rgba(31, 41, 55, 0.6);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    color: var(--text-secondary);
}

[data-theme="light"] .theme-toggle {
    background: rgba(226, 232, 240, 0.8);
}

.theme-toggle:hover {
    border-color: var(--accent-orange);
    background: rgba(242, 101, 34, 0.1);
    color: var(--accent-orange);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    transition: all 0.4s ease;
    position: absolute;
}

.theme-toggle .sun-icon {
    stroke: var(--accent-yellow);
    fill: none;
    stroke-width: 2;
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

.theme-toggle .moon-icon {
    stroke: var(--text-secondary);
    fill: none;
    stroke-width: 2;
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

[data-theme="light"] .theme-toggle .sun-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

[data-theme="light"] .theme-toggle .moon-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

/* Language Dropdown */
.lang-dropdown {
    position: relative;
}

.lang-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.4rem 0.625rem;
    background: rgba(31, 41, 55, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-body);
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-dropdown-toggle:hover {
    border-color: var(--accent-orange);
    color: var(--text-primary);
}

[data-theme="light"] .lang-dropdown-toggle {
    background: rgba(226, 232, 240, 0.8);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    min-width: 160px;
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: all 0.2s ease;
    z-index: 1001;
}

.lang-dropdown.open .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8125rem;
    transition: all 0.15s ease;
}

.lang-dropdown-item:hover {
    background: rgba(242, 101, 34, 0.08);
    color: var(--text-primary);
}

.lang-dropdown-item.active {
    color: var(--accent-orange);
    background: rgba(242, 101, 34, 0.06);
}

.lang-dropdown-item .lang-code {
    font-weight: 700;
    font-size: 0.6875rem;
    letter-spacing: 1px;
    min-width: 1.5rem;
}

.lang-dropdown-item .lang-name {
    font-weight: 400;
}

/* Mobile Language Switcher (inline buttons) */
.mobile-lang-switcher {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.lang-btn {
    padding: 0.4rem 0.625rem;
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-body);
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
}

.lang-btn:hover {
    color: var(--text-secondary);
    border-color: var(--accent-orange);
}

.lang-btn.active {
    background: var(--accent-orange);
    color: #FFFFFF;
    border-color: var(--accent-orange);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1.5rem;
    z-index: 999;
}

[data-theme="light"] .mobile-nav {
    background: var(--bg-secondary);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--accent-orange);
}

/* ═══════════════════════════════════════
   HERO SECTION WITH SLIDER
═══════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 4% 4rem;
}

/* Background Slider */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 12, 16, 0.92) 0%,
        rgba(10, 12, 16, 0.85) 40%,
        rgba(10, 12, 16, 0.88) 100%
    );
}

[data-theme="light"] .hero-slide::after {
    background: linear-gradient(
        135deg,
        rgba(248, 250, 252, 0.88) 0%,
        rgba(248, 250, 252, 0.75) 40%,
        rgba(248, 250, 252, 0.85) 100%
    );
}

/* Grid Overlay */
.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

[data-theme="light"] .hero-grid {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,0,0,0.04)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

/* Light Trail Animation */
.light-trails {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0.5;
    z-index: 3;
    pointer-events: none;
}

.trail {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), var(--accent-yellow), transparent);
    animation: trailMove 8s linear infinite;
    filter: blur(1px);
}

[data-theme="light"] .trail {
    background: linear-gradient(90deg, transparent, var(--accent-orange), var(--accent-yellow), transparent);
    opacity: 0.7;
}

.trail:nth-child(1) { top: 20%; width: 30%; animation-delay: 0s; }
.trail:nth-child(2) { top: 35%; width: 45%; animation-delay: 2s; }
.trail:nth-child(3) { top: 50%; width: 25%; animation-delay: 4s; }
.trail:nth-child(4) { top: 65%; width: 55%; animation-delay: 1s; }
.trail:nth-child(5) { top: 80%; width: 35%; animation-delay: 3s; }

@keyframes trailMove {
    0% { transform: translateX(-100%); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateX(calc(100vw + 100%)); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(242, 101, 34, 0.1);
    border: 1px solid rgba(242, 101, 34, 0.3);
    margin-bottom: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-orange);
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent-orange);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-title .accent {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.slider-dot {
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--accent-orange);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* ═══════════════════════════════════════
   PAGE HEADER (Sub-pages)
═══════════════════════════════════════ */
.page-header {
    padding: 10rem 4% 5rem;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

[data-theme="light"] .page-header::before {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,0,0,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.page-header-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--accent-orange);
}

.breadcrumb > span {
    color: var(--accent-orange);
}

.breadcrumb svg {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.page-title .accent {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.page-header h1 span {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
}

.page-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
}

/* ═══════════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════════ */
.section {
    padding: 5rem 4%;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--accent-orange-dim);
    border: 1px solid rgba(242, 101, 34, 0.2);
    color: var(--accent-orange);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-title span {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
    padding: 1rem 2.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.4s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-orange), #E55A1B);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px var(--accent-glow);
}

[data-theme="light"] .btn-primary {
    color: #FFFFFF;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
    border-color: var(--accent-orange);
    background: rgba(242, 101, 34, 0.1);
    color: var(--accent-orange);
}

/* ═══════════════════════════════════════
   STAT ITEMS (used on hero & page headers)
═══════════════════════════════════════ */
.stat-item {
    text-align: center;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-orange);
    line-height: 1;
}

.stat-value span {
    font-size: 1.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

.stats-bar {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════
   SERVICES SECTION (index.html cards)
═══════════════════════════════════════ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--accent-orange), var(--accent-yellow));
    transition: height 0.4s ease;
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(242, 101, 34, 0.3);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(242, 101, 34, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--accent-orange);
    fill: none;
    stroke-width: 1.5;
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-desc {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.service-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-orange);
    flex-shrink: 0;
}

/* ═══════════════════════════════════════
   SERVICES DETAIL (services.html)
═══════════════════════════════════════ */
.services-detail-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-detail-card:nth-child(even) {
    direction: rtl;
}

.service-detail-card:nth-child(even) > * {
    direction: ltr;
}

.service-image {
    aspect-ratio: 16/10;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(242, 101, 34, 0.2), transparent);
}

.service-content {
    padding: 2rem 0;
}

.service-detail-card .service-icon {
    width: 72px;
    height: 72px;
}

.service-detail-card .service-icon svg {
    width: 36px;
    height: 36px;
}

.service-name {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.service-detail-card .service-desc {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-detail-card .service-features {
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.service-detail-card .service-features li {
    color: var(--text-secondary);
    gap: 1rem;
}

.service-detail-card .service-features li::before {
    width: 8px;
    height: 8px;
}

/* Process Section (services.html) */
.process-section {
    background: var(--bg-secondary);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 2rem;
    right: -1rem;
    width: calc(100% - 4rem);
    height: 2px;
    background: linear-gradient(90deg, var(--accent-orange), transparent);
}

.process-step:last-child::after {
    display: none;
}

.process-number {
    width: 64px;
    height: 64px;
    background: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: #FFFFFF;
}

.process-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.process-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════
   FLEET SECTION - INDEX BENTO GRID
═══════════════════════════════════════ */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(3, minmax(200px, auto));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.fleet-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
}

.fleet-card:hover {
    border-color: rgba(242, 101, 34, 0.3);
    transform: translateY(-4px);
}

.fleet-card.featured {
    grid-column: span 8;
    grid-row: span 2;
}

.fleet-card.featured .fleet-visual {
    aspect-ratio: auto;
    height: 100%;
}

.fleet-card.featured .fleet-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fleet-card.tall {
    grid-column: span 4;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
}

.fleet-card.wide {
    grid-column: span 6;
}

.fleet-card.standard {
    grid-column: span 4;
}

.fleet-visual {
    aspect-ratio: 21/9;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.fleet-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 12, 16, 0.95) 0%,
        rgba(10, 12, 16, 0.5) 40%,
        rgba(10, 12, 16, 0.3) 100%
    );
    z-index: 1;
}

[data-theme="light"] .fleet-visual::before {
    background: linear-gradient(
        to top,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.6) 40%,
        rgba(255, 255, 255, 0.3) 100%
    );
}

.fleet-card.tall .fleet-visual {
    aspect-ratio: 4/5;
}

.fleet-card.standard .fleet-visual {
    aspect-ratio: 16/9;
}

.fleet-overlay {
    position: absolute;
    inset: 0;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
}

.fleet-specs {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.spec-tag {
    padding: 0.25rem 0.75rem;
    background: rgba(242, 101, 34, 0.2);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-orange);
}

[data-theme="light"] .spec-tag {
    background: rgba(234, 88, 12, 0.15);
}

.fleet-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.fleet-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.fleet-detail {
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.fleet-detail .fleet-name {
    margin-bottom: 1.5rem;
}

.fleet-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    flex: 1;
}

.detail-item {
    padding: 1rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.detail-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-yellow);
}

.detail-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

/* ═══════════════════════════════════════
   FLEET PAGE (fleet.html) - Card Grid
═══════════════════════════════════════ */
.fleet-page .fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    grid-template-rows: auto;
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 0.75rem 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.filter-tab:hover {
    border-color: var(--accent-orange);
    color: var(--text-primary);
}

.filter-tab.active {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: #FFFFFF;
}

.fleet-image {
    aspect-ratio: 16/10;
    background-size: cover;
    background-position: center;
    position: relative;
}

.fleet-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-secondary) 0%, transparent 50%);
}

[data-theme="light"] .fleet-image::after {
    background: linear-gradient(to top, var(--bg-secondary) 0%, transparent 60%);
}

.fleet-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    background: var(--accent-orange);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #FFFFFF;
    z-index: 1;
}

.fleet-content {
    padding: 1.5rem;
}

.fleet-page .fleet-desc {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.fleet-page .fleet-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.spec-value {
    font-weight: 600;
    color: var(--accent-yellow);
}

.spec-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Fleet Features Section */
.features-section {
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    padding: 2rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--accent-orange);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(242, 101, 34, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--accent-orange);
    fill: none;
    stroke-width: 1.5;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-desc {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* ═══════════════════════════════════════
   ROUTES SECTION (index.html)
═══════════════════════════════════════ */
.routes-section {
    background: var(--bg-secondary);
}

.routes-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Route Image Display */
.route-display {
    position: relative;
    aspect-ratio: 16/10;
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
}

.route-image {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
}

.route-image.active {
    opacity: 1;
    transform: scale(1);
}

.route-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 12, 16, 0.7) 0%,
        rgba(10, 12, 16, 0.4) 50%,
        rgba(10, 12, 16, 0.6) 100%
    );
}

[data-theme="light"] .route-image::after {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.75) 0%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0.7) 100%
    );
}

.route-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 2;
    background: linear-gradient(to top, rgba(10, 12, 16, 0.95), transparent);
}

[data-theme="light"] .route-info-overlay {
    background: linear-gradient(to top, rgba(255, 255, 255, 0.98), transparent);
}

.route-info-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.2s;
}

.route-image.active ~ .route-info-overlay .route-info-title,
.route-display:has(.route-image.active) .route-info-title {
    opacity: 1;
    transform: translateY(0);
}

.route-info-desc {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.3s;
}

.route-display:has(.route-image.active) .route-info-desc {
    opacity: 1;
    transform: translateY(0);
}

/* Animated Route Lines */
.route-lines {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.route-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-yellow));
    opacity: 0;
    filter: blur(1px);
    box-shadow: 0 0 10px var(--accent-glow);
}

.route-image.active ~ .route-lines .route-line {
    animation: routeFlow 2s ease-out forwards;
}

@keyframes routeFlow {
    0% { width: 0; opacity: 0; }
    20% { opacity: 1; }
    100% { width: 60%; opacity: 0.7; }
}

.route-line:nth-child(1) { top: 40%; left: 20%; animation-delay: 0.2s; }
.route-line:nth-child(2) { top: 50%; left: 30%; animation-delay: 0.4s; }
.route-line:nth-child(3) { top: 60%; left: 15%; animation-delay: 0.6s; }

/* Routes List (index.html) */
.routes-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.route-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.route-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-orange);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.route-item:hover,
.route-item.active {
    border-color: var(--accent-orange);
    transform: translateX(8px);
}

.route-item.active {
    background: rgba(242, 101, 34, 0.05);
}

.route-item:hover::before,
.route-item.active::before {
    transform: scaleY(1);
}

[dir="rtl"] .route-item:hover,
[dir="rtl"] .route-item.active {
    transform: translateX(-8px);
}

.route-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--accent-orange);
}

.route-item.active .route-icon {
    transform: scale(1.1);
}

.route-icon svg {
    width: 24px;
    height: 24px;
}

.route-info {
    flex: 1;
}

.route-name {
    font-family: var(--font-display);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.route-details {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.route-path {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.route-time {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-yellow);
}

/* ═══════════════════════════════════════
   ROUTES PAGE (routes.html)
═══════════════════════════════════════ */
.route-map-section {
    padding: 100px 5%;
    background: var(--bg-primary);
}

.route-map-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Interactive Map */
.interactive-map {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.route-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.route-item-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.routes-page .route-icon {
    background: var(--accent-orange-dim);
}

.route-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.route-stat {
    text-align: center;
}

.route-stat-value {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-yellow);
}

.route-stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.map-visual {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    position: relative;
    min-height: 500px;
    overflow: hidden;
}

.map-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.map-image.active {
    opacity: 1;
}

.map-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 12, 16, 0.7) 0%, rgba(10, 12, 16, 0.3) 100%);
}

[data-theme="light"] .map-image::after {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.7) 0%, rgba(248, 250, 252, 0.3) 100%);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.map-route-info {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(10, 12, 16, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

[data-theme="light"] .map-route-info {
    background: rgba(255, 255, 255, 0.95);
}

.map-route-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.map-route-title span {
    color: var(--accent-orange);
}

.map-route-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.map-route-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.map-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.map-feature svg {
    width: 16px;
    height: 16px;
    color: var(--accent-orange);
}

/* Corridors Grid */
.corridors-section {
    padding: 100px 5%;
    background: var(--bg-secondary);
}

.corridors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.corridor-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.corridor-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.corridor-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.corridor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.corridor-card:hover .corridor-image img {
    transform: scale(1.05);
}

.corridor-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--bg-card) 0%, transparent 100%);
}

.corridor-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 0.8rem;
    background: var(--accent-orange);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 1;
}

.corridor-content {
    padding: 1.5rem;
}

.corridor-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.corridor-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.corridor-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.corridor-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.corridor-detail svg {
    width: 16px;
    height: 16px;
    color: var(--accent-orange);
}

.corridor-detail span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ═══════════════════════════════════════
   ABOUT / STORY SECTION
═══════════════════════════════════════ */
.story-section {
    padding: 100px 5%;
    background: var(--bg-primary);
}

.story-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-image {
    position: relative;
    height: 500px;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--accent-orange);
    z-index: -1;
}

.story-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 140px;
    height: 140px;
    background: var(--gradient-orange);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.story-badge-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.story-badge-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

.story-content {
    padding-left: 2rem;
}

.story-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-highlight {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-orange-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
}

.highlight-icon svg {
    width: 24px;
    height: 24px;
}

.highlight-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
}

.highlight-text span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Values Section */
.values-section {
    padding: 100px 5%;
    background: var(--bg-secondary);
}

.values-container {
    max-width: 1400px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--accent-orange-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
}

.value-icon svg {
    width: 40px;
    height: 40px;
}

.value-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.value-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ═══════════════════════════════════════
   TEAM SECTION
═══════════════════════════════════════ */
.team-section {
    padding: 100px 5%;
    background: var(--bg-secondary);
}

.team-container {
    max-width: 1400px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
}

.team-image {
    height: 280px;
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--bg-card) 0%, transparent 100%);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.team-role {
    color: var(--accent-orange);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.team-bio {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ═══════════════════════════════════════
   STATS / COUNTER SECTION
═══════════════════════════════════════ */
.stats-section {
    padding: 80px 5%;
    background: var(--bg-tertiary);
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.stat-box {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stats-section .stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Stats Bar (routes.html grid variant) */
.routes-page .stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border-color);
    margin-top: 3rem;
    padding-top: 0;
    border-top: none;
}

.routes-page .stat-item {
    background: var(--bg-card);
    padding: 1.5rem 2rem;
    text-align: center;
}

/* ═══════════════════════════════════════
   TIMELINE SECTION
═══════════════════════════════════════ */
.timeline-section {
    padding: 100px 5%;
    background: var(--bg-primary);
}

.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: calc(50% - 40px);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: var(--border-hover);
}

.timeline-year {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 1.5rem;
    width: 20px;
    height: 20px;
    background: var(--gradient-orange);
    border: 4px solid var(--bg-primary);
}

/* ═══════════════════════════════════════
   CONTACT / FORM SECTION
═══════════════════════════════════════ */
.contact-section {
    padding: 100px 5%;
    background: var(--bg-primary);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
}

.contact-title span {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--border-hover);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-orange-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
}

.info-content h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.info-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.info-content a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--accent-orange);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: white;
}

.social-link svg {
    width: 22px;
    height: 22px;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
}

.form-header {
    margin-bottom: 2rem;
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group label span {
    color: var(--accent-orange);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--accent-orange);
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.form-checkbox a {
    color: var(--accent-orange);
    text-decoration: none;
}

.form-checkbox a:hover {
    text-decoration: underline;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--gradient-orange);
    border: none;
    color: white;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(242, 101, 34, 0.3);
}

.submit-btn svg {
    width: 20px;
    height: 20px;
}

/* Offices Section */
.offices-section {
    padding: 100px 5%;
    background: var(--bg-secondary);
}

.offices-container {
    max-width: 1400px;
    margin: 0 auto;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.office-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.office-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
}

.office-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.office-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.office-card:hover .office-image img {
    transform: scale(1.05);
}

.office-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 0.8rem;
    background: var(--accent-orange);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.office-content {
    padding: 1.5rem;
}

.office-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.office-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.office-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.office-detail svg {
    width: 18px;
    height: 18px;
    color: var(--accent-orange);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Map Section */
.map-section {
    height: 450px;
    position: relative;
    background: var(--bg-tertiary);
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%) invert(92%) contrast(90%);
}

[data-theme="light"] .map-section iframe {
    filter: grayscale(30%);
}

/* ═══════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════ */
.cta-section {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-title span {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.cta-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Grid (index.html CTA) */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-item {
    padding: 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(242, 101, 34, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent-orange);
    fill: none;
}

.contact-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.contact-value {
    font-weight: 600;
    color: var(--text-primary);
}

/* ═══════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════ */
.trust-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.trust-header {
    text-align: center;
    margin-bottom: 3rem;
}

.trust-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.5;
    transition: all 0.3s ease;
    filter: grayscale(1);
}

.trust-item:hover {
    opacity: 1;
    filter: grayscale(0);
}

[data-theme="light"] .trust-item {
    filter: grayscale(0);
    opacity: 0.7;
}

[data-theme="light"] .trust-item:hover {
    opacity: 1;
}

.trust-logo {
    width: 80px;
    height: 80px;
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--accent-orange);
}

.trust-name {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ═══════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════ */
.faq-section {
    padding: 100px 5%;
    background: var(--bg-primary);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--border-hover);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    gap: 1rem;
}

.faq-question h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
}

.faq-question svg {
    width: 24px;
    height: 24px;
    color: var(--accent-orange);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
    background: var(--bg-primary);
    padding: 3rem 4% 1.5rem;
    border-top: 1px solid var(--border-subtle);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-copy {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-orange);
}

/* Footer (Extended version for sub-pages) */
.footer-extended {
    padding: 60px 5% 30px;
}

.footer-extended .footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    display: block;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-title {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-extended .footer-links {
    list-style: none;
    flex-direction: column;
    gap: 0;
}

.footer-extended .footer-links li {
    margin-bottom: 0.75rem;
}

.footer-extended .footer-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ═══════════════════════════════════════
   RESPONSIVE MEDIA QUERIES
═══════════════════════════════════════ */
@media (max-width: 1024px) {
    /* Routes */
    .routes-container {
        grid-template-columns: 1fr;
    }

    .route-display {
        order: -1;
    }

    /* Fleet bento grid */
    .fleet-card.featured,
    .fleet-card.tall,
    .fleet-card.wide,
    .fleet-card.standard {
        grid-column: span 12;
    }

    .fleet-card.wide,
    .fleet-card.standard {
        grid-column: span 6;
    }

    /* Fleet page */
    .fleet-page .fleet-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    /* Services detail */
    .service-detail-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-detail-card:nth-child(even) {
        direction: ltr;
    }

    /* Process */
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step::after {
        display: none;
    }

    /* About */
    .story-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story-content {
        padding-left: 0;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-container {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Routes page */
    .interactive-map {
        grid-template-columns: 1fr;
    }

    .route-list {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 1rem;
    }

    .route-list .route-item {
        min-width: 280px;
        flex-shrink: 0;
    }

    .corridors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Contact */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .offices-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer */
    .footer-extended .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-center {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    /* Hero */
    .hero-stats {
        gap: 2rem;
    }

    .stat-value {
        font-size: 2rem;
    }

    /* Fleet bento grid */
    .fleet-card.wide,
    .fleet-card.standard {
        grid-column: span 12;
    }

    /* Trust */
    .trust-grid {
        gap: 2rem;
    }

    /* About */
    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: row;
        padding-left: 50px;
    }

    .timeline-content {
        width: 100%;
    }

    .timeline-dot {
        left: 20px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-image {
        height: 350px;
    }

    .story-badge {
        width: 100px;
        height: 100px;
        bottom: -15px;
        right: -15px;
    }

    .story-badge-number {
        font-size: 2rem;
    }

    .story-highlight {
        flex-direction: column;
        gap: 1rem;
    }

    /* Stats bar */
    .stats-bar {
        gap: 2rem;
    }

    .routes-page .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Services */
    .process-grid {
        grid-template-columns: 1fr;
    }

    /* Routes page */
    .corridors-grid {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .form-row {
        grid-template-columns: 1fr;
    }

    .offices-grid {
        grid-template-columns: 1fr;
    }

    .social-links {
        justify-content: center;
    }

    /* Footer */
    .footer-extended .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        max-width: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .lang-dropdown-toggle {
        padding: 0.3rem 0.5rem;
        font-size: 0.65rem;
    }

    .fleet-page .fleet-grid {
        grid-template-columns: 1fr;
    }

    .filter-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
    }
}
