/* =========================================================
   KELANA - MODERN TRAVEL WEBSITE
   style.css
   Theme : Light Blue + Orange
   ========================================================= */

/* =========================================================
   01. ROOT & RESET
   ========================================================= */

:root {
    --blue-50: #f2faff;
    --blue-100: #e5f5ff;
    --blue-200: #c9ebff;
    --blue-300: #9ddaff;
    --blue-400: #63c3f2;
    --blue-500: #43a9e8;
    --blue-600: #258fd0;
    --blue-700: #1974ae;
    --blue-800: #165e8e;
    --blue-900: #123f5f;

    --orange-300: #ffbd78;
    --orange-400: #ffa24a;
    --orange-500: #ff8a2a;
    --orange-600: #f57416;
    --orange-700: #dd5e0c;

    --dark: #102a3d;
    --dark-2: #18394f;
    --text: #314a5c;
    --text-light: #718697;
    --white: #ffffff;
    --off-white: #f7fbfe;
    --border: #e2edf4;

    --shadow-sm: 0 5px 20px rgba(18, 63, 95, 0.07);
    --shadow-md: 0 15px 40px rgba(18, 63, 95, 0.10);
    --shadow-lg: 0 25px 70px rgba(18, 63, 95, 0.15);

    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-xl: 36px;

    --container-width: 1240px;
    --transition: all 0.35s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

body,
button,
input,
select,
textarea {
    font-family: "DM Sans", sans-serif;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select {
    outline: none;
}

button {
    border: 0;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

::selection {
    background: var(--blue-500);
    color: var(--white);
}

/* =========================================================
   02. GLOBAL TYPOGRAPHY
   ========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--dark);
    margin: 0;
    line-height: 1.2;
    font-weight: 700;
}

p {
    margin: 0;
}

.section-padding {
    padding: 110px 0;
}

.container {
    max-width: var(--container-width);
}

/* =========================================================
   03. PAGE LOADER
   ========================================================= */

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        opacity 0.6s ease,
        visibility 0.6s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 62px;
    height: 62px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: var(--white);
    background-color: #ffffff !important; 
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 27px;
    font-weight: 800;
    box-shadow: 0 15px 35px rgba(67, 169, 232, 0.28);
}

.loader-name {
    color: var(--dark);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 4px;
}

.loader-line {
    width: 80px;
    height: 3px;
    border-radius: 20px;
    margin: 15px auto 0;
    overflow: hidden;
    position: relative;
    background: var(--blue-100);
}

.loader-line::after {
    content: "";
    position: absolute;
    left: -80px;
    top: 0;
    width: 80px;
    height: 100%;
    background: var(--orange-500);
    animation: loaderLine 1.2s infinite ease-in-out;
}

@keyframes loaderLine {
    0% {
        left: -80px;
    }

    100% {
        left: 80px;
    }
}

/* =========================================================
   04. NAVBAR
   ========================================================= */

.kelana-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 22px 0;
    background: transparent;
    transition: var(--transition);
}

.kelana-navbar.scrolled {
    padding: 12px 0;
    background: #ffffff !important;
    box-shadow: 0 8px 30px rgba(18, 63, 95, 0.08);
    backdrop-filter: blur(15px);
}

.kelana-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
}

.brand-symbol {
    width: 43px;
    height: 43px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--blue-600);
    font-size: 21px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: var(--transition);
}

