/* ---------- 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);
}

#for-mobile {
    display: none;
}

/* 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;
}


/* ---------- 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;
}


/* ---------- Section ---------- */
.section {
    padding: 20px 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%;
}

/* 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;
}




/* 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;
}

/* ================= FOOTER BASE ================= */

.site-footer {
    background: #061b2d;
    padding: 50px 0 0;
    color: #cfe9ff;
}

/* Footer Layout */
.footer-top {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

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

.footer-text {
    margin-top: 14px;
}

/* Footer Columns */
.footer-columns {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.footer-col strong {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
}

/* ================= FOOTER LINKS ================= */

.site-footer ul {
    max-width: 240px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-footer li {
    margin-bottom: 8px;
    overflow: hidden;
}

/* Footer Link Styling */
.footer-links a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Max 2 lines */
    -webkit-box-orient: vertical;

    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;

    line-height: 1.4;
    max-width: 220px;

    color: var(--accent);
    font-size: 14px;
    text-decoration: none;
    transition: 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent-dark);
    text-decoration: underline;
}

/* ================= FOOTER BOTTOM ================= */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 18px;
    padding: 18px 0;
    text-align: center;
    color: #9fc7ff;
    font-size: 14px;
}

/* Floating Call Button Icon */
.call-icon {
    margin-right: 6px;
    margin-bottom: 6px;
    vertical-align: middle;
}