/* ==========================================================================
   ROOT VARIABLES
   ========================================================================== */

:root {
    --primary: #FF7722;
    --primary-dark: #e65f0e;
    --black: #090909;
    --paper: #f5f5f2;
    --white: #ffffff;
    --muted: #777777;
    --line: #e3e3df;

    --serif: "Playfair Display", Georgia, serif;
    --sans: "DM Sans", Arial, sans-serif;

    --shell: 1380px;
}


/* ==========================================================================
   GLOBAL RESET
   ========================================================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: #0b0b0b;
    font-family: var(--sans);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

.shell {
    width: min(
        calc(100% - 72px),
        var(--shell)
    );

    margin: auto;
}


/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */

.skip-link {
    position: fixed;
    left: 10px;
    top: 10px;
    z-index: 9999;

    background: #ffffff;
    padding: 10px 14px;

    transform: translateY(-150%);
}

.skip-link:focus {
    transform: none;
}


/* ==========================================================================
   TOP BAR
   ========================================================================== */

.topline {
    height: 32px;
    background: #050505;
    color: #aaaaaa;

    font-size: 9px;
}

.topline-inner {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topline i {
    color: var(--primary);
    margin-right: 6px;
}

.topline a {
    color: #ffffff;
}


/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

.site-header {
    position: absolute;
    top: 32px;
    left: 0;
    right: 0;

    z-index: 100;

    color: #ffffff;

    transition: 0.3s;
}

.site-header.scrolled {
    position: fixed;
    top: 0;

    background: #080808e8;
    backdrop-filter: blur(18px);

    box-shadow: 0 10px 30px #0003;
}

.nav-inner {
    height: 88px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}

.brand img {
    width: 205px;
    height: 62px;

    object-fit: contain;
    display: block;
}

.desktop-nav {
    display: flex;
    gap: 28px;

    font-size: 11px;
    font-weight: 600;
}

.desktop-nav a {
    position: relative;
    padding: 8px 0;
}

.desktop-nav a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background: var(--primary);

    transition: 0.2s;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;

    gap: 9px;
}

.nav-call,
.menu-toggle {
    width: 42px;
    height: 42px;

    border: 1px solid #fff5;
    border-radius: 50%;

    display: grid;
    place-items: center;

    color: #ffffff;
    background: transparent;
}

.nav-call:hover {
    background: var(--primary);
    color: #111111;

    border-color: var(--primary);
}

.nav-cta,
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    background: var(--primary);
    border: 1px solid var(--primary);

    color: #111111;

    font-size: 10px;
    font-weight: 700;

    padding: 13px 20px;

    border-radius: 5px;

    transition: 0.25s;
}

.nav-cta:hover,
.btn-primary:hover {
    background: #ffffff;
    border-color: #ffffff;

    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    font-size: 20px;
}


/* ==========================================================================
   MOBILE NAVIGATION
   ========================================================================== */

.mobile-nav {
    display: none;
}


/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
    position: relative;

    min-height: calc(100svh - 32px);

    background: #111111;
    color: #ffffff;

    overflow: hidden;
}

.hero-slides,
.hero-slide,
.hero-bg,
.hero-overlay,
.hero-glow {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
}

.hero-bg {
    background-size: cover;
    background-position: center;

    transform: scale(1.04);

    transition:
        background-image 0.6s ease,
        transform 7s ease;
}

.hero-overlay {
    background:
        linear-gradient(
            90deg,
            #000d 0%,
            #0008 35%,
            #0003 70%,
            #0008
        ),
        linear-gradient(
            0deg,
            #000e 0%,
            transparent 55%
        );
}

.hero-glow {
    background:
        radial-gradient(
            circle at 78% 35%,
            #ff77222c,
            transparent 28%
        );

    pointer-events: none;
}

.hero-inner {
    position: relative;

    min-height: calc(100svh - 32px);

    display: grid;

    grid-template-columns: 1fr 220px;
    grid-template-rows: 1fr auto;

    padding: 175px 0 45px;
}

.hero-copy {
    align-self: center;
    max-width: 820px;
}

.hero-kicker {
    display: flex;
    align-items: center;

    gap: 10px;

    font-size: 9px;
    letter-spacing: 0.18em;
    font-weight: 700;
}

.hero-kicker span {
    width: 34px;
    height: 1px;

    background: var(--primary);
}

.hero h1 {
    font-size: clamp(56px, 7.6vw, 112px);
    line-height: 0.9;

    letter-spacing: -0.065em;
    font-weight: 500;

    margin: 18px 0 22px;
}

.hero h1 em {
    font-family: var(--serif);
    font-weight: 500;
}

.hero-copy p {
    max-width: 580px;

    color: #e9e9e9;

    font-size: 14px;
    line-height: 1.8;

    margin: 0;
}

.hero-actions {
    display: flex;
    align-items: center;

    gap: 24px;

    margin-top: 30px;
}

.hero-text-link {
    font-size: 10px;
    font-weight: 700;
}

.hero-text-link i {
    color: var(--primary);
    margin-left: 5px;
}

.hero-side {
    align-self: end;

    border-left: 1px solid #fff3;

    padding-left: 20px;
    margin-bottom: 80px;
}