.kelana-navbar.scrolled .brand-symbol {
    background-color: #fff !important;
    color: var(--white);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-text strong {
    color: var(--white);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 800;
    transition: var(--transition);
}

.brand-text small {
    color: rgba(255, 255, 255, 0.75);
    font-size: 7px;
    letter-spacing: 2.7px;
    margin-top: 5px;
    transition: var(--transition);
}

.kelana-navbar.scrolled .brand-text strong {
    color: var(--dark);
}

.kelana-navbar.scrolled .brand-text small {
    color: var(--blue-500);
}

.kelana-navbar .navbar-nav {
    gap: 5px;
}

.kelana-navbar .nav-link {
    position: relative;
    padding: 10px 14px !important;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.kelana-navbar.scrolled .nav-link {
    color: var(--dark-2);
}

.kelana-navbar .nav-link::after {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 14px;
    width: 0;
    height: 2px;
    border-radius: 5px;
    background: var(--orange-500);
    transition: var(--transition);
}

.kelana-navbar .nav-link:hover,
.kelana-navbar .nav-link.active {
    color: var(--white);
}

.kelana-navbar.scrolled .nav-link:hover,
.kelana-navbar.scrolled .nav-link.active {
    color: var(--blue-600);
}

.kelana-navbar .nav-link:hover::after,
.kelana-navbar .nav-link.active::after {
    width: calc(100% - 28px);
}

.kelana-navbar .dropdown-toggle::after {
    margin-left: 5px;
    vertical-align: 2px;
}

.kelana-dropdown {
    min-width: 220px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.98);
}

.kelana-dropdown .dropdown-item {
    padding: 10px 13px;
    border-radius: 10px;
    color: var(--dark-2);
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}

.kelana-dropdown .dropdown-item:hover {
    color: var(--blue-700);
    background: var(--blue-50);
    transform: translateX(3px);
}

.kelana-dropdown .dropdown-item i {
    margin-right: 7px;
}

.navbar-contact-btn {
    min-height: 43px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    background: var(--orange-500);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(255, 138, 42, 0.25);
    transition: var(--transition);
}

.navbar-contact-btn i {
    font-size: 15px;
    transition: transform 0.3s ease;
}

.navbar-contact-btn:hover {
    color: var(--white);
    background: var(--orange-600);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 138, 42, 0.35);
}

.navbar-contact-btn:hover i {
    transform: translate(2px, -2px);
}

.kelana-navbar .navbar-toggler {
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.kelana-navbar.scrolled .navbar-toggler {
    background: var(--blue-50);
    color: var(--blue-600);
}

.kelana-navbar .navbar-toggler:focus {
    box-shadow: none;
}

.kelana-navbar .navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

.kelana-navbar.scrolled .navbar-toggler-icon {
    filter: none;
}

/* =========================================================
   05. HERO
   ========================================================= */

.hero-section {
    min-height: 850px;
    height: 100vh;
    max-height: 980px;
    position: relative;
    overflow: hidden;
    background: var(--blue-900);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition:
        opacity 0.9s ease,
        visibility 0.9s ease,
        transform 7s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(7, 32, 49, 0.82) 0%,
            rgba(9, 42, 64, 0.68) 40%,
            rgba(10, 54, 79, 0.22) 75%,
            rgba(10, 54, 79, 0.12) 100%
        );
}

.hero-container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 720px;
    padding-top: 70px;
}

.hero-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--orange-300);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 23px;
}

.kicker-line {
    width: 45px;
    height: 2px;
    display: inline-block;
    background: var(--orange-500);
}

.hero-content h1 {
    color: var(--white);
    font-size: clamp(48px, 5.5vw, 80px);
    font-weight: 800;
    letter-spacing: -3px;
    line-height: 1.05;
    margin-bottom: 25px;
}

.hero-content h1 span {
    display: block;
    color: var(--blue-300);
}

.hero-content p {
    max-width: 590px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 34px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.btn-kelana-primary {
    min-height: 53px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border-radius: 100px;
    color: var(--white);
    background: var(--orange-500);
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(255, 138, 42, 0.25);
    transition: var(--transition);
}

.btn-kelana-primary:hover {
    color: var(--white);
    background: var(--orange-600);
    transform: translateY(-3px);
    box-shadow: 0 17px 35px rgba(255, 138, 42, 0.32);
}

.btn-kelana-primary i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-kelana-primary:hover i {
    transform: translateX(4px);
}

.btn-kelana-light {
    min-height: 53px;
    padding: 0 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 100px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(8px);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-kelana-light:hover {
    color: var(--dark);
    background: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-kelana-light i {
    font-size: 18px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 45px;
}

.trust-avatars {
    display: flex;
    padding-left: 5px;
}

.trust-avatar {
    width: 34px;
    height: 34px;
    margin-left: -6px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--blue-600);
    font-size: 10px;
    font-weight: 800;
}

.trust-avatar:nth-child(2) {
    background: var(--orange-500);
}

.trust-avatar:nth-child(3) {
    background: var(--blue-700);
}

.trust-avatar:nth-child(4) {
    background: var(--dark-2);
}

.trust-text {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
}

.trust-text strong {
    color: var(--white);
    font-size: 13px;
}

.trust-text span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 11px;
}

.hero-number {
    position: absolute;
    right: 70px;
    top: 50%;
    z-index: 3;
    color: rgba(255, 255, 255, 0.18);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 150px;
    font-weight: 800;
    line-height: 1;
    transform: translateY(-50%);
}

.hero-navigation {
    position: absolute;
    z-index: 10;
    right: 55px;
    bottom: 60px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-arrow,
.slider-arrow {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--dark);
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.hero-arrow:hover,
.slider-arrow:hover {
    color: var(--white);
    background: var(--orange-500);
    transform: translateY(-2px);
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 4px;
}

.hero-dot {
    width: 24px;
    height: 3px;
    border-radius: 10px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.35);
    transition: var(--transition);
}

.hero-dot.active {
    width: 42px;
    background: var(--orange-500);
}

.hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 33px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    transform: translateX(-50%);
    transition: var(--transition);
}

