/* ==========================================================================
   UMRAH TAXI HUB - LUXURY ROYAL MIDNIGHT & GOLD DESIGN SYSTEM
   ========================================================================== */

:root {
    --bg-primary: #0a192f;
    --bg-secondary: #0f172a;
    --bg-surface: #ffffff;
    --bg-light: #f8fafc;
    --bg-card: #ffffff;
    --bg-card-dark: #1e293b;
    
    --primary: #0a192f;
    --primary-light: #1e293b;
    --accent-gold: #d4af37;
    --accent-gold-dark: #b8960c;
    --accent-gold-light: #fcd34d;
    --accent-amber: #f59e0b;
    --accent-emerald: #10b981;
    --accent-emerald-dark: #059669;
    
    --text-main: #1e293b;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    --text-gold: #d4af37;
    
    --border-color: #e2e8f0;
    --border-dark: rgba(212, 175, 55, 0.2);
    
    --font-heading: 'Outfit', 'Cinzel', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(10, 25, 47, 0.08);
    --shadow-lg: 0 16px 40px rgba(10, 25, 47, 0.12);
    --shadow-gold: 0 8px 25px rgba(212, 175, 55, 0.25);
    --shadow-dark: 0 20px 40px rgba(0, 0, 0, 0.3);
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button, input, select, textarea {
    font-family: inherit;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Typography & Headings ── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1.3;
    font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
h4 { font-size: 1.25rem; }

.gold-text {
    color: var(--accent-gold) !important;
    background: linear-gradient(135deg, #d4af37 0%, #f59e0b 50%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--accent-gold-dark);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.section-tag.dark {
    background: rgba(212, 175, 55, 0.18);
    color: var(--accent-gold-light);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 680px;
    margin: 12px auto 0;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-gold {
    background: linear-gradient(135deg, #d4af37 0%, #f59e0b 100%);
    color: #0a192f;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.45);
    color: #000;
}

.btn-emerald {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35);
}

.btn-emerald:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.45);
    color: #fff;
}

.btn-outline-gold {
    background: transparent;
    color: var(--accent-gold-light);
    border: 2px solid var(--accent-gold);
}

.btn-outline-gold:hover {
    background: var(--accent-gold);
    color: #0a192f !important;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* ── Top Bar & Header ── */
.top-bar {
    background: #060d19;
    color: #94a3b8;
    font-size: 0.82rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar a {
    color: #cbd5e1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-bar a:hover {
    color: var(--accent-gold-light);
}

.site-header {
    background: #0a192f;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 84px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.header-logo-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 4px 10px;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(212, 175, 55, 0.4);
    transition: var(--transition);
    flex-shrink: 0;
}

.site-logo:hover .header-logo-badge {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.4), 0 0 0 1px var(--accent-gold);
}

.header-logo-badge img {
    display: block;
    height: 44px;
    width: auto;
    object-fit: contain;
}

.logo-brand {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-brand span.gold {
    color: var(--accent-gold);
}

.logo-brand span.sub {
    font-size: 0.65rem;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #94a3b8;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 24px;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
    white-space: nowrap;
}

.nav-link {
    color: #e2e8f0;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 10px 4px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-gold);
}

/* Dropdown Menu */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #0f172a;
    min-width: 260px;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: var(--transition);
    z-index: 1010;
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown li a {
    display: block;
    padding: 10px 20px;
    color: #cbd5e1;
    font-size: 0.88rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    white-space: nowrap;
}

.nav-dropdown li a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    padding-left: 24px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    white-space: nowrap;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.6rem;
    cursor: pointer;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #0f172a;
    z-index: 2000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    padding: 30px 24px;
    transition: var(--transition);
    overflow-y: auto;
    border-left: 1px solid rgba(212, 175, 55, 0.2);
}

.mobile-drawer.open {
    right: 0;
}

.mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-close {
    background: transparent;
    border: none;
    color: #cbd5e1;
    font-size: 1.8rem;
    cursor: pointer;
}

.mobile-nav-list {
    list-style: none;
}

.mobile-nav-list li {
    margin-bottom: 6px;
}

.mobile-nav-list a {
    display: block;
    color: #e2e8f0;
    font-weight: 600;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
}

.mobile-nav-list a:hover, .mobile-nav-list a.active {
    background: rgba(212, 175, 55, 0.12);
    color: var(--accent-gold);
}

.mobile-nav-has-children {
    position: relative;
}

.mobile-nav-parent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
}

.mobile-nav-parent:hover {
    background: rgba(212, 175, 55, 0.08);
}

.mobile-nav-parent a {
    flex: 1;
}

.mobile-submenu-arrow {
    background: transparent;
    border: none;
    color: #ffd700;
    padding: 12px 16px;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-has-children.open .mobile-submenu-arrow {
    transform: rotate(180deg);
}

.mobile-submenu {
    list-style: none;
    padding-left: 10px;
    margin-top: 2px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
    opacity: 0;
    border-left: 2px solid rgba(212, 175, 55, 0.3);
    margin-left: 16px;
}

.mobile-nav-has-children.open .mobile-submenu {
    max-height: 700px;
    opacity: 1;
    margin-bottom: 8px;
}

.mobile-submenu a {
    font-size: 0.86rem;
    color: #cbd5e1;
    padding: 7px 12px;
    border-radius: 6px;
}

.mobile-submenu a:hover {
    color: #ffd700;
    background: rgba(212, 175, 55, 0.1);
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* ── Hero Section ── */
.hero-section {
    position: relative;
    background: linear-gradient(180deg, #0a192f 0%, #0f172a 100%);
    padding: 80px 0 100px;
    color: #ffffff;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(212, 175, 55, 0.08) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.7;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}

.hero-badge-wrap {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.hero-badge-wrap .star-rating {
    color: #fbbf24;
    font-size: 0.9rem;
}

.hero-badge-wrap span.text {
    font-size: 0.88rem;
    font-weight: 700;
    color: #fcd34d;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title {
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.18;
}

.hero-lead {
    font-size: 1.15rem;
    color: #cbd5e1;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-features-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 16px;
    margin-top: 45px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 1025px) {
    .hero-features-bar {
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
    }
}

.hero-feat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.hero-feat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.hero-feat-text h5 {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.hero-feat-text p {
    color: #94a3b8;
    font-size: 0.8rem;
    margin: 0;
}

/* ── Section Container & Common ── */
.section-padding {
    padding: 80px 0;
}

.section-bg-white {
    background-color: #ffffff;
}

.section-bg-light {
    background-color: #f8fafc;
}

.section-bg-dark {
    background-color: #0a192f;
    color: #ffffff;
}

.section-bg-dark h2, .section-bg-dark h3 {
    color: #ffffff;
}

/* ── Why Choose Us ── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

.why-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 36px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e2e8f0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-gold);
    opacity: 0;
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 175, 55, 0.4);
}

.why-card:hover::before {
    opacity: 1;
}

.why-card-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: rgba(212, 175, 55, 0.35);
    margin-bottom: 12px;
    line-height: 1;
}

.why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ── Services Grid ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e2e8f0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #0f172a;
}

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

.service-card:hover .service-img-wrap img {
    transform: scale(1.06);
}

.service-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-body h3 {
    margin-bottom: 14px;
    font-size: 1.35rem;
}

.service-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

/* ── How to Book Steps ── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
}

.step-card {
    background: #0f172a;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    color: #ffffff;
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-dark);
}

.step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #d4af37 0%, #f59e0b 100%);
    color: #0a192f;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    border-radius: 16px;
    margin-bottom: 22px;
    box-shadow: var(--shadow-gold);
}

.step-card h3 {
    color: #ffffff;
    margin-bottom: 14px;
    font-size: 1.3rem;
}

.step-card p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ── Mission & Stats Banner ── */
.stats-banner {
    background: linear-gradient(135deg, #0a192f 0%, #060d19 100%);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    color: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-lg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item h3 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 4px;
}

.stat-item p {
    color: #cbd5e1;
    font-size: 0.95rem;
    font-weight: 600;
}

/* ── FAQ Section ── */
.faq-wrap {
    max-width: 840px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 22px 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--primary);
    user-select: none;
}

.faq-toggle-icon {
    font-size: 1.2rem;
    color: var(--accent-gold-dark);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 26px 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ── CTA Banner ── */
.cta-banner {
    background: linear-gradient(135deg, #0a192f 0%, #1e293b 100%);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    color: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-banner h2 {
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-banner p {
    color: #cbd5e1;
    font-size: 1.1rem;
    max-width: 640px;
    margin: 0 auto 30px;
}

/* ── Footer ── */
.site-footer {
    background: #060d19;
    color: #94a3b8;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    background: var(--accent-gold);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.92rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 6px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.92rem;
    color: #cbd5e1;
}

.footer-contact-item svg {
    color: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 4px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--accent-gold);
    color: var(--primary);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
}

/* Floating Back to Top Button */
.btn-back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0a192f 0%, #1e3a8a 100%);
    color: #ffd700;
    border: 2px solid #d4af37;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    cursor: pointer;
    z-index: 9990;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(15px);
}

.btn-back-to-top:hover {
    background: #d4af37;
    color: #0a192f;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

/* Route Fare Matrix Layouts */
.route-fare-mobile-cards {
    display: none;
}
.route-fare-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 18px 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.route-fare-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.route-fare-card-img {
    width: 70px;
    height: 46px;
    object-fit: contain;
    background: #0a192f;
    padding: 4px;
    border-radius: 8px;
    flex-shrink: 0;
}
.route-fare-card-title-wrap {
    min-width: 0;
}
.route-fare-card-title {
    font-size: 1.15rem;
    color: #0a192f;
    margin: 0 0 4px;
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.route-fare-card-specs {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px dashed #e2e8f0;
}
.spec-pill {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    color: #475569;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.route-fare-card-rates {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.fare-rate-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 10px 14px;
}
.fare-rate-box.round-trip {
    background: #fffdf5;
    border-color: rgba(212, 175, 55, 0.4);
}
.fare-rate-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}
.fare-trip-type {
    font-size: 0.82rem;
    font-weight: 700;
    color: #0a192f;
}
.fare-status-tag {
    font-size: 0.72rem;
    font-weight: 700;
    color: #059669;
    background: #d1fae5;
    padding: 2px 8px;
    border-radius: 4px;
}
.fare-status-tag.round {
    color: #1e40af;
    background: #dbeafe;
}
.fare-rate-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.fare-amount {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0a192f;
    line-height: 1;
}
.fare-amount.gold {
    color: #d4af37;
}
.fare-amount small {
    font-size: 0.78rem;
    font-weight: 700;
    color: #64748b;
}
.fare-rate-pricing .btn {
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
}


/* ══════════════════════════════════════════════════════════════════
   COMPREHENSIVE RESPONSIVE DESIGN SYSTEM
   ══════════════════════════════════════════════════════════════════ */

/* ── Smooth scroll-driven animation helpers ── */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── AOS overrides for better feel ── */
[data-aos] {
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* ── Touch target sizing ── */
@media (pointer: coarse) {
    .btn, .txm-add-to-cart, .txm-route-dropdown,
    .faq-question, .nav-link, .mobile-nav-list a {
        min-height: 44px;
    }
    .txm-qty-btn {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
}

/* ── Large tablets / small desktops (1024px) ── */
@media (max-width: 1024px) {
    .main-nav { display: none; }
    .mobile-toggle { display: block; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-features-bar { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .fleet-catalog-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Tablet portrait (768px) ── */
@media (max-width: 768px) {
    html { font-size: 15px; }

    .section-padding { padding: 50px 0; }
    .container { padding: 0 16px; }
    .container-narrow { padding: 0 16px; }

    /* Header */
    .top-bar { display: none; }
    .nav-container { height: 62px; padding: 0 16px; }
    .currency-selector-wrapper { display: none !important; }
    .logo-brand { font-size: 1.25rem; line-height: 1.15; }
    .logo-brand span.sub { font-size: 0.58rem; letter-spacing: 0.06em; }
    .header-logo-badge { padding: 3px 8px; border-radius: 6px; }
    .header-logo-badge img { height: 36px !important; }
    .header-actions { gap: 10px; }
    .header-actions .btn { padding: 7px 12px; font-size: 0.8rem; border-radius: 20px; }

    /* Hero */
    .hero-section { padding: 40px 0 60px; }
    .hero-title { font-size: clamp(1.6rem, 5vw, 2.4rem); margin-bottom: 14px; }
    .hero-lead { font-size: 0.95rem; margin-bottom: 24px; line-height: 1.65; }
    .hero-badge-wrap { padding: 6px 14px; margin-bottom: 16px; }
    .hero-badge-wrap span.text { font-size: 0.76rem; }
    .hero-cta-group { gap: 12px; margin-bottom: 24px; }
    .hero-cta-group .btn { padding: 12px 24px; font-size: 0.9rem; width: 100%; }
    .hero-features-bar { grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 30px; padding-top: 20px; }
    .hero-feat-icon { width: 38px; height: 38px; font-size: 1rem; }
    .hero-feat-text h5 { font-size: 0.82rem; }
    .hero-feat-text p { font-size: 0.72rem; }

    /* Sections */
    .section-header { margin-bottom: 30px; }
    .section-header h2 { font-size: clamp(1.4rem, 4vw, 1.9rem); }
    .section-header p { font-size: 0.95rem; }
    .section-tag { font-size: 0.75rem; padding: 5px 12px; }

    /* Grids -> single column */
    .why-grid, .services-grid, .steps-grid { grid-template-columns: 1fr; }
    .fleet-catalog-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

    /* Cards */
    .why-card { padding: 28px 22px; }
    .why-card-num { font-size: 1.8rem; }
    .step-card { padding: 30px 22px; }
    .step-badge { width: 44px; height: 44px; font-size: 1.1rem; }
    .service-img-wrap { height: 180px; }

    /* Stats banner */
    .stats-banner { padding: 40px 24px; }
    .stats-banner h3 { font-size: 1.4rem !important; }
    .stat-item h3 { font-size: 2rem; }

    /* FAQ */
    .faq-question { padding: 16px 18px; font-size: 0.92rem; }
    .faq-answer { padding: 0 18px 18px; font-size: 0.88rem; }

    /* CTA Banner */
    .cta-banner { padding: 40px 24px; }
    .cta-banner h2 { font-size: 1.4rem; }
    .cta-banner p { font-size: 0.92rem; margin-bottom: 20px; }

    /* Footer */
    .site-footer { padding: 50px 0 24px; }
    .footer-col h4 { margin-bottom: 16px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
    .footer-socials { justify-content: center; }

    /* Floating Action Buttons Responsive Positioning */
    .btn-back-to-top {
        bottom: 20px !important;
        left: 16px !important;
        right: auto !important;
        width: 44px !important;
        height: 44px !important;
        font-size: 1rem !important;
    }
    .whatsapp-float {
        bottom: 20px !important;
        right: 16px !important;
        width: 48px !important;
        height: 48px !important;
    }
    .whatsapp-float svg {
        width: 26px !important;
        height: 26px !important;
    }
    #mij-live-chat-wrapper {
        bottom: 78px !important;
        right: 16px !important;
    }
    #mij-chat-bubble {
        width: 48px !important;
        height: 48px !important;
    }
    #mij-chat-window {
        width: calc(100vw - 32px) !important;
        max-width: 340px !important;
        right: 0 !important;
        bottom: 60px !important;
    }

    body.has-cart-bar .whatsapp-float {
        bottom: 90px !important;
    }
    body.has-cart-bar #mij-live-chat-wrapper {
        bottom: 148px !important;
    }
    body.has-cart-bar .btn-back-to-top {
        bottom: 90px !important;
    }

    /* Scroll Hint */
    .mobile-scroll-hint {
        display: block !important;
    }

    /* Route Fare Matrix Layout: Switch from desktop table to responsive mobile cards */
    .route-fare-desktop-table {
        display: none !important;
    }
    .route-fare-mobile-cards {
        display: flex !important;
        flex-direction: column;
        gap: 16px;
    }

    /* Buttons */
    .btn-lg { padding: 13px 28px; font-size: 0.95rem; }
    .btn-sm { padding: 7px 14px; font-size: 0.8rem; }

    /* Contact page grid */
    .contact-grid-2col { grid-template-columns: 1fr !important; }

    /* Checkout step 3 grid */
    .checkout-recap-grid { grid-template-columns: 1fr !important; }
}

/* ── Mobile phones (480px) ── */
@media (max-width: 480px) {
    html { font-size: 14px; }

    .container { padding: 0 14px; }
    .nav-container { height: 58px; padding: 0 12px; }
    .site-logo { gap: 8px; }
    .header-logo-badge { padding: 2px 6px; border-radius: 5px; }
    .header-logo-badge img { height: 32px !important; }
    .logo-brand { font-size: 1.15rem; }
    .logo-brand span.sub { font-size: 0.52rem; letter-spacing: 0.05em; }
    .header-actions { gap: 8px; }
    .header-actions .btn { padding: 6px 10px; font-size: 0.76rem; }
    .mobile-toggle { font-size: 1.4rem; }
    .hero-section { padding: 30px 0 50px; }
    .hero-title { font-size: 1.5rem; }
    .hero-lead { font-size: 0.88rem; }
    .hero-features-bar { grid-template-columns: 1fr; gap: 12px; }

    .section-padding { padding: 40px 0; }
    .section-header { margin-bottom: 24px; }

    /* Stats single col on very small */
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-item h3 { font-size: 1.6rem; }
    .stat-item p { font-size: 0.8rem; }

    /* Vehicle cards */
    .txm-card-body { padding: 18px; }
    .txm-card-title { font-size: 1.15rem; }
    .txm-card-specs { gap: 10px; font-size: 0.78rem; flex-wrap: wrap; }
    .txm-card-desc { font-size: 0.85rem; }
    .txm-selector-wrap { padding: 12px; }
    .txm-price-value { font-size: 1.2rem; }

    /* Cart bar */
    #txm-cart-bar { padding: 10px 14px; }
    .txm-cart-bar-inner { flex-direction: column; gap: 10px; }
    .txm-cart-summary { font-size: 0.9rem; }
    .txm-cart-actions { width: 100%; }
    .txm-cart-actions .btn { flex: 1; font-size: 0.78rem; padding: 8px 10px; }

    /* Cart drawer full width */
    #txm-cart-drawer { width: 100vw; max-width: 100vw; }

    /* Mobile drawer */
    .mobile-drawer { width: 100vw; max-width: 100vw; }

    /* Footer */
    .social-icon { width: 36px; height: 36px; }

    /* CTA */
    .cta-banner { padding: 30px 18px; }
    .cta-banner h2 { font-size: 1.2rem; }
}

/* ── Very small phones (360px) ── */
@media (max-width: 360px) {
    .nav-container { height: 54px; padding: 0 8px; }
    .logo-brand { font-size: 1.05rem; }
    .logo-brand span.sub { font-size: 0.5rem; letter-spacing: 0.04em; }
    .header-actions { gap: 6px; }
    .header-actions .btn { padding: 5px 8px; font-size: 0.72rem; }
    .hero-title { font-size: 1.3rem; }
    .hero-cta-group .btn { font-size: 0.82rem; padding: 10px 16px; }
    .stat-item h3 { font-size: 1.4rem; }
    .why-card { padding: 22px 16px; }
    .step-card { padding: 24px 16px; }
    .btn { font-size: 0.85rem; padding: 10px 20px; }
}

/* ── Landscape phones ── */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section { padding: 30px 0 40px; }
    .hero-title { font-size: 1.6rem; }
    .hero-lead { display: none; }
    .hero-features-bar { display: none; }
}

/* ── Print styles ── */
@media print {
    .site-header, .top-bar, .whatsapp-float, #txm-cart-bar,
    #txm-cart-drawer, .mobile-drawer, .drawer-overlay,
    .hero-cta-group, .btn { display: none !important; }
    .hero-section { padding: 20px 0; background: #fff !important; color: #000 !important; }
    .hero-title { color: #000 !important; -webkit-text-fill-color: #000 !important; }
}


/* Route Overview Quick Info Grid */
.route-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.route-overview-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.route-overview-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: #d4af37;
}

.route-overview-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #fef3c7;
    color: #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.route-overview-info {
    display: flex;
    flex-direction: column;
}

.route-overview-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.route-overview-val {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0a192f;
}

.route-overview-val.gold {
    color: #d4af37;
    font-weight: 800;
}

@media (max-width: 992px) {
    .route-overview-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .route-overview-grid { grid-template-columns: 1fr; gap: 12px; }
    .route-overview-card { padding: 14px 16px; }
}


/* ==========================================================================
   HERO SLIDESHOW & VIDEO MODAL STYLES (MIJ Travels)
   ========================================================================== */

.hero-has-slideshow {
    position: relative;
    overflow: hidden;
    min-height: 640px;
    display: flex;
    align-items: center;
    padding: 70px 0 90px;
}

.hero-slides-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.92) 0%, rgba(10, 25, 47, 0.76) 50%, rgba(10, 25, 47, 0.88) 100%);
    z-index: 3;
    pointer-events: none;
}

/* Slide Nav Arrows */
.hero-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: #ffffff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
}

.hero-nav-arrow:hover {
    background: var(--accent-gold);
    color: #0a192f;
    border-color: var(--accent-gold);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.hero-prev { left: 24px; }
.hero-next { right: 24px; }

/* Slide Dots */
.hero-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-dot.active {
    width: 32px;
    border-radius: 6px;
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
}

/* Video Button Pulse */
.btn-video-tour {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.play-pulse-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #d4af37;
    color: #0a192f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    animation: playPulse 2s infinite;
}

@keyframes playPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* Quick Route Estimator Card in Hero */
.hero-quick-estimator {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 20px 24px;
    margin: 36px auto 30px;
    max-width: 860px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    text-align: left;
}

.estimator-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    font-size: 0.85rem;
}

.est-tag {
    font-weight: 700;
    color: #f1f5f9;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.est-note {
    color: #94a3b8;
    font-size: 0.8rem;
}

.estimator-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1.35fr;
    gap: 16px;
    align-items: flex-end;
}

/* Redesigned Fare Price & Action Container with Perfect Box Alignment */
.est-price-container {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.96) 0%, rgba(20, 35, 60, 0.96) 100%);
    border: 1.5px solid rgba(212, 175, 55, 0.7);
    border-radius: 12px;
    padding: 8px 14px 8px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    transition: all 0.3s ease;
    min-width: 0;
    overflow: hidden;
}

.est-price-container:hover {
    border-color: #ffd700;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
}

.est-price-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    flex-grow: 1;
}

.est-price-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
    margin-bottom: 3px;
    white-space: nowrap;
}

.est-price-amount {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffd700;
    line-height: 1.1;
    display: flex;
    align-items: baseline;
    gap: 4px;
    white-space: nowrap;
}

.est-price-amount small {
    font-size: 0.78rem;
    font-weight: 700;
    color: #fcd34d;
    white-space: nowrap;
}

.est-book-btn {
    padding: 9px 16px !important;
    font-size: 0.85rem !important;
    font-weight: 800 !important;
    border-radius: 8px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%) !important;
    color: #0a192f !important;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.45) !important;
    white-space: nowrap;
    border: none !important;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.25s ease !important;
}
.est-book-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6) !important; }