.hero-side span {
    display: block;

    font-size: 8px;
    letter-spacing: 0.14em;

    color: #999999;
}

.hero-side strong {
    display: block;

    font: 500 28px var(--serif);

    margin: 9px 0 14px;
}

.hero-side button {
    background: none;
    border: 0;

    color: #ffffff;

    padding: 0;

    font-size: 9px;
    font-weight: 700;

    cursor: pointer;
}

.hero-side button i {
    color: var(--primary);
}


/* ==========================================================================
   HERO CAROUSEL CONTROLS
   ========================================================================== */

.carousel-controls {
    grid-column: 1 / 2;

    display: flex;
    align-items: center;

    gap: 13px;
}

.carousel-arrow {
    width: 38px;
    height: 38px;

    border: 1px solid #fff5;
    border-radius: 50%;

    background: #0005;
    color: #ffffff;

    cursor: pointer;
}

.carousel-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);

    color: #111111;
}

.slide-count {
    display: flex;
    align-items: center;

    gap: 8px;

    font-size: 10px;
}

.slide-count span {
    width: 55px;
    height: 1px;

    background: #fff4;
}

.slide-count b {
    color: var(--primary);
}

.slide-count small {
    color: #aaaaaa;
}

.hero-scroll {
    position: absolute;
    right: 0;
    bottom: 47px;

    display: flex;
    align-items: center;

    gap: 8px;

    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.15em;

    color: #aaaaaa;
}

.hero-scroll i {
    color: var(--primary);
}


/* ==========================================================================
   TRIP FINDER
   ========================================================================== */

.trip-finder {
    position: relative;

    margin-top: -1px;

    background: var(--paper);

    z-index: 5;
}

.finder-card {
    display: grid;

    grid-template-columns: 250px 1fr;

    background: #ffffff;

    border: 1px solid var(--line);

    box-shadow: 0 18px 45px #00010;
}

.finder-heading {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 22px 24px;

    border-right: 1px solid var(--line);
}

.finder-heading span {
    font-size: 8px;
    font-weight: 700;

    color: var(--primary);
}

.finder-heading strong {
    font-size: 14px;
    margin: 5px 0 3px;
}

.finder-heading small {
    font-size: 8px;
    color: #999999;
}

.finder-form {
    display: grid;

    grid-template-columns: repeat(3, 1fr) 1.05fr;
}

.finder-field {
    min-width: 0;

    height: 82px;

    display: flex;
    align-items: center;

    gap: 14px;

    padding: 0 18px;

    border-right: 1px solid var(--line);
}

.finder-field > i {
    font-size: 20px;
    color: #111111;
}

.finder-field select {
    width: 100%;

    border: 0;
    outline: 0;

    background: #ffffff;

    color: #333333;

    font-size: 12px;

    appearance: auto;
}

.finder-submit {
    border: 0;

    background: var(--primary);

    font-size: 13px;
    font-weight: 700;

    cursor: pointer;

    transition: 0.2s;
}

.finder-submit:hover {
    background: #111111;
    color: #ffffff;
}

.finder-submit i {
    margin-left: 8px;
}


/* ==========================================================================
   COMMON SECTION STYLES
   ========================================================================== */

section {
    scroll-margin-top: 90px;
}

.destinations,
.featured,
.services,
.why-us,
.enquire {
    padding: 120px 0;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;

    gap: 50px;

    margin-bottom: 38px;
}

.overline {
    margin: 0;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.16em;

    color: var(--primary);
}

.section-head h2 {
    font-size: clamp(43px, 5vw, 72px);
    line-height: 0.95;

    letter-spacing: -0.055em;
    font-weight: 500;

    margin: 12px 0 0;
}

.section-head h2 em,
.why-copy h2 em,
.enquire-copy h2 em,
.closing h2 em {
    font-family: var(--serif);
    font-weight: 500;
}

.section-head > p {
    max-width: 350px;

    color: #777777;

    font-size: 11px;
    line-height: 1.8;

    margin: 0;
}



/* ==========================================================================
   EXPLORE DESTINATIONS — UPDATED
   ========================================================================== */

.destinations {
    padding: 130px 0;
    background: #f5f5f2;
}

.destination-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: clamp(50px, 8vw, 140px);
    align-items: end;
    margin-bottom: 65px;
}

.destination-heading__main {
    max-width: 780px;
}

.destination-heading h2 {
    margin: 14px 0 0;
    font-size: clamp(52px, 6vw, 88px);
    font-weight: 500;
    line-height: 0.96;
    letter-spacing: -0.065em;
}

.destination-heading h2 em {
    display: block;
    font-family: var(--serif);
    font-weight: 500;
    color: var(--primary);
}

.destination-heading__side {
    padding-bottom: 7px;
}

.destination-heading__side p {
    max-width: 430px;
    margin: 0;
    color: #707070;
    font-size: 14px;
    line-height: 1.9;
}

.destination-heading__link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 24px;
    padding-bottom: 8px;
    border-bottom: 1px solid #111111;
    color: #111111;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.destination-heading__link i {
    color: var(--primary);
    font-size: 15px;
    transition: transform 0.25s ease;
}

.destination-heading__link:hover i {
    transform: translate(4px, -4px);
}

