@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Montserrat:wght@400;500;600;700;800&display=swap');

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

:root {
    --theme-green: #55d555;
    --theme-sky: #41bfff;
    --theme-cyan: #2cc3d2;
    --theme-blue: #087fd8;
    --theme-deep: #0f4e92;
    --navy-900: #0f4e92;
    --navy-800: #0a5fae;
    --navy-700: #087fd8;
    --mist-100: #f1fbff;
    --mist-200: #dff3ff;
    --brand-red: #2cc3d2;
    --brand-red-strong: #0f4e92;
    --ink-900: #14212b;
    --ink-700: #465766;
    --ink-500: #637789;
    --white: #ffffff;
    --border-soft: rgba(8, 127, 216, 0.16);
    --shadow-soft: 0 14px 40px rgba(11, 31, 51, 0.12);
    --accent-gradient: linear-gradient(90deg, var(--theme-cyan), var(--theme-blue));
    --accent-gradient-strong: linear-gradient(90deg, var(--theme-blue), var(--theme-deep));
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--ink-900);
    line-height: 1.6;
    background: linear-gradient(180deg, #f2fcff 0%, #e5f6ff 55%, #dcf4ff 100%);
}

.splash-screen {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: grid;
    place-items: center;
    background: #ffffff;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.splash-screen.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.splash-screen__content {
    display: grid;
    place-items: center;
    gap: 1.35rem;
    padding: 2.25rem;
    text-align: center;
}

.splash-screen__logo {
    width: min(520px, 82vw);
    max-height: 58vh;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 36px rgba(8, 127, 216, 0.14));
    transform: scale(1.04);
}

.splash-screen__loader {
    width: min(180px, 50vw);
    height: 4px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(8, 127, 216, 0.12);
}

.splash-screen__loader::after {
    content: '';
    display: block;
    width: 42%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--theme-cyan), var(--theme-blue));
    animation: splashLoader 1.05s ease-in-out infinite;
}

@keyframes splashLoader {
    0% {
        transform: translateX(-120%);
    }
    100% {
        transform: translateX(260%);
    }
}

h1,
h2,
h3,
.logo {
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.4px;
}

.container {
    width: min(1180px, calc(100% - 2.5rem));
    margin: 0 auto;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid var(--border-soft);
}

.header-top {
    background: linear-gradient(90deg, var(--theme-deep), var(--theme-blue));
    padding: 0.55rem 0;
}

.header-top .header-container,
.header-main .header-container {
    width: min(1320px, calc(100% - 2.5rem));
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.header-top .header-container {
    justify-content: flex-end;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-item {
    color: #d8e4ef;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.25s ease;
}

.contact-item:hover {
    color: var(--brand-red);
}

.divider {
    color: rgba(255, 255, 255, 0.3);
}

.header-main {
    padding: 0.95rem 0;
}

.header-main .header-container {
    justify-content: space-between;
    gap: 1.25rem;
}

.logo-section {
    flex-shrink: 0;
    margin-left: 50px;
}

.header-logo {
    display: block;
    width: auto;
    height: 110px;
    max-width: 400px;
    object-fit: contain;
}

.logo {
    font-size: 2rem;
    line-height: 1;
    color: var(--theme-deep);
    font-weight: 800;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45), 0 1px 10px rgba(8, 127, 216, 0.2);
}

.logo-tagline {
    color: var(--brand-red-strong);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 700;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.7rem, 2vw, 2rem);
    flex: 1;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-item-dropdown {
    padding-bottom: 0.8rem;
    margin-bottom: -0.8rem;
}

.nav-item-dropdown .nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding-right: 0.25rem;
}

.nav-item-dropdown .nav-link::after {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    opacity: 0.7;
    transition: transform 0.2s ease;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    min-width: 240px;
    padding: 0.55rem;
    border-radius: 14px;
    border: 1px solid rgba(8, 127, 216, 0.2);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(6px);
    box-shadow: 0 18px 36px rgba(11, 31, 51, 0.14);
    transform: translateX(-50%) translateY(10px) scale(0.98);
    transform-origin: top center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    z-index: 1100;
}

.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    width: 100%;
    height: 12px;
}

.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0) scale(1);
    animation: navDropdownIn 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-item-dropdown:hover .nav-link::after,
.nav-item-dropdown:focus-within .nav-link::after {
    transform: rotate(225deg) translateY(-1px);
}

