:root {
    --ink: #14213d;
    --muted: #5f6878;
    --line: #e6e9ef;
    --paper: #ffffff;
    --soft: #f5f7fb;
    --brand: #f28c28;
    --brand-dark: #c46613;
    --green: #1f7a5c;
    --deep: #101828;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

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

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

.btn {
    border-radius: 6px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: var(--brand);
    border-color: var(--brand);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
}

.btn-dark {
    background: var(--ink);
    border-color: var(--ink);
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 20;
    background: var(--deep);
    box-shadow: 0 10px 26px rgba(16, 24, 40, .12);
}

.inner-header {
    background: var(--deep);
}

.navbar {
    padding: 18px 0;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    padding: 0;
}

.navbar-brand img {
    width: auto;
    height: 54px;
    object-fit: contain;
}

.navbar .nav-link {
    color: rgba(255, 255, 255, .82);
    font-weight: 700;
    padding: 8px 14px;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #fff;
}

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

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hero {
    min-height: 760px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.08);
    animation: heroImageScroll 24s linear infinite;
}

.hero-bg:nth-child(1) {
    animation-delay: 0s;
}

.hero-bg:nth-child(2) {
    animation-delay: 8s;
}

.hero-bg:nth-child(3) {
    animation-delay: 16s;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(16, 24, 40, .86), rgba(16, 24, 40, .52), rgba(31, 122, 92, .28));
}

@keyframes heroImageScroll {
    0% {
        opacity: 0;
        transform: scale(1.08) translateX(0);
    }

    5%,
    30% {
        opacity: 1;
    }

    38%,
    100% {
        opacity: 0;
        transform: scale(1.08) translateX(-3%);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .52fr);
    gap: 36px;
    align-items: end;
    padding-top: 96px;
}

.hero-copy {
    color: #fff;
    max-width: 760px;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--brand);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
    margin: 0;
    font-size: clamp(3rem, 7.6vw, 6.1rem);
    line-height: .92;
    font-weight: 900;
    letter-spacing: 0;
}

.hero h1 {
    color: #fff;
    text-shadow: 0 8px 28px rgba(0, 0, 0, .35);
}

.hero .lead {
    max-width: 680px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, .9);
    font-size: 1.22rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.booking-panel,
.contact-card,
.contact-form,
.enquiry-box,
.fleet-card,
.service-card,
.tour-card,
.value-grid article {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.booking-panel {
    padding: 28px;
    color: #fff;
    border-color: rgba(255, 255, 255, .28);
    background: rgba(16, 24, 40, .36);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .24);
    backdrop-filter: blur(20px);
}

.booking-panel h2 {
    color: #fff;
}

.booking-panel p {
    color: rgba(255, 255, 255, .92);
}

.booking-panel h2,
.contact-card h2,
.enquiry-box h2,
.fleet-card h3,
.service-card h3,
.tour-card h2,
.value-grid h3 {
    margin: 0 0 10px;
    font-weight: 850;
}

.booking-panel a,
.contact-card a,
.contact-card p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 14px 0 0;
    color: var(--ink);
    font-weight: 800;
    overflow-wrap: anywhere;
}

.booking-panel i,
.contact-card i {
    color: var(--green);
}

.booking-panel a {
    color: #fff;
}

.booking-panel i {
    color: var(--brand);
}

.section {
    padding: 92px 0;
}

.muted {
    background: var(--soft);
}

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

.section-intro {
    max-width: 920px;
    margin: 18px auto 0;
    color: #7786a0;
    font-size: 1.05rem;
    line-height: 1.65;
}

.section-heading h2,
.split-copy h2,
.fleet-copy h2,
.two-column h2 {
    margin: 0;
    color: #102a4d;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.55rem, 5vw, 4.55rem);
    line-height: 1.06;
    font-weight: 900;
}

.about-preview .eyebrow,
.section-heading .eyebrow,
.connect-section .eyebrow,
.page-hero .eyebrow {
    color: #e43a3a;
    font-family: "Brush Script MT", "Segoe Script", cursive;
    font-size: clamp(1.9rem, 3.2vw, 2.55rem);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1;
    text-transform: none;
}

