:root {
    --navy: #071b3a;
    --navy-2: #0d2c57;
    --gold: #f6c64f;
    --gold-2: #d99a1c;
    --charcoal: #18202b;
    --muted: #667085;
    --line: #e6eaf0;
    --light: #f4f7fb;
    --white: #ffffff;
    --success: #0c8f58;
    --radius: 8px;
    --shadow: 0 18px 45px rgba(7, 27, 58, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", "Open Sans", Arial, sans-serif;
    color: var(--charcoal);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.navbar-brand strong,
.footer-brand {
    font-family: "Poppins", "Montserrat", Arial, sans-serif;
    letter-spacing: 0;
}

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

img {
    max-width: 100%;
}

main {
    animation: pageFade 0.55s ease both;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    width: 100%;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.08s linear;
}

.site-header {
    background: var(--navy);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(7, 27, 58, 0.96);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(12px);
}

.navbar {
    min-height: 76px;
}

.navbar-brand {
    color: var(--white);
}

.navbar-brand:hover {
    color: var(--white);
}

.navbar-brand small {
    display: block;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.72rem;
    font-weight: 500;
}

.brand-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: var(--radius);
}

.logo-placeholder {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: var(--gold);
    color: var(--navy);
    font-weight: 800;
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.94rem;
    font-weight: 600;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

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

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
    filter: invert(1);
}

.btn {
    border-radius: var(--radius);
    font-weight: 700;
    letter-spacing: 0;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.42) 45%, transparent 70%);
    transform: translateX(-130%);
    transition: transform 0.65s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(7, 27, 58, 0.16);
}

.btn:hover::after {
    transform: translateX(130%);
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.btn-gold:hover {
    background: var(--gold-2);
    border-color: var(--gold-2);
    color: var(--navy);
}

.btn-outline-navy {
    color: var(--navy);
    border-color: var(--navy);
}

.btn-outline-navy:hover {
    background: var(--navy);
    color: var(--white);
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 86px 0 56px;
    background:
        linear-gradient(120deg, rgba(7, 27, 58, 0.98), rgba(13, 44, 87, 0.92)),
        url("../images/road-pattern.svg");
    background-size: cover;
    color: var(--white);
}

.hero-section h1,
.page-hero h1 {
    font-size: clamp(2.35rem, 5vw, 4.8rem);
    line-height: 1.05;
    font-weight: 800;
    margin: 14px 0 18px;
}

.hero-section .eyebrow,
.page-hero .eyebrow {
    animation: slideUp 0.55s ease 0.05s both;
}

.hero-section h1,
.page-hero h1 {
    animation: slideUp 0.62s ease 0.12s both;
}

.hero-copy,
.page-hero p {
    animation: slideUp 0.62s ease 0.2s both;
}

.hero-highlight,
.tagline-line,
.hero-section .btn {
    animation: slideUp 0.62s ease 0.28s both;
}

.hero-copy {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
    max-width: 660px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.76rem;
}

.eyebrow.dark {
    color: var(--gold-2);
}

.hero-highlight {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(246, 198, 79, 0.13);
    border: 1px solid rgba(246, 198, 79, 0.42);
    border-radius: var(--radius);
    color: var(--gold);
    font-weight: 800;
}

.tagline-line {
    margin: 16px 0 22px;
    color: rgba(255, 255, 255, 0.74);
    font-weight: 700;
}

.hero-visual {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    animation: heroFloat 6s ease-in-out infinite, slideUp 0.7s ease 0.24s both;
}

.hero-visual img {
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.22));
}

.section {
    padding: 72px 0;
}

.section.light,
.booking-strip {
    background: var(--light);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.section-heading.split {
    display: flex;
    align-items: end;
    justify-content: space-between;
    max-width: none;
    text-align: left;
    gap: 18px;
}

.section-heading h2,
.billing-note h2,
.cta-inner h2,
.content-body h2,
.side-panel h2,
.form-shell h2 {
    color: var(--navy);
    font-weight: 800;
    line-height: 1.15;
    margin: 8px 0 10px;
}

.section-heading p {
    color: var(--muted);
    margin: 0;
}

.form-shell,
.side-panel,
.info-card,
.route-card,
.service-card,
.vehicle-card,
.testimonial-card,
.step-card,
.blog-card,
.service-detail-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 34px rgba(7, 27, 58, 0.08);
}