.nav-dropdown-link {
    display: block;
    padding: 0.6rem 0.8rem;
    border-radius: 10px;
    color: var(--ink-700);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.35px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-dropdown-link:hover,
.nav-dropdown-link.active {
    color: var(--brand-red-strong);
    background: linear-gradient(90deg, #e9f7ff 0%, #f4fbff 100%);
    transform: translateX(2px);
}

@keyframes navDropdownIn {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px) scale(0.97);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .nav-dropdown,
    .nav-dropdown-link,
    .nav-item-dropdown .nav-link::after {
        transition: none;
    }

    .nav-item-dropdown:hover .nav-dropdown,
    .nav-item-dropdown:focus-within .nav-dropdown {
        animation: none;
    }
}

.nav-link {
    color: var(--ink-700);
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.7px;
    padding: 0.5rem 0.3rem;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand-red-strong);
    border-bottom-color: var(--brand-red-strong);
}

.header-cta {
    border: none;
    border-radius: 999px;
    background: var(--accent-gradient);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.9px;
    padding: 0.7rem 1.15rem;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(8, 127, 216, 0.35);
}

.header-bottom-border {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--theme-green), transparent);
}

/* Hero */
.hero {
    position: relative;
    isolation: isolate;
    min-height: 82vh;
    display: flex;
    align-items: center;
    padding: 5.5rem 0 4rem;
    background: radial-gradient(circle at 20% 20%, #41bfff 0%, #087fd8 52%, #0f4e92 100%);
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)), url('../assets/images/footer.gif');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.hero-content {
    color: var(--white);
}

.hero-kicker {
    display: inline-flex;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.05;
    max-width: 14ch;
}

.hero-lead {
    margin-top: 1rem;
    max-width: 58ch;
    color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
    margin-top: 1.9rem;
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.cta-button,
.submit-btn,
.footer-subscribe-btn {
    border: none;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cta-button {
    background: var(--accent-gradient);
    color: #ffffff;
    padding: 0.95rem 1.45rem;
}

.cta-button:hover,
.submit-btn:hover,
.footer-subscribe-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(11, 31, 51, 0.18);
}

.cta-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0.9rem 1.3rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: var(--white);
    font-weight: 700;
    letter-spacing: 0.6px;
}

.hero-metrics {
    margin-top: 2.2rem;
    display: grid;
    gap: 0.8rem;
    grid-template-columns: repeat(3, minmax(120px, 180px));
}

.metric-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    padding: 0.8rem 0.9rem;
    backdrop-filter: blur(2px);
}

.metric-item span {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
}

.metric-item p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.86);
}

/* Shared Sections */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: var(--accent-gradient) !important;
    color: white !important;
    padding: 0.9rem 1.8rem;
    border-radius: 99px; /* changed from 8px to rounded for hero match */
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none !important;
    cursor: pointer;
    font-family: inherit;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: 0 6px 16px rgba(8, 127, 216, 0.28) !important;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(8, 127, 216, 0.36);
}

section {
    padding: 5rem 0;
}

.why-us,
.destinations,
.testimonials,
.experiences {
    background: transparent;
}

.section-intro {
    max-width: 760px;
    margin: 0 auto 2.25rem;
    text-align: center;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: rgba(15, 78, 146, 0.08);
    border: 1px solid rgba(8, 127, 216, 0.2);
    color: var(--navy-900);
    text-transform: uppercase;
    letter-spacing: 0.9px;
    font-size: 0.72rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.why-us h2,
.destinations h2,
.testimonials h2,
.experiences h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--navy-900);
    text-align: center;
    margin-bottom: 0.5rem;
}

.subtitle {
    text-align: center;
    color: var(--ink-500);
    margin-bottom: 0;
    font-size: 1rem;
}

/* Why Us */
.features-grid {
    display: grid;
    gap: 1.1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    counter-reset: featureOrder;
}

.why-us {
    position: relative;
}

.why-us .feature {
    position: relative;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(8, 127, 216, 0.15);
    border-radius: 12px;
    padding: 1.35rem 1.25rem 1.3rem;
    box-shadow: 0 14px 28px rgba(11, 31, 51, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.why-us .feature::before {
    counter-increment: featureOrder;
    content: counter(featureOrder, decimal-leading-zero);
    position: absolute;
    top: 0.9rem;
    right: 1rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: rgba(15, 78, 146, 0.4);
}

.why-us .feature:hover {
    transform: translateY(-4px);
    border-color: rgba(8, 127, 216, 0.3);
    box-shadow: 0 18px 36px rgba(11, 31, 51, 0.12);
}

.why-us .feature h3 {
    font-size: 1.3rem;
    line-height: 1.18;
    color: var(--navy-800);
    margin-bottom: 0.45rem;
    max-width: 18ch;
}

.why-us .feature p {
    color: var(--ink-700);
    font-size: 0.93rem;
}

/* Destinations */
.destinations {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, rgba(240, 250, 255, 0.9) 100%);
}

.destinations-grid {
    display: grid;
    gap: 1.15rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.destination-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f4fcff 100%);
    border: 1px solid rgba(8, 127, 216, 0.14);
    border-radius: 12px;
    padding: 1.15rem;
    box-shadow: 0 12px 30px rgba(11, 31, 51, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.destination-card::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, var(--theme-cyan), var(--theme-blue), var(--theme-green));
}

