/* google fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html,
body {
    scroll-behavior: smooth;
    scrollbar-width: none;
    line-height: 1.5;
    background-color: var(--c-background-even);
}

/* all updates */

/* if active - no scroll if inactive - yes scroll */
.no-scroll {
    overflow: hidden;
}

/* back to top */
.top-cta {
    position: fixed;
    z-index: 1;
    bottom: 40px;
    right: 40px;
    outline: none;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--c-button);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: .5s ease;
    visibility: hidden;
    opacity: 0;
}

.top-cta:hover {
    transform: translateY(-8px);
}

.top-cta.show {
    visibility: visible;
    opacity: 1;
}

/* booking page */
.booking-page {
    position: fixed;
    z-index: 100;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 420px;
    height: auto;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(15, 32, 54, 0.15);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-page.popup {
    visibility: visible;
    opacity: 1;
}

.booking-page .close {
    display: block;
    margin-left: auto;
    cursor: pointer;
    font-size: 1.25rem;
    color: #555;
    transition: color 0.3s ease;
}

.booking-page .close:hover {
    color: #ff3b30;
}

.b-title {
    font-family: var(--ff-headline);
    font-size: var(--sz-headline-s);
    font-weight: bold;
    color: var(--c-headline);
    text-align: center;
    margin-bottom: 0.5rem;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-select label,
.form-details label {
    display: block;
    font-family: var(--ff-headline);
    font-size: var(--sz-paragraph-s);
    font-weight: 600;
    color: var(--c-headline);
    margin-bottom: 6px;
}

.booking-page select,
.booking-page input {
    width: 100%;
    height: 44px;
    outline: none;
    border: 1px solid rgba(15, 32, 54, 0.15);
    border-radius: 8px;
    padding: 0 12px;
    font-family: var(--ff-paragraph);
    font-size: var(--sz-paragraph-s);
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    transition: all 0.3s ease;
}

.booking-page select:focus,
.booking-page input:focus {
    border-color: var(--c-button);
    box-shadow: 0 0 0 3px rgba(0, 150, 255, 0.15);
}

.form-cta {
    margin-top: 12px;
    width: 100%;
    height: 44px;
    outline: none;
    border: none;
    border-radius: 8px;
    background-color: var(--c-button);
    color: var(--c-button-text);
    font-family: var(--ff-paragraph);
    font-size: var(--sz-paragraph-s);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-cta:hover {
    background-color: hsl(200, 95%, 38%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 150, 255, 0.3);
}

/* variables */
:root {
    /* colors */
    --c-background-even: #ffffff;
    --c-background-odd: #f3f7fa;
    /* Contrast pastel light blue */
    --c-headline: #123058;
    /* Rich contrast navy blue */
    --c-button: #3182ce;
    /* Bright contrast sky blue */
    --c-button-text: #ffffff;
    --c-navbar: rgba(255, 255, 255, 0.9);
    /* Contrast white frosted glass */
    --c-navbar-text: #123058;
    /* Deep navy text */
    --c-accent: #f5a623;
    /* Warm gold accent */
    /* fonts */
    --ff-headline: "Montserrat", sans-serif;
    --ff-paragraph: "Poppins", sans-serif;
    /* sizing */
    --sz-headline-l: 3rem;
    --sz-headline-m: 2rem;
    --sz-headline-s: 1.5rem;
    --sz-paragraph-n: 1rem;
    --sz-paragraph-s: 0.875rem;
    --sz-headings: 1.3rem;
}

/* Apply navy contrast color to section headings */
.main-sections h1,
.main-sections h2,
.main-sections h3,
.main-sections h4,
.about-title,
.d-title,
.p-label,
.c-label,
.g-label,
.t-label,
.cn-label,
.a-headline,
.d-headline,
.p-headline,
.c-headline,
.g-headline,
.t-headline,
.cn-headline {
    color: var(--c-headline);
}

/* Ensure Hero content remains white for contrast */
.main-hero h1,
.main-hero h3,
.h-headline,
.h-subheadline {
    color: #ffffff !important;
}

/* navigation */
.navbar {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 1rem auto;
    padding: 0 24px;
}

.n-grp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--c-navbar);
    border-radius: 32px;
    width: 90%;
    padding: 12px 24px;
    backdrop-filter: blur(16px);
    border: 1px solid rgba(18, 48, 88, 0.08);
    box-shadow: 0 8px 32px rgba(18, 48, 88, 0.05);
}

.n-logo {
    font-family: var(--ff-paragraph);
    font-size: var(--sz-paragraph-n);
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--c-navbar-text);
}