.destination-switcher {
    display: flex;
    align-items: stretch;
    width: fit-content;
    margin-bottom: 35px;
    border: 1px solid var(--line);
    background: #ffffff;
}

.region-tab {
    display: flex;
    align-items: center;
    gap: 28px;
    min-width: 185px;
    padding: 17px 20px;
    margin: 0;
    border: 0;
    border-right: 1px solid var(--line);
    background: #ffffff;
    color: #999999;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
}

.region-tab:last-child {
    border-right: 0;
}

.region-tab::after {
    display: none !important;
}

.region-tab__label {
    font-size: 11px !important;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.region-tab__count {
    display: grid !important;
    place-items: center;
    width: 28px;
    height: 28px;
    margin-left: auto !important;
    border-radius: 50%;
    background: #f1f1ee;
    color: #888888 !important;
    font-size: 8px !important;
    font-weight: 700;
    transition: background 0.25s ease, color 0.25s ease;
}

.region-tab:hover {
    color: #111111;
}

.region-tab.active {
    background: #111111;
    color: #ffffff;
}

.region-tab.active .region-tab__count {
    background: var(--primary);
    color: #111111 !important;
}

.destination-panel {
    display: none;
    animation: destinationFade 0.45s ease;
}

.destination-panel.active {
    display: block;
}

@keyframes destinationFade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.destination-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(0, 0.85fr)
        minmax(0, 0.85fr);
    grid-template-rows: 280px 280px;
    gap: 14px;
}

.destination-card {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 0;
    background: #111111;
    color: #ffffff;
    isolation: isolate;
}

.destination-card__image,
.destination-card__overlay {
    position: absolute;
    inset: 0;
}

.destination-card__image {
    background-size: cover;
    background-position: center;
    transition: transform 0.7s cubic-bezier(0.2, 0.65, 0.25, 1);
}

.destination-card__overlay {
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.08) 10%,
        rgba(0, 0, 0, 0.76) 100%
    );
}

.destination-card:hover .destination-card__image {
    transform: scale(1.07);
}