.destination-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(11, 31, 51, 0.12);
}

.card-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(8, 127, 216, 0.1);
    color: var(--navy-900);
    font-size: 0.69rem;
    font-weight: 700;
    letter-spacing: 0.55px;
    text-transform: uppercase;
    padding: 0.28rem 0.58rem;
    margin-bottom: 0.65rem;
}

.destination-card h3 {
    color: var(--navy-900);
    font-size: 1.3rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.destination-card p {
    color: var(--ink-700);
    font-size: 0.91rem;
}

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

.testimonial {
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    padding: 1.3rem;
    box-shadow: 0 8px 16px rgba(11, 31, 51, 0.07);
}

.review-text {
    color: var(--ink-700);
    font-size: 0.93rem;
}

.reviewer-name {
    margin-top: 0.75rem;
    color: var(--brand-red-strong);
    font-weight: 700;
    font-size: 0.9rem;
}

/* Experiences */
.experiences {
    background: linear-gradient(180deg, rgba(228, 244, 255, 0.5) 0%, rgba(220, 240, 251, 0.88) 100%);
}

.experiences-grid {
    display: grid;
    gap: 1.15rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.experience-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    padding: 1.2rem 1.1rem;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: linear-gradient(145deg, #0d6db9 0%, #0f4e92 58%, #0d3b6f 100%);
    box-shadow: 0 14px 30px rgba(8, 42, 77, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.experience-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.22), transparent 60%);
    pointer-events: none;
}

.experience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(8, 42, 77, 0.28);
}

.experiences .card-badge {
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.9);
}

.experience-card h3 {
    font-size: 1.2rem;
    line-height: 1.2;
    margin-bottom: 0.45rem;
}

.experience-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(110deg, var(--theme-deep), var(--theme-blue));
    color: var(--white);
}

.newsletter h3 {
    text-align: center;
    font-size: 2rem;
}

.newsletter p {
    text-align: center;
    margin-top: 0.35rem;
    color: #d0dfeb;
}

.newsletter-form {
    margin: 1.3rem auto 0;
    max-width: 640px;
    display: flex;
    gap: 0.65rem;
}

.newsletter-form input,
.footer-newsletter-form input {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.85rem 0.95rem;
    font-family: 'Montserrat', sans-serif;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.newsletter-form input::placeholder,
.footer-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.78);
}

.submit-btn {
    background: var(--accent-gradient);
    color: #ffffff;
    padding: 0.85rem 1.1rem;
    min-width: 170px;
}

/* Footer */
.footer {
    position: relative;
    overflow: hidden;
    color: #d7e4ef;
    padding: 3.5rem 0 0;
    background: #102e46;
}

.footer-background {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(16, 46, 70, 0.7), rgba(16, 46, 70, 0.82)), url('../assets/images/footer.gif');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.footer-container {
    width: min(1320px, calc(100% - 2.5rem));
    margin: 0 auto 2rem;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2rem;
}

.footer-left,
.footer-middle,
.footer-right {
    display: grid;
    gap: 0.9rem;
}

.footer-middle {
    grid-template-columns: 1fr 1fr;
    align-self: start;
}

.footer-info {
    display: grid;
    gap: 0.2rem;
}

.info-label {
    color: #9db3c7;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.9px;
}

.company-name {
    color: var(--white);
    font-weight: 700;
}

.footer p,
.footer a {
    color: #d0deea;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer a:hover,
.footer-column a:hover,
.footer-bottom-links a:hover {
    color: var(--brand-red);
}

.footer-column {
    display: grid;
    align-content: start;
    justify-items: start;
    gap: 0.45rem;
}

.newsletter-footer h4,
.footer-social h4 {
    color: var(--white);
    letter-spacing: 0.8px;
}

.footer-newsletter-form {
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
}

.footer-subscribe-btn {
    background: var(--accent-gradient);
    color: #ffffff;
    padding: 0.8rem 0.9rem;
}

.social-icons {
    display: flex;
    gap: 0.65rem;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-weight: 700;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(6, 16, 28, 0.35);
    padding: 1rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.83rem;
    margin-bottom: 0.35rem;
    color: #c3d4e2;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.footer-bottom-links a {
    font-size: 0.8rem;
    color: #a9c0d2;
}

/* Transport Page */
.transport-showcase {
    padding: 5rem 0 3.5rem;
    background: linear-gradient(180deg, #f7fbff 0%, #eef8ff 100%);
}

.transport-intro {
    max-width: 760px;
    margin: 0 auto 2.2rem;
    text-align: center;
}

.transport-intro h2 {
    color: var(--navy-900);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin-bottom: 0.8rem;
}

.transport-intro p {
    color: var(--ink-700);
    font-size: 1rem;
}

.transport-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(44, 195, 210, 0.12);
    color: var(--navy-800);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.transport-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.transport-card {
    overflow: hidden;
    border-radius: 22px;
    background: var(--white);
    border: 1px solid rgba(8, 127, 216, 0.15);
    box-shadow: 0 18px 45px rgba(11, 31, 51, 0.1);
}

.transport-media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, #dff3ff 0%, #bfe7fb 100%);
}

.transport-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 31, 51, 0.04) 0%, rgba(11, 31, 51, 0.2) 100%);
    pointer-events: none;
}