.n-logo span {
    color: var(--c-button);
}

.n-link ul {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.n-link li {
    list-style-type: none;
}

.n-link a {
    font-family: var(--ff-paragraph);
    font-size: var(--sz-paragraph-n);
    font-weight: 500;
    text-decoration: none;
    color: var(--c-navbar-text);
    position: relative;
}

.n-link a::after {
    content: "";
    width: 0;
    height: 3px;
    background-color: var(--c-button);
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    transition: all .5s ease;
}

.n-link a:hover::after {
    width: 50%;
}

.n-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

#menu {
    display: none;
}

.n-cta {
    width: 130px;
    height: 40px;
    outline: none;
    border: none;
    border-radius: 8px;
    background-color: var(--c-button);
    color: var(--c-button-text);
    cursor: pointer;
    font-family: var(--ff-paragraph);
    font-size: var(--sz-paragraph-s);
    font-weight: 500;
}

.n-cta i {
    transition: .5s ease;
}

.n-cta:hover i {
    transform: translateX(4px);
}

/* main — sections */
section {
    padding: 100px 0;
}

/* hero */
.main-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    background-color: #0f2036;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.80rem;
    margin-top: 105px;
}

.hero-brand {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0;
    background: rgba(227, 239, 250, 0.92);
    /* Light whitish-blue glassmorphic capsule */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid rgba(49, 130, 206, 0.25);
    box-shadow: 0 8px 32px rgba(18, 48, 88, 0.15);
}

.hero-brand-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(18, 48, 88, 0.15));
    animation: heroPulse 3s infinite ease-in-out;
}

.hero-brand-name {
    font-family: var(--ff-headline);
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, var(--c-headline) 30%, #2b6cb0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

@keyframes heroPulse {

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

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

.h-label {
    font-family: var(--ff-paragraph);
    font-size: var(--sz-paragraph-s);
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    border: 2px solid #00f0ff;
    background-color: rgba(0, 240, 255, 0.08);
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: 2px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8), 0 0 10px rgba(0, 240, 255, 0.8);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.4), inset 0 0 10px rgba(0, 240, 255, 0.2);
    transition: all 0.3s ease;
    animation: neonGlow 2.5s infinite alternate ease-in-out;
}

@keyframes neonGlow {
    from {
        box-shadow: 0 0 8px rgba(0, 240, 255, 0.3), inset 0 0 6px rgba(0, 240, 255, 0.1);
        text-shadow: 0 0 3px rgba(255, 255, 255, 0.6), 0 0 8px rgba(0, 240, 255, 0.6);
        border-color: rgba(0, 240, 255, 0.8);
    }
    to {
        box-shadow: 0 0 18px rgba(0, 240, 255, 0.7), inset 0 0 12px rgba(0, 240, 255, 0.4);
        text-shadow: 0 0 6px rgba(255, 255, 255, 0.9), 0 0 15px rgba(0, 240, 255, 0.9);
        border-color: rgba(0, 240, 255, 1);
    }
}


.h-headline {
    margin-top: 16px;
    font-family: var(--ff-headline);
    font-size: var(--sz-headline-l);
    font-weight: bolder;
    color: #fff;
}

.h-subheadline {
    font-family: var(--ff-paragraph);
    font-size: var(--sz-paragraph-n);
    font-weight: 400;
    color: hsl(0, 0%, 96%);
}

.h-actions {
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
}

.h-actions a {
    text-decoration: none;
    display: inline-block;
}


.h-cta {
    width: 200px;
    height: 40px;
    outline: none;
    border: none;
    border-radius: 4px;
    background-color: var(--c-button);
    color: var(--c-button-text);
    font-family: var(--ff-paragraph);
    font-size: var(--sz-paragraph-s);
    font-weight: 500;
    cursor: pointer;
}

