/* ---------- Reset & Base ---------- */
:root {
    --accent: #f15a24;
    --accent-dark: #d04908;
    --navy: #0a2540;
    --muted: #6b7280;
    --card: #ffffff;
    --bg: #f9fafb;
    --max-width: 1180px;
    --radius: 12px;
    --shadow: 0 10px 30px rgba(10, 37, 64, 0.08);
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    background: var(--bg);
    color: #102a43;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
    font-size: 16px;
}

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

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px
}

/* ---------- Header ---------- */
header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 120;
    border-bottom: 1px solid rgba(10, 37, 64, 0.06);
    backdrop-filter: blur(4px);
}

/* Topbar container */
.topbar {
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

/* Brand */
.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand img {
    height: 72px;
}

.tag {
    font-size: 13px;
    color: var(--muted);
}

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--navy);
}

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

.cta-btn {
    background: var(--accent);
    color: #fff;
    padding: 9px 14px;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(240, 90, 36, 0.14);
    border: 0;
    cursor: pointer;
    text-decoration: none;
}



/* ---------- Hero ---------- */
.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 48px 20px 80px;
    color: #fff;
}

.hero-inner {
    display: flex;
    gap: 36px;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 28px 0;
}

.hero-right {
    flex: 1;
    max-width: 680px;
}

h1.hero-heading {
    font-size: 32px;
    margin: 0 0 12px;
    color: #fff;
    line-height: 1.05;
}

h3.hero-subheading {
    font-size: 22px;
    margin: 0 0 10px;
}

p.lead {
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 18px;
}

.trust-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.trust-item {
    background: linear-gradient(135deg, #ff9800, #ff5722);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

/* ---------- Booking Form Card ---------- */
.search-card {
    width: 420px;
    min-width: 300px;
    max-width: 100%;
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 18px;
    color: var(--navy);
    align-self: center;
    margin-bottom: 24px;
}

.form-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.form-row .field {
    flex: 1;
}

label {
    font-size: 13px;
    color: var(--muted);
    display: block;
    margin-bottom: 6px;
}

input[type="text"],
input[type="date"],
input[type="tel"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #e6e9ee;
    font-size: 14px;
    box-sizing: border-box;
}

.passenger-row {
    display: flex;
    gap: 16px;
    flex-wrap: nowrap;
}

.passenger-field {
    flex: 1;
    /* Each field takes equal space */
    min-width: 100px;
    /* Optional: ensures counters don’t shrink too much */
}


.counter {
    width: 100%;
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    width: 120px;
    justify-content: space-between;
}

.counter button {
    width: 36px;
    height: 36px;
    border: none;
    background: #f5f5f5;
    font-size: 18px;
    cursor: pointer;
}

.counter input {
    width: 40px;
    text-align: center;
    border: none;
    font-size: 16px;
    background: transparent;
}

.toggle {
    display: flex;
    gap: 8px;
    background: #f2f6fb;
    padding: 6px;
    border-radius: 999px;
    width: 100%;
    margin-bottom: 10px;
}

.toggle button {
    flex: 1;
    border: 0;
    padding: 8px 12px;
    background: transparent;
    cursor: pointer;
    border-radius: 8px;
}

.toggle button.active {
    background: linear-gradient(180deg, var(--accent), var(--accent-dark));
    color: #fff;
}

.primary-btn {
    display: inline-block;
    width: 100%;
    background: var(--accent);
    color: #fff;
    padding: 10px 12px;
    border-radius: 8px;
    border: 0;
    font-weight: 700;
    cursor: pointer;
    margin-top: 6px;
}

.small {
    font-size: 13px;
    color: var(--muted);
}

.return-field {
    display: none;
}

.captcha-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.captcha-img {
    border-radius: var(--radius);
}

.form-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 6px;
}

.form-footer {
    margin-top: 10px;
    font-size: 13px;
}

.form-footer a {
    text-decoration: underline;
}

/* ---------- Hero Call Now ---------- */

.call-now-hero {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    align-items: center;
    margin: 20px 0 26px;
    padding: 18px 22px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ff9800, #ff5722);
    color: #fff;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    transform: scale(1.05);
    position: relative;
    z-index: 3;
    flex-wrap: wrap;
}


.call-now-hero-transparent {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    align-items: center;
    padding: 18px 22px;
    border-radius: 16px;
    background: transparent;
    color: #fff;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    transform: scale(1.05);
    position: relative;
    z-index: 3;
    flex-wrap: wrap;
}

.call-left {
    position: relative;
}

.pulse-ring {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 90, 36, 0.2);
    position: absolute;
    animation: pulse 1.5s infinite;
    top: 0;
    left: 0;
}

.call-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--card);
}

.call-text {
    flex: 1;
}

.call-title {
    font-weight: 700;
    font-size: 16px;
}

.call-numbers {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.call-number {
    font-weight: 600;
    color: var(--card);
    text-decoration: none;
}

.number-separator {
    margin: 0 4px;
    color: var(--muted);
}

.call-desc {
    font-size: 13px;
    color: var(--muted);
}

/* ---------- Pulse Animation ---------- */
@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* ---------- Section ---------- */
.section {
    padding: 56px 20px;
    /* Adjusted for mobile */
}

.section h2 {
    font-size: 22px;
    margin: 0 0 12px;
}

.section .description {
    margin: 6px 0 18px;
}

/* ---------- Carousel ---------- */
.carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: min(280px, 100%);
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
}

.carousel::-webkit-scrollbar {
    height: 6px;
}

.carousel::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

/* ---------- Card ---------- */
.card-route {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
}

.card-route .image {
    height: 160px;
    background-size: cover;
    background-position: center;
}