.transport-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.transport-card-body {
    display: grid;
    gap: 0.95rem;
    padding: 1.5rem;
}

.transport-card-header h3 {
    color: var(--navy-900);
    font-size: 2rem;
    line-height: 1.1;
    margin-top: 0.45rem;
}

.transport-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(8, 127, 216, 0.12), rgba(44, 195, 210, 0.12));
    color: var(--navy-800);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.transport-card-body p {
    color: var(--ink-700);
    font-size: 0.96rem;
}

.transport-specs {
    list-style: none;
    display: grid;
    gap: 0.7rem;
}

.transport-specs li {
    position: relative;
    padding-left: 1.35rem;
    color: var(--ink-700);
    font-size: 0.92rem;
}

.transport-specs li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--theme-cyan);
    box-shadow: 0 0 0 5px rgba(44, 195, 210, 0.14);
}

.transport-benefits {
    padding: 1rem 0 5rem;
    background: transparent;
}

.transport-intro-small {
    margin-bottom: 1.4rem;
}

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

.transport-benefits-grid .feature {
    position: relative;
    min-height: 100%;
    padding: 2rem 1.5rem 1.6rem;
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #f2fbff 100%);
    border: 1px solid rgba(8, 127, 216, 0.12);
    box-shadow: 0 16px 38px rgba(11, 31, 51, 0.08);
    overflow: hidden;
}

.transport-benefits-grid .feature::before {
    content: "";
    position: absolute;
    top: -30px;
    right: -18px;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(65, 191, 255, 0.36), rgba(8, 127, 216, 0.1) 68%, transparent 70%);
    pointer-events: none;
}

.transport-benefits-grid .feature h3 {
    position: relative;
    display: inline-block;
    margin-bottom: 0.5rem;
    color: var(--navy-900);
    font-size: 1.55rem;
}

.transport-benefits-grid .feature h3::after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    margin-top: 0.55rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--theme-cyan), var(--theme-blue));
}

.transport-benefits-grid .feature p {
    color: var(--ink-700);
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 1100px) {
    .features-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .destinations-grid,
    .experiences-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .transport-grid,
    .transport-benefits-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 860px) {
    .header-main .header-container {
        flex-wrap: wrap;
    }

    .nav {
        order: 3;
        width: 100%;
        justify-content: space-between;
    }

    .header-cta {
        order: 2;
    }

    .hero {
        min-height: auto;
        padding-top: 4rem;
    }

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

    .newsletter-form {
        flex-direction: column;
    }
    
    .logo-section {
        margin-left: 0;
    }

    .header-logo {
        height: clamp(68px, 16vw, 92px);
        max-width: min(72vw, 280px);
    }
}

@media (max-width: 640px) {
    .header-top {
        display: none;
    }

    .header-logo {
        height: clamp(58px, 20vw, 80px);
        max-width: min(78vw, 220px);
    }

    .header-main {
        padding: 0.75rem 0;
    }

    .logo {
        font-size: 1.55rem;
    }

    .logo-tagline {
        font-size: 0.62rem;
    }

    .nav {
        gap: 0.55rem;
    }

    .nav-link {
        font-size: 0.74rem;
    }

    section {
        padding: 3.7rem 0;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-actions .cta-button,
    .hero-actions .cta-link {
        width: 100%;
        justify-content: center;
    }

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

    .features-grid,
    .destinations-grid,
    .testimonials-grid,
    .experiences-grid,
    .footer-middle {
        grid-template-columns: 1fr;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 0.4rem;
    }
}

/* UNIQUE HERO SLIDESHOW DESIGN */
.hero {
    position: relative;
    isolation: isolate;
    min-height: 100vh;
    height: auto;
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
    background: linear-gradient(120deg, #0f4e92 0%, #087fd8 52%, #41bfff 100%);
}

/* Base override for hero structure */
.hero .container.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    position: relative;
    z-index: 10;
    min-height: 100%;
    padding: 7rem 0 4.4rem;
    margin-top: auto;
    margin-bottom: auto;
}

@media (min-width: 900px) {
    .hero .container.hero-content {
        grid-template-columns: 1.5fr 1fr;
        align-items: end;
        gap: 4rem;
    }
}

.hero-text-box {
    max-width: 650px;
    animation: slideUpFade 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #02060b;
}

.hero-video {
    position: absolute;
    inset: -0.5%;
    width: 101%;
    height: 101%;
    object-fit: cover;
    object-position: center 50%;
    transform: translateZ(0) scale(1);
    filter: saturate(1.05) contrast(1.04) brightness(1.01);
    animation: heroVideoDrift 30s ease-in-out infinite alternate;
    opacity: 0;
    transition: opacity 0.45s ease;
    backface-visibility: hidden;
    will-change: transform;
}

.hero-video.is-ready {
    opacity: 1;
}

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.2s ease-in-out, transform 8s ease-out;
    will-change: opacity, transform;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    transition: opacity 1.2s ease-in-out, transform 12s linear;
}