.h-cta i {
    transition: .5s ease;
}

.h-cta:hover i {
    transform: translateX(4px);
}

/* about */
.about-title {
    text-align: center;
    font-family: var(--ff-headline);
    font-size: var(--sz-headings);
    font-weight: bold;
}

.about-grp {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.a-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
}

.a-box {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.a-title {
    font-family: var(--ff-paragraph);
    font-size: var(--sz-paragraph-n);
    font-weight: bolder;
}

.a-text {
    font-family: var(--ff-paragraph);
    font-size: var(--sz-paragraph-s);
    font-weight: 400;
}

.a-grp {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
}

.a-headline {
    font-family: var(--ff-headline);
    font-size: var(--sz-headline-m);
    font-weight: bolder;
    color: #000;
}

.a-subheadline {
    font-family: var(--ff-paragraph);
    font-size: var(--sz-paragraph-n);
    font-weight: 400;
    color: #222;
}

/* destinations */
.main-destinations {
    background-color: var(--c-background-odd);
}

.destinations-header {
    text-align: center;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.d-title {
    font-family: var(--ff-headline);
    font-size: var(--sz-headings);
    font-weight: bold;
}

.d-headline {
    font-family: var(--ff-headline);
    font-size: var(--sz-headline-m);
    font-weight: bolder;
    color: #000;
}

.d-subheadline {
    font-family: var(--ff-paragraph);
    font-size: var(--sz-paragraph-n);
    font-weight: 400;
    color: #222;
}

.d-cards {
    margin-top: 0px;
    gap: 1.5rem;
}

.card {
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--c-background-even);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(18, 48, 88, 0.08);
    border-color: rgba(18, 48, 88, 0.12);
}

.c-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.c-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform .5s ease;
}

.card:hover .c-image img {
    transform: scale(1.05);
}

.c-grp {
    padding: 16px 16px;
}

.c-title {
    font-family: var(--ff-headline);
    font-size: var(--sz-paragraph-n);
    font-weight: bold;
    color: #000;
}

.c-text {
    font-family: var(--ff-paragraph);
    font-size: var(--sz-paragraph-n);
    font-weight: 400;
    color: #222;
}

.c-price {
    margin-top: 8px;
    font-family: var(--ff-paragraph);
    font-size: var(--sz-paragraph-n);
    font-weight: 400;
    color: var(--c-button);
    border: 1px solid var(--c-button);
    display: inline-block;
    border-radius: 4px;
    padding: 4px 8px;
}

/* packages */
.p-header {
    text-align: center;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.p-label {
    font-family: var(--ff-headline);
    font-size: var(--sz-headings);
    font-weight: bold;
}

.p-headline {
    font-family: var(--ff-headline);
    font-size: var(--sz-headline-m);
    font-weight: bolder;
    color: #000;
}

.p-subheadline {
    font-family: var(--ff-paragraph);
    font-size: var(--sz-paragraph-n);
    font-weight: 400;
    color: #222;
}

.p-cards {
    margin-top: 0px;
    gap: 1rem;
}

.p-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 100%;
    height: auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 16px 16px;
    transition: all .5s ease;
}

.p-card:hover {
    transform: translateY(-8px);
}

.p-card img {
    width: 40px;
    height: 40px;
}

.p-grp {
    margin-top: 16px;
    text-align: center;
}

.p-label {
    font-family: var(--ff-headline);
    font-size: var(--sz-headings);
    font-weight: bold;
    color: #000;
}

.p-title {
    margin-top: 8px;
    font-family: var(--ff-paragraph);
    font-size: var(--sz-paragraph-s);
    font-weight: 400;
    color: #222;
}

.p-text {
    font-family: var(--ff-paragraph);
    font-size: var(--sz-paragraph-s);
    font-weight: 400;
    color: #222;
}

.p-price {
    margin-top: 16px;
    font-family: var(--ff-paragraph);
    font-size: var(--sz-paragraph-s);
    font-weight: 400;
    color: var(--c-button);
    border: 1px solid var(--c-button);
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
}