.destination-card__top {
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.destination-tag {
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.destination-number {
    position: absolute;
    top: 22px;
    right: 24px;
    z-index: 2;
    color: rgba(255, 255, 255, 0.75);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.destination-card__top .destination-number {
    position: static;
}

.destination-card__content {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 24px;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.destination-location {
    display: block;
    margin-bottom: 7px;
    color: var(--primary);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.destination-card h3 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(27px, 2.4vw, 46px);
    font-weight: 500;
    line-height: 1;
}

.destination-card p {
    max-width: 430px;
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 10px;
    line-height: 1.8;
}

.destination-arrow {
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary);
    color: #111111;
    font-size: 17px;
    transition: transform 0.25s ease, background 0.25s ease;
}

.destination-card:hover .destination-arrow {
    transform: translate(3px, -3px);
    background: #ffffff;
}

.destination-card--hero {
    grid-row: span 2;
}

.destination-card--goa {
    grid-column: span 2;
}

.destination-card--small {
    min-height: 280px;
}

.destination-card--wide {
    grid-column: span 2;
}
.destination-layout--international .destination-card--wide {
    grid-column: span 1;
}

.destination-card.finder-highlight {
    animation: destinationHighlight 1.8s ease;
}

@keyframes destinationHighlight {
    0% {
        outline: 0 solid rgba(255, 119, 34, 0);
    }

    20% {
        outline: 6px solid rgba(255, 119, 34, 0.8);
    }

    100% {
        outline: 0 solid rgba(255, 119, 34, 0);
    }
}

@media (max-width: 991px) {
    .destination-heading {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 50px;
    }

    .destination-heading__side {
        max-width: 600px;
    }

    .destination-layout {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .destination-card--hero {
        grid-column: span 2;
        grid-row: auto;
        min-height: 520px;
    }

    .destination-card--goa {
        grid-column: span 1;
        min-height: 340px;
    }

    .destination-card--small {
        min-height: 340px;
    }

    .destination-card--wide {
        grid-column: span 2;
        min-height: 340px;
    }
}

@media (max-width: 767px) {
    .destinations {
        padding: 82px 0;
    }

    .destination-heading {
        margin-bottom: 38px;
    }

    .destination-heading h2 {
        font-size: clamp(44px, 13vw, 62px);
        line-height: 0.98;
    }

    .destination-heading__side p {
        font-size: 13px;
    }

    .destination-switcher {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
        margin-bottom: 20px;
    }

    .region-tab {
        min-width: 0;
        gap: 10px;
        padding: 15px 13px;
    }

    .region-tab__label {
        font-size: 9px !important;
    }

    .destination-layout {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .destination-card--hero,
    .destination-card--goa,
    .destination-card--small,
    .destination-card--wide {
        grid-column: auto;
        min-height: 280px;
    }

    .destination-card--hero {
        min-height: 440px;
    }

    .destination-card__top {
        top: 18px;
        left: 18px;
        right: 18px;
    }

    .destination-card__content {
        left: 19px;
        right: 19px;
        bottom: 19px;
    }

    .destination-number {
        top: 18px;
        right: 18px;
    }

    .destination-card h3 {
        font-size: 34px;
    }

    .destination-card--hero h3 {
        font-size: 46px;
    }

    .destination-card p {
        max-width: 280px;
        font-size: 9px;
    }

    .destination-arrow {
        flex-basis: 38px;
        width: 38px;
        height: 38px;
    }
}


/* ==========================================================================
   FEATURED PACKAGES
   ========================================================================== */

.featured {
    background: #080808;
    color: #ffffff;
}

.featured .section-head > p {
    color: #777777;
}

.outline-btn {
    border: 1px solid #fff3;

    padding: 12px 16px;

    font-size: 9px;
    font-weight: 700;
}

.outline-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.package-grid {
    display: grid;

    grid-template-columns: 1.2fr 0.8fr 0.8fr;

    gap: 13px;
}

.package-card {
    overflow: hidden;

    background: #111111;

    border: 1px solid #fff1;
}

.package-img {
    height: 270px;

    background-size: cover;
    background-position: center;

    transition: transform 0.6s;
}

.package-card.large .package-img {
    height: 340px;
}

.package-card:hover .package-img {
    transform: scale(1.04);
}

.package-body {
    padding: 22px;
}

.package-body > span {
    font-size: 7px;
    letter-spacing: 0.16em;

    color: #999999;
}

.package-body h3 {
    font: 500 27px var(--serif);

    margin: 8px 0;
}

.package-body p {
    min-height: 42px;

    font-size: 9px;
    line-height: 1.7;

    color: #999999;
}

.package-body > div {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 18px;
}

.package-body b {
    font-size: 8px;
    color: var(--primary);
}

.package-body a {
    font-size: 8px;
    font-weight: 700;
}

.package-body a i {
    color: var(--primary);
}


/* ==========================================================================
   SERVICES
   ========================================================================== */

.services {
    background: #ffffff;
}

.service-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    border-top: 1px solid var(--line);
}

.service-grid a {
    display: grid;

    grid-template-columns: 45px 1fr 20px;

    align-items: center;

    gap: 15px;

    padding: 22px 14px;

    border-bottom: 1px solid var(--line);

    transition: 0.2s;
}

.service-grid a:nth-child(odd) {
    border-right: 1px solid var(--line);
}

.service-grid a > i:first-child {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    background: #fff2eb;
    color: var(--primary);

    border-radius: 50%;

    font-size: 17px;
}

.service-grid span {
    display: flex;
    flex-direction: column;

    gap: 3px;
}

.service-grid b {
    font-size: 11px;
}

.service-grid small {
    font-size: 8px;
    color: #999999;
}

.service-grid a > i:last-child {
    color: #aaaaaa;
}

.service-grid a:hover {
    background: var(--paper);

    padding-left: 25px;
}

.service-grid a:hover > i:last-child {
    color: var(--primary);
}


/* =========================================================
   WHY TRIPGLOBE
========================================================= */

.why-tripglobe {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background: #121212;
    color: #ffffff;
}


.why-tripglobe::before {
    position: absolute;
    top: -250px;
    right: -250px;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    background: rgba(255, 119, 34, 0.08);
    content: "";
}


.why-tripglobe::after {
    position: absolute;
    bottom: -180px;
    left: -180px;
    width: 450px;
    height: 450px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    content: "";
}


.why-tripglobe__container {
    position: relative;
    z-index: 2;
    width: min(1320px, calc(100% - 48px));
    margin: 0 auto;
}


/* =========================================================
   SECTION INTRODUCTION
========================================================= */

.why-tripglobe__intro {
    max-width: 760px;
    margin-bottom: 70px;
}


.why-tripglobe .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #ff7722;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}


.why-tripglobe .section-eyebrow::before {
    width: 34px;
    height: 1px;
    background: #ff7722;
    content: "";
}


.why-tripglobe__intro h2 {
    max-width: 700px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(42px, 5vw, 76px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -2px;
}


.why-tripglobe__intro h2 span {
    color: #ff7722;
}


.why-tripglobe__intro p {
    max-width: 680px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   MAIN CONTENT LAYOUT
========================================================= */

.why-tripglobe__content {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 80px;
}


/* =========================================================
   IMAGE AREA
========================================================= */

.why-tripglobe__visual {
    position: relative;
}


.why-image-frame {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    border-radius: 4px;
}


.why-image-frame::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.02) 20%,
            rgba(0, 0, 0, 0.72) 100%
        );
    content: "";
}


.why-image-frame img {
    width: 100%;
    height: 100%;
    min-height: 620px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}


.why-tripglobe__visual:hover .why-image-frame img {
    transform: scale(1.04);
}


/* =========================================================
   EXPERIENCE CARD
========================================================= */

.why-experience-card {
    position: absolute;
    right: -35px;
    bottom: 55px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 16px;
    width: min(330px, calc(100% - 30px));
    padding: 20px 24px;
    background: #ff7722;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}


.experience-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    color: #121212;
    font-size: 20px;
}


.why-experience-card strong {
    display: block;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}


.why-experience-card span {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
}


/* =========================================================
   IMAGE BADGE
========================================================= */

.why-image-badge {
    position: absolute;
    top: 35px;
    left: -35px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 110px;
    min-height: 150px;
    padding: 22px;
    background: #ffffff;
    color: #121212;
}


.why-image-badge span {
    color: #ff7722;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}


.why-image-badge small {
    color: #333333;
    font-size: 13px;
    line-height: 1.5;
}


/* =========================================================
   FEATURES GRID
========================================================= */

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


.why-feature {
    position: relative;
    min-height: 285px;
    padding: 34px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.025);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}


.why-feature:hover {
    transform: translateY(-7px);
    border-color: rgba(255, 119, 34, 0.55);
    background: rgba(255, 119, 34, 0.06);
}


.why-feature__number {
    position: absolute;
    top: 25px;
    right: 28px;
    color: rgba(255, 255, 255, 0.12);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}


.why-feature__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 119, 34, 0.35);
    color: #ff7722;
    font-size: 22px;
}


.why-feature h3 {
    margin: 0 0 13px;
    color: #ffffff;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.4;
}


.why-feature p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   TABLET RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .why-tripglobe__content {
        gap: 45px;
    }


    .why-image-frame,
    .why-image-frame img {
        min-height: 560px;
    }


    .why-feature {
        min-height: 265px;
        padding: 28px;
    }

}