.hero-scroll i {
    color: var(--orange-400);
    font-size: 16px;
    animation: scrollBounce 1.7s infinite;
}

.hero-scroll:hover {
    color: var(--white);
}

@keyframes scrollBounce {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

/* =========================================================
   06. SEARCH
   ========================================================= */

.search-section {
    position: relative;
    z-index: 20;
    margin-top: -65px;
}

.search-box {
    padding: 28px 32px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(20px);
}

.search-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.search-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 13px;
    color: var(--blue-600);
    background: var(--blue-100);
    font-size: 21px;
}

.search-heading span {
    display: block;
    color: var(--orange-500);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 5px;
}

.search-heading h3 {
    color: var(--dark);
    font-size: 20px;
}

.search-fields {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr auto;
    align-items: end;
    gap: 13px;
}

.search-field {
    min-width: 0;
}

.search-field label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-light);
    font-size: 11px;
    font-weight: 700;
}

.search-field label i {
    color: var(--blue-500);
    margin-right: 5px;
}

.search-field select,
.search-field input {
    width: 100%;
    height: 51px;
    padding: 0 15px;
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--dark-2);
    background: var(--off-white);
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}

.search-field select:focus,
.search-field input:focus {
    border-color: var(--blue-400);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(67, 169, 232, 0.10);
}

.search-submit {
    height: 51px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    color: var(--white);
    background: var(--blue-600);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    transition: var(--transition);
}

.search-submit:hover {
    background: var(--orange-500);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 138, 42, 0.22);
}

/* =========================================================
   07. SECTION HEADER
   ========================================================= */

.section-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 45px;
}

.section-label {
    display: block;
    margin-bottom: 11px;
    color: var(--orange-500);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.5px;
}

.section-top h2,
.testimonial-heading h2 {
    color: var(--dark);
    font-size: clamp(31px, 3.2vw, 46px);
    letter-spacing: -1.5px;
}

.section-top-right {
    max-width: 470px;
    display: flex;
    align-items: flex-end;
    gap: 25px;
}

.section-top-right p,
.section-description {
    max-width: 420px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
}

.text-link {
    flex-shrink: 0;
    color: var(--blue-600);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    transition: var(--transition);
}

.text-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.text-link:hover {
    color: var(--orange-500);
}

.text-link:hover i {
    transform: translate(3px, -3px);
}

.slider-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.slider-controls .slider-arrow {
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    background: var(--white);
}

/* =========================================================
   08. DESTINATIONS
   ========================================================= */

.destinations-section {
    background: var(--white);
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 250px 250px;
    gap: 17px;
}

.destination-card {
    position: relative;
    overflow: hidden;
    border-radius: 21px;
    grid-column: span 2;
}

.destination-card-large {
    grid-column: span 3;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.destination-card:hover img {
    transform: scale(1.08);
}

.destination-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(6, 27, 42, 0.82),
            rgba(6, 27, 42, 0.05) 70%
        );
}

.destination-content {
    position: absolute;
    left: 23px;
    right: 23px;
    bottom: 21px;
    z-index: 2;
}

.destination-content span {
    color: var(--orange-300);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.destination-content h3 {
    margin-top: 4px;
    padding-right: 45px;
    color: var(--white);
    font-size: 21px;
}

.destination-arrow {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 39px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--dark);
    background: var(--white);
    transition: var(--transition);
}

.destination-card:hover .destination-arrow {
    color: var(--white);
    background: var(--orange-500);
    transform: rotate(45deg);
}

/* =========================================================
   09. OFFERS
   ========================================================= */

.offers-section {
    background: var(--blue-50);
}

.horizontal-slider {
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
}

.modern-tour-card {
    flex: 0 0 calc((100% - 40px) / 3);
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--white);
    box-shadow: 0 7px 25px rgba(18, 63, 95, 0.05);
    transition: var(--transition);
}

