/* =====================================================================
   INDIAN CABS — BRAND COLOR PALETTE
   ===================================================================== */
:root {
    /* Primary brand red */
    --p:    #D72638;
    --pd:   #A81E2C;

    /* Secondary navy — text + dark sections */
    --s:    #1B1F3B;

    /* Logo blue (actual brand blue from the IndianCabs wordmark) —
       used for heading gradients. Brighter / more saturated than --s navy. */
    --logo-blue: #1C75BC;

    /* Accent gold/yellow — sparing use for highlight badges */
    --a:    #F9C80E;

    /* Muted gray text */
    --tl:   #5C6273;

    /* Backgrounds */
    --bg:   #F8F9FC;
    --bg-tint: #FFF5F6;
    --bg-tint-2: #FECDD3;

    /* rgba helpers (for shadows / glows) */
    --p-rgb:  215, 38, 56;
    --pd-rgb: 168, 30, 44;
    --s-rgb:  27, 31, 59;
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    color: #1B1F3B;
    background: #F8F9FC;
    line-height: 1.5;
    overflow-x: hidden;
}

/* Custom scrollbar (road-themed gold) */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #F0F1F5;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #D72638 0%, #D72638 50%, #A81E2C 100%);
    border-radius: 10px;
    border: 2px solid #F0F1F5;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #D72638 0%, #A81E2C 100%);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* ===== Top Strip ===== */
.top-strip {
    background: linear-gradient(90deg, #0b1220 0%, #1B1F3B 50%, #0b1220 100%);
    color: #d1d5db;
    font-size: 13px;
    padding: 8px 0;
    position: relative;
    overflow: hidden;
}

.top-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(215, 38, 56, 0.08), transparent);
    transform: translateX(-100%);
    animation: shimmer 6s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.top-strip-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.top-contact a {
    margin-left: 18px;
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-block;
}

.top-contact a:hover {
    color: #D72638;
    transform: translateY(-1px);
}

.top-contact a i {
    margin-right: 4px;
    font-size: 11px;
    transition: transform 0.3s ease;
}

.top-contact a:hover i {
    transform: rotate(-12deg) scale(1.15);
}

/* ===== Main Header (Premium gradient navbar) ===== */
.main-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background:
        linear-gradient(180deg,
            rgba(255, 251, 235, 0.85) 0%,
            rgba(255, 255, 255, 0.95) 55%,
            rgba(255, 247, 237, 0.88) 100%);
    backdrop-filter: saturate(200%) blur(18px);
    -webkit-backdrop-filter: saturate(200%) blur(18px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        0 2px 14px rgba(215, 38, 56, 0.10),
        0 8px 28px rgba(0, 0, 0, 0.04);
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
    border-bottom: 1px solid rgba(215, 38, 56, 0.18);
}

/* Premium amber accent strip across the very top */
.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(215, 38, 56, 0.55) 12%,
        #D72638 30%,
        #D72638 50%,
        #D72638 70%,
        rgba(215, 38, 56, 0.55) 88%,
        transparent 100%);
    z-index: 1;
    pointer-events: none;
    opacity: 0.9;
}

/* Animated road-stripe under header — sliding amber dashes */
.main-header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        rgba(215, 38, 56, 0.65) 0,
        rgba(215, 38, 56, 0.65) 18px,
        transparent 18px,
        transparent 36px
    );
    animation: roadDash 1.6s linear infinite;
    pointer-events: none;
    opacity: 0.85;
}

@keyframes roadDash {
    from { background-position: 0 0; }
    to   { background-position: -36px 0; }
}