.section-heading .package-script-label {
    color: #e43a3a;
    font-family: "Brush Script MT", "Segoe Script", cursive;
    font-size: clamp(1.8rem, 3vw, 2.35rem);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1;
    text-transform: none;
}

.section-subtitle {
    margin: 4px 0 8px;
    color: #102a4d;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.45rem, 2.4vw, 2.1rem);
    line-height: 1.45;
    font-weight: 900;
}

.service-grid,
.package-grid,
.value-grid,
.cards-3 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.service-card {
    padding: 28px;
    min-height: 250px;
}

.service-card i,
.value-grid i,
.service-list i {
    color: var(--brand);
    font-size: 2rem;
}

.service-card p,
.tour-card p,
.package-card p,
.value-grid p,
.fleet-card p,
.split-copy p,
.two-column p,
.enquiry-box p {
    color: var(--muted);
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 620px;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-copy {
    padding: 84px clamp(24px, 6vw, 96px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 24px 0 30px;
}

.check-list span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.check-list i {
    color: var(--green);
}

.package-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.package-card {
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    border: 1px solid var(--line);
}

.package-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.package-card div {
    padding: 24px;
}

.section-action {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.about-preview .two-column,
.about-preview.two-column {
    align-items: stretch;
}

.about-preview .two-column > div:first-child {
    display: flex;
}

.about-preview .two-column > div:last-child {
    min-height: 540px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-preview .two-column > div:last-child p {
    line-height: 1.75;
}

.about-preview h4 {
    margin: 0 0 22px;
    color: var(--green);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    font-weight: 900;
}

.about-preview .btn {
    align-self: flex-start;
}

.about-home-image {
    height: 540px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(20, 33, 61, .14);
}

.counter-section {
    position: relative;
    overflow: hidden;
    padding: 24px 0;
    color: #fff;
}

.counter-bg,
.counter-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.counter-bg {
    object-fit: cover;
}

.counter-overlay {
    background: rgba(20, 33, 61, .58);
}

.counter-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    text-align: center;
}

.counter-grid article {
    display: grid;
    justify-items: center;
}

.counter-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 10px;
    border-radius: 6px;
    background: #df3737;
    color: #fff;
    font-size: 1.18rem;
}

.counter-number {
    display: block;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1;
    font-weight: 900;
}

.counter-grid p {
    margin: 6px 0 0;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(.92rem, 1.6vw, 1.25rem);
    font-weight: 900;
}

.destination-grid,
.testimonial-grid {
    display: grid;
    gap: 22px;
}

.destination-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.destination-grid article {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 34px rgba(16, 42, 77, .08);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.destination-grid article:hover {
    transform: translateY(-10px);
    border-color: rgba(242, 140, 40, .42);
    box-shadow: 0 28px 70px rgba(16, 42, 77, .18);
}

.destination-grid article:hover img {
    transform: scale(1.06);
}

.destination-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .35s ease;
}

.destination-grid div {
    position: relative;
    padding: 24px;
}

.destination-grid span {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--brand);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.destination-grid h3 {
    margin: 0 0 8px;
    color: #102a4d;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    font-weight: 900;
}

.destination-grid h3::after {
    content: "";
    display: block;
    width: 42px;
    height: 3px;
    margin-top: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand), var(--green));
}

.destination-grid p {
    margin: 0;
    color: var(--muted);
}

.outstate-trip-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 22px;
}

.outstate-trip-card {
    position: relative;
    min-height: 270px;
    display: grid;
    align-content: end;
    overflow: hidden;
    border-radius: 8px;
    isolation: isolate;
    box-shadow: 0 18px 44px rgba(20, 33, 61, .1);
}

.outstate-trip-card h3 {
    margin: 0 0 10px;
    color: inherit;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.65rem, 2.6vw, 2.45rem);
    line-height: 1.08;
    font-weight: 900;
}

.outstate-trip-card p {
    max-width: 620px;
    margin: 0;
    color: inherit;
    font-weight: 700;
}

.outstate-trip-card span {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--brand);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.outstate-trip-feature {
    grid-template-columns: 1fr auto;
    gap: 22px;
    align-items: center;
    padding: 30px;
    background:
        linear-gradient(135deg, rgba(16, 24, 40, .92), rgba(31, 122, 92, .82)),
        url("../img/carousel-2.jpg") center/cover;
    color: #fff;
}