.card-route .content {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.route-title {
    font-weight: 700;
    font-size: 16px;
}

.route-sub {
    color: var(--muted);
    font-size: 13px;
}

.cta-wrapper {
    margin-top: 8px;
}

.pill {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
}

/* ---------- Testimonials Section ---------- */
.testimonials-section {
    padding-top: 8px;
}

.testimonials-section .description {
    margin: 6px 0 18px;
}

/* Testimonials Grid */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

/* Testimonial Card */
.testimonial {
    background: #fff;
    padding: 18px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Header: Avatar + Info */
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #eaf7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--accent);
    flex-shrink: 0;
}

.testimonial-info .testimonial-name {
    font-weight: 700;
}

.testimonial-message {
    margin-top: 4px;
}

/* Rating */
.rating {
    color: var(--accent);
    font-weight: 700;
}

/* ---------- Info / Quick links / Footer ---------- */
.grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px
}

footer {
    background: #071428;
    color: #e6eef8;
    padding: 36px 0;
    margin-top: 28px
}

.footer a {
    color: #cfe9ff
}


/* small helpers */
.muted {
    color: var(--muted)
}

.pill {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: #fff;
    font-weight: 700;
    color: var(--navy)
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

.floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--accent);
    color: #fff;
    padding: 14px 22px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: 0.3s ease;
    z-index: 9999;
}

.floating-admin-btn {
    bottom: 100px;
}

.floating-btn:hover {
    background: var(--accent-dark);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

#captcha-img,
#captcha {
    width: 50%;
}


.hero.header-background {
    position: relative;
    color: #fff;
    /* default text color */
}

.hero.header-background::before {
    content: "";
    position: absolute;
    inset: 0;
    /* top:0; right:0; bottom:0; left:0 */
    background: rgba(0, 0, 0, 0.5);
    /* dark overlay, 50% opacity */
    /* For light overlay, use rgba(255, 255, 255, 0.3) */
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    /* make text and form appear above overlay */
}

.hero.header-background::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    /* optional: blur background slightly */
    z-index: 1;
}

/* Container Grid */
.contact-section {
    padding: 60px 20px;
    background: #f9f9f9;
    border-radius: 12px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    align-items: start;
}

.contact-grid-page {
    display: grid;
    grid-template-columns: 400px 1fr;
    /* form | content */
    gap: 32px;
    align-items: start;
    /* aligns top */
}

.page-content {
    width: 100%;
}


/* Form Styling */
.contact-form-wrapper {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h2 {
    margin-top: 0;
    font-size: 28px;
    color: #222;
}

.contact-form-wrapper p {
    margin-bottom: 20px;
    color: #555;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.form-group label {
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 5px rgba(30, 144, 255, 0.3);
}

.cta-btn {
    display: inline-block;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s;
    border: none;
}



.bsd-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 37, 64, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.bsd-popup {
    background: var(--card);
    max-width: 920px;
    width: 95%;
    display: flex;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
}

.bsd-close {
    position: absolute;
    right: 14px;
    top: 10px;
    background: transparent;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: var(--accent);
}

.bsd-popup-left {
    width: 40%;
}

.bsd-popup-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bsd-popup-right {
    width: 60%;
    padding: 36px;
}

.bsd-popup-right h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--navy);
}

.bsd-popup-right h2 span {
    color: var(--accent);
}

.sub-text {
    color: var(--muted);
    margin-bottom: 26px;
    font-size: 15px;
}

/* Offer box */
.offer-box {
    display: flex;
    gap: 18px;
    align-items: center;
    border: 2px dashed rgba(241, 90, 36, 0.25);
    padding: 22px;
    border-radius: var(--radius);
    margin-bottom: 26px;
}

/* Call section */
.call-box {
    background: rgba(241, 90, 36, 0.08);
    padding: 20px;
    border-radius: var(--radius);
    flex: 1;
    text-align: center;
}

.call-box p {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 6px;
}

.call-box a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    /* 👈 PREVENT BREAK */
    font-size: 22px;
    font-weight: 800;
    color: var(--accent-dark);
    text-decoration: none;
    line-height: 1;
}

.call-box a:hover {
    color: var(--accent);
}

/* OR badge */
.or-badge {
    background: var(--accent);
    color: #fff;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

/* Coupon */
.coupon-box {
    background: var(--card);
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid rgba(241, 90, 36, 0.3);
}

.coupon-box p {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 6px;
}

.coupon {
    background: var(--accent);
    color: #fff;
    padding: 10px 18px;
    font-weight: 800;
    border-radius: 8px;
    letter-spacing: 1px;
    display: inline-block;
}

/* Features */
.features {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--navy);
}

.features span::before {
    content: "✔ ";
    color: var(--accent);
    font-weight: 700;
}



.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.phone-icon {
    font-size: 18px;
}

.phone-text {
    letter-spacing: 0.5px;
}


/* About Section */
.about h2 {
    margin-bottom: 12px;
}

.about .muted {
    color: var(--muted);
}

.about .benefits {
    margin-top: 12px;
    color: var(--muted);
    list-style: disc;
    padding-left: 18px;
}

/* Contact Section */
.contact-info {
    background: var(--card);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-info .section-title {
    margin-bottom: 6px;
}

.contact-info .section-subtitle {
    margin-bottom: 12px;
    color: var(--muted);
}

.contact-info .info-item {
    margin-bottom: 10px;
}

.contact-info .info-item span {
    font-weight: 600;
}

.contact-info .cta-btn.call-now-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 20px;
    background-color: var(--accent);
    color: #fff;
    border-radius: var(--radius);
    text-decoration: none;
}