/* ---------- 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 {
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px
}

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

.brand img {
    height: 72px
}

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

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

nav {
    display: flex;
    gap: 16px;
    align-items: center
}

.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;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    /* background-image: linear-gradient(180deg, rgba(10, 37, 64, 0.18), rgba(10, 37, 64, 0.04)), url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=1600&auto=format&fit=crop'); */
    background-size: cover;
    background-position: center;
    padding: 48px 0 80px;
    color: #fff;
}

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

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

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

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 on hero) ---------- */
.search-card {
    width: 420px;
    min-width: 300px;
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 18px;
    color: var(--navy);
    align-self: center;
}

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

.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;
}

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

.passenger-field label {
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
}

.counter {
    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)
}

/* ---------- Destinations ---------- */
.section {
    padding: 56px 0
}

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

.carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: min(300px, 100%);
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
}

.card-route {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    scroll-snap-align: center
}

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

.card-route .content {
    padding: 12px
}

.route-title {
    font-weight: 700;
    margin-bottom: 6px
}

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

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

.testimonial {
    background: #fff;
    padding: 18px;
    border-radius: 12px;
    box-shadow: var(--shadow)
}

.rating {
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 10px
}

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

/* ---------- Responsive ---------- */
@media (max-width:1000px) {
    .hero-inner {
        flex-direction: column-reverse;
        align-items: stretch
    }

    .search-card {
        width: 100%
    }

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

    .grid-3 {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width:640px) {
    h1 {
        font-size: 22px
    }

    .testimonials {
        grid-template-columns: 1fr
    }

    .grid-3 {
        grid-template-columns: 1fr
    }

    .topbar {
        padding: 0 12px
    }

    .brand img {
        height: 30px
    }
}

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

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

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



/* Contact Info Styling */
.contact-info {
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    margin-top: 0;
    font-size: 24px;
}

.contact-info p {
    margin-bottom: 20px;
}

.info-item {
    margin-bottom: 14px;
    font-size: 15px;
}

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

.contact-info a {
    /* color: #fff; */
    text-decoration: underline;
}

.call-now-btn {
    margin-top: 16px;
    background: var(--accent);
}

.call-now-btn:hover {
    background: var(--accent-dark);
}

.call-now-hero {
    display: flex;
    align-items: center;
    gap: 18px;
    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;
}

.call-now-hero-transparent {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 20px 0 26px;
    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;
}

.call-left {
    position: relative;
}

.call-icon {
    font-size: 34px;
    background: rgba(255, 255, 255, 0.25);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* Pulse animation */
.pulse-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.7);
        opacity: 0.8;
    }

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

.call-text {
    display: flex;
    flex-direction: column;
}

.call-title {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    opacity: 0.95;
}

.call-number {
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    margin: 2px 0;
}

.call-number:hover {
    text-decoration: underline;
}

.call-numbers {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    /* mobile safe */
}

.number-separator {
    font-size: 20px;
    font-weight: 700;
    opacity: 0.8;
}

.call-number {
    white-space: nowrap;
}

.call-desc {
    font-size: 13px;
    opacity: 0.95;
}

/* Mobile dominance */
@media (max-width: 768px) {

    .call-now-hero,
    .call-now-hero-transparent {
        transform: scale(1.08);
        padding: 16px;
    }

    .call-number {
        font-size: 24px;
    }
}