.outstate-trip-feature::before {
    position: absolute;
    content: "";
    inset: 14px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 6px;
    pointer-events: none;
    z-index: -1;
}

.outstate-trip-feature > * {
    position: relative;
}

.outstate-trip-alt {
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: end;
    padding: 30px;
    border: 1px solid rgba(16, 42, 77, .1);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(255, 248, 240, .92)),
        url("../img/waynad.png") center/cover;
    color: #102a4d;
}

.outstate-trip-alt::before {
    position: absolute;
    content: "";
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .7));
    z-index: -1;
}

.outstate-trip-alt i {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 8px;
    background: var(--brand);
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 14px 30px rgba(242, 140, 40, .28);
}

.most-services-section {
    background: var(--soft);
}

.most-services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.most-services-grid article {
    position: relative;
    min-height: 150px;
    display: grid;
    align-content: start;
    padding: 26px;
    overflow: hidden;
    border: 1px solid rgba(16, 42, 77, .1);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(16, 42, 77, .055);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.most-services-grid article::before {
    position: absolute;
    content: "";
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--green));
    opacity: .9;
}

.most-services-grid article:hover {
    transform: translateY(-4px);
    border-color: rgba(31, 122, 92, .2);
    box-shadow: 0 22px 46px rgba(16, 42, 77, .095);
}

.most-services-grid i {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(242, 140, 40, .1);
    color: var(--brand);
    font-size: 1.55rem;
    line-height: 1;
}

.most-services-grid h3 {
    margin: 22px 0 0;
    color: #102a4d;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.28rem, 1.8vw, 1.75rem);
    line-height: 1.18;
    font-weight: 900;
}

.seo-section {
    background: #fff;
}

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

.seo-content-grid article {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, #fff, #f8fafc);
}

.seo-content-grid h3 {
    margin: 0 0 12px;
    color: #102a4d;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.32rem, 2vw, 1.85rem);
    line-height: 1.2;
    font-weight: 900;
}

.seo-content-grid p {
    margin: 0;
    color: var(--muted);
}

.home-fleet-section {
    position: relative;
    overflow: hidden;
    padding: 44px 0 40px;
    background:
        linear-gradient(180deg, #fff 0%, #fff 54%, rgba(245, 247, 251, .72) 100%);
}

.home-fleet-section::before {
    position: absolute;
    content: "";
    inset: 0 0 auto;
    height: 1px;
    background: var(--line);
}

.home-fleet-section .section-heading {
    margin-bottom: 28px;
}

.home-fleet-section .section-intro {
    max-width: 650px;
    margin-top: 12px;
    font-size: .95rem;
    line-height: 1.55;
}

.travel-welcome-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) auto auto;
    gap: 24px;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto 34px;
    padding: 26px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(16, 24, 40, .94), rgba(31, 122, 92, .86)),
        url("../img/carousel-2.jpg") center/cover;
    color: #fff;
    box-shadow: 0 24px 70px rgba(16, 24, 40, .18);
}

.travel-welcome-card::before {
    position: absolute;
    content: "";
    inset: 12px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 6px;
    pointer-events: none;
}

.travel-welcome-copy,
.travel-welcome-points,
.travel-welcome-card .btn {
    position: relative;
}

.travel-welcome-copy span {
    display: inline-flex;
    margin-bottom: 6px;
    color: var(--brand);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.travel-welcome-copy h2 {
    margin: 0 0 8px;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 900;
}

.travel-welcome-copy p {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, .86);
    font-weight: 700;
}

.travel-welcome-points {
    display: grid;
    gap: 10px;
}

.travel-welcome-points div {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 150px;
    font-size: .95rem;
}

.travel-welcome-points i {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .14);
    color: var(--brand);
}

.home-fleet-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    max-width: 980px;
    margin: 0 auto;
}

.home-fleet-card {
    overflow: hidden;
    border: 1px solid rgba(16, 42, 77, .1);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(20, 33, 61, .09);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.home-fleet-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(242, 140, 40, .32);
    box-shadow: 0 28px 70px rgba(20, 33, 61, .18);
}