.modern-tour-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-md);
}

.tour-card-image {
    height: 245px;
    position: relative;
    overflow: hidden;
}

.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.modern-tour-card:hover .tour-card-image img {
    transform: scale(1.07);
}

.tour-badge {
    position: absolute;
    top: 17px;
    left: 17px;
    padding: 7px 11px;
    border-radius: 8px;
    color: var(--white);
    background: var(--blue-600);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
}

.orange-badge {
    background: var(--orange-500);
}

.favorite-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 39px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    background: rgba(16, 42, 61, 0.42);
    backdrop-filter: blur(7px);
    cursor: pointer;
    transition: var(--transition);
}

.favorite-btn:hover,
.favorite-btn.active {
    color: var(--white);
    background: var(--orange-500);
}

.favorite-btn.active i::before {
    content: "\f415";
}

.tour-card-body {
    padding: 23px;
}

.tour-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-light);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.7px;
}

.tour-meta i {
    color: var(--blue-500);
    margin-right: 3px;
}

.tour-card-body h3 {
    color: var(--dark);
    font-size: 21px;
    margin-bottom: 5px;
}

.tour-card-body p {
    color: var(--text-light);
    font-size: 12px;
}

.tour-card-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    margin-top: 23px;
    padding-top: 17px;
    border-top: 1px solid var(--border);
}

.tour-card-bottom small,
.featured-body small {
    display: block;
    color: var(--text-light);
    font-size: 9px;
    margin-bottom: 3px;
}

.tour-card-bottom strong,
.featured-body strong {
    color: var(--blue-700);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
}

.tour-view-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--blue-600);
    transition: var(--transition);
}

.tour-view-btn:hover {
    color: var(--white);
    background: var(--orange-500);
    transform: rotate(45deg);
}

/* =========================================================
   10. HIGHLIGHTS
   ========================================================= */

.highlights-section {
    background: var(--white);
}

.highlight-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    grid-template-rows: 300px 300px;
    gap: 17px;
}

.highlight-item {
    position: relative;
    overflow: hidden;
    border-radius: 21px;
}

.highlight-wide {
    grid-column: span 2;
}

.highlight-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.highlight-item:hover img {
    transform: scale(1.08);
}

.highlight-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(7, 32, 49, 0.84),
            rgba(7, 32, 49, 0.02) 75%
        );
}

.highlight-content {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 24px;
    z-index: 2;
}

.highlight-content span {
    color: var(--orange-300);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.highlight-content h3 {
    max-width: 400px;
    margin-top: 6px;
    color: var(--white);
    font-size: 23px;
}

.highlight-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    font-weight: 600;
    transition: var(--transition);
}

.highlight-link i {
    transition: transform 0.3s ease;
}

.highlight-item:hover .highlight-link {
    color: var(--white);
}

.highlight-item:hover .highlight-link i {
    transform: translateX(5px);
}

/* =========================================================
   11. WHY KELANA
   ========================================================= */

.why-kelana-section {
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(99, 195, 242, 0.17),
            transparent 32%
        ),
        var(--blue-50);
}

.why-content h2 {
    color: var(--dark);
    font-size: clamp(33px, 3.5vw, 48px);
    letter-spacing: -1.7px;
    margin-bottom: 20px;
}

.why-content h2 span {
    display: block;
    color: var(--blue-600);
}

.why-content > p {
    max-width: 450px;
    margin-bottom: 28px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
}