/* Carousel Stacked / Card Auto Scroll Layout */
.carousel-wrapper {
    position: relative;
    width: 100%;
    margin-top: 40px;
    padding: 0 10px;
}

.carousel-container {
    display: flex !important;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    snap-type: x mandatory;
    padding: 10px 0 20px 0;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.d-cards .carousel-item,
.v-cards .carousel-item {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 280px;
    snap-align: start;
}

.p-cards .carousel-item {
    flex: 0 0 calc(25% - 0.75rem);
    min-width: 260px;
    snap-align: start;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--c-background-even);
    border: 1px solid rgba(15, 32, 54, 0.1);
    color: var(--c-headline);
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    opacity: 0;
}

.carousel-wrapper:hover .carousel-btn {
    opacity: 1;
}

.prev-btn {
    left: -15px;
}

.next-btn {
    right: -15px;
}

.carousel-btn:hover {
    background-color: var(--c-button);
    color: var(--c-button-text);
    border-color: var(--c-button);
    transform: translateY(-50%) scale(1.05);
}

@media (max-width: 1024px) {

    .d-cards .carousel-item,
    .v-cards .carousel-item {
        flex: 0 0 calc(50% - 0.75rem);
    }

    .p-cards .carousel-item {
        flex: 0 0 calc(50% - 0.5rem);
    }

    .carousel-btn {
        display: none;
    }
}

@media (max-width: 600px) {

    .d-cards .carousel-item,
    .p-cards .carousel-item,
    .v-cards .carousel-item {
        flex: 0 0 100%;
    }
}

/* why choose us */
.main-choose {
    background-color: var(--c-background-odd);
}