@keyframes heroVideoDrift {
    from {
        transform: translateZ(0) scale(1);
    }
    to {
        transform: translateZ(0) scale(1.01);
    }
}

.slider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 127, 216, 0.16) 0%, rgba(44, 195, 210, 0.1) 100%);
    z-index: 2;
}

@media (min-width: 900px) {
    .hero-slider {
        left: 0;
        right: 0;
        width: 100%;
        height: 100%;
    }

    .hero .container.hero-content {
        width: min(1320px, calc(100% - 2.5rem));
        margin-left: auto;
        margin-right: auto;
        padding-right: 0;
    }
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(11, 31, 51, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.slide-nav {
    background: transparent;
    border: none;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.slide-nav:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--brand-red);
}

.slide-indicators {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--brand-red);
    width: 24px;
    border-radius: 4px;
}

/* Glass Metrics for Unique Layout */
.hero-metrics {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 240px;
    margin-left: auto;
}

.metric-item.glass {
    background: rgba(11, 31, 51, 0.4);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(65, 191, 255, 0.35);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    transform: translateY(20px);
    opacity: 0;
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.metric-item.glass:nth-child(1) { animation-delay: 0.2s; }
.metric-item.glass:nth-child(2) { animation-delay: 0.3s; }
.metric-item.glass:nth-child(3) { animation-delay: 0.4s; }

.metric-item.glass span {
    color: var(--brand-red);
}

/* Base Animations */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================================
   ENHANCED MOBILE OPTIMIZATION
   ================================== */
@media (max-width: 860px) {
    /* Hamburger Menu Button */
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 38px;
        height: 38px;
        border: none;
        background: transparent;
        cursor: pointer;
        position: relative;
        z-index: 6100;
        padding: 0;
        gap: 6px;
    }

    .mobile-menu-btn.open {
        position: fixed;
        top: 0.9rem;
        right: 1rem;
        width: 44px;
        height: 44px;
        border-radius: 999px;
        background: #ffffff;
        border: 1px solid rgba(11, 31, 51, 0.14);
        box-shadow: 0 10px 25px rgba(11, 31, 51, 0.16);
    }
    
    .mobile-menu-btn span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--navy-900);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .mobile-menu-btn.open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-menu-btn.open span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Hide default nav layout adjustments to replace with overlay */
    .header-main .header-container {
        align-items: center;
        flex-wrap: nowrap !important;
    }
    
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #ffffff;
        backdrop-filter: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem !important;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all 0.3s ease;
        z-index: 6000;
    }
    
    .nav.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    body.nav-open .leaflet-control-container {
        display: none !important;
    }

    body.nav-open .leaflet-control-attribution,
    body.nav-open .leaflet-control-zoom {
        display: none !important;
    }

    .nav-link {
        font-size: 1.5rem !important;
    }

    .nav-item {
        flex-direction: column;
        align-items: center;
        gap: 0.4rem;
    }

    .nav-item-dropdown {
        width: auto;
    }

    .nav-item-dropdown .nav-link {
        justify-content: center;
        padding-right: 0.3rem;
    }

    .nav-item-dropdown .nav-link::after {
        margin-left: 0.2rem;
    }

    .nav-dropdown {
        position: static;
        min-width: 0;
        width: auto;
        border: none;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        padding: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-item-dropdown:hover .nav-dropdown,
    .nav-item-dropdown:focus-within .nav-dropdown {
        transform: none;
        animation: none;
    }

    .nav-dropdown-link {
        display: inline-block;
        text-align: center;
        font-size: 1rem;
        padding: 0.2rem 0.4rem;
    }

    .nav-dropdown-link:hover,
    .nav-dropdown-link.active {
        transform: none;
    }
    
    .header-cta {
        display: none; /* Hide on mobile to save space, or keep in menu */
    }
    
    /* Hero layout fixes for mobile */
    .hero {
        min-height: 100vh !important;
    }
    .hero h1 {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
    .hero-text-box {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-metrics {
        flex-direction: row !important;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 100% !important;
        margin-left: 0 !important;
    }
    .metric-item.glass {
        flex: 1 1 100px;
        text-align: center;
    }
    
    /* Ensure slider controls don't overlap too much */
    .slider-controls {
        bottom: 1.5rem;
        padding: 0.4rem 0.8rem;
    }
    .slide-nav {
        width: 28px;
        height: 28px;
    }
}
@media (max-width: 640px) {
    .features-grid, .destinations-grid, .testimonials-grid, .experiences-grid {
        grid-template-columns: 1fr !important;
    }
}


/* ==================================
   TOURS PAGE SPECIFIC STYLES - REDESIGNED
   ================================== */
.tour-hero {
    position: relative;
    padding: 7rem 1rem 5rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background-color: var(--navy-900);
}

.tour-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.tour-hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.tour-hero-slider .kandy-slide {
    background-position: center 56%;
}

.tour-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 31, 51, 1) 0%, rgba(11, 31, 51, 0.4) 60%, rgba(11, 31, 51, 0.7) 100%);
    z-index: 2;
}