.home-fleet-media {
    height: clamp(240px, 26vw, 370px);
    padding: 12px;
    background-color: #fff;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.home-fleet-card:nth-child(1) .home-fleet-media {
    background-image: url("../1.png");
}

.home-fleet-card:nth-child(2) .home-fleet-media {
    background-image: url("../2.png");
}

.home-fleet-card:nth-child(3) .home-fleet-media {
    background-image: url("../3.png");
}

.home-fleet-card:nth-child(4) .home-fleet-media {
    background-image: url("../4.png");
}

.home-fleet-media img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: none;
    transition: opacity .45s ease, transform .45s ease;
}

.home-fleet-media img.loaded {
    opacity: 0;
    transform: translateY(0);
}

.home-fleet-content {
    display: grid;
    gap: 10px;
    padding: 0 12px 12px;
}

.home-fleet-content > div:first-child {
    display: none;
}

.home-fleet-content h3 {
    margin: 0 0 8px;
    color: #102a4d;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.38rem, 2.1vw, 1.8rem);
    line-height: 1.12;
    font-weight: 900;
}

.home-fleet-content p {
    margin: 0;
    color: var(--muted);
}

.fleet-specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 0;
}

.fleet-specs div {
    padding: 7px 10px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #f8fafc;
}

.fleet-specs dt {
    color: #7786a0;
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.fleet-specs dd {
    margin: 3px 0 0;
    color: var(--ink);
    font-weight: 900;
}

.fleet-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.fleet-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border: 1px solid rgba(31, 122, 92, .22);
    border-radius: 999px;
    background: rgba(31, 122, 92, .08);
    color: var(--green);
    font-size: .78rem;
    font-weight: 900;
}

.fleet-badges span:first-child {
    border-color: rgba(242, 140, 40, .28);
    background: rgba(242, 140, 40, .11);
    color: var(--brand-dark);
}

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

.reveal-ready .reveal-on-scroll {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s ease, transform .7s ease;
}

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

@media (prefers-reduced-motion: reduce) {
    .home-fleet-card,
    .home-fleet-media img,
    .reveal-on-scroll {
        transition: none;
    }

    .home-fleet-card:hover,
    .reveal-on-scroll {
        transform: none;
    }
}

.testimonials-section {
    background: #fff;
}

.testimonials-section .section-heading {
    max-width: 960px;
    margin-bottom: 42px;
}

.testimonials-section .section-heading .eyebrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #e43a3a;
    font-family: "Brush Script MT", "Segoe Script", cursive;
    font-size: clamp(2rem, 4vw, 3.15rem);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1;
    text-transform: none;
}

.testimonials-section .section-heading .eyebrow::before,
.testimonials-section .section-heading .eyebrow::after {
    display: none;
}

.testimonials-section .section-heading h2 {
    color: #102a4d;
}

.review-form {
    max-width: 1040px;
    margin: 30px auto 0;
    padding: clamp(14px, 1.8vw, 20px);
    border: 1px solid rgba(16, 42, 77, .16);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(245, 247, 251, .72), rgba(255, 255, 255, .96)),
        #fff;
    box-shadow: 0 18px 50px rgba(20, 33, 61, .08);
}

.review-form-head {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 12px;
}

.review-form-icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 8px;
    background: rgba(242, 140, 40, .12);
    color: var(--brand);
    font-size: 1.05rem;
}

.review-form h3 {
    margin: 0;
    color: #102a4d;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.45rem, 2.5vw, 2rem);
    line-height: 1.1;
    font-weight: 900;
}

.review-form-head p {
    max-width: 620px;
    margin: 2px 0 0;
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.45;
}

.testimonial-slider {
    overflow: hidden;
    padding: 4px 0 8px;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.testimonial-grid {
    display: flex;
    gap: 34px;
    width: max-content;
    animation: testimonialMarquee 30s linear infinite;
}

.testimonial-slider:hover .testimonial-grid {
    animation-play-state: paused;
}

.testimonial-grid.is-manual {
    animation: none;
    transition: transform .45s ease;
}

.testimonial-grid article {
    width: min(560px, calc(100vw - 48px));
    flex: 0 0 auto;
    overflow: visible;
    border: 0;
    background: transparent;
    min-height: 0;
}

@keyframes testimonialMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 17px));
    }
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 20px 0 0;
}