/* =========================================================
   MOBILE / TABLET RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .why-tripglobe {
        padding: 90px 0;
    }


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


    .why-tripglobe__visual {
        width: calc(100% - 35px);
        margin-left: 35px;
    }


    .why-image-frame,
    .why-image-frame img {
        min-height: 520px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

    .why-tripglobe {
        padding: 75px 0;
    }


    .why-tripglobe__container {
        width: min(100% - 32px, 1320px);
    }


    .why-tripglobe__intro {
        margin-bottom: 45px;
    }


    .why-tripglobe__intro h2 {
        font-size: 44px;
        letter-spacing: -1.5px;
    }


    .why-tripglobe__intro p {
        margin-top: 22px;
        font-size: 15px;
        line-height: 1.75;
    }


    .why-tripglobe__content {
        gap: 45px;
    }


    .why-tripglobe__visual {
        width: 100%;
        margin-left: 0;
    }


    .why-image-frame,
    .why-image-frame img {
        min-height: 440px;
    }


    .why-image-badge {
        top: 20px;
        left: 20px;
        width: 95px;
        min-height: 125px;
        padding: 17px;
    }


    .why-experience-card {
        right: 15px;
        bottom: 15px;
        width: calc(100% - 30px);
        padding: 16px;
    }


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


    .why-feature {
        min-height: auto;
        padding: 28px 24px;
    }


    .why-feature__icon {
        margin-bottom: 22px;
    }

}

/* ==========================================================================
   ENQUIRY SECTION
   ========================================================================== */

.enquire {
    background: #ffffff;
}

.enquire-grid {
    display: grid;

    grid-template-columns: 0.82fr 1.18fr;

    background: #090909;
    color: #ffffff;
}

.enquire-copy {
    padding: 60px 50px;
}

.overline.light {
    color: #777777;
}

.enquire-copy h2 {
    font-size: clamp(45px, 5vw, 70px);
    line-height: 0.94;

    letter-spacing: -0.055em;
    font-weight: 500;

    margin: 12px 0 22px;
}

.enquire-copy > p {
    max-width: 390px;

    color: #999999;

    font-size: 11px;
    line-height: 1.8;
}

.contact-links {
    display: flex;
    flex-direction: column;

    gap: 13px;

    margin-top: 30px;
}

.contact-links a {
    display: flex;
    align-items: center;

    gap: 12px;
}

.contact-links i {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border: 1px solid #333333;
    border-radius: 50%;

    color: var(--primary);
}

.contact-links span {
    display: flex;
    flex-direction: column;

    font-size: 9px;
}

.contact-links small {
    font-size: 7px;
    color: #777777;

    letter-spacing: 0.13em;
}

.form-wrap {
    padding: 45px;

    background: #ffffff;
    color: #111111;
}

.enquiry-form {
    display: flex;
    flex-direction: column;

    gap: 18px;
}

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}

.enquiry-form label {
    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.enquiry-form label small {
    color: #aaaaaa;

    text-transform: none;
    letter-spacing: 0;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
    width: 100%;

    display: block;

    margin-top: 7px;

    border: 0;
    border-bottom: 1px solid #d9d9d5;

    background: transparent;

    padding: 10px 0;

    outline: none;

    font-size: 11px;

    border-radius: 0;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
    border-color: var(--primary);
}

.enquiry-form textarea {
    resize: vertical;
}

.form-submit {
    width: max-content;
}

.form-note {
    margin: 0;

    font-size: 8px;
    color: #999999;
}

.form-note i {
    color: var(--primary);
}


/* ==========================================================================
   CLOSING CTA
   ========================================================================== */

.closing {
    padding: 70px 0;

    background: var(--primary);
}

.closing-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}

.closing-inner span {
    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.15em;
}

.closing h2 {
    font-size: clamp(42px, 5vw, 65px);
    line-height: 0.95;

    letter-spacing: -0.055em;
    font-weight: 500;

    margin: 8px 0 0;
}

.closing-inner > a {
    padding: 14px 18px;

    background: #111111;
    color: #ffffff;

    font-size: 9px;
    font-weight: 700;
}

.closing-inner > a i {
    margin-left: 6px;
}