.why-stat {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-top: 38px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.why-stat div {
    display: flex;
    flex-direction: column;
}

.why-stat strong {
    color: var(--dark);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 24px;
    line-height: 1;
}

.why-stat span {
    margin-top: 6px;
    color: var(--text-light);
    font-size: 10px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.feature-card {
    position: relative;
    min-height: 245px;
    padding: 27px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 21px;
    background: var(--white);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.feature-card-orange {
    background: var(--orange-500);
    border-color: var(--orange-500);
}

.feature-number {
    position: absolute;
    top: 17px;
    right: 20px;
    color: var(--blue-100);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 38px;
    font-weight: 800;
}

.feature-card-orange .feature-number {
    color: rgba(255, 255, 255, 0.2);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 27px;
    border-radius: 14px;
    color: var(--blue-600);
    background: var(--blue-100);
    font-size: 20px;
}

.feature-card-orange .feature-icon {
    color: var(--orange-600);
    background: var(--white);
}

.feature-card h3 {
    color: var(--dark);
    font-size: 17px;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 12px;
    line-height: 1.7;
}

.feature-card-orange h3 {
    color: var(--white);
}

.feature-card-orange p {
    color: rgba(255, 255, 255, 0.8);
}

/* =========================================================
   12. FEATURED TOURS
   ========================================================= */

.featured-section {
    background: var(--white);
}

.featured-card {
    flex: 0 0 calc((100% - 60px) / 4);
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--white);
    transition: var(--transition);
}

.featured-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.featured-image {
    height: 215px;
    position: relative;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.featured-card:hover .featured-image img {
    transform: scale(1.07);
}

.featured-image span {
    position: absolute;
    left: 14px;
    bottom: 14px;
    padding: 6px 9px;
    border-radius: 7px;
    color: var(--white);
    background: rgba(16, 42, 61, 0.75);
    backdrop-filter: blur(7px);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
}

.featured-body {
    padding: 19px;
}

.featured-body h3 {
    color: var(--dark);
    font-size: 17px;
    margin-bottom: 4px;
}

.featured-body p {
    color: var(--text-light);
    font-size: 11px;
    margin-bottom: 17px;
}

.featured-body > div {
    padding-top: 13px;
    border-top: 1px solid var(--border);
}

/* =========================================================
   13. STORIES
   ========================================================= */

.stories-section {
    background: var(--blue-50);
}

.story-card {
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: var(--white);
    transition: var(--transition);
}

.story-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.story-image {
    height: 245px;
    display: block;
    position: relative;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.07);
}

.story-image span {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 7px 10px;
    border-radius: 7px;
    color: var(--white);
    background: var(--blue-600);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
}

.story-image .orange-label {
    background: var(--orange-500);
}

.story-content {
    padding: 22px;
}

.story-date {
    color: var(--orange-500);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 9px;
}

.story-date i {
    margin-right: 4px;
}

.story-content h3 {
    color: var(--dark);
    font-size: 18px;
    line-height: 1.45;
    margin-bottom: 17px;
}

.story-content > a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--blue-600);
    font-size: 12px;
    font-weight: 700;
    transition: var(--transition);
}

.story-content > a i {
    transition: transform 0.3s ease;
}

.story-content > a:hover {
    color: var(--orange-500);
}

.story-content > a:hover i {
    transform: translateX(4px);
}

/* =========================================================
   14. TESTIMONIAL
   ========================================================= */

.testimonial-section {
    padding: 110px 0 120px;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            var(--blue-700),
            var(--blue-500)
        );
}

.testimonial-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -270px;
    right: -150px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.testimonial-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    bottom: -240px;
    left: -130px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.testimonial-heading {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 42px;
}

.testimonial-heading .section-label {
    color: var(--orange-300);
}

.testimonial-heading h2 {
    color: var(--white);
}

.testimonial-slider {
    max-width: 840px;
    min-height: 335px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slide {
    position: absolute;
    inset: 0;
    padding: 42px 50px;
    border-radius: 27px;
    text-align: center;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition:
        opacity 0.5s ease,
        visibility 0.5s ease,
        transform 0.5s ease;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.quote-mark {
    color: var(--blue-100);
    font-family: Georgia, serif;
    font-size: 75px;
    line-height: 0.65;
}

.testimonial-stars {
    margin: 12px 0 19px;
    color: var(--orange-500);
    font-size: 13px;
}

.testimonial-stars i {
    margin: 0 2px;
}

.testimonial-slide blockquote {
    max-width: 690px;
    margin: 0 auto 25px;
    color: var(--text);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
}

.testimonial-author img,
.author-placeholder {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    object-fit: cover;
}

.author-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--orange-500);
    font-size: 13px;
    font-weight: 800;
}

.testimonial-author > div:last-child {
    text-align: left;
}

.testimonial-author strong {
    display: block;
    color: var(--dark);
    font-size: 12px;
}

.testimonial-author span {
    display: block;
    color: var(--text-light);
    font-size: 10px;
}

.testimonial-dots {
    position: relative;
    z-index: 4;
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 25px;
    height: 3px;
    border-radius: 10px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.35);
    transition: var(--transition);
}

.testimonial-dot.active {
    width: 42px;
    background: var(--orange-400);
}

/* =========================================================
   15. GALLERY
   ========================================================= */