.testimonial-control {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(16, 42, 77, .14);
    border-radius: 8px;
    background: #fff;
    color: #102a4d;
    font-size: 1.15rem;
    line-height: 1;
    box-shadow: 0 12px 28px rgba(16, 42, 77, .08);
    transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.testimonial-control:hover,
.testimonial-control:focus {
    transform: translateY(-2px);
    border-color: var(--brand);
    background: var(--brand);
    color: #fff;
}

.review-bubble {
    position: relative;
    min-height: 150px;
    padding: 24px;
    border-radius: 8px;
    background: #eef4fb;
    box-shadow: 0 20px 50px rgba(20, 33, 61, .07);
}

.review-bubble::after {
    position: absolute;
    content: "";
    left: 38px;
    bottom: -34px;
    border-style: solid;
    border-width: 34px 34px 0 0;
    border-color: #eef4fb transparent transparent transparent;
}

.review-bubble p {
    margin: 0;
    color: #6b7890;
    font-size: .98rem;
    line-height: 1.65;
}

.stars {
    display: flex;
    gap: 4px;
    justify-content: flex-end;
    margin-top: 18px;
}

.stars i {
    color: #e43a3a;
    font-size: 1.15rem;
}

.review-person {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 42px;
    padding-left: 0;
}

.review-person img {
    display: none;
}

.review-person h3 {
    margin: 0 0 2px;
    color: #0b3c66;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    font-weight: 900;
}

.review-person span {
    color: var(--muted);
    font-size: 1.1rem;
    font-weight: 700;
}

.cta-band {
    padding: 58px 0;
    background: var(--green);
    color: #fff;
}

.cta-band .eyebrow {
    color: #dff7e8;
}

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

.cta-inner h2 {
    margin: 0;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
}

.site-footer {
    position: relative;
    overflow: hidden;
    padding: 50px 0 0;
    background: var(--deep);
    color: rgba(255, 255, 255, .9);
    margin-top: auto;
}

.footer-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(16, 24, 40, .96), rgba(20, 33, 61, .94), rgba(31, 122, 92, .84)),
        url("../img/carousel-2.jpg") center/cover;
    opacity: 1;
}

.footer-main {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.15fr 1.45fr;
    gap: 46px;
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.site-footer h3 {
    color: #fff;
    font-size: 1rem;
    margin: 0 0 16px;
    font-weight: 900;
    text-transform: uppercase;
}

.site-footer a,
.site-footer p {
    color: rgba(255, 255, 255, .9);
}

.footer-column a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 10px 0;
    font-size: 1rem;
    font-weight: 650;
}

.footer-column a::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 7px solid var(--brand);
    flex: 0 0 auto;
}

.footer-contact a,
.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin: 10px 0;
    font-weight: 650;
    overflow-wrap: anywhere;
}

.footer-contact a::before {
    display: none;
}

.footer-contact i,
.footer-bottom i {
    color: var(--brand);
}

.site-footer a:hover {
    color: #fff;
}

.footer-bottom {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 5px;
    align-items: center;
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: center;
}

.footer-bottom-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 4px;
}

.footer-bottom-logo img {
    width: auto;
    height: 48px;
    object-fit: contain;
}

.footer-bottom p {
    margin: 0;
    font-weight: 650;
    line-height: 1.18;
    white-space: nowrap;
}

.footer-credit {
    text-align: center;
}

.footer-credit a {
    color: var(--accent);
    letter-spacing: 0;
}

.footer-bottom div {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 18px;
    white-space: nowrap;
}

.footer-bottom a {
    margin: 0;
    font-weight: 650;
    line-height: 1.18;
}

.page-hero {
    padding: 126px 0 76px;
    color: #fff;
    background: linear-gradient(135deg, rgba(16, 24, 40, .94), rgba(31, 122, 92, .82)), url("../img/carousel-2.jpg") center/cover;
}

.page-hero h1 {
    max-width: 980px;
    font-size: clamp(2.45rem, 5.8vw, 4.9rem);
    color: #fff;
}