/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    position: relative;
    overflow: hidden;
    padding: 82px 0 26px;
    background: #080808;
    color: #ffffff;
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(280px, 1.25fr) minmax(0, 1fr);
    gap: clamp(60px, 10vw, 160px);
    padding-bottom: 76px;
}

.footer-intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
}

.footer-brand img {
    width: 220px;
    height: 64px;
    object-fit: contain;
}

.footer-intro__text {
    max-width: 365px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 11px;
    line-height: 1.9;
}

.footer-intro__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 119, 34, 0.55);
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.footer-intro__cta i {
    color: var(--primary);
    font-size: 14px;
    transition: transform 0.25s ease;
}

.footer-intro__cta:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.footer-intro__cta:hover i {
    transform: translate(2px, -2px);
}

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    gap: clamp(40px, 7vw, 110px);
    align-content: start;
}

.footer-column {
    position: relative;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-column__number {
    position: absolute;
    top: 10px;
    right: 0;
    color: var(--primary);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.footer-column h4 {
    margin: 0 0 22px;
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer-column a {
    display: flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    margin: 11px 0;
    color: rgba(255, 255, 255, 0.46);
    font-size: 10px;
    line-height: 1.45;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-column a i {
    color: var(--primary);
    font-size: 11px;
}

.footer-column a:hover {
    color: #ffffff;
    transform: translateX(3px);
}




/* Footer tech credit */

.footer-tech-credit {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 8px;
    line-height: 1.6;
    transition: color 0.2s ease;
}

.footer-tech-credit span {
    letter-spacing: 0.04em;
}

.footer-tech-credit strong {
    color: var(--primary);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.footer-tech-credit i {
    color: var(--primary);
    font-size: 13px;
    transition: transform 0.2s ease;
}

.footer-tech-credit:hover {
    color: #ffffff;
}

.footer-tech-credit:hover i {
    transform: scale(1.12);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.34);
    font-size: 8px;
    line-height: 1.6;
}

.footer-bottom__right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-bottom__right a {
    color: inherit;
    transition: color 0.2s ease;
}

.footer-bottom__right a:hover {
    color: var(--primary);
}

.footer-bottom__right > span {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}


/* FOOTER RESPONSIVE */

@media (max-width: 900px) {

    .footer-top {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .footer-links-group {
        max-width: 620px;
    }

}

@media (max-width: 700px) {

    .footer {
        padding: 62px 0 96px;
    }

    .footer-top {
        gap: 46px;
        padding-bottom: 52px;
    }

    .footer-brand img {
        width: 190px;
        height: 56px;
    }

    .footer-intro__text {
        max-width: 330px;
        margin-top: 20px;
    }

    .footer-links-group {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-column {
        padding-top: 22px;
    }

    .footer-column h4 {
        margin-bottom: 18px;
    }


    .footer-tech-credit {
        margin-top: 4px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 13px;
        padding-top: 18px;
    }

    .footer-bottom__right {
        gap: 10px;
    }

}

/* ==========================================================================
   MOBILE CONTACT BAR
   ========================================================================== */

.mobile-bar {
    display: none;
}


/* ==========================================================================
   TABLET RESPONSIVE
   ========================================================================== */

@media (max-width: 991px) {

    .shell {
        width: calc(100% - 42px);
    }

    .desktop-nav,
    .nav-call,
    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: grid;
        place-items: center;

        cursor: pointer;
    }

    .mobile-nav {
        position: absolute;

        left: 21px;
        right: 21px;
        top: 75px;

        display: flex;
        flex-direction: column;

        background: #080808f5;

        border: 1px solid #fff2;

        backdrop-filter: blur(15px);

        padding: 8px;

        opacity: 0;
        visibility: hidden;

        transform: translateY(-8px);

        transition: 0.25s;
    }

    .mobile-nav.open {
        opacity: 1;
        visibility: visible;

        transform: none;
    }

    .mobile-nav a {
        padding: 14px;

        border-bottom: 1px solid #222222;

        font-size: 11px;
    }

    .mobile-nav-cta {
        background: var(--primary);

        color: #111111 !important;

        font-weight: 700;

        margin-top: 7px;
    }

    .hero-inner {
        grid-template-columns: 1fr;

        min-height: calc(100svh - 32px);

        padding-top: 150px;
    }

    .hero-side {
        display: none;
    }

    .hero-scroll {
        display: none;
    }

    .finder-card {
        grid-template-columns: 1fr;
    }

    .finder-heading {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .destination-grid,
    .package-grid {
        grid-template-columns: 1fr 1fr;
    }

    .destination-card.focus-card {
        grid-row: span 1;
    }

    .destination-grid {
        grid-auto-rows: 270px;
    }

    .package-card.large {
        grid-column: 1 / -1;
    }

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

    .service-grid a:nth-child(odd) {
        border-right: 0;
    }

    /* WHY TRIPGLOBE */

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

    .why-copy {
        max-width: 100%;
    }

    .why-list div {
        grid-template-columns:
            40px
            minmax(0, 1fr);
    }

    /* ENQUIRY */

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

    /* FOOTER */

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

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


/* ==========================================================================
   MOBILE RESPONSIVE
   ========================================================================== */

@media (max-width: 767px) {

    .shell {
        width: calc(100% - 30px);
    }

    .topline {
        display: none;
    }

    .site-header {
        top: 0;
    }

    .nav-inner {
        height: 72px;
    }

    .brand img {
        width: 160px;
        height: 52px;
    }

    .hero,
    .hero-inner {
        min-height: 720px;
    }

    .hero-inner {
        padding: 130px 0 32px;
    }

    .hero h1 {
        font-size: clamp(49px, 14vw, 75px);
    }

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

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;

        gap: 15px;
    }

    .hero-side {
        display: none;
    }

    .carousel-controls {
        margin-top: 25px;
    }

    /* TRIP FINDER */

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

    .finder-field {
        height: 64px;

        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .finder-submit {
        height: 64px;
    }

    /* SECTIONS */

    .destinations,
    .featured,
    .services,
    .why-us,
    .enquire {
        padding: 82px 0;
    }

    .section-head {
        flex-direction: column;
        align-items: flex-start;

        gap: 16px;
    }

    .section-head h2,
    .why-copy h2 {
        font-size: 44px;
    }

    /* DESTINATIONS */

    .destination-grid,
    .package-grid {
        grid-template-columns: 1fr;
    }

    .destination-grid {
        grid-auto-rows: 240px;
    }

    .destination-card.focus-card {
        min-height: 320px;
    }

    .dest-copy h3 {
        font-size: 31px;
    }

    /* PACKAGES */

    .package-card.large {
        grid-column: auto;
    }

    .package-card.large .package-img,
    .package-img {
        height: 260px;
    }

    /* SERVICES */

    .service-grid a {
        grid-template-columns: 42px 1fr 18px;

        padding: 19px 5px;
    }

    /* WHY TRIPGLOBE */

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

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

    .why-copy h2 {
        max-width: 100%;
        font-size: 44px;
    }

    .why-list div {
        grid-template-columns:
            32px
            minmax(0, 1fr);

        gap: 12px;

        padding: 16px 0;
    }

    .why-list small {
        font-size: 9px;
        line-height: 1.6;
    }

    /* ENQUIRY */

    .enquire-copy {
        padding: 40px 24px;
    }

    .form-wrap {
        padding: 28px 20px;
    }

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

    /* CLOSING CTA */

    .closing-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    /* FOOTER */

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

    .footer-grid > div:first-child {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 8px;

        padding-bottom: 88px;
    }

    /* FIXED MOBILE BAR */

    .mobile-bar {
        position: fixed;

        left: 9px;
        right: 9px;
        bottom: 9px;

        z-index: 500;

        display: grid;

        grid-template-columns: repeat(3, 1fr);

        background: #080808f5;

        border: 1px solid #fff1;
        border-radius: 15px;

        padding: 6px;

        box-shadow: 0 18px 45px #0005;

        backdrop-filter: blur(14px);
    }

    .mobile-bar a {
        display: flex;
        flex-direction: column;
        align-items: center;

        gap: 3px;

        color: #ffffff;

        font-size: 8px;
        font-weight: 700;

        padding: 7px;
    }

    .mobile-bar a:nth-child(2) {
        color: #63df9b;
    }

    .mobile-bar a:nth-child(3) {
        color: var(--primary);
    }

    .mobile-bar i {
        font-size: 15px;
    }
}


/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    .hero-bg,
    .dest-img,
    .package-img {
        transition: none;
    }

}

/* =========================================================
   KASHMIR TOUR PACKAGES — PACKAGE SHOWCASE
   ========================================================= */
.packages-hero{position:relative;min-height:650px;display:flex;align-items:flex-end;overflow:hidden;background:#121212;color:#fff}
.packages-hero-bg,.packages-hero-overlay{position:absolute;inset:0}
.packages-hero-bg{background:url("https://images.unsplash.com/photo-1598091383021-15ddea10925d?auto=format&fit=crop&w=2400&q=90") center/cover no-repeat;transform:scale(1.02)}
.packages-hero-overlay{background:linear-gradient(90deg,rgba(0,0,0,.76) 0%,rgba(0,0,0,.38) 54%,rgba(0,0,0,.14) 100%),linear-gradient(0deg,rgba(0,0,0,.5),transparent 58%)}
.packages-hero-inner{position:relative;z-index:1;width:100%;padding:170px 0 72px;display:flex;justify-content:space-between;align-items:flex-end;gap:50px}
.package-eyebrow{margin:0 0 18px;color:var(--primary);font-size:10px;font-weight:800;letter-spacing:.18em}
.packages-hero h1,.packages-listing-head h2,.package-enquiry h2{margin:0;letter-spacing:-.06em;line-height:.94;font-size:clamp(56px,7vw,108px)}
.packages-hero h1 em,.packages-listing-head h2 em,.package-enquiry h2 em{font-family:Georgia,serif;font-weight:400;color:var(--primary)}
.packages-hero-copy>p:not(.package-eyebrow){max-width:580px;margin:26px 0 30px;color:rgba(255,255,255,.82);font-size:15px;line-height:1.8}
.packages-hero-link{display:inline-flex;align-items:center;gap:12px;color:#fff;font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.08em;border-bottom:1px solid rgba(255,255,255,.55);padding-bottom:10px}
.packages-hero-note{padding:22px 0 0 25px;border-left:1px solid rgba(255,255,255,.45);min-width:190px}
.packages-hero-note span{display:block;color:var(--primary);font-size:40px;font-weight:800;line-height:1}
.packages-hero-note p{margin:10px 0 0;color:#fff;font-size:10px;line-height:1.7;text-transform:uppercase;letter-spacing:.08em}

.packages-listing{padding:130px 0;background:#f4f2ee}
.packages-listing-head{display:flex;justify-content:space-between;align-items:flex-end;gap:50px;margin-bottom:55px}
.packages-listing-head>p{max-width:360px;margin:0;color:#666;font-size:13px;line-height:1.85}
.package-showcase-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}
.package-showcase-card{position:relative;min-height:470px;overflow:hidden;background:#222;color:#fff}
.package-showcase-image{position:absolute;inset:0;background-position:center;background-size:cover;transition:transform .7s cubic-bezier(.2,.7,.2,1)}
.package-showcase-card:hover .package-showcase-image{transform:scale(1.07)}
.package-showcase-shade{position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.18),rgba(0,0,0,.05) 35%,rgba(0,0,0,.88) 100%)}
.package-showcase-top{position:absolute;z-index:2;left:28px;right:28px;top:25px;display:flex;justify-content:space-between;align-items:center}
.package-showcase-top>span:first-child{font-size:10px;font-weight:800;letter-spacing:.14em}
.package-duration{padding:9px 11px;background:rgba(0,0,0,.46);backdrop-filter:blur(7px);font-size:9px;font-weight:800;letter-spacing:.06em}
.package-duration i{margin-right:4px;color:var(--primary)}
.package-showcase-content{position:absolute;z-index:2;left:28px;right:28px;bottom:28px}
.package-showcase-content h2{max-width:510px;margin:0 0 24px;font-size:clamp(28px,3vw,43px);line-height:1;letter-spacing:-.045em}
.package-card-actions{display:grid;grid-template-columns:1fr 1fr 1.2fr;gap:7px}
.package-action,.package-explore{min-height:49px;display:flex;align-items:center;justify-content:center;gap:7px;font-size:10px;font-weight:800;letter-spacing:.02em;transition:.2s}
.package-action{color:#fff;background:rgba(255,255,255,.13);border:1px solid rgba(255,255,255,.3);backdrop-filter:blur(7px)}
.package-action:hover{background:#fff;color:#111}
.package-explore{color:#111;background:var(--primary)}
.package-explore:hover{background:#fff}
.package-explore i{font-size:14px}

.package-enquiry{padding:130px 0;background:#141414;color:#fff}
.package-enquiry-wrap{display:grid;grid-template-columns:.82fr 1.18fr;gap:90px;align-items:center}
.package-enquiry-copy>p:not(.package-eyebrow){max-width:430px;margin:25px 0 28px;color:rgba(255,255,255,.65);font-size:14px;line-height:1.85}
.package-contact-links{display:flex;flex-wrap:wrap;gap:12px}
.package-contact-links a{display:inline-flex;align-items:center;gap:8px;color:#fff;font-size:11px;font-weight:800;border-bottom:1px solid rgba(255,255,255,.35);padding-bottom:7px}
.package-contact-links i{color:var(--primary);font-size:15px}
.package-enquiry-form{padding:38px;background:#fff;color:#161616}
.package-form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:17px}
.package-enquiry-form label{display:block;font-size:10px;font-weight:800;letter-spacing:.02em}
.package-enquiry-form input,.package-enquiry-form select,.package-enquiry-form textarea{box-sizing:border-box;width:100%;margin-top:8px;border:1px solid #dedede;background:#fff;padding:13px 14px;font:inherit;font-size:13px;color:#222;outline:none}
.package-enquiry-form input,.package-enquiry-form select{height:49px}
.package-enquiry-form textarea{resize:vertical;min-height:105px}
.package-enquiry-form input:focus,.package-enquiry-form select:focus,.package-enquiry-form textarea:focus{border-color:var(--primary)}
.package-submit{width:100%;margin-top:18px;border:0;background:var(--primary);color:#111;padding:16px 18px;font-size:11px;font-weight:800;cursor:pointer}
.package-submit i{margin-left:8px;font-size:14px}

@media(max-width:900px){
 .packages-hero-inner{padding:150px 0 55px}.package-showcase-grid{gap:14px}.package-enquiry-wrap{grid-template-columns:1fr;gap:50px}.packages-listing-head{align-items:start;flex-direction:column;gap:24px}
}
@media(max-width:650px){
 .packages-hero{min-height:620px}.packages-hero-inner{padding:130px 0 45px;display:block}.packages-hero h1{font-size:62px}.packages-hero-note{display:none}
 .packages-listing,.package-enquiry{padding:90px 0}.package-showcase-grid{grid-template-columns:1fr}.package-showcase-card{min-height:480px}
 .package-showcase-top,.package-showcase-content{left:20px;right:20px}.package-showcase-top{top:20px}.package-showcase-content{bottom:20px}
 .package-showcase-content h2{font-size:34px}.package-card-actions{grid-template-columns:1fr 1fr}.package-explore{grid-column:1/-1}
 .package-form-row{grid-template-columns:1fr;gap:14px;margin-bottom:14px}.package-enquiry-form{padding:26px 18px}
}