.main-header.scrolled {
    background:
        linear-gradient(180deg,
            rgba(255, 251, 235, 0.95) 0%,
            rgba(255, 255, 255, 0.98) 55%,
            rgba(255, 247, 237, 0.95) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        0 4px 18px rgba(215, 38, 56, 0.15),
        0 10px 32px rgba(0, 0, 0, 0.06);
}

.main-header.scrolled .nav-container {
    padding-top: 10px;
    padding-bottom: 10px;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    gap: 24px;
    transition: padding 0.3s ease;
}

/* Logo */
.logo {
    display: inline-flex;
    align-items: center;
    line-height: 0; /* prevent inline-image baseline gap */
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: translateY(-1px);
}

.logo-img {
    display: block;
    height: 42px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
}

@media (max-width: 560px) {
    .logo-img { height: 34px; max-width: 180px; }
}

/* Footer logo — same image, slightly smaller. If the source PNG is dark
   coloured it can be hard to read on the dark navy footer, so we apply a
   subtle brightness boost. Comment out filter line if your logo is already
   white / light-coloured. */
.footer-logo {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

.footer-logo-img {
    display: block;
    height: 40px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    /* If logo source is dark / coloured, uncomment to force white-ish on dark footer: */
    /* filter: brightness(0) invert(1); */
}

.logo-icon {
    font-size: 26px;
    background: linear-gradient(135deg, #D72638 0%, #D72638 50%, #A81E2C 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo:hover .logo-icon {
    animation: taxiWobble 0.6s ease-in-out;
}

@keyframes taxiWobble {
    0%   { transform: translateX(0) rotate(0deg); }
    25%  { transform: translateX(3px) rotate(-6deg); }
    50%  { transform: translateX(-2px) rotate(4deg); }
    75%  { transform: translateX(2px) rotate(-3deg); }
    100% { transform: translateX(0) rotate(0deg); }
}

.logo-text span {
    background: linear-gradient(135deg, #D72638 0%, #A81E2C 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== Main Nav ===== */
.main-nav {
    flex: 1;
}

.nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.nav-list > li > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 500;
    color: #5C6273;
    border-radius: 6px;
    transition: color 0.25s ease, background 0.25s ease, box-shadow 0.3s ease, transform 0.25s ease;
    overflow: hidden;
}

/* Gradient underline that grows on hover */
.nav-list > li > a::after {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 6px;
    height: 2px;
    background: linear-gradient(90deg, #D72638, #D72638, #A81E2C);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}

.nav-list > li > a:hover {
    color: #A81E2C;
    background: linear-gradient(135deg, #FFF5F6 0%, #FFF5F6 50%, #FECDD3 100%);
    box-shadow:
        0 2px 8px rgba(215, 38, 56, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    transform: translateY(-1px);
}

.nav-list > li > a:hover::after {
    transform: scaleX(1);
}

.arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.has-mega-menu:hover .arrow {
    transform: rotate(180deg);
}

/* Book Now Button */
.book-btn {
    position: relative;
    background: linear-gradient(135deg, #D72638 0%, #D72638 50%, #A81E2C 100%);
    background-size: 200% 200%;
    background-position: 0% 0%;
    color: #fff;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: background-position 0.5s ease, transform 0.25s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 14px rgba(215, 38, 56, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    white-space: nowrap;
    overflow: hidden;
    isolation: isolate;
}

/* Shine sweep across button */
.book-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
    transform: skewX(-20deg);
    transition: left 0.7s ease;
    z-index: -1;
}

.book-btn:hover {
    background-position: 100% 100%;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(215, 38, 56, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    animation: none;
}

.book-btn:hover::before {
    left: 130%;
}

.book-btn:active {
    transform: translateY(0);
}

/* Gentle attention pulse — runs in idle state to draw the eye */
.book-btn {
    animation: bookAttention 3.4s ease-in-out infinite;
}

@keyframes bookAttention {
    0%, 100% { box-shadow: 0 4px 14px rgba(215, 38, 56, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25); }
    50%      { box-shadow: 0 4px 18px rgba(215, 38, 56, 0.55), 0 0 0 6px rgba(215, 38, 56, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.3); }
}

/* Hamburger (mobile) */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #1B1F3B;
    border-radius: 2px;
    transition: 0.3s;
}

/* ===== Standard Dropdown (Corporate Taxi etc.) ===== */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, #D72638, #D72638, #A81E2C) 1;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
    padding: 8px;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0.3s;
    z-index: 99;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s;
}

.has-dropdown:hover .arrow {
    transform: rotate(180deg);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    font-size: 14px;
    font-weight: 500;
    color: #5C6273;
    border-radius: 6px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.dropdown-menu li a i {
    width: 18px;
    text-align: center;
    color: #D72638;
    font-size: 14px;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dropdown-menu li a:hover {
    background: linear-gradient(135deg, #FFF5F6 0%, #FECDD3 100%);
    color: #A81E2C;
    transform: translateX(3px);
}

.dropdown-menu li a:hover i {
    transform: scale(1.18) rotate(-6deg);
    color: #A81E2C;
}

/* Mobile: dropdown collapses inline */
@media (max-width: 900px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border-top: none;
        opacity: 1;
        visibility: hidden;
        transform: none;
        max-height: 0;
        padding: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .has-dropdown:hover .dropdown-menu {
        visibility: hidden;
        max-height: 0;
        padding: 0;
    }

    .has-dropdown.active .dropdown-menu {
        visibility: visible;
        max-height: 500px;
        padding: 8px 0 8px 16px;
    }
}

/* ===== MEGA MENU ===== */
.has-mega-menu {
    position: static;
}

.mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, #D72638, #D72638, #A81E2C) 1;
    padding: 28px 32px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
    z-index: 99;
}

/* Invisible hover bridge — extends the mega-menu's hit area upward
   into the header's bottom-padding gap so the mouse can move from the
   trigger to the items without losing :hover on .has-mega-menu */
.mega-menu::before {
    content: '';
    position: absolute;
    top: -22px;
    left: 0;
    right: 0;
    height: 22px;
    background: transparent;
}

.has-mega-menu:hover .mega-menu,
.has-mega-menu.active .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s;
}

/* Mega Menu Header */
.mega-menu-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #F0F1F5;
}

.mega-menu-header h3 {
    font-size: 20px;
    color: #1B1F3B;
    margin-bottom: 4px;
    background: linear-gradient(90deg, #1C75BC 0%, #1C75BC 38%, #D72638 62%, #D72638 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mega-menu-header p {
    font-size: 14px;
    color: #5C6273;
}

/* Mega Menu Grid */
.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.mega-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    /* No transitions at all — hover highlight is instant. Eliminates any
       smear/flash when moving the mouse rapidly across items. */
    border: 1px solid transparent;
    isolation: isolate;
}

/* Instant background tint on hover — solid color, no fade, no slide */
.mega-item:hover {
    background: linear-gradient(135deg, #FFF5F6 0%, #FECDD3 100%);
    border-color: #FECDD3;
}

.mega-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFF5F6 0%, #FECDD3 100%);
    border-radius: 10px;
    font-size: 18px;
    color: #A81E2C;
    /* Instant color swap — no transition so moving across items feels snappy */
}

.mega-item:hover .mega-icon {
    background: linear-gradient(135deg, #D72638 0%, #D72638 50%, #A81E2C 100%);
    color: #fff;
}

.mega-text h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1B1F3B;
    margin-bottom: 2px;
}

.mega-item:hover .mega-text h4 {
    color: #A81E2C;
}

.mega-text span {
    font-size: 12px;
    color: #5C6273;
}

/* Mega Menu Footer */
.mega-menu-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #F0F1F5;
    font-size: 14px;
    color: #5C6273;
}

.mega-cta {
    color: #D72638;
    font-weight: 600;
    transition: color 0.25s ease, letter-spacing 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.mega-cta:hover {
    color: #A81E2C;
    letter-spacing: 0.3px;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    padding: 80px 0;
    text-align: center;
    background:
        radial-gradient(1000px 500px at 80% -10%, rgba(215, 38, 56, 0.15), transparent 60%),
        radial-gradient(800px 400px at 0% 110%, rgba(215, 38, 56, 0.10), transparent 60%),
        linear-gradient(135deg, #FFF5F6 0%, #ffffff 60%, #FFF5F6 100%);
    overflow: hidden;
}

.hero h1 {
    font-size: 42px;
    color: #1B1F3B;
    margin-bottom: 16px;
    background: linear-gradient(90deg, #1C75BC 0%, #1C75BC 38%, #D72638 62%, #D72638 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 17px;
    color: #5C6273;
    max-width: 640px;
    margin: 0 auto;
}

/* Mega items appear together with the menu's parent fade-in.
   (Stagger removed — felt like a slow lazy-load and re-triggered on every hover.) */

/* ===== Buttons ===== */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: transform 0.25s ease, box-shadow 0.3s ease, background-position 0.5s ease, color 0.25s ease, background 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    isolation: isolate;
    text-decoration: none;
    font-family: inherit;
    line-height: 1.4;
}

.btn-primary {
    background: linear-gradient(135deg, #D72638 0%, #D72638 50%, #A81E2C 100%);
    background-size: 200% 200%;
    background-position: 0% 0%;
    color: #fff;
    box-shadow: 0 4px 14px rgba(215, 38, 56, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
    transform: skewX(-20deg);
    transition: left 0.7s ease;
    z-index: -1;
}

.btn-primary:hover {
    background-position: 100% 100%;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(215, 38, 56, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-primary:hover::before { left: 130%; }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
    background: transparent;
    color: #A81E2C;
    border: 2px solid #D72638;
    padding: 10px 22px;
}

.btn-outline:hover {
    background: linear-gradient(135deg, #D72638 0%, #D72638 50%, #A81E2C 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(215, 38, 56, 0.35);
    border-color: transparent;
}

.btn-block { display: flex; width: 100%; }

/* ===== Header Right CTA ===== */
.header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 14px;
    color: #1B1F3B;
    padding: 8px 14px;
    border-radius: 8px;
    background: linear-gradient(135deg, #FFF5F6 0%, #FFF5F6 100%);
    border: 1px solid #FECDD3;
    transition: transform 0.25s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}

.header-phone i { color: #A81E2C; }

.header-phone:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(215, 38, 56, 0.25);
}

.header-whatsapp {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    flex-shrink: 0;
}

.header-whatsapp:hover {
    transform: translateY(-2px) rotate(-8deg) scale(1.08);
    box-shadow: 0 8px 18px rgba(37, 211, 102, 0.55);
}

/* ===== Section Head ===== */
.section-head {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 48px;
}

.section-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #A81E2C;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-head h2 {
    font-size: 34px;
    color: #1B1F3B;
    margin-bottom: 14px;
    background: linear-gradient(90deg, #1C75BC 0%, #1C75BC 38%, #D72638 62%, #D72638 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.25;
}

.section-head p {
    font-size: 15px;
    color: #5C6273;
    line-height: 1.7;
}

/* ===== Hero (override) ===== */
.hero {
    text-align: left;
    padding: 70px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-eyebrow {
    display: inline-block;
    background: linear-gradient(135deg, #FFF5F6, #FECDD3);
    color: #A81E2C;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
    border: 1px solid rgba(215, 38, 56, 0.25);
    letter-spacing: 0.3px;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.15;
    max-width: none;
    text-align: left;
    margin: 0 0 18px;
    color: #1B1F3B; /* fallback */
    background: linear-gradient(90deg, #1C75BC 0%, #1C75BC 38%, #D72638 62%, #D72638 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-accent {
    background: linear-gradient(135deg, #D72638 0%, #A81E2C 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    text-align: left;
    margin: 0 0 28px;
    max-width: 560px;
    font-size: 17px;
    color: #5C6273;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero-stats {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.hero-stats > div { display: flex; flex-direction: column; }

.hero-stats strong {
    font-size: 28px;
    color: #A81E2C;
    font-weight: 700;
    line-height: 1.1;
}

.hero-stats span { font-size: 13px; color: #5C6273; }

.hero-form {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(27, 31, 59, 0.10);
    border: 1px solid rgba(215, 38, 56, 0.15);
    position: relative;
    overflow: hidden;
}

.hero-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D72638, #D72638, #A81E2C);
}

.hero-form h3 {
    font-size: 22px;
    color: #1B1F3B;
    margin-bottom: 4px;
}

.hero-form-sub {
    font-size: 13px;
    color: #5C6273;
    margin: 0 0 18px;
}

.form-row { margin-bottom: 12px; }

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 12px 14px;
    font: inherit;
    font-size: 14px;
    color: #1B1F3B;
    background: #F8F9FC;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #D72638;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(215, 38, 56, 0.15);
}

/* ===== Why Section ===== */
.why-section { padding: 80px 0; background: #fff; }

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.why-card {
    background: #fff;
    border: 1px solid #F0F1F5;
    border-radius: 14px;
    padding: 26px;
    text-align: left;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.why-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 245, 246, 0.4), rgba(254, 205, 211, 0.6));
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: -1;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(215, 38, 56, 0.18);
    border-color: #FECDD3;
}

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

.why-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFF5F6 0%, #FECDD3 100%);
    color: #A81E2C;
    border-radius: 12px;
    font-size: 22px;
    margin-bottom: 16px;
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, #D72638 0%, #D72638 50%, #A81E2C 100%);
    color: #fff;
    transform: rotate(-8deg) scale(1.08);
    box-shadow: 0 8px 18px rgba(215, 38, 56, 0.45);
}

.why-card h4 { font-size: 17px; color: #1B1F3B; margin-bottom: 8px; }
.why-card p { font-size: 14px; color: #5C6273; line-height: 1.6; }

/* ===== Services Section ===== */
.services-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #FFF5F6 0%, #ffffff 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(27, 31, 59, 0.05);
    border: 1px solid transparent;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #D72638, #D72638, #A81E2C);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(215, 38, 56, 0.18);
    border-color: #FECDD3;
}

.service-card:hover::after { transform: scaleX(1); }

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFF5F6 0%, #FECDD3 100%);
    color: #A81E2C;
    border-radius: 14px;
    font-size: 26px;
    margin-bottom: 18px;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.4s ease, color 0.4s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #D72638 0%, #D72638 50%, #A81E2C 100%);
    color: #fff;
    transform: rotate(-6deg) scale(1.06);
}

.service-card h4 { font-size: 19px; color: #1B1F3B; margin-bottom: 10px; }
.service-card p { font-size: 14px; color: #5C6273; line-height: 1.7; }

/* ===== Fleet Section ===== */
.fleet-section {
    padding: 90px 0;
    background:
        radial-gradient(800px 400px at 100% 0%, rgba(215, 38, 56, 0.08), transparent 65%),
        radial-gradient(700px 350px at 0% 100%, rgba(215, 38, 56, 0.07), transparent 65%),
        #fff;
    position: relative;
    overflow: hidden;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    position: relative;
    z-index: 1;
}

.fleet-card {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #FFF5F6 100%);
    border: 1px solid #FECDD3;
    border-radius: 18px;
    padding: 32px 22px 26px;
    text-align: center;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.45s ease,
                border-color 0.45s ease;
    overflow: hidden;
    isolation: isolate;
}

/* Top accent bar that grows in on hover */
.fleet-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D72638, #D72638, #A81E2C);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.55s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: 2;
}

/* Soft gradient orb that drifts on hover */
.fleet-card::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -30%;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(215, 38, 56, 0.22), transparent 65%);
    opacity: 0;
    transform: translate(0, 0);
    transition: opacity 0.5s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
    pointer-events: none;
}

.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 50px rgba(215, 38, 56, 0.28);
    border-color: #D72638;
}

.fleet-card:hover::before { transform: scaleX(1); }
.fleet-card:hover::after  { opacity: 1; transform: translate(-40px, 40px); }

/* Category pill */
.fleet-cat {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #A81E2C;
    background: linear-gradient(135deg, #FFF5F6, #FECDD3);
    padding: 5px 12px;
    border-radius: 999px;
    border: 1px solid rgba(215, 38, 56, 0.3);
    margin-bottom: 16px;
    transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.fleet-card:hover .fleet-cat {
    background: linear-gradient(135deg, #D72638, #A81E2C);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(215, 38, 56, 0.4);
}

/* Per-category subtle hue shift (still on-brand amber) */
.fleet-cat-suv   { color: #92400e; }
.fleet-cat-mpv   { color: #a16207; }
.fleet-cat-tempo { color: #78350f; }

/* Car icon orb */
.fleet-img {
    width: 120px;
    height: 120px;
    margin: 4px auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFF5F6 0%, #FECDD3 100%);
    color: #A81E2C;
    border-radius: 50%;
    font-size: 54px;
    position: relative;
    transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1),
                background 0.5s ease,
                color 0.5s ease,
                box-shadow 0.5s ease;
}

/* Soft expanding ring on hover */
.fleet-img::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(215, 38, 56, 0.35);
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.4s ease, transform 0.5s ease;
}

.fleet-card:hover .fleet-img {
    background: linear-gradient(135deg, #D72638 0%, #D72638 50%, #A81E2C 100%);
    color: #fff;
    transform: translateY(-4px) rotate(-6deg) scale(1.06);
    box-shadow: 0 16px 32px rgba(215, 38, 56, 0.45);
}

.fleet-card:hover .fleet-img::after {
    opacity: 1;
    transform: scale(1.06);
}

.fleet-card h4 {
    font-size: 19px;
    color: #1B1F3B;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.fleet-card:hover h4 {
    background: linear-gradient(135deg, #A81E2C, #A81E2C);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Seater pill */
.fleet-seater {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #5C6273;
    background: #F8F9FC;
    border: 1px solid #F0F1F5;
    padding: 6px 14px;
    border-radius: 999px;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.fleet-seater i {
    color: #A81E2C;
    font-size: 12px;
    transition: transform 0.4s ease;
}

.fleet-card:hover .fleet-seater {
    background: #fff;
    color: #1B1F3B;
    border-color: #FECDD3;
    box-shadow: 0 6px 14px rgba(215, 38, 56, 0.18);
}

.fleet-card:hover .fleet-seater i { transform: scale(1.15); }

/* Old spec list (kept harmless if used elsewhere) */
.fleet-specs {
    list-style: none;
    text-align: left;
    margin-bottom: 18px;
    border-top: 1px dashed #FECDD3;
}

.fleet-specs li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #FECDD3;
    font-size: 13px;
}

.fleet-specs span { color: #5C6273; }
.fleet-specs strong { color: #1B1F3B; font-weight: 600; }

/* ===== CTA Banners ===== */
.cta-banners { padding: 50px 0; }

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.cta-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    border-radius: 18px;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 14px 30px rgba(27, 31, 59, 0.18);
}

.cta-political { background: linear-gradient(135deg, #A81E2C 0%, #D72638 50%, #D72638 100%); }
.cta-corporate { background: linear-gradient(135deg, #1B1F3B 0%, #5C6273 50%, #5C6273 100%); }

.cta-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
    z-index: -1;
    transition: transform 0.6s ease;
}

.cta-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(27, 31, 59, 0.28);
}

.cta-card:hover::after { transform: translate(-20px, 20px) scale(1.2); }

.cta-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 14px;
    font-size: 30px;
    color: #fff;
    flex-shrink: 0;
}

.cta-text { flex: 1; }
.cta-text span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.85;
}
.cta-text h3 { font-size: 22px; margin-top: 4px; color: #fff; }

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.95);
    color: #1B1F3B;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    transition: background 0.25s ease, transform 0.25s ease, letter-spacing 0.25s ease;
    flex-shrink: 0;
}

.cta-card:hover .cta-btn {
    background: #fff;
    transform: translateX(4px);
    letter-spacing: 0.3px;
}

/* ===== Routes Section ===== */
.routes-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #FFF5F6 100%);
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.route-card {
    background: #fff;
    border: 1px solid #F0F1F5;
    border-radius: 14px;
    padding: 22px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.route-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 245, 246, 0.5), rgba(254, 205, 211, 0.75));
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: -1;
}

.route-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(215, 38, 56, 0.22);
    border-color: #FECDD3;
}

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

.route-cities {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #1B1F3B;
}

.route-cities i { color: #A81E2C; transition: transform 0.4s ease; }
.route-card:hover .route-cities i { transform: translateX(4px); }

.route-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #A81E2C;
    transition: gap 0.25s ease, letter-spacing 0.25s ease;
}

.route-card:hover .route-link {
    gap: 8px;
    letter-spacing: 0.2px;
}

/* ===== Religious Section ===== */
.religious-section {
    padding: 80px 0;
    background:
        radial-gradient(800px 400px at 50% 0%, rgba(215, 38, 56, 0.15), transparent 70%),
        linear-gradient(135deg, #FFF5F6 0%, #FFF5F6 100%);
    position: relative;
    overflow: hidden;
}

.religious-inner {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.religious-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #D72638 0%, #A81E2C 100%);
    color: #fff;
    border-radius: 50%;
    font-size: 34px;
    box-shadow: 0 12px 30px rgba(215, 38, 56, 0.4);
    animation: floatY 4s ease-in-out infinite;
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

.religious-inner h2 {
    font-size: 32px;
    color: #1B1F3B;
    margin-bottom: 12px;
    background: linear-gradient(90deg, #1C75BC 0%, #1C75BC 38%, #D72638 62%, #D72638 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.religious-inner p {
    font-size: 15px;
    color: #5C6273;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* ===== How To Book ===== */
.how-section { padding: 80px 0; background: #fff; }

.how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.how-card {
    background: #fff;
    border: 1px solid #F0F1F5;
    border-radius: 14px;
    padding: 28px 22px;
    text-align: center;
    position: relative;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.how-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(215, 38, 56, 0.18);
    border-color: #FECDD3;
}

.how-num {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 36px;
    font-weight: 700;
    color: rgba(215, 38, 56, 0.18);
    line-height: 1;
    transition: color 0.35s ease;
}

.how-card:hover .how-num { color: rgba(215, 38, 56, 0.45); }

.how-icon {
    width: 64px;
    height: 64px;
    margin: 6px auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFF5F6 0%, #FECDD3 100%);
    color: #A81E2C;
    border-radius: 50%;
    font-size: 26px;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.4s ease, color 0.4s ease;
}

.how-card:hover .how-icon {
    background: linear-gradient(135deg, #D72638 0%, #D72638 50%, #A81E2C 100%);
    color: #fff;
    transform: scale(1.1) rotate(-8deg);
}

.how-card h4 { font-size: 17px; color: #1B1F3B; margin-bottom: 8px; }
.how-card p { font-size: 13px; color: #5C6273; line-height: 1.7; }

/* ===== Blogs ===== */
.blogs-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #FFF5F6 0%, #ffffff 100%);
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(27, 31, 59, 0.06);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
    border: 1px solid #F0F1F5;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(27, 31, 59, 0.14);
}

.blog-img {
    height: 180px;
    background: linear-gradient(135deg, #D72638 0%, #D72638 50%, #A81E2C 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    overflow: hidden;
}

.blog-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.25), transparent 60%);
}

.blog-img > i { transition: transform 0.5s ease; position: relative; }
.blog-card:hover .blog-img > i { transform: scale(1.15) rotate(-6deg); }

.blog-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255, 255, 255, 0.95);
    color: #A81E2C;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 20px;
}

.blog-body { padding: 22px; }
.blog-body h4 {
    font-size: 17px;
    color: #1B1F3B;
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.25s ease;
}
.blog-card:hover .blog-body h4 { color: #A81E2C; }

.blog-body p {
    font-size: 13px;
    color: #5C6273;
    line-height: 1.6;
    margin-bottom: 14px;
}

.blog-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 12px;
    color: #9ca3af;
    padding-top: 12px;
    border-top: 1px solid #F0F1F5;
}

.blog-meta i { margin-right: 4px; color: #A81E2C; }

.blogs-more { text-align: center; margin-top: 36px; }

/* ===== FAQ ===== */
.faq-section {
    padding: 90px 0;
    background:
        radial-gradient(600px 300px at 0% 50%, rgba(215, 38, 56, 0.08), transparent 70%),
        radial-gradient(600px 300px at 100% 50%, rgba(215, 38, 56, 0.06), transparent 70%),
        linear-gradient(180deg, #ffffff 0%, #FFF5F6 100%);
    position: relative;
    overflow: hidden;
}

.faq-list {
    max-width: 860px;
    margin: 0 auto;
    counter-reset: faq;
    position: relative;
    z-index: 1;
}

.faq-item {
    position: relative;
    background: #fff;
    border: 1px solid #F0F1F5;
    border-radius: 16px;
    margin-bottom: 14px;
    padding: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.35s ease,
                box-shadow 0.4s ease,
                background 0.4s ease;
    overflow: hidden;
}

/* Left gold bar that grows when open */
.faq-item::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #D72638, #D72638, #A81E2C);
    transform: scaleY(0);
    transform-origin: top center;
    transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}

.faq-item:hover {
    border-color: #FECDD3;
    transform: translateX(4px);
    box-shadow: 0 6px 18px rgba(215, 38, 56, 0.10);
}

.faq-item[open] {
    border-color: #FECDD3;
    background: linear-gradient(180deg, #ffffff 0%, #FFF5F6 100%);
    box-shadow: 0 14px 32px rgba(215, 38, 56, 0.18);
    transform: translateX(0);
}

.faq-item[open]::before { transform: scaleY(1); }

.faq-item summary {
    font-weight: 600;
    font-size: 16px;
    color: #1B1F3B;
    padding: 20px 24px 20px 22px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: color 0.25s ease;
    line-height: 1.4;
}

.faq-item summary::-webkit-details-marker { display: none; }

/* Auto-numbered badge: 01, 02, 03... */
.faq-item summary::before {
    counter-increment: faq;
    content: '0' counter(faq);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFF5F6, #FECDD3);
    color: #A81E2C;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    border: 1px solid rgba(215, 38, 56, 0.3);
    flex-shrink: 0;
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
                background 0.4s ease,
                color 0.4s ease,
                box-shadow 0.4s ease,
                border-color 0.4s ease;
}

.faq-item:hover summary::before {
    transform: scale(1.04);
    background: linear-gradient(135deg, #FECDD3, #D72638);
}

.faq-item[open] summary::before {
    background: linear-gradient(135deg, #D72638, #D72638, #A81E2C);
    color: #fff;
    transform: scale(1.06) rotate(-6deg);
    box-shadow: 0 8px 16px rgba(215, 38, 56, 0.45);
    border-color: transparent;
}

/* Plus / cross toggle on the right */
.faq-item summary::after {
    content: '+';
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFF5F6, #FECDD3);
    color: #A81E2C;
    font-size: 22px;
    font-weight: 300;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
                background 0.4s ease,
                color 0.4s ease,
                box-shadow 0.4s ease;
}

.faq-item:hover summary::after {
    background: linear-gradient(135deg, #D72638, #D72638);
    color: #fff;
    transform: scale(1.06);
}

.faq-item[open] summary::after {
    background: linear-gradient(135deg, #A81E2C, #A81E2C);
    color: #fff;
    transform: rotate(45deg) scale(1.06);
    box-shadow: 0 6px 14px rgba(215, 38, 56, 0.45);
}

.faq-item:hover summary {
    color: #A81E2C;
}

.faq-item[open] summary {
    color: #A81E2C;
}

.faq-item p {
    padding: 0 24px 22px 78px;
    font-size: 14.5px;
    color: #5C6273;
    line-height: 1.75;
    animation: faqFadeIn 0.35s ease;
}

@keyframes faqFadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 560px) {
    .faq-item summary { padding: 16px 18px; font-size: 15px; gap: 12px; }
    .faq-item summary::before { width: 34px; height: 34px; font-size: 11px; }
    .faq-item summary::after  { width: 30px; height: 30px; font-size: 18px; }
    .faq-item p { padding: 0 18px 18px 64px; }
}

/* ===== Footer ===== */
.site-footer {
    background: linear-gradient(180deg, #1B1F3B 0%, #0b1220 100%);
    color: #d1d5db;
    padding: 70px 0 0;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #D72638, #D72638, #A81E2C);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1.6fr 1.2fr 1.2fr 1.3fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-col h5 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.footer-col h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 36px;
    height: 1px;
    background: linear-gradient(90deg, #D72638, #A81E2C);
}

.footer-col h5 i {
    color: #D72638;
    font-size: 13px;
}

.footer-col h6 {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #D72638;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul li { margin-bottom: 9px; font-size: 13.5px; color: #d1d5db; }

.footer-col ul li a {
    color: #d1d5db;
    transition: color 0.25s ease, padding-left 0.25s ease;
    display: inline-block;
    position: relative;
}

.footer-col ul li a:hover {
    color: #D72638;
    padding-left: 6px;
}

.footer-col ul li a:hover::before {
    content: '\f0da';  /* fa-caret-right */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: -8px;
    color: #D72638;
    font-size: 10px;
    top: 1px;
}

/* About column ----------------------------------- */
.footer-about p,
.footer-tagline {
    font-size: 13.5px;
    color: #9ca3af;
    line-height: 1.75;
    margin: 18px 0 20px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.footer-logo .logo-text { color: #fff; }

/* Phone CTA card in about column */
.footer-phone-card {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px 10px 12px;
    background: linear-gradient(135deg, rgba(215, 38, 56, 0.12) 0%, rgba(168, 30, 44, 0.18) 100%);
    border: 1px solid rgba(215, 38, 56, 0.30);
    border-radius: 12px;
    margin-bottom: 20px;
    text-decoration: none;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.footer-phone-card:hover {
    transform: translateY(-2px);
    border-color: rgba(215, 38, 56, 0.60);
    background: linear-gradient(135deg, rgba(215, 38, 56, 0.20) 0%, rgba(168, 30, 44, 0.28) 100%);
    box-shadow: 0 10px 24px rgba(215, 38, 56, 0.25);
}

.footer-phone-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #D72638, #D72638, #A81E2C);
    color: #1B1F3B;
    border-radius: 50%;
    font-size: 14px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(215, 38, 56, 0.45);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-phone-card:hover .footer-phone-icon {
    transform: rotate(-12deg) scale(1.06);
}

.footer-phone-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.footer-phone-text small {
    font-size: 10.5px;
    color: #d1d5db;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.footer-phone-text strong {
    font-size: 16px;
    color: #D72638;
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* Locations: 2-column auto-balanced grid for many links */
.footer-link-grid {
    columns: 2;
    column-gap: 16px;
}

.footer-link-grid li {
    break-inside: avoid;
}

/* Socials --------------------------------------- */
.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }

.footer-socials a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-radius: 50%;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.footer-socials a:hover {
    background: linear-gradient(135deg, #D72638 0%, #A81E2C 100%);
    transform: translateY(-3px) rotate(-6deg);
    box-shadow: 0 6px 14px rgba(215, 38, 56, 0.45);
}

.footer-socials .footer-social-wa:hover {
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 6px 14px rgba(37, 211, 102, 0.45);
}

/* Contact / Office block ------------------------ */
.footer-contact p {
    font-size: 13.5px;
    margin-bottom: 12px;
    line-height: 1.65;
    color: #d1d5db;
}

.footer-contact p i { margin-right: 8px; color: #D72638; }
.footer-contact a { color: #d1d5db; transition: color 0.25s ease; }
.footer-contact a:hover { color: #D72638; }

.footer-office {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-office p {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 10px;
}

.footer-email {
    margin-top: 12px;
}

.footer-email i {
    margin-right: 6px;
    color: #D72638;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    font-size: 13px;
    color: #9ca3af;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

/* ===== Floating WhatsApp ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    border-radius: 50%;
    font-size: 28px;
    z-index: 200;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    animation: whatsappPulse 2.5s ease-in-out infinite;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.whatsapp-float:hover { transform: scale(1.1); }

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5); }
    50%      { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .mega-menu-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 40px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .fleet-grid { grid-template-columns: repeat(3, 1fr); }
    .routes-grid { grid-template-columns: repeat(3, 1fr); }
    .how-grid { grid-template-columns: repeat(2, 1fr); }
    .blogs-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
    .footer-about { grid-column: 1 / -1; }
    .footer-link-grid { columns: 2; }
    .header-phone { display: none; }
}

@media (max-width: 900px) {
    /* =====================================================================
       Mobile drawer — rebuilt from scratch.
       Principles:
         • No transforms / will-change / GPU layers (kills subpixel text on Windows)
         • No transparency on backgrounds carrying text
         • Solid colors only, no gradients on text-bearing surfaces
         • Submenus are accordions: tap parent → submenu expands inline
       ===================================================================== */

    /* Hamburger → X animation */
    .hamburger {
        display: flex;
        position: relative;
        z-index: 1102;
    }
    .hamburger span {
        transition: transform 0.3s ease, opacity 0.25s ease;
        transform-origin: center;
    }
    .hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.is-active span:nth-child(2) { opacity: 0; }
    .hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Backdrop */
    .nav-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0s linear 0.3s;
        z-index: 1100;
    }
    .nav-backdrop.active {
        opacity: 1;
        visibility: visible;
        transition: opacity 0.3s ease, visibility 0s;
    }

    body.nav-open { overflow: hidden; }

    /* Drawer — solid white, slid by `left` (NO transform → crisp text) */
    .main-nav {
        position: fixed;
        top: 0;
        left: -110%;
        bottom: 0;
        width: 88%;
        max-width: 340px;
        height: 100vh;
        background: #ffffff;
        box-shadow: 4px 0 24px rgba(0, 0, 0, 0.18);
        transition: left 0.35s cubic-bezier(0.32, 0.72, 0, 1);
        z-index: 1101;
        overflow-y: auto;
        overscroll-behavior: contain;
        padding: 0;
        max-height: none;
    }
    .main-nav.open { left: 0; }

    /* Solid amber header bar (no gradient → no rendering softness) */
    .main-nav::before {
        content: 'MENU';
        display: flex;
        align-items: center;
        height: 56px;
        padding: 0 20px;
        background: #D72638;
        color: #ffffff;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 2px;
    }

    /* Top-level list — clean rows, no fancy borders */
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        margin: 0;
        gap: 0;
        list-style: none;
    }
    .nav-list > li {
        border-bottom: 1px solid #F0F1F5;
    }
    .nav-list > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 16px 20px;
        font-size: 15px;
        font-weight: 600;
        color: #1B1F3B;
        background: #ffffff;
        text-decoration: none;
        border: none;
        border-radius: 0;
        box-shadow: none;
        transition: background 0.2s ease, color 0.2s ease;
    }
    .nav-list > li > a::after { display: none; }

    /* Parent items with open submenus get the warm tint */
    .has-mega-menu:not(.collapsed) > .mega-trigger,
    .has-dropdown:not(.collapsed) > .dropdown-trigger {
        background: #FFF5F6;
        color: #A81E2C;
    }
    .nav-list > li > a:hover,
    .nav-list > li > a:active {
        background: #FFF5F6;
        color: #A81E2C;
        transform: none;
        box-shadow: none;
    }

    /* Chevron indicators */
    .nav-list .arrow {
        font-size: 12px;
        color: #D72638;
        transition: transform 0.3s ease;
    }
    /* Chevron points UP by default (submenus open); rotates DOWN when collapsed */
    .nav-list .arrow {
        transform: rotate(180deg);
    }
    .has-mega-menu.collapsed .arrow,
    .has-dropdown.collapsed .arrow {
        transform: rotate(0deg);
    }

    /* ===== Submenu (mega menu) — VISIBLE by default inside drawer =====
       Tap the parent to collapse if needed (.collapsed class added by JS). */
    .mega-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: #fafafa;
        padding: 0;
        margin: 0;
        max-height: 5000px;
        overflow: hidden;
        transition: max-height 0.4s ease;
        /* CRITICAL: kill the inherited desktop backdrop-filter — that's what
           was promoting this element to a GPU layer and softening all text. */
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        will-change: auto;
        filter: none;
    }
    /* Collapsed (only when user explicitly taps to close) */
    .has-mega-menu.collapsed .mega-menu {
        max-height: 0;
    }
    /* Disable desktop hover behavior on mobile */
    .has-mega-menu:hover .mega-menu {
        max-height: 5000px;
    }

    .mega-menu-header {
        padding: 12px 20px 10px;
        border-bottom: 1px solid #e5e7eb;
        background: transparent;
    }
    .mega-menu-header h3 {
        font-size: 12px;
        font-weight: 600;
        color: #5C6273;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin: 0;
    }
    .mega-menu-header p { display: none; }
    .mega-menu-footer { display: none; }

    .mega-menu-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 4px 0;
    }
    .mega-item {
        position: relative;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 20px;
        font-size: 14px;
        color: #1B1F3B;
        background: transparent;
        text-decoration: none;
        border: none;
        border-radius: 0;
        box-shadow: none;
        transform: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        filter: none;
        will-change: auto;
        isolation: auto;
        transition: background 0.2s ease;
    }
    /* Disable the desktop sliding gradient wash pseudo-element — it creates
       a separate stacking context that softens text rendering on mobile. */
    .mega-item::before {
        display: none !important;
        content: none !important;
    }
    .mega-item:hover,
    .mega-item:active {
        background: #FFF5F6;
        transform: none;
        box-shadow: none;
        border: none;
    }
    .mega-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        background: #FFF5F6;
        color: #A81E2C;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        box-shadow: none;
    }
    .mega-item:hover .mega-icon {
        background: #FECDD3;
        color: #A81E2C;
        transform: none;
        box-shadow: none;
    }
    .mega-text { flex: 1; min-width: 0; }
    .mega-text h4 {
        font-size: 14px;
        font-weight: 600;
        color: #1B1F3B;
        margin: 0 0 2px;
    }
    .mega-text span {
        font-size: 11px;
        color: #5C6273;
    }

    /* ===== Submenu (dropdown) — VISIBLE by default inside drawer ===== */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: #fafafa;
        padding: 4px 0;
        margin: 0;
        max-height: 600px;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        min-width: 0;
        list-style: none;
        /* Kill inherited desktop backdrop-filter (same root cause as .mega-menu) */
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        will-change: auto;
        filter: none;
    }
    .has-dropdown.collapsed .dropdown-menu {
        max-height: 0;
        padding: 0;
    }
    .dropdown-menu li { margin: 0; }
    .dropdown-menu li a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 20px;
        font-size: 14px;
        color: #1B1F3B;
        background: transparent;
        text-decoration: none;
        border-radius: 0;
        transform: none;
        transition: background 0.2s ease;
    }
    .dropdown-menu li a:hover,
    .dropdown-menu li a:active {
        background: #FFF5F6;
        color: #A81E2C;
        transform: none;
    }
    .dropdown-menu li a i {
        width: 20px;
        color: #D72638;
        font-size: 14px;
        text-align: center;
    }

    .header-cta { display: none; }
    .why-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .fleet-grid { grid-template-columns: repeat(2, 1fr); }
    .routes-grid { grid-template-columns: repeat(2, 1fr); }
    .how-grid { grid-template-columns: 1fr 1fr; }
    .blogs-grid { grid-template-columns: 1fr; }
    .cta-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-about { grid-column: 1 / -1; }
    .footer-link-grid { columns: 2; }
    .hero h1 { font-size: 32px; }
    .section-head h2 { font-size: 26px; }
}

@media (max-width: 560px) {
    .mega-menu-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 28px; }
    .fleet-grid { grid-template-columns: 1fr; }
    .routes-grid { grid-template-columns: 1fr; }
    .how-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-about { grid-column: auto; }
    .footer-link-grid { columns: 1; }
    .footer-phone-card { width: 100%; justify-content: center; }
    .cta-card { flex-direction: column; text-align: center; gap: 14px; }
    .footer-bottom .container { justify-content: center; text-align: center; }
    .hero-stats { gap: 18px; }
    .hero-stats strong { font-size: 22px; }

    .top-strip-inner {
        justify-content: center;
        text-align: center;
    }

    .top-contact a {
        margin-left: 10px;
    }
}

/* =====================================================================
   LANDING PAGE TEMPLATE (template-landing.php)
   Full-width, no card wrapper. Used by corporate / service pages.
   ===================================================================== */

.lp-hero {
    padding: 60px 0 50px;
}

.lp-hero-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #A81E2C;
    background: linear-gradient(135deg, #FFF5F6, #FECDD3);
    border: 1px solid rgba(215, 38, 56, 0.3);
    padding: 6px 14px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 14px;
}

.lp-hero .page-hero-title {
    font-size: 44px;
    line-height: 1.2;
    max-width: 960px;
    margin: 8px auto 14px;
}

.lp-hero .page-hero-sub {
    font-size: 17px;
    line-height: 1.6;
    max-width: 760px;
    margin: 0 auto 28px;
}

.lp-hero-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.lp-hero-cta .route-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.3s ease;
}

.lp-hero-cta .route-cta-btn.primary {
    background: linear-gradient(135deg, #D72638, #D72638, #A81E2C);
    color: #1B1F3B;
    box-shadow: 0 6px 16px rgba(215, 38, 56, 0.4);
}

.lp-hero-cta .route-cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(215, 38, 56, 0.55);
}

.lp-hero-cta .route-cta-btn.secondary {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

.lp-hero-cta .route-cta-btn.secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.5);
    color: #fff;
}

/* Main content area — full 1280px, no boxed-in card */
.lp-main {
    padding: 50px 0 30px;
    background: #ffffff;
}

.lp-article {
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

/* Visual rhythm: alternating section backgrounds via attribute styling.
   Each H2 + the content that follows it (until next H2) gets a card-like
   panel so the long page feels like discrete landing-page sections. */
.lp-article .outstation-single-content h2 {
    margin-top: 50px;
    padding-top: 8px;
}

.lp-article .outstation-single-content h2:first-of-type {
    margin-top: 0;
}

.lp-article .outstation-single-content > h2 + p,
.lp-article .outstation-single-content > h2 + p + p,
.lp-article .outstation-single-content > h2 + p + p + p,
.lp-article .outstation-single-content > h2 + ul,
.lp-article .outstation-single-content > h2 + ol {
    max-width: 1100px;
}

/* Responsive */
@media (max-width: 768px) {
    .lp-hero { padding: 40px 0 36px; }
    .lp-hero .page-hero-title { font-size: 30px; }
    .lp-hero .page-hero-sub { font-size: 15px; }
    .lp-hero-cta .route-cta-btn { padding: 10px 20px; font-size: 14px; }
    .lp-main { padding: 30px 0 20px; }
}