.two-column,
.fleet-layout,
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
}

.rounded-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
}

.about-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(34px, 4.4vw, 64px);
    align-items: stretch;
}

.about-story-media,
.about-story-panel {
    min-height: 620px;
}

.about-story-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(20, 33, 61, .14);
}

.about-story-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(28px, 4vw, 54px);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 20px 54px rgba(16, 42, 77, .08);
}

.about-story-panel h2 {
    margin: 0;
    color: #102a4d;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 6vw, 5.15rem);
    line-height: .98;
    font-weight: 900;
}

.about-story-panel h3 {
    margin: 18px 0 14px;
    color: #102a4d;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.8rem, 3.5vw, 2.75rem);
    line-height: 1.05;
    font-weight: 900;
}

.about-story-panel h4 {
    margin: 0 0 22px;
    color: var(--green);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    line-height: 1.2;
    font-weight: 900;
}

.about-story-panel p {
    color: var(--muted);
    font-size: 1.06rem;
    line-height: 1.75;
}

.about-destination-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.promise-section {
    border-top: 1px solid var(--line);
}

.promise-grid article {
    padding: 26px;
    box-shadow: 0 14px 34px rgba(16, 42, 77, .06);
}

.stat-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 28px;
}

.stat-strip span {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--soft);
    font-weight: 700;
}

.stat-strip strong {
    display: block;
    color: var(--green);
    font-size: 1.7rem;
}

.value-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-grid article {
    padding: 30px;
}

.service-list {
    display: grid;
    gap: 34px;
}

.service-list article {
    display: grid;
    grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
    gap: 52px;
    align-items: center;
    min-height: 280px;
    padding: 28px;
    border: 1px solid rgba(16, 42, 77, .12);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 54px rgba(20, 33, 61, .08);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-list article:hover {
    transform: translateY(-5px);
    border-color: rgba(242, 140, 40, .26);
    box-shadow: 0 26px 64px rgba(20, 33, 61, .13);
}

.service-list img {
    width: 100%;
    aspect-ratio: 1.45 / 1;
    object-fit: cover;
    border-radius: 6px;
}

.service-list article > div {
    padding: 0;
}

.service-list i {
    display: inline-grid;
    width: 54px;
    height: 54px;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 50%;
    background: rgba(242, 140, 40, .12);
    color: var(--brand);
    font-size: 1.65rem;
}

.service-list h2 {
    margin: 0 0 14px;
    color: #102a4d;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.15rem, 3.8vw, 3.45rem);
    line-height: 1.05;
    font-weight: 900;
}

.service-list p {
    max-width: 980px;
    color: #001a3d;
    font-size: clamp(1.05rem, 1.25vw, 1.28rem);
    line-height: 1.62;
}

.cards-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tour-card {
    overflow: hidden;
}

.tour-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.tour-card div {
    padding: 24px;
}

.tour-card a {
    color: var(--green);
    font-weight: 800;
}

.fleet-card {
    padding: 22px;
}

.fleet-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 22px;
}

.contact-card,
.contact-form,
.enquiry-box {
    padding: 32px;
}

.contact-card h2 {
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
}

.connect-section {
    background: #fff;
}

.connect-section .contact-grid {
    align-items: stretch;
}

.contact-form,
.review-form {
    border: 1px solid rgba(16, 42, 77, .24);
}

.contact-form {
    min-height: 100%;
    padding: clamp(24px, 3.6vw, 38px);
    text-align: center;
    box-shadow: 0 18px 54px rgba(20, 33, 61, .15);
    background: #fff;
}

.contact-form h3 {
    margin: 0 0 12px;
    color: #000;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.9rem, 3.3vw, 2.65rem);
    font-weight: 900;
}

.contact-form > p {
    max-width: 620px;
    margin: 0 auto 18px;
    color: #666;
    font-size: 1rem;
    line-height: 1.55;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 18px 0;
}

.form-grid label {
    color: transparent;
    font-size: 0;
    font-weight: 800;
}

.form-grid label span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.form-grid input,
.form-grid textarea {
    width: 100%;
    margin-top: 0;
    padding: 13px 16px;
    border: 1px solid rgba(0, 0, 0, .55);
    border-radius: 6px;
    color: var(--ink);
    background: #fff;
    font: 1rem/1.45 Arial, Helvetica, sans-serif;
}