.tour-hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--white);
    max-width: 800px;
}

.tour-badge {
    background: var(--theme-green);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.honeymoon-badge-bubble {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.95) 0%, rgba(231, 248, 255, 0.92) 100%);
    color: #0a5fae;
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: 0 10px 28px rgba(5, 36, 66, 0.28);
    padding: 0.48rem 1.1rem;
    letter-spacing: 1.15px;
}

.honeymoon-badge-bubble::before,
.honeymoon-badge-bubble::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

.honeymoon-badge-bubble::before {
    width: 11px;
    height: 11px;
    left: -12px;
    top: 7px;
}

.honeymoon-badge-bubble::after {
    width: 7px;
    height: 7px;
    left: -19px;
    top: 14px;
}

.honeymoon-bubble-copy {
    display: inline-block;
    margin: 0 0 1rem;
    padding: 0.68rem 1.05rem;
    border-radius: 999px;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.95) 0%, rgba(231, 248, 255, 0.92) 100%);
    border: 1px solid rgba(8, 127, 216, 0.2);
    box-shadow: 0 10px 24px rgba(10, 32, 50, 0.1);
    color: #0a5fae;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.25px;
    line-height: 1.45;
}

.honeymoon-feature-showcase {
    position: relative;
    width: 100%;
    min-height: 64vh;
    height: 64vh;
    border-radius: 16px;
    overflow: hidden;
    margin: 0 auto 0.8rem;
    border: 1px solid rgba(8, 127, 216, 0.2);
    box-shadow: 0 18px 40px rgba(10, 30, 50, 0.2);
    background: linear-gradient(180deg, #e9f7ff 0%, #d7eeff 100%);
}

.honeymoon-feature-slider {
    position: absolute;
    inset: 0;
}

.honeymoon-feature-showcase .kandy-slide {
    background-position: center 58%;
}

.tour-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--white);
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.tour-subtitle-hero {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    max-width: 650px;
    line-height: 1.6;
}

.tour-quick-facts {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1.2rem 2rem;
    border-radius: 12px;
}

.fact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fact-item svg {
    color: var(--brand-red);
}

.fact-label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.2rem;
}

.fact-value {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
}

.tour-body {
    padding: 4rem 0 6rem;
    background: #f8fbfe;
}

.tour-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

.tour-section-header {
    margin-bottom: 2rem;
}