.gallery-section {
    padding: 110px 0 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
    gap: 6px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-tall {
    grid-row: span 2;
}

.gallery-wide {
    grid-column: span 2;
}

.gallery-hover {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: rgba(18, 63, 95, 0.52);
    opacity: 0;
    transition: var(--transition);
}

.gallery-hover i {
    width: 47px;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--orange-500);
    font-size: 18px;
    transform: translateY(10px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-hover {
    opacity: 1;
}

.gallery-item:hover .gallery-hover i {
    transform: translateY(0);
}

/* =========================================================
   16. NEWSLETTER
   ========================================================= */

.newsletter-section {
    padding: 100px 0;
    background: var(--white);
}

.newsletter-box {
    position: relative;
    overflow: hidden;
    padding: 60px 65px;
    border-radius: 30px;
    background:
        linear-gradient(
            135deg,
            var(--blue-800),
            var(--blue-600)
        );
    box-shadow: var(--shadow-lg);
}

.newsletter-box::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    top: -170px;
    right: -80px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
}

.newsletter-box::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    bottom: -120px;
    left: 30%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.newsletter-decoration {
    position: absolute;
    border-radius: 50%;
    background: var(--orange-500);
    opacity: 0.8;
}

.decoration-one {
    width: 9px;
    height: 9px;
    top: 50px;
    right: 28%;
}

.decoration-two {
    width: 15px;
    height: 15px;
    bottom: 50px;
    right: 13%;
    background: var(--blue-300);
}

.newsletter-box .row {
    z-index: 2;
}

.light-label {
    color: var(--orange-300);
}

.newsletter-box h2 {
    max-width: 550px;
    color: var(--white);
    font-size: clamp(29px, 3vw, 43px);
    letter-spacing: -1.4px;
    margin-bottom: 15px;
}

.newsletter-box p {
    max-width: 500px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.8;
}

.newsletter-form {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-left: auto;
    max-width: 500px;
}

.newsletter-input {
    height: 54px;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 17px;
    border-radius: 12px;
    background: var(--white);
}

.newsletter-input i {
    color: var(--blue-500);
}

.newsletter-input input {
    width: 100%;
    border: 0;
    color: var(--dark);
    background: transparent;
    font-size: 12px;
}

.newsletter-input input::placeholder {
    color: var(--text-light);
}

.newsletter-form button {
    height: 54px;
    padding: 0 19px;
    border-radius: 12px;
    color: var(--white);
    background: var(--orange-500);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--orange-600);
    transform: translateY(-2px);
}

.newsletter-form button i {
    margin-left: 5px;
}

.newsletter-note {
    display: block;
    margin-top: 10px;
    margin-left: auto;
    max-width: 500px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 9px;
    text-align: right;
}

.newsletter-note i {
    color: var(--blue-300);
    margin-right: 4px;
}

/* =========================================================
   17. FOOTER
   ========================================================= */

.kelana-footer {
    padding: 80px 0 0;
    color: rgba(255, 255, 255, 0.62);
    background: #0b2639;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 60px;
    padding-bottom: 55px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--white);
}

.footer-logo-symbol {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: var(--white);
    background: var(--blue-500);
    font-size: 20px;
}

.footer-logo strong {
    display: block;
    color: var(--white);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    letter-spacing: 2px;
}

.footer-logo small {
    display: block;
    margin-top: 3px;
    color: var(--blue-300);
    font-size: 7px;
    letter-spacing: 2.4px;
}

.footer-brand > p {
    max-width: 280px;
    margin: 19px 0 23px;
    color: rgba(255, 255, 255, 0.53);
    font-size: 12px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--white);
    background: var(--orange-500);
    border-color: var(--orange-500);
    transform: translateY(-3px);
}

.footer-column h3 {
    margin-bottom: 22px;
    color: var(--white);
    font-size: 14px;
}

.footer-column li {
    margin-bottom: 11px;
}

.footer-column li a {
    color: rgba(255, 255, 255, 0.53);
    font-size: 12px;
    transition: var(--transition);
}

.footer-column li a:hover {
    color: var(--orange-400);
    padding-left: 4px;
}

.footer-contact .contact-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
}

.footer-contact .contact-line i {
    width: 17px;
    color: var(--blue-400);
    font-size: 14px;
}

.footer-bottom {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
}

.footer-bottom div {
    display: flex;
    gap: 22px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--white);
}

/* =========================================================
   18. BACK TO TOP
   ========================================================= */

.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 500;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--blue-600);
    box-shadow: 0 10px 30px rgba(18, 63, 95, 0.18);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--orange-500);
    transform: translateY(-3px);
}