.c-header {
    text-align: center;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.c-label {
    font-family: var(--ff-headline);
    font-size: var(--sz-headings);
    font-weight: bold;
    color: #000;
}

.c-headline {
    font-family: var(--ff-paragraph);
    font-size: var(--sz-headline-m);
    font-weight: bold;
}

.c-cards {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.c-card {
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 16px 16px;
    text-align: center;
    transition: all .5s ease;
}

.c-card:hover {
    transform: translateY(-8px);
}

.c-card i {
    font-size: var(--sz-paragraph-s);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: green;
    border-radius: 50%;
}

.c-content {
    padding: 24px 0 0 0;
}

.c-title {
    font-family: var(--ff-headline);
    font-size: var(--sz-paragraph-n);
    font-weight: bolder;
    color: #000;
}

.c-text {
    margin-top: 8px;
    font-family: var(--ff-paragraph);
    font-size: var(--sz-paragraph-s);
    font-weight: 400;
    color: #222;
}

/* gallery */
.g-header {
    text-align: center;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.g-label {
    font-family: var(--ff-headline);
    font-size: var(--sz-headings);
    font-weight: bold;
    color: #000;
}

.g-headline {
    font-family: var(--ff-paragraph);
    font-size: var(--sz-headline-m);
    font-weight: bold;
    color: #000;
}

.g-subheadline {
    font-family: var(--ff-paragraph);
    font-size: var(--sz-paragraph-n);
    font-weight: 400;
    color: #222;
}

.g-gallery {
    display: grid;
    grid-template-areas:
        "one one two three"
        "one one four five";
    gap: 1rem;
}

.g-gallery img {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.g-gallery img:nth-child(1) {
    grid-area: one;
    height: 100%;
}

.g-gallery img:nth-child(2) {
    grid-area: two;
    height: 200px;
}

.g-gallery img:nth-child(3) {
    grid-area: three;
    height: 200px;
}

.g-gallery img:nth-child(4) {
    grid-area: four;
    height: 200px;
}

.g-gallery img:nth-child(5) {
    grid-area: five;
    height: 200px;
}

/* testimonials */
.main-testimonials {
    background-color: var(--c-background-even);
}

.t-header {
    text-align: center;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.t-label {
    font-family: var(--ff-paragraph);
    font-size: var(--sz-headings);
    font-weight: bold;
    color: #000;
}

.t-headline {
    font-family: var(--ff-paragraph);
    font-size: var(--sz-headline-m);
    font-weight: bold;
    color: #000;
}

.t-subheadline {
    font-family: var(--ff-paragraph);
    font-size: var(--sz-paragraph-n);
    font-weight: 400;
    color: #222;
}

.t-reviews {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.t-card {
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 24px 8px 8px 8px;
    transition: all .5s ease;
}

.t-card:hover {
    transform: translateY(-8px);
}

.t-stars {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.t-message {
    margin-top: 16px;
    font-family: var(--ff-paragraph);
    font-size: var(--sz-paragraph-n);
    font-weight: 400;
    color: #222;
}

.t-message::before {
    content: "' ";
}

.t-message::after {
    content: " '";
}

.t-author {
    margin-top: 8px;
    font-family: var(--ff-headline);
    font-size: var(--sz-paragraph-n);
    font-weight: 500;
    color: #000;
}

.t-author::before {
    content: "— ";
}

/* contact */
.cn-header {
    text-align: center;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cn-label {
    font-family: var(--ff-paragraph);
    font-size: var(--sz-headings);
    font-weight: bold;
    color: #000;
}

.cn-headline {
    font-family: var(--ff-paragraph);
    font-size: var(--sz-headline-m);
    font-weight: bold;
    color: #000;
}

.cn-subheadline {
    font-family: var(--ff-paragraph);
    font-size: var(--sz-paragraph-n);
    font-weight: 400;
    color: #222;
}

.cn-details {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.cn-card {
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 16px 8px 8px 8px;
    text-align: center;
    transition: all .5s ease;
}

.cn-card:hover {
    transform: translateY(-8px);
}

.cn-card i {
    font-size: var(--sz-headings);
}

.cn-text {
    margin-top: 16px;
}

.title {
    font-family: var(--ff-paragraph);
    font-size: var(--sz-paragraph-n);
    font-weight: 400;
    color: #222;
}

/* logo and icons */
.logo-img {
    height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
}

.f-logo-img {
    height: 45px;
    width: auto;
    display: block;
    margin-bottom: 12px;
}

.p-icon-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: rgba(0, 150, 255, 0.1);
    border-radius: 50%;
    margin-bottom: 16px;
    color: var(--c-button);
}

.p-pack-icon {
    font-size: 1.5rem;
}

.c-icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--c-background-even);
    border-radius: 50%;
    margin-bottom: 12px;
    border: 1px solid rgba(245, 158, 11, 0.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.c-icon-circle i {
    font-size: 1.25rem;
    color: var(--c-accent);
}

.t-stars i {
    color: var(--c-accent);
}

/* Map Container */
.map-container {
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(15, 32, 54, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
    border: 0;
}

/* footer */
.main-footer {
    background-color: var(--c-background-odd);
    border-top: 1px solid rgba(15, 32, 54, 0.06);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    padding: 60px 24px 40px 24px;
    border-bottom: 1px solid rgba(15, 32, 54, 0.08);
}

.f-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.f-desc {
    font-family: var(--ff-paragraph);
    font-size: var(--sz-paragraph-s);
    color: #4a5568;
    line-height: 1.6;
    max-width: 500px;
}

.f-links h4 {
    font-family: var(--ff-headline);
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--c-headline);
    margin-bottom: 16px;
}

.f-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
}

.f-links a {
    text-decoration: none;
    font-family: var(--ff-paragraph);
    font-size: var(--sz-paragraph-s);
    color: #4a5568;
    transition: color 0.3s ease;
}

.f-links a:hover {
    color: var(--c-button);
}

.f-copyright {
    text-align: center;
    margin-bottom: 0;
}

.f-last {
    font-family: var(--ff-paragraph);
    font-size: var(--sz-paragraph-s);
    font-weight: 500;
    color: #718096;
    padding: 24px 0;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 40px 24px 20px 24px;
    }
}

/* functionality for navbar */
@media (max-width: 1024px) {

    /* navigation */
    .n-grp {
        position: relative;
    }

    .n-link ul {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 0;
    }

    #menu {
        display: block;
        color: var(--c-navbar-text);
        cursor: pointer;
    }

    .n-grp #nav {
        position: absolute;
        z-index: 99;
        top: calc(100% + 16px);
        left: 0;
        width: 100%;
        background-color: var(--c-navbar);
        border-radius: 32px;
        visibility: hidden;
        opacity: 0;
        transition: .5s ease-in-out;
    }

    .n-grp #nav.active {
        visibility: visible;
        opacity: 1;
    }
}

/* tablet */
@media (max-width: 1024px) {

    /* hero */
    .hero-content {
        position: relative;
        margin-top: 90px;
    }

    .hero-brand {
        padding: 8px 20px;
        gap: 0.5rem;
    }

    .hero-brand-name {
        font-size: 1.6rem;
    }

    .hero-brand-logo {
        width: 40px;
        height: 40px;
    }

    .h-label {
        font-size: var(--sz-paragraph-s);
    }

    .h-headline {
        font-size: var(--sz-headline-m);
    }

    .h-subheadline {
        font-size: var(--sz-paragraph-s);
    }

    .h-actions {
        margin-top: 32px;
    }

    /* about */
    .about-grp {
        flex-direction: column;
    }

    .a-grp {
        text-align: center;
        gap: 1rem;
    }

    .a-headline {
        font-size: var(--sz-headline-m);
    }

    .a-subheadline {
        font-size: var(--sz-paragraph-s);
    }

    /* destinations */
    .d-headline {
        font-size: var(--sz-headline-m);
    }

    .d-subheadline {
        font-size: var(--sz-paragraph-s);
    }

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

    /* packages */
    .p-headline {
        font-size: var(--sz-headline-m);
    }

    .p-subheadline {
        font-size: var(--sz-paragraph-s);
    }

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

    /* why choose us */
    .c-headline {
        font-size: var(--sz-headline-m);
    }

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

    /* gallery */
    .g-headline {
        font-size: var(--sz-headline-m);
    }

    .g-subheadline {
        font-size: var(--sz-paragraph-s);
    }

    .g-gallery {
        grid-template-areas:
            "one one"
            "one one"
            "two three"
            "four five";
    }

    /* testimonials */
    .t-headline {
        font-size: var(--sz-headline-m);
    }

    .t-subheadline {
        font-size: var(--sz-paragraph-s);
    }

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

    /* contact */
    .cn-headline {
        font-size: var(--sz-headline-m);
    }

    .cn-subheadline {
        font-size: var(--sz-paragraph-s);
    }

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

    /* footer */
}

/* mobile */
@media (max-width: 420px) {

    /* hero */
    .hero-brand {
        padding: 6px 16px;
        gap: 0.5rem;
    }

    .hero-brand-name {
        font-size: 1.25rem;
    }

    .hero-brand-logo {
        width: 32px;
        height: 32px;
    }

    .hero-content {
        width: 100%;
        position: relative;
        margin-top: 80px;
    }

    .h-headline {
        font-size: var(--sz-headline-s);
    }

    .h-actions {
        flex-direction: column;
        width: 100%;
    }

    .h-actions a {
        width: 100%;
    }

    .h-cta {
        width: 100%;
    }

    /* about */
    .a-stats {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .a-headline {
        font-size: var(--sz-headline-s);
    }

    /* destinations */
    .d-headline {
        font-size: var(--sz-headline-s);
    }

    .d-cards {
        grid-template-columns: 1fr;
    }

    /* packages */
    .p-headline {
        font-size: var(--sz-headline-s);
    }

    .p-cards {
        grid-template-columns: 1fr;
    }

    /* why choose us */
    .c-headline {
        font-size: var(--sz-headline-s);
    }

    .c-cards {
        grid-template-columns: 1fr;
    }

    /* gallery */
    .g-headline {
        font-size: var(--sz-headline-s);
    }

    .g-gallery {
        grid-template-areas:
            "one"
            "two"
            "three"
            "four"
            "five";
    }

    /* testimonials */
    .t-headline {
        font-size: var(--sz-headline-s);
    }

    .t-reviews {
        grid-template-columns: 1fr;
    }

    /* contact */
    .cn-headline {
        font-size: var(--sz-headline-s);
    }

    .cn-details {
        grid-template-columns: 1fr;
    }
}

/* Subpages Styles */
.subpage-header {
    background-color: var(--c-background-odd);
    padding: 140px 0 60px 0;
    text-align: center;
    border-bottom: 1px solid rgba(18, 48, 88, 0.05);
}

.subpage-header h1 {
    font-family: var(--ff-headline);
    font-size: var(--sz-headline-m);
    font-weight: bolder;
    color: var(--c-headline) !important;
    margin-bottom: 8px;
}

.breadcrumbs {
    font-family: var(--ff-paragraph);
    font-size: var(--sz-paragraph-s);
    color: #718096;
}

.breadcrumbs a {
    text-decoration: none;
    color: var(--c-button);
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--c-headline);
}

.breadcrumbs span {
    margin: 0 8px;
    color: #a0aec0;
}

.grid-section {
    padding: 60px 0 100px 0;
}

.grid-layout-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-layout-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Card overrides for subpage list grid (remove carousel widths) */
.grid-section .carousel-item {
    flex: initial !important;
    min-width: initial !important;
    snap-align: initial !important;
}

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

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

@media (max-width: 600px) {

    .grid-layout-3,
    .grid-layout-4 {
        grid-template-columns: 1fr;
    }
}

/* Contact page form styles */
.contact-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
}

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

.contact-form-container {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(18, 48, 88, 0.06);
    box-shadow: 0 10px 30px rgba(18, 48, 88, 0.03);
}

.contact-form-container h2 {
    font-family: var(--ff-headline);
    font-size: var(--sz-headline-s);
    color: var(--c-headline) !important;
    margin-bottom: 24px;
}

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

.form-group label {
    font-family: var(--ff-headline);
    font-size: var(--sz-paragraph-s);
    font-weight: 600;
    color: var(--c-headline);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(15, 32, 54, 0.15);
    border-radius: 8px;
    font-family: var(--ff-paragraph);
    font-size: var(--sz-paragraph-s);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--c-button);
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.15);
    outline: none;
}