@media (max-width: 992px) {
    .estimator-grid { grid-template-columns: 1fr 1fr; }
    .est-action-col { grid-column: span 2; }
}

@media (max-width: 640px) {
    .hero-quick-estimator { padding: 18px 16px; margin: 20px auto; }
    .estimator-grid { grid-template-columns: 1fr; }
    .est-action-col { grid-column: 1; }
    .estimator-header { flex-direction: column; align-items: flex-start; }
    .est-price-container { padding: 12px 16px; }
}


/* ==========================================================================
   PAGE HERO BACKGROUND PHOTOGRAPHY STYLES (MIJ Travels)
   ========================================================================== */

.hero-section {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: #0a192f;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1.02);
    transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-section:hover .page-hero-bg {
    transform: scale(1.06);
}

.hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 25, 47, 0.82) 0%, rgba(10, 25, 47, 0.58) 50%, rgba(10, 25, 47, 0.88) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-section .hero-content {
    position: relative;
    z-index: 10 !important;
}


/* ==========================================================================
   HERO INSTANT ROUTE FARE QUICK ESTIMATOR BOX (ORIGINAL LUXURY DESIGN)
   ========================================================================== */

.hero-quick-estimator {
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.95) 0%, rgba(15, 33, 64, 0.92) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 18px;
    padding: 24px 28px;
    margin-top: 36px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
}