/* =========================================================
   19. RESPONSIVE - LARGE TABLET
   ========================================================= */

@media (max-width: 1199px) {

    .container {
        max-width: 960px;
    }

    .kelana-navbar .nav-link {
        padding-left: 9px !important;
        padding-right: 9px !important;
        font-size: 12px;
    }

    .navbar-contact-btn {
        padding: 0 14px;
        font-size: 11px;
    }

    .hero-number {
        right: 30px;
        font-size: 110px;
    }

    .destination-grid {
        grid-template-rows: 220px 220px;
    }

    .modern-tour-card {
        flex-basis: calc((100% - 20px) / 2);
    }

    .featured-card {
        flex-basis: calc((100% - 40px) / 3);
    }

    .footer-main {
        gap: 35px;
    }
}

/* =========================================================
   20. RESPONSIVE - TABLET
   ========================================================= */

@media (max-width: 991px) {

    .section-padding {
        padding: 85px 0;
    }

    .kelana-navbar {
        padding: 15px 0;
        background: rgba(255, 255, 255, 0.97);
        box-shadow: 0 5px 25px rgba(18, 63, 95, 0.08);
        backdrop-filter: blur(15px);
    }

    .brand-symbol {
        background: var(--blue-500);
        color: var(--white);
    }

    .brand-text strong {
        color: var(--dark);
    }

    .brand-text small {
        color: var(--blue-500);
    }

    .kelana-navbar .navbar-collapse {
        margin-top: 14px;
        padding: 14px;
        border-radius: 17px;
        background: var(--white);
        box-shadow: var(--shadow-md);
    }

    .kelana-navbar .navbar-nav {
        align-items: stretch !important;
    }

    .kelana-navbar .nav-link {
        padding: 11px 12px !important;
        color: var(--dark-2) !important;
    }

    .kelana-navbar .nav-link:hover,
    .kelana-navbar .nav-link.active {
        color: var(--blue-600) !important;
    }

    .kelana-navbar .nav-link::after {
        display: none;
    }

    .navbar-contact-btn {
        justify-content: center;
        margin-top: 8px;
        color: var(--white) !important;
    }

    .hero-section {
        min-height: 780px;
    }

    .hero-content {
        padding-top: 90px;
    }

    .hero-content h1 {
        font-size: clamp(43px, 7vw, 65px);
    }

    .hero-number {
        display: none;
    }

    .hero-navigation {
        right: 25px;
        bottom: 30px;
    }

    .hero-scroll {
        display: none;
    }

    .search-section {
        margin-top: -50px;
    }

    .search-fields {
        grid-template-columns: repeat(2, 1fr);
    }

    .search-submit {
        width: 100%;
    }

    .section-top-right {
        max-width: 420px;
    }

    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 250px 250px 250px;
    }

    .destination-card,
    .destination-card-large {
        grid-column: span 1;
    }

    .destination-card-large:last-child {
        grid-column: span 2;
    }

    .highlight-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 280px 280px 280px;
    }

    .highlight-wide {
        grid-column: span 2;
    }

    .why-content {
        margin-bottom: 20px;
    }

    .feature-grid {
        margin-top: 15px;
    }

    .featured-card {
        flex-basis: calc((100% - 20px) / 2);
    }

    .newsletter-box {
        padding: 45px;
    }

    .newsletter-form {
        margin-top: 30px;
        max-width: none;
    }

    .newsletter-note {
        max-width: none;
    }

    .footer-main {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-contact {
        grid-column: span 3;
    }
}