.tour-section-header h2 {
    color: var(--navy-900);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.section-line {
    width: 60px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 3px;
}

/* Sidebar Specifics */
.tour-right {
    position: relative;
    height: 100%;
}

.sticky-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-widget {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.8rem;
    box-shadow: 0 10px 30px rgba(11, 31, 51, 0.05);
    border: 1px solid var(--border-soft);
}

.booking-widget {
    background: linear-gradient(135deg, var(--theme-blue), var(--theme-deep));
    color: white;
    border: none;
}

.booking-widget h3 {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 0.5rem;
}

.booking-widget p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.booking-price {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.booking-price span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.price-val {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    margin-top: 0.2rem;
}

.widget-title {
    font-family: 'Montserrat', sans-serif;
    color: var(--navy-900);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tour-map-container {
    border-radius: 10px;
    overflow: hidden;
    background: #f8f9fa;
    border: 1px solid rgba(8, 127, 216, 0.16);
}

.tour-route-map {
    width: 100%;
    height: 420px;
}

.tour-route-stop-marker {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--theme-blue);
    border: 2px solid #ffffff;
    box-shadow: 0 4px 10px rgba(10, 95, 174, 0.35);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    display: grid;
    place-items: center;
    text-align: center;
    line-height: 1;
    padding: 0;
    margin: 0;
    font-variant-numeric: tabular-nums;
}

.tour-route-popup {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    line-height: 1.4;
}

.tour-route-popup strong {
    color: var(--navy-900);
}

/* Timeline/Accordion Itinerary Overrides for new look */
.itinerary-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    padding-left: 28px;
    border-left: 2px dashed rgba(11, 31, 51, 0.15);
}

.accordion-item {
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid var(--border-soft);
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.accordion-item::before {
    content: '';
    position: absolute;
    left: -37px;
    top: 1.5rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--theme-cyan);
    border: 3px solid #fcfcfd;
    box-shadow: 0 0 0 2px var(--theme-blue);
}

.accordion-header {
    padding: 1.2rem 1.5rem;
    font-weight: 700;
    color: var(--navy-900);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
    font-size: 1.05rem;
}

.accordion-header:hover {
    color: var(--brand-red);
}

.accordion-header .icon::after {
    content: "+";
    font-size: 1.2rem;
    color: var(--brand-red);
    transition: transform 0.3s;
    font-weight: 400;
}

.accordion-header.active .icon::after {
    content: "−";
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #ffffff;
    padding: 0 1.5rem;
}

.accordion-content p {
    padding-bottom: 1.5rem;
    color: var(--ink-700);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.view-tour-btn {
    margin: 0 0 1.2rem;
    border: none;
    border-radius: 999px;
    background: var(--accent-gradient);
    color: var(--white);
    padding: 0.6rem 1rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.view-tour-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(8, 127, 216, 0.28);
}

.tour-modal {
    position: fixed;
    inset: 0;
    z-index: 1500;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.tour-modal.open {
    display: flex;
}

.tour-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 11, 20, 0.62);
}

.tour-modal-card {
    position: relative;
    width: min(820px, 100%);
    max-height: calc(100vh - 2.5rem);
    overflow: auto;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
}

.tour-modal-content {
    padding: 2rem;
}

.tour-modal-kicker {
    color: var(--brand-red-strong);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.tour-modal-content h3 {
    font-size: 1.8rem;
    color: var(--navy-900);
    margin-bottom: 0.8rem;
}

.tour-modal-content p {
    color: var(--ink-700);
    margin-bottom: 1.4rem;
}

.tour-media-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.tour-media-panel {
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    padding: 1rem;
    background: #f9fbfe;
}

.tour-media-panel h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.7px;
    color: var(--navy-900);
    margin-bottom: 0.7rem;
}

.tour-media-placeholder {
    min-height: 160px;
    border: 1px dashed rgba(11, 31, 51, 0.25);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--ink-500);
    font-size: 0.88rem;
    padding: 1rem;
    background: #ffffff;
}

.tour-modal-close {
    position: absolute;
    top: 0.65rem;
    right: 0.8rem;
    border: none;
    background: transparent;
    font-size: 2rem;
    line-height: 1;
    color: var(--ink-700);
    cursor: pointer;
}

.tour-modal-close:hover {
    color: var(--brand-red-strong);
}

/* Trip details page */
.trip-details-page {
    padding: 0 0 5rem;
    background: #f8fbfe;
    min-height: calc(100vh - 120px);
}

.trip-details-hero {
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(11, 31, 51, 0.05);
    padding: 2rem;
    margin-bottom: 1.2rem;
}

.trip-day-label {
    color: var(--brand-red-strong);
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
}

.trip-details-hero h1 {
    color: var(--navy-900);
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    line-height: 1.1;
    margin-bottom: 0.7rem;
}

.trip-details-hero p {
    color: var(--ink-700);
    max-width: 70ch;
}

.trip-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.trip-card {
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 1.2rem;
    box-shadow: 0 8px 24px rgba(11, 31, 51, 0.05);
}

.trip-card h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--navy-900);
    margin-bottom: 0.7rem;
}

.trip-highlights-list {
    padding-left: 1rem;
    color: var(--ink-700);
    display: grid;
    gap: 0.45rem;
}

.trip-plan {
    color: var(--ink-700);
}

.trip-plan + .trip-plan {
    margin-top: 0.95rem;
}

.trip-plan h3 {
    color: var(--navy-900);
    font-size: 0.98rem;
    margin-bottom: 0.7rem;
}

.trip-plan ul {
    padding-left: 1rem;
    display: grid;
    gap: 0.5rem;
}

.trip-plan-spaced {
    margin-top: 1rem;
}

.galle-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    max-width: 980px;
    margin: 0 auto;
}

#tripGalleryGrid {
    max-width: none;
    width: 100%;
    margin: 0;
}

.galle-gallery-item {
    margin: 0;
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f3fbff 100%);
    box-shadow: 0 6px 16px rgba(11, 31, 51, 0.06);
}

.galle-gallery-item img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.galle-gallery-item figcaption {
    padding: 0.65rem 0.75rem 0.8rem;
    color: var(--ink-700);
    font-size: 0.83rem;
    line-height: 1.4;
}