.estimator-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.est-tag {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.est-pill-badge {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #34d399;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.estimator-grid {
    display: grid;
    grid-template-columns: 1.15fr 1.25fr 1.35fr;
    gap: 16px;
    align-items: flex-end;
}

.est-field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 8px;
}

.est-select-wrapper {
    position: relative;
    width: 100%;
}

.est-select {
    width: 100%;
    padding: 12px 36px 12px 14px;
    background: #0f172a;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #ffffff;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    transition: all 0.25s ease;
    cursor: pointer;
}

.est-select:focus {
    border-color: #ffd700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.25);
    background: #081120;
}

.est-chevron {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffd700;
    font-size: 0.8rem;
    pointer-events: none;
}

/* Original Luxury Boxed Fare Price & Action Container */
.est-price-container {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(20, 35, 60, 0.95) 100%);
    border: 1.5px solid rgba(212, 175, 55, 0.65);
    border-radius: 12px;
    padding: 8px 12px 8px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    transition: all 0.3s ease;
}

.est-price-container:hover {
    border-color: #ffd700;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
}

.est-price-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.est-price-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
    margin-bottom: 2px;
}

.est-price-amount {
    font-size: 1.55rem;
    font-weight: 800;
    color: #ffd700;
    line-height: 1.1;
    display: flex;
    align-items: baseline;
    gap: 4px;
    white-space: nowrap;
}