.form-submit-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background-color: var(--c-button);
    color: var(--c-button-text);
    font-family: var(--ff-paragraph);
    font-size: var(--sz-paragraph-s);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit-btn:hover {
    background-color: hsl(200, 95%, 38%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.3);
}

/* Gallery subpage image card styles */
.gallery-grid-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(15, 32, 54, 0.06);
}

.gallery-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-grid-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(18, 48, 88, 0.95) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 24px 16px 16px 16px;
    color: #ffffff;
    font-family: var(--ff-paragraph);
    font-size: var(--sz-paragraph-s);
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-grid-item:hover .gallery-overlay-title {
    opacity: 1;
}

/* Floating Call Button for Mobile */
.mobile-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #22c55e 0%, #15803d 100%);
    color: #ffffff;
    border-radius: 50%;
    display: none; /* hidden on desktop */
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 16px rgba(21, 128, 61, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: callPulse 2s infinite ease-in-out;
}

.mobile-call-btn:hover,
.mobile-call-btn:active {
    transform: scale(1.05);
    background: linear-gradient(135deg, #25d366 0%, #166534 100%);
    box-shadow: 0 6px 20px rgba(21, 128, 61, 0.5);
    color: #ffffff;
}

@keyframes callPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(34, 197, 94, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

/* Booking Modal Call Button Integration */
.popup-call-container {
    text-align: center;
    margin-top: 1rem;
    border-top: 1px solid rgba(15, 32, 54, 0.1);
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.popup-call-text {
    font-family: var(--ff-paragraph);
    font-size: var(--sz-paragraph-s);
    color: #555;
    font-weight: 500;
}

.popup-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 44px;
    background-color: #22c55e;
    color: #ffffff !important;
    font-family: var(--ff-paragraph);
    font-size: var(--sz-paragraph-s);
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.popup-call-btn:hover {
    background-color: #16a34a;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .mobile-call-btn {
        display: inline-flex; /* show on mobile & tablet only */
    }
    .top-cta {
        bottom: 100px;
        right: 38px;
    }
}