.hidden {
    display: none !important;
}

@keyframes slideShowFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideShowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.15);
    }
}

.kandy-hero {
    position: relative;
    width: 100%;
    min-height: 66vh;
    height: 66vh;
    overflow: hidden;
    margin-bottom: 1.8rem;
}

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

.kandy-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 64%;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.15);
    transition: opacity 1.5s ease-in-out;
    will-change: opacity, transform;
    image-rendering: auto;
    filter: saturate(1.08) contrast(1.03);
}

.kandy-slide.active {
    opacity: 1;
    transform: scale(1);
    animation: slideShowZoom 5s ease-in-out forwards;
}

.kandy-slider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 11, 20, 0.12) 0%, rgba(5, 11, 20, 0.04) 38%, rgba(5, 11, 20, 0.08) 100%);
    pointer-events: none;
}

.kandy-slider-indicators {
    position: absolute;
    left: 50%;
    bottom: 1.3rem;
    transform: translateX(-50%);
    z-index: 3;
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.kandy-indicator {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease;
}

.kandy-indicator.active {
    background: var(--white);
    transform: scale(1.16);
}

.kandy-slide-dots {
    margin-top: 0.7rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.kandy-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 0;
    background: #c8d4df;
    cursor: pointer;
}

.kandy-dot.active {
    background: var(--brand-red);
    transform: scale(1.15);
}

.trip-actions {
    margin-top: 1.2rem;
}

.tour-notes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.note-item {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

.note-item p {
    color: var(--ink-700);
    font-size: 0.88rem;
    line-height: 1.5;
    margin: 0;
}

.whatsapp-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: transform 0.3s ease;
}

.whatsapp-btn img {
    width: 35px;
    height: 35px;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

@media (max-width: 960px) {
    .tour-grid {
        grid-template-columns: 1fr;
    }
    
    .sticky-sidebar {
        position: static;
        margin-top: 2rem;
    }

    .tour-media-grid {
        grid-template-columns: 1fr;
    }

    .tour-modal-content {
        padding: 1.5rem;
    }

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

    .kandy-hero {
        min-height: 62vh;
        height: 62vh;
    }

    .kandy-slide {
        background-position: center 68%;
    }

    .tour-hero-slider .kandy-slide {
        background-position: center 62%;
    }

    .honeymoon-feature-showcase {
        min-height: 58vh;
        height: 58vh;
    }

    .honeymoon-feature-showcase .kandy-slide {
        background-position: center 62%;
    }
}

@media (max-width: 640px) {
    .kandy-hero {
        min-height: 60vh;
        height: 60vh;
    }

    .kandy-slide {
        background-position: center 72%;
    }

    .tour-hero-slider .kandy-slide {
        background-position: center 66%;
    }

    .honeymoon-badge-bubble {
        padding: 0.44rem 0.95rem;
        font-size: 0.7rem;
    }

    .honeymoon-bubble-copy {
        font-size: 0.78rem;
        padding: 0.6rem 0.86rem;
        border-radius: 20px;
    }

    .honeymoon-feature-showcase {
        min-height: 54vh;
        height: 54vh;
        border-radius: 12px;
    }

    .honeymoon-feature-showcase .kandy-slide {
        background-position: center 66%;
    }

    .galle-gallery-grid {
        grid-template-columns: 1fr;
    }

    .galle-gallery-item img {
        height: 220px;
    }
}

/* ==================================
   NEW PAGES (INQUIRE & CONTACT)
   ================================== */
.form-section {
    padding: 5rem 0;
    background: #f8fbfe;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-soft);
    box-shadow: 0 10px 30px rgba(11, 31, 51, 0.05);
}

.form-container h3 {
    margin-bottom: 2rem;
    color: var(--navy-900);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    width: 100%;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    box-sizing: border-box;
    padding: 0.9rem 1rem;
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--ink-900);
    background: #fcfcfd;
    transition: all 0.2s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23112240' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 14px;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-control:focus {
    outline: none;
    border-color: var(--brand-red);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(65, 191, 255, 0.2);
}

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

.contact-page-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-soft);
    box-shadow: 0 10px 30px rgba(11, 31, 51, 0.05);
    height: 100%;
    border-top: 4px solid var(--brand-red);
}

.contact-detail-item {
    margin-bottom: 2rem;
}

.contact-detail-item:last-child {
    margin-bottom: 0;
}

.contact-detail-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--brand-red);
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-detail-item p {
    color: var(--ink-700);
    line-height: 1.6;
    margin: 0;
}

.contact-detail-item a {
    color: var(--navy-900);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.contact-detail-item a:hover {
    color: var(--brand-red);
}

@media (max-width: 860px) {
    .form-grid, .contact-page-grid {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 2rem;
    }
}