/* =========================================================
   21. RESPONSIVE - MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .section-padding {
        padding: 70px 0;
    }

    .hero-section {
        min-height: 700px;
        height: 88vh;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(7, 32, 49, 0.84),
                rgba(7, 32, 49, 0.46)
            );
    }

    .hero-content {
        padding-top: 75px;
    }

    .hero-kicker {
        font-size: 9px;
        letter-spacing: 2px;
        margin-bottom: 17px;
    }

    .kicker-line {
        width: 32px;
    }

    .hero-content h1 {
        font-size: clamp(39px, 12vw, 55px);
        letter-spacing: -2px;
        margin-bottom: 18px;
    }

    .hero-content p {
        max-width: 520px;
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 24px;
    }

    .hero-buttons {
        gap: 9px;
    }

    .btn-kelana-primary,
    .btn-kelana-light {
        min-height: 48px;
        padding: 0 17px;
        font-size: 12px;
    }

    .hero-trust {
        margin-top: 30px;
    }

    .trust-text span {
        display: none;
    }

    .hero-navigation {
        left: 50%;
        right: auto;
        bottom: 24px;
        transform: translateX(-50%);
    }

    .hero-arrow {
        width: 40px;
        height: 40px;
    }

    .search-section {
        margin-top: -30px;
    }

    .search-box {
        padding: 23px 18px;
        border-radius: 19px;
    }

    .search-heading {
        margin-bottom: 18px;
    }

    .search-heading h3 {
        font-size: 18px;
    }

    .search-fields {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .section-top {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
        margin-bottom: 30px;
    }

    .section-top-right {
        max-width: none;
        display: block;
    }

    .section-top-right p {
        margin-bottom: 12px;
    }

    .section-top h2 {
        font-size: 31px;
    }

    .section-description {
        max-width: none;
    }

    .destination-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 190px);
        gap: 10px;
    }

    .destination-card,
    .destination-card-large,
    .destination-card-large:last-child {
        grid-column: span 1;
    }

    .destination-content {
        left: 14px;
        right: 14px;
        bottom: 14px;
    }

    .destination-content h3 {
        font-size: 15px;
    }

    .destination-content span {
        font-size: 7px;
    }

    .destination-arrow {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .modern-tour-card {
        flex-basis: 88%;
    }

    .tour-card-image {
        height: 230px;
    }

    .slider-controls .text-link {
        display: none;
    }

    .highlight-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 245px);
        gap: 10px;
    }

    .highlight-wide {
        grid-column: span 1;
    }

    .highlight-content {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .highlight-content h3 {
        font-size: 20px;
    }

    .why-content h2 {
        font-size: 33px;
    }

    .why-stat {
        gap: 20px;
    }

    .why-stat strong {
        font-size: 20px;
    }

    .why-stat span {
        font-size: 8px;
    }

    .feature-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .feature-card {
        min-height: 215px;
        padding: 19px;
    }

    .feature-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 20px;
    }

    .feature-card h3 {
        font-size: 14px;
    }

    .feature-card p {
        font-size: 10px;
    }

    .feature-number {
        font-size: 27px;
    }

    .featured-card {
        flex-basis: 84%;
    }

    .story-image {
        height: 220px;
    }

    .testimonial-section {
        padding: 80px 0;
    }

    .testimonial-slider {
        min-height: 410px;
    }

    .testimonial-slide {
        padding: 30px 23px;
    }

    .testimonial-slide blockquote {
        font-size: 13px;
    }

    .gallery-section {
        padding-top: 70px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 170px;
        gap: 4px;
    }

    .gallery-tall {
        grid-row: span 2;
    }

    .gallery-wide {
        grid-column: span 2;
    }

    .newsletter-section {
        padding: 70px 0;
    }

    .newsletter-box {
        padding: 35px 23px;
        border-radius: 23px;
    }

    .newsletter-box h2 {
        font-size: 30px;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .newsletter-input,
    .newsletter-form button {
        width: 100%;
    }

    .newsletter-note {
        text-align: left;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 35px 25px;
        padding-bottom: 40px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-contact {
        grid-column: span 2;
    }

    .footer-bottom {
        padding: 20px 0;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .footer-bottom div {
        gap: 15px;
    }

    .back-to-top {
        right: 16px;
        bottom: 16px;
        width: 42px;
        height: 42px;
    }
}

/* =========================================================
   22. RESPONSIVE - SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .container {
        padding-left: 17px;
        padding-right: 17px;
    }

    .hero-section {
        min-height: 680px;
    }

    .hero-content h1 {
        font-size: 39px;
    }

    .hero-content p {
        font-size: 13px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-kelana-primary,
    .btn-kelana-light {
        width: auto;
    }

    .destination-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 185px);
    }

    .destination-card,
    .destination-card-large,
    .destination-card-large:last-child {
        grid-column: span 1;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: 190px;
    }

    .featured-card {
        flex-basis: 90%;
    }

    .testimonial-slider {
        min-height: 440px;
    }

    .testimonial-slide {
        padding: 27px 19px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 140px;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-brand,
    .footer-contact {
        grid-column: span 1;
    }
}

/* =========================================================
   23. ACCESSIBILITY / MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* =========================================================
   24. UTILITY
   ========================================================= */

.overflow-hidden {
    overflow: hidden;
}

.cursor-pointer {
    cursor: pointer;
}