:root {
    --navy: #09223b;
    --navy-2: #113b5f;
    --teal: #087f78;
    --teal-dark: #05635e;
    --orange: #f47b20;
    --orange-dark: #d95f0b;
    --gold: #f3b33d;
    --ink: #172b3f;
    --muted: #637588;
    --line: #dce6ed;
    --soft: #f3f8fa;
    --white: #fff;
    --shadow: 0 18px 50px rgba(20, 51, 73, .11);
    --radius: 20px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 95px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
.navbar-brand {
    font-family: "Manrope", sans-serif;
}

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

img {
    max-width: 100%;
}

.skip-link {
    position: fixed;
    top: -60px;
    left: 16px;
    z-index: 2000;
    padding: 10px 16px;
    color: var(--white);
    background: var(--navy);
    border-radius: 0 0 8px 8px;
}

.skip-link:focus {
    top: 0;
}

.topbar {
    color: #dce9f2;
    background: var(--navy);
    font-size: 13px;
}

.topbar-inner {
    min-height: 39px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar p {
    margin: 0;
}

.topbar a {
    margin-left: 26px;
    transition: color .2s ease;
}

.topbar i {
    margin-right: 7px;
    color: #f9a95f;
}

.topbar a:hover {
    color: #fff;
}

.site-header {
    z-index: 1025;
    background: rgba(255, 255, 255, .97);
    border-bottom: 1px solid rgba(12, 46, 72, .08);
    box-shadow: 0 5px 20px rgba(19, 47, 70, .05);
    backdrop-filter: blur(14px);
}

.navbar {
    min-height: 82px;
    padding: 8px 0;
}

.navbar-brand img {
    display: block;
    width: 178px;
    height: 55px;
    object-fit: contain;
}

.navbar-nav {
    gap: 5px;
}

.navbar .nav-link {
    position: relative;
    padding: 14px 13px !important;
    color: #243b4f;
    font-size: 14px;
    font-weight: 700;
}

.navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 8px;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
}

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

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-toggler {
    width: 44px;
    height: 42px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: none !important;
}

.navbar-toggler span {
    width: 20px;
    height: 2px;
    display: block;
    background: var(--navy);
}

.btn {
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    padding: 11px 19px;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-brand {
    color: #fff;
    border-color: var(--orange);
    background: var(--orange);
    box-shadow: 0 9px 22px rgba(244, 123, 32, .24);
}

.btn-brand:hover,
.btn-brand:focus {
    color: #fff;
    border-color: var(--orange-dark);
    background: var(--orange-dark);
    box-shadow: 0 12px 26px rgba(217, 95, 11, .28);
}

.btn-glass {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .65);
    background: rgba(255, 255, 255, .11);
    backdrop-filter: blur(8px);
}

.btn-glass:hover {
    color: var(--navy);
    background: #fff;
}

.hero-section {
    position: relative;
    background: var(--navy);
}

.carousel-item {
    position: relative;
}

.hero-image {
    width: 100%;
    height: 650px;
    display: block;
    object-fit: cover;
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4, 22, 38, .9) 0%, rgba(4, 28, 48, .65) 42%, rgba(6, 23, 38, .2) 75%),
        linear-gradient(0deg, rgba(4, 18, 31, .25), transparent 45%);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}

.hero-copy {
    width: min(690px, 70%);
    color: #fff;
    padding-bottom: 55px;
}