.form-shell {
    padding: clamp(18px, 3vw, 32px);
}

.form-control,
.form-select {
    min-height: 48px;
    border-radius: var(--radius);
    border-color: #d7dee8;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--gold-2);
    box-shadow: 0 0 0 0.2rem rgba(246, 198, 79, 0.25);
}

.is-hidden {
    display: none !important;
}

.form-note,
.billing-inline,
.fare-note,
.billing-note {
    background: #fff9e8;
    border: 1px solid #f1d98e;
    border-radius: var(--radius);
    color: #5a4206;
}

.form-note {
    padding: 12px 14px;
}

.billing-inline,
.fare-note {
    padding: 16px;
}

.billing-note {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 22px;
    align-items: center;
    padding: clamp(20px, 4vw, 36px);
}

.route-card {
    position: relative;
    padding: 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.route-card:hover,
.service-card:hover,
.vehicle-card:hover,
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.route-card::before,
.service-card::before,
.vehicle-card::before,
.blog-card::before,
.service-detail-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-2));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.24s ease;
}

.route-card:hover::before,
.service-card:hover::before,
.vehicle-card:hover::before,
.blog-card:hover::before,
.service-detail-card:hover::before {
    transform: scaleX(1);
}

.vehicle-card,
.service-detail-card,
.blog-card,
.route-card,
.service-card {
    position: relative;
}

.route-card h2,
.route-card h3,
.service-card h3,
.vehicle-card h2,
.vehicle-card h3,
.service-detail-card h2,
.blog-card h2 {
    font-size: 1.18rem;
    color: var(--navy);
    font-weight: 800;
}

.route-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.route-card strong {
    display: inline-block;
    color: var(--gold-2);
    margin-top: 4px;
}

.vehicle-card,
.service-detail-card,
.blog-card {
    overflow: hidden;
}

.vehicle-card img,
.service-detail-card img,
.blog-card img,
.gallery-card img,
.detail-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: var(--light);
}

.vehicle-type,
.blog-card span,
.blog-preview span,
.gallery-card span {
    display: inline-block;
    color: var(--gold-2);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.service-card {
    padding: 24px;
}

.service-card i,
.service-detail-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--navy);
    color: var(--gold);
    border-radius: var(--radius);
    margin-bottom: 14px;
    font-size: 1.25rem;
}

.service-card a,
.blog-card a {
    color: var(--navy);
    font-weight: 800;
}

.safety-band,
.cta-section {
    background: var(--navy);
    color: var(--white);
}

.safety-band h2,
.cta-inner h2 {
    color: var(--white);
}

.safety-band p,
.cta-inner p {
    color: rgba(255, 255, 255, 0.76);
}

.safety-list {
    display: grid;
    gap: 12px;
}

.safety-list div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    font-weight: 700;
}

.safety-list i {
    color: var(--gold);
}

.light-list div {
    background: var(--white);
    color: var(--charcoal);
    border-color: var(--line);
}

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

.feature-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 64px;
    padding: 14px 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-weight: 800;
    color: var(--navy);
}

.feature-pill i {
    color: var(--success);
}

.step-card {
    height: 100%;
    padding: 24px;
}

.step-card span {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    font-weight: 900;
}

.step-card h3 {
    font-size: 1.05rem;
    color: var(--navy);
    margin-top: 16px;
}

.testimonial-card {
    padding: 24px;
}

.stars {
    color: var(--gold-2);
    margin-bottom: 10px;
}

.blog-list {
    display: grid;
    gap: 12px;
}