.contact-form textarea {
    min-height: 104px;
}

.review-form .form-grid {
    gap: 10px 14px;
    margin: 0 0 12px;
}

.review-form .form-grid label {
    color: #102a4d;
    font-size: .76rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.review-form .form-grid label span {
    position: static;
    width: auto;
    height: auto;
    display: block;
    clip: auto;
    margin-bottom: 5px;
    overflow: visible;
}

.review-form textarea {
    min-height: 70px;
}

.review-form .btn {
    min-height: 40px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 1rem;
    box-shadow: 0 12px 26px rgba(242, 140, 40, .26);
}

.review-form input,
.review-form textarea {
    border-color: rgba(16, 42, 77, .2);
    background: #fff;
    box-shadow: inset 0 1px 0 rgba(16, 42, 77, .03);
}

.review-form input,
.review-form textarea {
    padding-top: 9px;
    padding-bottom: 9px;
}

.review-form input::placeholder,
.review-form textarea::placeholder {
    color: #8993a5;
}

.review-success-popup {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(16, 24, 40, .32);
    opacity: 0;
    pointer-events: none;
    transition: opacity .34s ease;
}

.review-success-popup.is-visible {
    opacity: 1;
}

.review-success-card {
    width: min(330px, 100%);
    padding: 30px 26px;
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    text-align: center;
    box-shadow: 0 24px 70px rgba(16, 24, 40, .28);
    opacity: 0;
    transform: translateY(18px) scale(.94);
    transition: opacity .34s ease, transform .34s ease;
}

.review-success-popup.is-visible .review-success-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.review-success-check {
    width: 72px;
    height: 72px;
    margin-bottom: 14px;
}

.review-success-check circle,
.review-success-check path {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.review-success-check circle {
    stroke: rgba(31, 122, 92, .18);
    stroke-width: 3;
}

.review-success-check path {
    stroke: var(--green);
    stroke-width: 5;
    stroke-dasharray: 34;
    stroke-dashoffset: 34;
}

.review-success-popup.is-visible .review-success-check path {
    animation: successTick .55s ease .2s forwards;
}

.review-success-card h3 {
    margin: 0 0 6px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.35rem;
    font-weight: 900;
}

.review-success-card p {
    margin: 0;
    color: var(--muted);
    font-size: .98rem;
    font-weight: 700;
}

@keyframes successTick {
    to {
        stroke-dashoffset: 0;
    }
}

.form-grid input:focus,
.form-grid textarea:focus {
    outline: 2px solid rgba(242, 140, 40, .25);
    border-color: var(--brand);
    background: #fff;
}

.full-field {
    grid-column: 1 / -1;
}

.contact-info-stack {
    display: grid;
    height: 100%;
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.contact-info-stack article {
    min-height: 0;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 30px;
    border-radius: 8px;
    background: #343493;
    color: #fff;
}

.contact-info-stack i {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #fff;
    color: #343493;
    font-size: 1.7rem;
}

.contact-info-stack h3 {
    margin: 0 0 8px;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.38rem;
    font-weight: 900;
}

.contact-info-stack p {
    margin: 0;
    color: rgba(255, 255, 255, .92);
    font-size: 1rem;
    font-weight: 700;
}

.floating-actions {
    position: fixed;
    right: 22px;
    top: 50%;
    z-index: 40;
    display: grid;
    gap: 12px;
    transform: translateY(-50%);
}

.floating-action {
    z-index: 40;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    box-shadow: 0 16px 36px rgba(0, 0, 0, .24);
    font-size: 1.35rem;
    animation: floatingPulse 2.4s ease-in-out infinite;
    transform-origin: center;
}

.whatsapp-float {
    background: #25d366;
}

.floating-action:hover {
    color: #fff;
    background: var(--brand-dark);
}

.whatsapp-float:hover {
    background: #1ebe5d;
}

@keyframes floatingPulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.12);
    }
}