.hero-copy h1,
.hero-copy h2 {
    max-width: 680px;
    margin: 19px 0 17px;
    color: #fff;
    font-size: clamp(46px, 6vw, 76px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -.04em;
    text-shadow: 0 4px 24px rgba(0, 0, 0, .2);
}

.hero-copy p {
    max-width: 610px;
    margin: 0 0 28px;
    color: #e2eef6;
    font-size: 19px;
    line-height: 1.6;
}

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

.hero-actions .btn-lg {
    padding: 14px 23px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--teal-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.eyebrow.light {
    color: #ffd8b3;
}

.carousel-control-prev,
.carousel-control-next {
    width: 72px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 44px;
    height: 44px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 50%;
    background-size: 18px;
    background-color: rgba(0, 0, 0, .14);
    backdrop-filter: blur(8px);
}

.carousel-indicators {
    bottom: 102px;
    justify-content: flex-start;
    width: auto;
    max-width: 1320px;
    margin-right: auto;
    margin-left: max(calc((100% - 1320px) / 2 + 12px), 6%);
}

.carousel-indicators [data-bs-target] {
    width: 28px;
    height: 4px;
    margin: 0 4px;
    border: 0;
    border-radius: 10px;
}

.hero-trust {
    position: absolute;
    z-index: 5;
    right: 0;
    bottom: -43px;
    left: 0;
}

.trust-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 86px;
    overflow: hidden;
    color: #e7f2f7;
    background: rgba(8, 42, 64, .97);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 17px;
    box-shadow: 0 18px 48px rgba(4, 27, 45, .25);
    backdrop-filter: blur(12px);
}

.trust-bar > div {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 18px 22px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.trust-bar > div:last-child {
    border-right: 0;
}

.trust-bar i {
    color: #ffad68;
    font-size: 25px;
}

.trust-bar span {
    display: flex;
    flex-direction: column;
    color: #bcd0df;
    font-size: 11px;
    line-height: 1.45;
}

.trust-bar strong {
    color: #fff;
    font-size: 13px;
}

.section-pad {
    padding: 110px 0;
}

#tours {
    padding-top: 135px;
}

.section-soft {
    background:
        radial-gradient(circle at 95% 0, rgba(39, 146, 138, .09), transparent 28%),
        var(--soft);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 42px;
}

.section-heading > div {
    max-width: 760px;
}

.section-heading h2,
.section-title-centered h2,
.why-section h2,
.contact-copy h2 {
    margin: 10px 0 10px;
    color: var(--navy);
    font-size: clamp(34px, 4vw, 49px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.035em;
}

.section-heading p,
.section-title-centered p {
    max-width: 690px;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}

.text-link {
    align-items: center;
    gap: 7px;
    padding-bottom: 5px;
    color: var(--teal-dark);
    border-bottom: 1px solid rgba(8, 127, 120, .35);
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}

.listing-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: -14px 0 28px;
    padding: 12px 14px;
    background: #f7fafc;
    border: 1px solid #dce7ee;
    border-radius: 14px;
}

.category-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.category-pill {
    padding: 8px 13px;
    color: #294b6c;
    background: #fff;
    border: 1px solid #d6e3f0;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    transition: color .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.category-pill:hover {
    color: var(--navy-2);
    border-color: #185086;
}

.category-pill.active {
    color: #fff;
    background: linear-gradient(135deg, #123a63, #0f537f);
    border-color: #123a63;
    box-shadow: 0 7px 16px rgba(12, 41, 67, .18);
}

.listing-count {
    flex: 0 0 auto;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.listing-grid > div {
    display: flex;
}

.listing-item-hidden {
    display: none !important;
}

.tour-card,
.vehicle-card {
    width: 100%;
    height: 100%;
    min-height: 390px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e0e9ef;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(18, 49, 70, .06);
    transition: transform .28s ease, box-shadow .28s ease;
}

.tour-card:hover,
.vehicle-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.card-media,
.vehicle-media {
    position: relative;
    overflow: hidden;
}

.card-media {
    height: 176px;
    flex: 0 0 176px;
}

.card-media img,
.vehicle-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.tour-card:hover .card-media img,
.vehicle-card:hover .vehicle-media img {
    transform: scale(1.055);
}

.card-badge,
.vehicle-media > span {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    padding: 7px 10px;
    color: #fff;
    background: rgba(8, 42, 64, .9);
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.card-badge {
    max-width: calc(100% - 105px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.card-popular {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    padding: 7px 10px;
    color: #19334d;
    background: linear-gradient(135deg, #f6ca71, #e59a36);
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 999px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .05em;
    line-height: 1;
    text-transform: uppercase;
}

.card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 14px 15px 13px;
}

.card-location,
.vehicle-type {
    min-height: 20px;
    margin: 0 0 7px;
    color: var(--teal);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.card-location i {
    margin-right: 4px;
}

.tour-card h3,
.vehicle-card h3 {
    min-height: 44px;
    margin: 0 0 9px;
    color: var(--navy);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 9px;
    color: var(--muted);
    border-bottom: 1px solid #e8eef2;
    font-size: 12px;
}

.card-meta i {
    margin-right: 5px;
    color: var(--orange);
}

.card-footer-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
}

.card-footer-line p {
    display: flex;
    flex-direction: column;
    margin: 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.25;
    text-transform: uppercase;
}

.card-footer-line strong {
    color: var(--navy);
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    letter-spacing: -.03em;
}

.card-footer-line small {
    color: var(--muted);
    font-size: 9px;
}

.btn-card {
    color: var(--teal-dark);
    border: 1px solid rgba(8, 127, 120, .3);
    background: #edf8f7;
    box-shadow: none;
}

.btn-card:hover,
.btn-card:focus {
    color: #fff;
    border-color: var(--teal);
    background: var(--teal);
}

.vehicle-media {
    height: 176px;
    flex: 0 0 176px;
    padding: 8px 8px 0;
    background: linear-gradient(160deg, #f5f8fa, #e7eff3);
}

.vehicle-media img {
    border-radius: 15px 15px 7px 7px;
}

.vehicle-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 14px 15px 13px;
}

.vehicle-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    margin: 0 0 9px;
    padding: 6px 0;
    list-style: none;
    color: var(--muted);
    border-top: 1px solid #e8eef2;
    border-bottom: 1px solid #e8eef2;
    font-size: 11px;
    text-align: center;
}

.vehicle-specs li {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.vehicle-specs i {
    color: var(--teal);
    font-size: 14px;
}

.vehicle-price {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-top: auto;
    margin-bottom: 9px;
}

.vehicle-price > span {
    color: var(--muted);
    font-size: 11px;
    text-transform: uppercase;
}

.vehicle-price strong {
    color: var(--navy);
    font-family: "Manrope", sans-serif;
    font-size: 23px;
}

.vehicle-price small {
    color: var(--muted);
    font-family: "DM Sans", sans-serif;
    font-size: 11px;
}

.section-title-centered {
    max-width: 760px;
    margin: 0 auto 47px;
    text-align: center;
}

.section-title-centered p {
    margin-right: auto;
    margin-left: auto;
}

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

.service-card {
    position: relative;
    min-height: 225px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 23px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 17px;
    box-shadow: 0 8px 28px rgba(17, 54, 78, .055);
    transition: transform .25s ease, background .25s ease, color .25s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -55px;
    width: 125px;
    height: 125px;
    background: rgba(255, 255, 255, .07);
    border-radius: 50%;
}

.service-card > span {
    width: 49px;
    height: 49px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    color: var(--teal);
    background: #e9f6f5;
    border-radius: 13px;
    font-size: 23px;
}

.service-card h3 {
    margin: 0 0 7px;
    color: var(--navy);
    font-size: 17px;
    font-weight: 800;
}

.service-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.service-arrow {
    position: absolute;
    right: 20px;
    bottom: 18px;
    color: #97a8b6;
    font-size: 16px;
}

.service-card:hover {
    color: #fff;
    background: var(--navy-2);
    border-color: var(--navy-2);
    transform: translateY(-5px);
}

.service-card:hover > span {
    color: #fff;
    background: rgba(255, 255, 255, .13);
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-arrow {
    color: #fff;
}

.why-section {
    position: relative;
    overflow: hidden;
    color: #dbe9f3;
    background:
        radial-gradient(circle at 90% 20%, rgba(22, 142, 132, .28), transparent 30%),
        linear-gradient(130deg, #071d31, #0e3655);
}

.why-section::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -180px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
}

.why-section .container {
    position: relative;
    z-index: 1;
}

.why-section h2 {
    color: #fff;
}

.why-lead {
    max-width: 670px;
    margin: 0 0 31px;
    color: #bbcedd;
    font-size: 17px;
}

.why-collage {
    position: relative;
    min-height: 570px;
}

.why-main {
    width: 88%;
    height: 510px;
    object-fit: cover;
    border: 7px solid rgba(255, 255, 255, .12);
    border-radius: 90px 22px 90px 22px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .35);
}

.why-small {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 47%;
    height: 210px;
    object-fit: cover;
    border: 7px solid #0c3150;
    border-radius: 18px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, .28);
}

.experience-badge {
    position: absolute;
    top: 34px;
    right: 0;
    width: 135px;
    height: 135px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .2);
    text-align: center;
}

.experience-badge strong {
    color: var(--orange);
    font-family: "Manrope", sans-serif;
    font-size: 31px;
    line-height: 1;
}

.experience-badge span {
    margin-top: 4px;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.why-item {
    display: flex;
    gap: 15px;
}

.why-item > i {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    display: grid;
    place-items: center;
    color: #ffbd84;
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    font-size: 21px;
}

.why-item h3 {
    margin: 0 0 4px;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
}

.why-item p {
    margin: 0;
    color: #adc4d5;
    font-size: 13px;
    line-height: 1.55;
}

.reviews-section {
    background:
        linear-gradient(rgba(243, 248, 250, .94), rgba(243, 248, 250, .94)),
        radial-gradient(circle at 15% 20%, #b9d8dc, transparent 42%);
}

.testimonial-carousel {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 74px 46px;
}

.testimonial-carousel .carousel-inner {
    overflow: hidden;
    border-radius: 20px;
}

.testimonial-carousel .carousel-item {
    padding: 4px;
}

.testimonial-carousel .carousel-indicators {
    bottom: 0;
    justify-content: center;
    width: auto;
    max-width: none;
    margin: 0;
}

.testimonial-carousel .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    margin: 0 4px;
    background: #9cb2bf;
    border: 0;
    border-radius: 50%;
}

.testimonial-carousel .carousel-indicators .active {
    width: 24px;
    background: var(--teal);
    border-radius: 999px;
}

.testimonial-carousel .carousel-control-prev,
.testimonial-carousel .carousel-control-next {
    top: 50%;
    bottom: auto;
    width: 46px;
    height: 46px;
    display: flex;
    background: var(--navy);
    border-radius: 50%;
    opacity: 1;
    transform: translateY(-75%);
    box-shadow: 0 10px 24px rgba(9, 34, 59, .18);
}

.testimonial-carousel .carousel-control-prev {
    left: 8px;
}

.testimonial-carousel .carousel-control-next {
    right: 8px;
}

.testimonial-carousel .carousel-control-prev-icon,
.testimonial-carousel .carousel-control-next-icon {
    width: 17px;
    height: 17px;
    padding: 0;
    background-color: transparent;
    background-size: 15px;
    border: 0;
    border-radius: 0;
    backdrop-filter: none;
}

.review-card {
    position: relative;
    height: 100%;
    min-height: 270px;
    padding: 34px 38px 29px;
    background: #fff;
    border: 1px solid #dbe6ed;
    border-radius: 18px;
    box-shadow: 0 12px 38px rgba(19, 52, 75, .075);
}

.review-stars {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 2px;
}

.quote-icon {
    position: absolute;
    top: 17px;
    right: 21px;
    color: #dcebec;
    font-size: 43px;
}

.review-card > p {
    min-height: 96px;
    margin: 25px 0 24px;
    color: #4d6376;
    font-size: 16px;
    line-height: 1.75;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 11px;
    padding-top: 17px;
    border-top: 1px solid #e7edf1;
}

.review-user > span {
    width: 41px;
    height: 41px;
    display: grid;
    place-items: center;
    flex: 0 0 41px;
    color: #fff;
    background: linear-gradient(135deg, var(--teal), #25a69e);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 800;
}

.review-user div {
    display: flex;
    flex-direction: column;
}

.review-user strong {
    color: var(--navy);
    font-size: 14px;
}

.review-user small {
    color: var(--muted);
    font-size: 11px;
}

.rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 31px;
    color: var(--muted);
    font-size: 12px;
}

.rating-summary strong {
    color: var(--navy);
    font-size: 15px;
}

.contact-section {
    background: #fff;
}

.contact-shell {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    overflow: hidden;
    border-radius: 26px;
    box-shadow: 0 22px 60px rgba(11, 39, 60, .15);
}

.contact-copy {
    padding: 58px 47px;
    color: #d5e4ee;
    background:
        radial-gradient(circle at 90% 10%, rgba(24, 151, 141, .35), transparent 32%),
        var(--navy);
}

.contact-copy h2 {
    color: #fff;
}

.contact-copy > p {
    margin: 0 0 30px;
    color: #b8cedd;
}

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

.contact-list > a,
.contact-list > div {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 13px 14px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
}

.contact-list > a:hover {
    background: rgba(255, 255, 255, .11);
}

.contact-list > a > i,
.contact-list > div > i {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    flex: 0 0 31px;
    color: #ffc28e;
    background: rgba(255, 255, 255, .09);
    border-radius: 8px;
}

.contact-list span {
    display: flex;
    flex-direction: column;
    color: #e9f2f7;
    font-size: 13px;
    word-break: break-word;
}

.contact-list small {
    color: #8faec2;
    font-size: 10px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.contact-form-wrap {
    padding: 50px 47px;
    background: #fff;
}

.form-heading {
    margin-bottom: 24px;
}

.form-heading > span {
    color: var(--teal);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.form-heading h3 {
    margin: 5px 0 0;
    color: var(--navy);
    font-size: 25px;
    font-weight: 800;
}

.form-label {
    margin-bottom: 6px;
    color: #2b465d;
    font-size: 12px;
    font-weight: 700;
}

.form-control,
.form-select {
    min-height: 48px;
    color: var(--ink);
    border: 1px solid #d7e2e9;
    border-radius: 10px;
    font-size: 13px;
}

textarea.form-control {
    min-height: 112px;
    resize: vertical;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(8, 127, 120, .11);
}

.form-note {
    margin: 13px 0 0;
    color: #8494a0;
    font-size: 10px;
    text-align: center;
}

.map-card {
    position: relative;
    height: 400px;
    margin-top: 30px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 14px 40px rgba(14, 47, 69, .09);
}

.map-card iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-address {
    position: absolute;
    right: 22px;
    bottom: 22px;
    left: 22px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px 17px;
    color: #fff;
    background: rgba(7, 34, 55, .93);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
    backdrop-filter: blur(10px);
}

.map-address > i {
    color: #ffad69;
    font-size: 25px;
}

.map-address div {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.map-address strong {
    font-size: 14px;
}

.map-address span {
    color: #b8cedd;
    font-size: 11px;
}

.map-address a {
    color: #ffd3ae;
    font-size: 12px;
    font-weight: 700;
}

.site-footer {
    color: #b8c8d5;
    background: #061a2c;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.65fr .7fr .8fr 1.15fr;
    gap: 55px;
    padding: 70px 0 52px;
}

.footer-brand img {
    width: 175px;
    height: 62px;
    padding: 5px 9px;
    object-fit: contain;
    background: #fff;
    border-radius: 8px;
}

.footer-brand p {
    max-width: 390px;
    margin: 20px 0;
    font-size: 13px;
}

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

.footer-badges span {
    padding: 6px 9px;
    color: #d2dfe8;
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50px;
    font-size: 10px;
}

.footer-badges i {
    margin-right: 4px;
    color: #fdaf6d;
}

.footer-main h3 {
    margin: 7px 0 20px;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
}

.footer-main ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 12px;
}

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

.footer-contact i {
    margin-right: 7px;
    color: #f5a15a;
}

.footer-contact li {
    overflow-wrap: anywhere;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    font-size: 11px;
}

.mobile-app-dock {
    display: none;
}

.floating-whatsapp,
.back-to-top {
    position: fixed;
    z-index: 1010;
    right: 22px;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    color: #fff;
    border: 0;
    border-radius: 50%;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .24);
}

.floating-whatsapp {
    bottom: 22px;
    background: #16a968;
    font-size: 24px;
}

.floating-whatsapp:hover {
    color: #fff;
    background: #118853;
}

.back-to-top {
    bottom: 82px;
    background: var(--navy);
    font-size: 18px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity .2s ease, transform .2s ease;
}

.back-to-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.details-modal .modal-dialog {
    max-width: 1080px;
}

.details-modal .modal-dialog-scrollable {
    height: calc(100dvh - 2rem);
}

.details-modal .modal-content {
    max-height: calc(100dvh - 2rem);
    overflow: hidden;
    border: 0;
    border-radius: 22px;
    box-shadow: 0 30px 100px rgba(5, 26, 42, .4);
}

.detail-modal-scroll {
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-color: var(--teal) #e8eff3;
    scrollbar-width: thin;
}

.detail-modal-scroll::-webkit-scrollbar {
    width: 9px;
}

.detail-modal-scroll::-webkit-scrollbar-track {
    background: #e8eff3;
}

.detail-modal-scroll::-webkit-scrollbar-thumb {
    background: var(--teal);
    border: 2px solid #e8eff3;
    border-radius: 999px;
}

.modal-close {
    position: absolute;
    z-index: 10;
    top: 15px;
    right: 15px;
    width: 34px;
    height: 34px;
    padding: 8px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
    opacity: 1;
}

.detail-hero {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    min-height: 325px;
    background: var(--navy);
}

.detail-hero-media {
    position: relative;
    min-height: 325px;
}

.detail-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 60%, rgba(9, 34, 59, .85));
}

.detail-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 38px 45px 38px 28px;
    color: #c8d9e5;
}

.detail-hero-copy .eyebrow {
    color: #ffc18b;
}

.detail-hero-copy h2 {
    margin: 9px 0 8px;
    color: #fff;
    font-size: 31px;
    font-weight: 800;
}

.detail-location {
    margin: 0 0 19px;
    color: #a8c1d2;
    font-size: 13px;
}

.detail-quick-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.detail-quick-meta span {
    padding: 7px 10px;
    color: #e5eff5;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50px;
    font-size: 11px;
}

.detail-price {
    display: flex;
    align-items: end;
    gap: 7px;
    margin-top: 23px;
}

.detail-price strong {
    color: #fff;
    font-family: "Manrope", sans-serif;
    font-size: 29px;
}

.detail-price span {
    padding-bottom: 5px;
    color: #aac1d1;
    font-size: 11px;
}

.detail-content {
    padding: 31px 35px 35px;
}

.detail-content h3 {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 19px;
    font-weight: 800;
}

.detail-content > p {
    color: var(--muted);
    font-size: 14px;
}

.detail-tabs {
    gap: 5px;
    margin-bottom: 25px;
    padding-bottom: 11px;
    border-bottom: 1px solid var(--line);
}

.detail-tabs .nav-link {
    color: var(--muted);
    border: 0;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
}

.detail-content .detail-quick-meta span {
    color: var(--teal-dark);
    background: #eef8f7;
    border-color: #d2e8e6;
}

.detail-tabs .nav-link.active {
    color: #fff;
    background: var(--teal);
}

.itinerary-list {
    display: grid;
    gap: 10px;
}

.itinerary-day {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 14px;
    padding: 13px;
    background: #f5f9fb;
    border: 1px solid #e1e9ee;
    border-radius: 11px;
}

.itinerary-day > span {
    display: grid;
    place-items: center;
    align-self: start;
    min-height: 45px;
    color: #fff;
    background: var(--navy-2);
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
    text-align: center;
}

.itinerary-day h4 {
    margin: 0 0 3px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 800;
}

.itinerary-day p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.checks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checks-grid > div {
    padding: 18px;
    background: #f6fafb;
    border: 1px solid var(--line);
    border-radius: 13px;
}

.checks-grid ul,
.policy-list {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--muted);
    font-size: 12px;
}

.checks-grid i,
.policy-list i {
    margin-right: 7px;
}

.checks-grid .included i {
    color: #138658;
}

.checks-grid .excluded i {
    color: #c35c3c;
}

.policy-list li {
    padding: 14px;
    background: #f6fafb;
    border: 1px solid var(--line);
    border-radius: 10px;
}

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

.fare-card {
    padding: 17px;
    background: #f4f9fa;
    border: 1px solid #dce8eb;
    border-radius: 12px;
}

.fare-card i {
    color: var(--teal);
    font-size: 21px;
}

.fare-card span {
    display: block;
    margin: 8px 0 2px;
    color: var(--muted);
    font-size: 10px;
    text-transform: uppercase;
}

.fare-card strong {
    display: block;
    color: var(--navy);
    font-family: "Manrope", sans-serif;
    font-size: 19px;
}

.fare-card small {
    color: var(--muted);
    font-size: 10px;
}

.detail-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 27px;
    padding: 15px 17px;
    background: #eff7f7;
    border: 1px solid #d5e6e5;
    border-radius: 12px;
}

.detail-cta p {
    margin: 0;
    color: var(--navy);
    font-size: 12px;
    font-weight: 700;
}

.detail-cta small {
    display: block;
    color: var(--muted);
    font-weight: 400;
}

@media (max-width: 1199.98px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-image {
        height: 610px;
    }

    .footer-main {
        grid-template-columns: 1.4fr .7fr .8fr 1.15fr;
        gap: 32px;
    }
}

@media (max-width: 991.98px) {
    html {
        scroll-padding-top: 76px;
    }

    body {
        padding-bottom: calc(72px + env(safe-area-inset-bottom));
    }

    .mobile-app-dock {
        position: fixed;
        z-index: 1040;
        right: 10px;
        bottom: max(8px, env(safe-area-inset-bottom));
        left: 10px;
        height: 64px;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        padding: 6px;
        color: #63798b;
        background: rgba(255, 255, 255, .97);
        border: 1px solid #dce7ed;
        border-radius: 20px;
        box-shadow: 0 14px 36px rgba(8, 31, 49, .24);
        backdrop-filter: blur(15px);
    }

    .mobile-dock-item {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 1px;
        border-radius: 14px;
        font-size: 9px;
        font-weight: 700;
        line-height: 1.2;
    }

    .mobile-dock-item i {
        font-size: 19px;
    }

    .mobile-dock-item.active {
        color: #fff;
        background: linear-gradient(135deg, var(--navy-2), var(--teal));
        box-shadow: 0 7px 14px rgba(8, 86, 88, .22);
    }

    .navbar {
        min-height: 74px;
    }

    .navbar-brand img {
        width: 154px;
        height: 49px;
    }

    .navbar-collapse {
        margin: 8px -12px -8px;
        padding: 12px 16px 20px;
        background: #fff;
        border-top: 1px solid var(--line);
        box-shadow: 0 16px 30px rgba(17, 45, 65, .09);
    }

    .navbar-nav {
        align-items: stretch !important;
    }

    .navbar .nav-link {
        padding: 10px 4px !important;
    }

    .navbar .nav-link::after {
        display: none;
    }

    .navbar-collapse .btn {
        width: 100%;
        margin: 7px 0 0 !important;
    }

    .hero-image {
        height: 600px;
    }

    .hero-copy {
        width: 80%;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .trust-bar {
        grid-template-columns: 1fr 1fr;
    }

    .trust-bar > div:nth-child(2) {
        border-right: 0;
    }

    .trust-bar > div:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .hero-trust {
        bottom: -86px;
    }

    #tours {
        padding-top: 170px;
    }

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

    .why-collage {
        max-width: 600px;
        min-height: 510px;
        margin: 0 auto;
    }

    .why-main {
        height: 460px;
    }

    .contact-shell {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1.4fr 1fr;
    }

    .floating-whatsapp {
        bottom: calc(88px + env(safe-area-inset-bottom));
    }

    .back-to-top {
        bottom: calc(146px + env(safe-area-inset-bottom));
    }

    .detail-hero {
        grid-template-columns: 1fr;
    }

    .detail-hero-media {
        min-height: 270px;
        max-height: 320px;
    }

    .detail-hero-media::after {
        background: linear-gradient(0deg, rgba(9, 34, 59, .75), transparent 55%);
    }

    .detail-hero-copy {
        padding: 28px 32px;
    }
}

@media (max-width: 767.98px) {
    body {
        font-size: 14px;
    }

    .section-pad {
        padding: 62px 0;
    }

    .hero-image {
        height: 600px;
    }

    .hero-shade {
        background: linear-gradient(90deg, rgba(4, 22, 38, .9), rgba(4, 28, 48, .48));
    }

    .hero-copy {
        width: 94%;
        padding-bottom: 25px;
    }

    .hero-copy h1,
    .hero-copy h2 {
        margin-top: 14px;
        font-size: 44px;
    }

    .hero-copy p {
        font-size: 16px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        width: min(300px, 100%);
    }

    .carousel-indicators {
        bottom: 15px;
    }

    .hero-trust {
        position: relative;
        bottom: auto;
        padding: 15px 0;
        background: var(--navy);
    }

    .trust-bar {
        min-height: auto;
        border-radius: 13px;
    }

    .trust-bar > div {
        gap: 9px;
        padding: 13px 11px;
    }

    .trust-bar i {
        font-size: 19px;
    }

    .trust-bar strong {
        font-size: 11px;
    }

    .trust-bar span {
        font-size: 9px;
    }

    #tours {
        padding-top: 72px;
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .listing-filter-bar {
        position: sticky;
        z-index: 20;
        top: 73px;
        align-items: center;
        margin: -8px -12px 20px;
        padding: 10px 12px;
        background: rgba(247, 250, 252, .97);
        border-right: 0;
        border-left: 0;
        border-radius: 0;
        box-shadow: 0 7px 16px rgba(18, 50, 72, .06);
        backdrop-filter: blur(10px);
    }

    .category-strip {
        flex: 1;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 2px;
        scrollbar-width: none;
    }

    .category-strip::-webkit-scrollbar {
        display: none;
    }

    .category-pill {
        flex: 0 0 auto;
        padding: 8px 12px;
        font-size: 11px;
        white-space: nowrap;
    }

    .listing-count {
        display: none;
    }

    .section-heading h2,
    .section-title-centered h2,
    .why-section h2,
    .contact-copy h2 {
        font-size: 34px;
    }

    .section-heading p,
    .section-title-centered p {
        font-size: 15px;
    }

    .section-title-centered {
        margin-bottom: 33px;
    }

    .card-media {
        height: 178px;
        flex-basis: 178px;
    }

    .tour-card,
    .vehicle-card {
        height: auto;
        min-height: 390px;
        border-radius: 18px;
        box-shadow: 0 12px 28px rgba(18, 49, 70, .11);
    }

    .vehicle-media {
        height: 178px;
        flex-basis: 178px;
    }

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

    .service-card {
        min-height: 0;
        flex-direction: row;
        gap: 15px;
        padding: 20px;
    }

    .service-card > span {
        flex: 0 0 48px;
        margin-bottom: 0;
    }

    .why-collage {
        min-height: 410px;
    }

    .why-main {
        width: 91%;
        height: 365px;
        border-radius: 65px 18px 65px 18px;
    }

    .why-small {
        height: 155px;
    }

    .experience-badge {
        width: 105px;
        height: 105px;
    }

    .experience-badge strong {
        font-size: 26px;
    }

    .experience-badge span {
        font-size: 8px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .review-card {
        min-height: 0;
        padding: 26px 23px 23px;
    }

    .review-card > p {
        min-height: 0;
        font-size: 14px;
    }

    .testimonial-carousel {
        padding: 0 42px 46px;
    }

    .testimonial-carousel .carousel-control-prev {
        left: -1px;
    }

    .testimonial-carousel .carousel-control-next {
        right: -1px;
    }

    .rating-summary {
        flex-wrap: wrap;
    }

    .contact-copy,
    .contact-form-wrap {
        padding: 37px 25px;
    }

    .map-card {
        height: 430px;
    }

    .map-address {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .map-address a {
        width: 100%;
        padding-left: 39px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 35px 25px;
        padding-top: 55px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-main > div:last-child {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        align-items: center;
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }

    .floating-whatsapp,
    .back-to-top {
        right: 14px;
        width: 46px;
        height: 46px;
    }

    .details-modal .modal-dialog {
        width: 100%;
        height: 100dvh;
        max-width: none;
        margin: 0;
    }

    .details-modal .modal-content {
        width: 100%;
        height: 100dvh;
        max-height: 100dvh;
        border-radius: 0;
    }

    .detail-hero-media {
        min-height: 220px;
        max-height: 240px;
    }

    .detail-hero-copy {
        padding: 24px 21px;
    }

    .detail-hero-copy h2 {
        font-size: 25px;
    }

    .detail-content {
        padding: 23px 19px 25px;
    }

    .detail-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .detail-tabs .nav-link {
        white-space: nowrap;
    }

    .itinerary-day {
        grid-template-columns: 55px 1fr;
        gap: 10px;
    }

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

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

    .detail-cta {
        align-items: stretch;
        flex-direction: column;
    }
}

@media (max-width: 420px) {
    .hero-copy h1,
    .hero-copy h2 {
        font-size: 38px;
    }

    .trust-bar > div {
        align-items: flex-start;
    }

    .trust-bar span {
        display: block;
    }

    .trust-bar span strong {
        display: block;
    }

    .card-media {
        height: 170px;
        flex-basis: 170px;
    }

    .vehicle-media {
        height: 170px;
        flex-basis: 170px;
    }

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