.blog-preview {
    display: block;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.blog-preview strong {
    display: block;
    color: var(--navy);
    font-size: 1.05rem;
}

.blog-preview small {
    display: block;
    color: var(--muted);
}

.cta-section {
    padding: 64px 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-footer {
    background: #050f22;
    color: rgba(255, 255, 255, 0.74);
    padding: 58px 0 22px;
}

.site-footer h3 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 14px;
}

.site-footer a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.site-footer a:hover {
    color: var(--gold);
}

.footer-brand {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 800;
}

.social {
    display: inline-grid !important;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 34px;
    padding-top: 18px;
    font-size: 0.9rem;
}

.sticky-actions {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1040;
    display: grid;
    gap: 10px;
}

.sticky-actions a {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    color: var(--white);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
    font-size: 1.25rem;
    animation: contactPulse 2.5s ease-in-out infinite;
}

.sticky-call {
    background: var(--navy-2);
}

.sticky-whatsapp {
    background: #1da851;
}

.page-hero {
    padding: 72px 0 66px;
    background:
        linear-gradient(120deg, rgba(7, 27, 58, 0.97), rgba(13, 44, 87, 0.9)),
        url("../images/road-pattern.svg");
    color: var(--white);
}

.page-hero p {
    max-width: 780px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.08rem;
}

.rounded-visual,
.detail-image {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.content-body {
    font-size: 1.02rem;
    color: #303846;
}

.content-body h2 {
    margin-top: 24px;
}

.side-panel {
    padding: 24px;
}

.route-summary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.route-summary div {
    padding: 16px;
    background: var(--light);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.route-summary span {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
}

.route-summary strong {
    color: var(--navy);
}

.sticky-panel {
    position: sticky;
    top: 96px;
}

.check-list,
.clean-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li,
.clean-list li {
    margin-bottom: 10px;
}

.check-list li::before {
    content: "✓";
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    margin-right: 8px;
    border-radius: 50%;
    background: var(--success);
    color: var(--white);
    font-size: 0.78rem;
}

.gallery-card {
    margin: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 12px 34px rgba(7, 27, 58, 0.08);
}

.gallery-card figcaption {
    padding: 18px;
}

.gallery-card strong {
    display: block;
    color: var(--navy);
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-pills span {
    padding: 8px 12px;
    background: var(--light);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--navy);
    font-weight: 700;
}

.narrow {
    max-width: 900px;
}

.map-box iframe {
    width: 100%;
    min-height: 260px;
    border: 0;
    border-radius: var(--radius);
}

.map-placeholder {
    min-height: 260px;
    display: grid;
    place-items: center;
    border: 1px dashed #b9c4d2;
    border-radius: var(--radius);
    background: var(--light);
    color: var(--muted);
}

.accordion-item {
    border-color: var(--line);
}

.accordion-button {
    font-weight: 800;
    color: var(--navy);
}

.accordion-button:not(.collapsed) {
    background: #fff9e8;
    color: var(--navy);
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.58s ease var(--reveal-delay, 0ms), transform 0.58s ease var(--reveal-delay, 0ms), box-shadow 0.22s ease, border-color 0.22s ease;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pageFade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes contactPulse {
    0%, 100% {
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
    }
    50% {
        box-shadow: 0 14px 30px rgba(246, 198, 79, 0.28);
    }
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 1199px) {
    .navbar-collapse {
        padding-bottom: 16px;
    }
}

@media (max-width: 991px) {
    .hero-section {
        padding-top: 60px;
    }

    .billing-note,
    .cta-inner {
        grid-template-columns: 1fr;
        display: block;
    }

    .cta-inner .d-grid,
    .cta-inner .d-sm-flex {
        margin-top: 18px;
    }

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

    .section-heading.split {
        align-items: start;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .section {
        padding: 54px 0;
}

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

    .reveal-on-scroll {
        opacity: 1;
        transform: none;
    }
}

    .hero-section h1,
    .page-hero h1 {
        font-size: 2.35rem;
    }

    .route-summary,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .sticky-actions {
        right: 12px;
        bottom: 12px;
    }

    .sticky-actions a {
        width: 48px;
        height: 48px;
    }
}