@media (max-width: 991.98px) {
    .site-header {
        position: fixed;
        top: 0;
        background: var(--deep);
    }

    .navbar {
        padding: 12px 0;
    }

    .navbar-brand img {
        height: 44px;
    }

    .navbar-collapse {
        padding: 14px 0;
    }

    .hero {
        min-height: auto;
        padding: 78px 0 44px;
    }

    .hero-content,
    .travel-welcome-card,
    .split-section,
    .about-story-grid,
    .two-column,
    .fleet-layout,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .travel-welcome-card {
        gap: 18px;
        padding: 24px;
    }

    .travel-welcome-points {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .about-story-media,
    .about-story-panel {
        min-height: auto;
    }

    .about-story-media img {
        aspect-ratio: 4 / 3;
        height: auto;
    }

    .hero h1 {
        font-size: clamp(3rem, 15vw, 5rem);
    }

    .about-home-image {
        height: auto;
        min-height: 360px;
    }

    .about-preview .two-column > div:last-child {
        min-height: auto;
        display: block;
    }

    .service-grid,
    .most-services-grid,
    .package-grid,
    .value-grid,
    .cards-3,
    .outstate-trip-grid,
    .home-fleet-grid,
    .destination-grid,
    .seo-content-grid,
    .testimonial-grid,
    .counter-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-list article {
        grid-template-columns: 1fr;
        gap: 28px;
        min-height: 0;
        padding: 28px;
    }

    .service-list h2 {
        font-size: clamp(2.2rem, 8vw, 3.6rem);
    }

    .cta-inner,
    .footer-main,
    .footer-bottom {
        display: grid;
        grid-template-columns: 1fr;
    }

    .footer-main {
        gap: 20px;
    }

    .footer-bottom {
        justify-items: center;
    }
}

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

    .hero-actions,
    .hero-actions .btn {
        width: 100%;
    }

    .hero-actions .btn {
        justify-content: center;
    }

    .outstate-trip-card,
    .outstate-trip-feature,
    .outstate-trip-alt {
        grid-template-columns: 1fr;
        min-height: 300px;
        padding: 24px;
    }

    .booking-panel,
    .contact-card,
    .contact-form,
    .enquiry-box,
    .service-card,
    .split-copy {
        padding: 22px;
    }

    .most-services-grid article {
        min-height: 130px;
        padding: 24px;
    }

    .service-list article {
        gap: 20px;
        padding: 22px;
    }

    .service-list i {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
        font-size: 1.45rem;
    }

    .service-list h2 {
        font-size: clamp(1.85rem, 9vw, 2.75rem);
    }

    .service-list p {
        font-size: 1.02rem;
    }

    .service-grid,
    .most-services-grid,
    .package-grid,
    .value-grid,
    .cards-3,
    .outstate-trip-grid,
    .home-fleet-grid,
    .destination-grid,
    .seo-content-grid,
    .testimonial-grid,
    .counter-grid,
    .stat-strip {
        grid-template-columns: 1fr;
    }

    .home-fleet-media {
        height: 230px;
    }

    .fleet-specs {
        grid-template-columns: 1fr;
    }

    .counter-section {
        padding: 26px 0;
    }

    .testimonials-section .section-heading .eyebrow {
        gap: 12px;
    }

    .testimonials-section .section-heading .eyebrow::before,
    .testimonials-section .section-heading .eyebrow::after {
        width: 34px;
    }

    .review-bubble {
        min-height: 0;
        padding: 24px;
    }

    .review-bubble p {
        font-size: 1rem;
    }

    .about-home-image {
        height: auto;
        min-height: 280px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .site-footer {
        padding-top: 38px;
    }

    .travel-welcome-card {
        padding: 22px;
    }

    .travel-welcome-points {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        gap: 3px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .footer-bottom-logo {
        margin-bottom: 3px;
    }

    .footer-bottom-logo img {
        height: 38px;
    }

    .footer-bottom p,
    .footer-bottom a {
        font-size: clamp(.72rem, 3.35vw, .92rem);
    }

    .footer-bottom div {
        display: flex;
        gap: 10px;
    }

    .floating-actions {
        right: 10px;
        gap: 8px;
    }

    .floating-action {
        width: 46px;
        height: 46px;
        font-size: 1.08rem;
    }

    .page-hero {
        padding: 74px 0 54px;
    }
}