.est-price-amount small {
    font-size: 0.82rem;
    font-weight: 700;
    color: #fcd34d;
}

.est-book-btn {
    padding: 10px 18px !important;
    font-size: 0.88rem !important;
    font-weight: 800 !important;
    border-radius: 8px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%) !important;
    color: #0a192f !important;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.45) !important;
    white-space: nowrap;
    border: none !important;
    cursor: pointer;
    transition: all 0.25s ease !important;
}

.est-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.65) !important;
}

@media (max-width: 991px) {
    .estimator-grid {
        grid-template-columns: 1fr 1fr;
    }
    .est-action-col {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .hero-quick-estimator {
        padding: 18px 16px;
    }
    .estimator-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .estimator-grid {
        grid-template-columns: 1fr;
    }
    .est-action-col {
        grid-column: span 1;
    }
    .est-price-container {
        padding: 10px 14px;
    }
}

/* ── Luxury Quote & Inquiry Received Modal Dialog ── */
.quote-modal-overlay {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 25, 47, 0.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.quote-modal-card {
    background: #ffffff;
    border-radius: 20px;
    max-width: 460px;
    width: 100%;
    padding: 36px 28px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(212, 175, 55, 0.25);
    transform: translateY(20px) scale(0.96);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.quote-modal-overlay.active .quote-modal-card {
    transform: translateY(0) scale(1);
}

.quote-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f5f9;
    border: none;
    color: #64748b;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.quote-modal-close:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.quote-modal-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 18px;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.25);
    animation: quotePulse 2s infinite ease-in-out;
}

@keyframes quotePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.25);
    }
    50% {
        transform: scale(1.06);
        box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
    }
}

.quote-modal-title {
    color: #0a192f;
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    margin: 0 0 10px;
}

.quote-modal-message {
    color: #475569;
    font-size: 1rem;
    line-height: 1.55;
    margin: 0 0 24px;
}

.quote-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quote-modal-btn {
    width: 100%;
    justify-content: center;
    padding: 13px 18px;
    font-size: 0.98rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.25s ease;
}

.quote-modal-btn-dismiss {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.quote-modal-btn-dismiss:hover {
    background: #e2e8f0;
    color: #0f172a;
}

/* ==========================================================================
   PERFORMANCE & CORE WEB VITALS (CWV) OPTIMIZATIONS
   ========================================================================== */
.why-choose-section,
.services-section,
.steps-section,
.faqs-section,
.site-footer,
.route-fare-matrix-wrap {
    content-visibility: auto;
    contain-intrinsic-size: 1px 500px;
}

img {
    image-rendering: auto;
}

/* Ensure smooth hardware acceleration for animated elements */
.hero-content, .txm-card, .service-card, .why-card, .route-fare-card {
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}


