/* ============================================
   Brit Lanka Tours - Custom Styles
   ============================================ */

:root {
    --primary: #0d6efd;
    --primary-dark: #0a58ca;
    --accent: #e8a838;
    --accent-dark: #d4952a;
    --dark: #1a1a2e;
    --text: #4a4a5a;
    --text-light: #6c757d;
    --white: #ffffff;
    --navbar-height: 80px;
    --transition: all 0.35s ease;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Wider layout — less empty space on the sides */
@media (min-width: 1200px) {
    .container {
        max-width: 1280px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1480px;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1600px;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ========== Navbar ========== */
.main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    height: var(--navbar-height);
    background: transparent;
    transition: var(--transition);
    padding: 0;
}

.main-navbar.scrolled {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.main-navbar .navbar-brand {
    display: flex;
    align-items: center;
    height: var(--navbar-height);
    padding: 0;
    margin: 0;
}

.main-navbar .navbar-brand img {
    height: var(--navbar-height);
    width: auto;
    max-width: none;
    object-fit: contain;
    transition: var(--transition);
}

.main-navbar .nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--white) !important;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.main-navbar.scrolled .nav-link {
    color: var(--dark) !important;
}

.main-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
    transform: translateX(-50%);
}

.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after {
    width: 60%;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    color: var(--accent) !important;
}

.main-navbar.scrolled .nav-link:hover,
.main-navbar.scrolled .nav-link.active {
    color: var(--primary) !important;
}

.main-navbar .navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.main-navbar .navbar-toggler:focus {
    box-shadow: none;
}

.main-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.main-navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2826, 26, 46, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.main-navbar .btn-book {
    background: var(--accent);
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    border: 2px solid var(--accent);
    transition: var(--transition);
}

.main-navbar .btn-book:hover {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.main-navbar.scrolled .btn-book {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.main-navbar.scrolled .btn-book:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}

/* Mobile navbar collapse */
@media (max-width: 991.98px) {
    .main-navbar .navbar-collapse {
        background: var(--white);
        padding: 1rem;
        border-radius: var(--radius);
        margin-top: 0.5rem;
        box-shadow: var(--shadow);
    }

    .main-navbar .nav-link {
        color: var(--dark) !important;
    }

    .main-navbar .nav-link:hover,
    .main-navbar .nav-link.active {
        color: var(--primary) !important;
    }
}

/* ========== Video Hero (Home) ========== */
.video-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.video-hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 40%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
}

.video-hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1.5rem;
    padding-top: var(--navbar-height);
}

.video-hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.video-hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
    margin: 0 auto 2rem;
}

.hero-buttons .btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    margin: 0.5rem;
    font-size: 0.95rem;
}

.btn-primary-custom {
    background: var(--accent);
    color: var(--dark);
    border: 2px solid var(--accent);
}

.btn-primary-custom:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-custom:hover {
    background: var(--white);
    color: var(--dark);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--white);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ========== Page Hero (Inner Pages - Full Screen) ========== */
.page-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.45) 0%,
        rgba(0, 0, 0, 0.25) 40%,
        rgba(0, 0, 0, 0.55) 100%
    );
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1.5rem;
    padding-top: var(--navbar-height);
}

.page-hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-hero-content .breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.page-hero-content .breadcrumb-nav a,
.page-hero-content .breadcrumb-nav span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.page-hero-content .breadcrumb-nav a:hover {
    color: var(--accent);
}

.page-hero-content .breadcrumb-nav .separator {
    color: rgba(255, 255, 255, 0.5);
}

.page-hero .scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--white);
    animation: bounce 2s infinite;
}

/* ========== Sections ========== */
.section {
    padding: 80px 0;
}

.section-sm {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title .subtitle {
    font-family: 'Poppins', sans-serif;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.section-title p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-light);
}

.bg-light-custom {
    background: #f4f6f8;
}

/* ========== Cards ========== */
.tour-card,
.dest-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: none;
}

.tour-card:hover,
.dest-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.tour-card .card-img-wrap,
.dest-card .card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.tour-card .card-img-wrap img,
.dest-card .card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card:hover .card-img-wrap img,
.dest-card:hover .card-img-wrap img {
    transform: scale(1.08);
}

.tour-card .card-body,
.dest-card .card-body {
    padding: 1.5rem;
}

.tour-card .price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}

.tour-card .duration {
    font-size: 0.85rem;
    color: var(--text-light);
}

.tour-card .duration i,
.dest-card .region i {
    color: var(--accent);
    margin-right: 0.25rem;
}

.home-tour-card {
    color: inherit;
}

.home-tour-card .card-img-wrap {
    height: 260px;
}

.home-tour-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.7) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 1.25rem;
    opacity: 0;
    transition: var(--transition);
}

.home-tour-card:hover .home-tour-overlay {
    opacity: 1;
}

.home-tour-cta {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.02em;
}

.home-tour-card h5 {
    color: var(--dark);
    font-size: 1.05rem;
}

.popular-tours-section,
.home-carousel-section {
    background: #ffffff;
}

.popular-tours-section {
    background: #f4f8fc;
}

.home-carousel-section .swiper,
.home-carousel-section .swiper-wrapper,
.home-carousel-section .swiper-slide,
.popular-tours-wrap {
    background: transparent;
}

.popular-tours-section .swiper,
.popular-tours-section .swiper-wrapper,
.popular-tours-section .swiper-slide,
.popular-tours-section .popular-tours-wrap {
    background: #f4f8fc;
}

.popular-tours-wrap {
    padding: 0 0.75rem;
}

.popular-tour-prev,
.popular-tour-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: var(--dark);
}

.popular-tour-prev {
    left: -0.25rem;
}

.popular-tour-next {
    right: -0.25rem;
}

.popular-tour-prev:hover,
.popular-tour-next:hover {
    background: var(--accent);
    color: var(--dark);
}

.popular-tour-prev.swiper-button-disabled,
.popular-tour-next.swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
}

.popular-tour-card {
    position: relative;
    height: 620px;
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.popular-tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}

.popular-tour-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.popular-tour-card:hover .popular-tour-bg {
    transform: scale(1.06);
}

.popular-tour-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 18, 32, 0.15) 0%,
        rgba(10, 18, 32, 0.35) 40%,
        rgba(10, 18, 32, 0.72) 100%
    );
}

.popular-tour-badge,
.popular-tour-duration {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    width: fit-content;
    background: rgba(18, 28, 48, 0.88);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.45rem 0.85rem;
    border-radius: 50px;
    margin: 1.1rem;
}

.popular-tour-badge {
    background: var(--accent);
    color: #111;
}

.popular-tour-duration {
    margin-top: auto;
    text-transform: none;
    letter-spacing: 0.01em;
    font-size: 0.78rem;
    color: var(--accent);
}

.popular-tour-center {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1.25rem;
    margin-top: auto;
    margin-bottom: 0.5rem;
}

.popular-tour-location {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.9rem;
    margin-bottom: 0.65rem;
}

.popular-tour-center h3 {
    color: var(--white);
    font-size: clamp(1.25rem, 1.9vw, 1.7rem);
    font-weight: 700;
    line-height: 1.25;
    margin: 0 auto 1.15rem;
    max-width: 14ch;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.popular-tour-btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--white);
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    padding: 0.55rem 1.35rem;
}

.popular-tour-btn:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

@media (max-width: 1199.98px) {
    .popular-tour-card {
        height: 560px;
    }
}

@media (max-width: 991.98px) {
    .popular-tours-wrap {
        padding: 0 0.5rem;
    }

    .popular-tour-card {
        height: 520px;
    }
}

@media (max-width: 575.98px) {
    .popular-tours-wrap {
        padding: 0 0.35rem;
    }

    .popular-tour-card {
        height: 480px;
    }

    .popular-tour-prev,
    .popular-tour-next {
        width: 40px;
        height: 40px;
    }
}

.dest-card .region {
    font-size: 0.85rem;
    color: var(--text-light);
}

.dest-card--listing {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.dest-card--listing .card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.dest-card--listing .card-body p {
    flex: 1;
}

.dest-card--listing .region i {
    color: var(--accent);
}

.dest-list-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    padding: 0.65rem 1rem;
    border-radius: 50px;
    background: var(--accent);
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease;
}

.dest-list-more:hover {
    background: var(--accent-dark);
    color: var(--dark);
    transform: translateY(-1px);
}

/* Top Destinations — full image overlay cards */
.dest-card--overlay {
    position: relative;
    aspect-ratio: 3 / 4;
    min-height: 320px;
    background: #e9eef3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.dest-card--overlay:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}

.dest-card--overlay .dest-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.55s ease;
}

.dest-card--overlay:hover .dest-card-bg {
    transform: scale(1.06);
}

.dest-card-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 18, 32, 0.15) 0%,
        rgba(10, 18, 32, 0.35) 40%,
        rgba(10, 18, 32, 0.72) 100%
    );
}

.dest-card-center {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1.25rem 1.75rem;
    width: 100%;
}

.dest-card-center h3 {
    color: var(--white);
    font-size: clamp(1.15rem, 1.8vw, 1.55rem);
    font-weight: 700;
    line-height: 1.25;
    margin: 0 auto 1rem;
    max-width: 14ch;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.dest-overlay-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--white);
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    padding: 0.55rem 1.35rem;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.dest-overlay-btn:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-2px);
}

.dest-card-content {
    display: none;
}

.dest-card-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

@media (max-width: 767.98px) {
    .dest-card--overlay {
        aspect-ratio: 4 / 5;
        min-height: 280px;
    }

    .dest-card-center {
        padding-bottom: 1.35rem;
    }

    .dest-overlay-btn {
        font-size: 0.8rem;
        padding: 0.5rem 1.15rem;
    }
}

.badge-featured {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    z-index: 2;
}

/* ========== Features ========== */
.feature-box {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box .icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.75rem;
    color: var(--white);
}

.feature-box h5 {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    line-height: 1.35;
    min-height: 2.7em;
}

.feature-box p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* ========== Why Choose Us (home) ========== */
.why-diff-section {
    position: relative;
    padding: 90px 0 100px;
    overflow: hidden;
}

.why-diff-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.why-diff-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(244, 248, 252, 0.88) 0%, rgba(236, 243, 249, 0.78) 45%, rgba(230, 240, 248, 0.9) 100%),
        linear-gradient(90deg, rgba(10, 35, 81, 0.12), transparent 40%, rgba(10, 35, 81, 0.08));
}

.why-diff-inner {
    position: relative;
    z-index: 2;
}

.why-diff-title {
    text-align: center;
    margin-bottom: 3rem;
}

.why-diff-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(232, 168, 56, 0.15);
    color: var(--accent-dark);
    font-size: 1.2rem;
    margin-bottom: 0.85rem;
}

.why-diff-label {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.75rem;
}

.why-diff-label > span:not(.why-diff-line) {
    font-family: 'Poppins', sans-serif;
    color: var(--accent-dark);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.why-diff-line {
    display: block;
    width: 42px;
    height: 1.5px;
    background: var(--accent);
}

.why-diff-title h2 {
    color: #0a2351;
    font-size: clamp(1.85rem, 4vw, 2.6rem);
    margin-bottom: 0.85rem;
}

.why-diff-title p {
    max-width: 560px;
    margin: 0 auto;
    color: #667085;
    font-size: 1rem;
}

.why-diff-grid > [class*='col-'] {
    opacity: 1 !important;
    transform: none !important;
}

.why-diff-card {
    background: var(--white);
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(10, 35, 81, 0.1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.why-diff-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(10, 35, 81, 0.14);
}

.why-diff-card-body {
    text-align: center;
    padding: 1.75rem 1.35rem 1.1rem;
    flex: 1;
}

.why-diff-card-icon {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 1.15rem;
    border-radius: 50%;
    border: 1.5px solid #0a2351;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.why-diff-card-icon::after {
    content: '';
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #0a2351;
    right: 8px;
    bottom: 6px;
}

.why-diff-card-icon-inner {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(145deg, #1565c0, #0a2351);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    box-shadow: 0 8px 18px rgba(10, 35, 81, 0.25);
}

.why-diff-card-icon-inner i {
    line-height: 1;
    display: block;
}

.why-diff-card-body h3 {
    color: #0a2351;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
}

.why-diff-card-body p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0;
}

.why-diff-card-media {
    position: relative;
    margin-top: auto;
    height: 155px;
}

.why-diff-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    clip-path: polygon(
        0 28%,
        8% 22%,
        18% 18%,
        30% 22%,
        42% 16%,
        55% 20%,
        68% 14%,
        80% 19%,
        90% 15%,
        100% 22%,
        100% 100%,
        0 100%
    );
}

/* Premium feature cards (Safe & Secure, Personalized Tours, etc.) */
.why-diff-card--premium {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    background: transparent;
    box-shadow: 0 18px 40px rgba(10, 35, 81, 0.12);
}

.why-diff-card--premium:hover {
    box-shadow: 0 24px 48px rgba(10, 35, 81, 0.16);
}

.premium-card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.premium-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    display: block;
}

.premium-card-sky {
    position: relative;
    z-index: 1;
    padding-bottom: 1.25rem;
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0) 42%),
        radial-gradient(circle at 82% 8%, rgba(186, 220, 255, 0.4) 0%, rgba(186, 220, 255, 0) 36%),
        linear-gradient(180deg, #eef6ff 0%, #f7fbff 52%, #ffffff 100%);
    clip-path: polygon(
        0 0,
        100% 0,
        100% calc(100% - 28px),
        76% calc(100% - 28px),
        50% 100%,
        24% calc(100% - 28px),
        0 calc(100% - 28px)
    );
}

.why-diff-card-body--premium {
    padding: 1.5rem 1rem 0.75rem;
}

.why-diff-card-body--premium h3 {
    font-size: 1.15rem;
    margin-bottom: 0.65rem;
}

.premium-card-icon {
    position: relative;
    width: 82px;
    height: 82px;
    margin: 0 auto 1rem;
}

.premium-card-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(10, 35, 81, 0.12);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.premium-card-orbit--outer {
    width: 80px;
    height: 80px;
}

.premium-card-orbit--inner {
    width: 70px;
    height: 70px;
    border-color: rgba(21, 101, 192, 0.18);
}

.premium-card-orbit--outer::after {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    width: 7px;
    height: 7px;
    margin-left: -3.5px;
    border-radius: 50%;
    background: linear-gradient(145deg, #42a5f5, #1565c0);
}

.premium-card-badge {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.55rem;
    background: linear-gradient(145deg, #1565c0 0%, #0a2351 55%, #061633 100%);
    box-shadow:
        0 10px 22px rgba(10, 35, 81, 0.25),
        inset 0 -3px 8px rgba(0, 0, 0, 0.15);
}

.premium-card-badge i {
    line-height: 1;
}

.premium-card-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.premium-card-divider span {
    display: block;
    width: 42px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c5d9ef, transparent);
}

.premium-card-divider i {
    color: #1565c0;
    font-size: 0.65rem;
}

.premium-card-lead {
    color: #5b6475;
    font-size: 0.78rem;
    line-height: 1.6;
    margin: 0 0 1rem;
    padding: 0 0.15rem;
}

.premium-card-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid #e3ebf5;
    padding-top: 0.85rem;
}

.premium-card-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 0 0.25rem;
    text-align: center;
}

.premium-card-feature:not(:last-child) {
    border-right: 1px solid #e3ebf5;
}

.premium-card-feature i {
    font-size: 1.35rem;
    color: #0a2351;
    line-height: 1;
}

.premium-card-feature span {
    font-family: 'Poppins', sans-serif;
    color: #0a2351;
    font-weight: 600;
    font-size: 0.62rem;
    line-height: 1.3;
}

@media (max-width: 991.98px) {
    .premium-card-feature span {
        font-size: 0.58rem;
    }
}

@media (max-width: 767.98px) {
    .premium-card-features {
        grid-template-columns: 1fr;
        gap: 0.65rem;
    }

    .premium-card-feature:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid #e3ebf5;
        padding-bottom: 0.65rem;
    }

    .why-diff-card--premium {
        min-height: 460px;
    }

    .premium-card-sky {
        clip-path: polygon(
            0 0,
            100% 0,
            100% calc(100% - 22px),
            72% calc(100% - 22px),
            50% 100%,
            28% calc(100% - 22px),
            0 calc(100% - 22px)
        );
    }
}

@media (max-width: 767.98px) {
    .why-diff-section {
        padding: 70px 0 80px;
    }

    .why-diff-card-media {
        height: 140px;
    }
}

/* ========== About Section ========== */
.about-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-img-wrap img {
    width: 100%;
    border-radius: var(--radius-lg);
}

.about-img-wrap .experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--accent);
    color: var(--dark);
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-img-wrap .experience-badge .number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    display: block;
}

.about-img-wrap .experience-badge .text {
    font-size: 0.85rem;
    font-weight: 600;
}

.lead-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--dark);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
}

.about-intro-copy {
    max-width: none;
}

.about-intro-title {
    font-size: clamp(2rem, 4.2vw, 3.1rem);
    color: #524727;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.about-intro-lead {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-intro-copy > p {
    font-size: 1rem;
    color: #444;
    line-height: 1.75;
    margin-bottom: 1.2rem;
}

.about-intro-tag {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--dark) !important;
    margin-bottom: 0 !important;
    margin-top: 0.5rem;
}

.about-intro-media {
    position: relative;
}

.about-intro-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    max-height: 640px;
    overflow: hidden;
    border-radius: 140px 0 140px 0;
}

.about-intro-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 991.98px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-intro-frame {
        aspect-ratio: 5 / 4;
        max-height: 480px;
        border-radius: 100px 0 100px 0;
        margin: 0 auto;
        max-width: 520px;
    }
}

@media (max-width: 575.98px) {
    .about-intro-frame {
        border-radius: 70px 0 70px 0;
        aspect-ratio: 4 / 5;
    }
}

.hospitality-banner {
    position: relative;
    width: 100%;
    min-height: 280px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hospitality-banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.02);
    transition: transform 8s ease;
}

.hospitality-banner:hover .hospitality-banner-bg {
    transform: scale(1.06);
}

.hospitality-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(20, 28, 18, 0.55) 0%,
        rgba(20, 28, 18, 0.25) 45%,
        rgba(20, 28, 18, 0.35) 100%
    );
}

.hospitality-banner--blue {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    min-height: 220px;
}

.hospitality-banner--blue .hospitality-banner-inner {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.hospitality-banner--blue .btn-hospitality {
    background: var(--white);
    border-color: var(--white);
    color: var(--primary-dark);
}

.hospitality-banner--blue .btn-hospitality:hover {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

.hospitality-banner-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}

.hospitality-banner-inner h2 {
    color: var(--white);
    font-size: clamp(1.5rem, 3.5vw, 2.35rem);
    font-weight: 600;
    max-width: 640px;
    margin: 0;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    line-height: 1.3;
}

.btn-hospitality {
    flex-shrink: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white);
    background: #1f4d3a;
    border: 2px solid #1f4d3a;
    border-radius: 50px;
    padding: 0.85rem 2rem;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.btn-hospitality:hover {
    background: #163a2c;
    border-color: #163a2c;
    color: var(--white);
    transform: translateY(-2px);
}

@media (max-width: 767.98px) {
    .hospitality-banner-inner {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }

    .hospitality-banner-inner h2 {
        max-width: 100%;
    }
}

.why-choose-question {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.why-choose-heading {
    font-size: clamp(1.75rem, 4.2vw, 3rem);
    color: var(--white);
    font-weight: 700;
    line-height: 1.3;
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.why-choose-heading .brand-name {
    color: var(--accent);
}

.purpose-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(165deg, #f8f6f1 0%, #efe8dc 45%, #f4f0e8 100%);
    padding-top: 5rem;
    padding-bottom: 5.5rem;
}

.purpose-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 50% 40% at 15% 20%, rgba(232, 168, 56, 0.16), transparent 60%),
        radial-gradient(ellipse 45% 35% at 90% 75%, rgba(26, 26, 46, 0.06), transparent 55%);
}

.purpose-bg::before,
.purpose-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(232, 168, 56, 0.18);
}

.purpose-bg::before {
    width: 320px;
    height: 320px;
    top: -80px;
    right: -60px;
}

.purpose-bg::after {
    width: 220px;
    height: 220px;
    bottom: -40px;
    left: -40px;
    border-color: rgba(26, 26, 46, 0.08);
}

.purpose-inner {
    position: relative;
    z-index: 1;
}

.purpose-section .section-title {
    margin-bottom: 3.75rem;
}

.purpose-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}

.purpose-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    padding: 2.5rem 2.25rem 2.75rem;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow:
        0 18px 50px rgba(26, 26, 46, 0.08),
        0 2px 8px rgba(26, 26, 46, 0.04);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.purpose-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 28px 60px rgba(26, 26, 46, 0.12),
        0 8px 20px rgba(232, 168, 56, 0.12);
}

.purpose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #f0c56e);
    transform: scaleX(0.35);
    transform-origin: left center;
    transition: transform 0.45s ease;
}

.purpose-card:hover::before {
    transform: scaleX(1);
}

.purpose-card--vision::before {
    background: linear-gradient(90deg, #2a2a40, var(--accent));
    transform-origin: right center;
}

.purpose-card-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.35;
    pointer-events: none;
    transition: opacity 0.45s ease;
}

.purpose-card--mission .purpose-card-glow {
    top: -40px;
    right: -30px;
    background: rgba(232, 168, 56, 0.45);
}

.purpose-card--vision .purpose-card-glow {
    bottom: -50px;
    left: -30px;
    background: rgba(26, 26, 46, 0.18);
}

.purpose-card:hover .purpose-card-glow {
    opacity: 0.55;
}

.purpose-card-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.purpose-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(145deg, #fff7e8, #f5e6c8);
    color: var(--accent-dark);
    font-size: 1.35rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: transform 0.4s ease;
}

.purpose-card--vision .purpose-icon {
    background: linear-gradient(145deg, #2a2a40, #1a1a2e);
    color: var(--accent);
}

.purpose-card:hover .purpose-icon {
    transform: scale(1.08) rotate(-4deg);
}

.purpose-kicker {
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-dark);
}

.purpose-card--vision .purpose-kicker {
    color: #524727;
}

.purpose-card-title {
    position: relative;
    z-index: 1;
    font-size: clamp(1.35rem, 2.4vw, 1.65rem);
    font-weight: 600;
    color: var(--dark);
    margin: 0;
    line-height: 1.3;
    max-width: 18ch;
}

.purpose-card-text {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.8;
}

.purpose-watermark {
    position: absolute;
    right: 0.6rem;
    bottom: -0.6rem;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(7rem, 16vw, 10rem);
    font-weight: 700;
    line-height: 0.75;
    color: rgba(82, 71, 39, 0.055);
    pointer-events: none;
    user-select: none;
    transition: transform 0.5s ease, color 0.5s ease;
}

.purpose-card:hover .purpose-watermark {
    transform: translateY(-6px);
    color: rgba(232, 168, 56, 0.12);
}

.purpose-bridge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-width: 72px;
    padding: 0 0.25rem;
}

.purpose-bridge-line {
    width: 2px;
    flex: 1;
    min-height: 48px;
    background: linear-gradient(180deg, transparent, var(--accent), transparent);
    opacity: 0.55;
}

.purpose-bridge-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(232, 168, 56, 0.15);
}

.purpose-bridge-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-dark);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

@media (max-width: 991.98px) {
    .purpose-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        max-width: 640px;
    }

    .purpose-bridge {
        flex-direction: row;
        min-width: 0;
        padding: 0.35rem 0;
    }

    .purpose-bridge-line {
        width: auto;
        min-height: 0;
        height: 2px;
        flex: 1;
        background: linear-gradient(90deg, transparent, var(--accent), transparent);
    }

    .purpose-bridge-label {
        writing-mode: horizontal-tb;
        transform: none;
    }

    .purpose-card-title {
        max-width: none;
    }
}

@media (max-width: 575.98px) {
    .purpose-section {
        padding-top: 3.5rem;
        padding-bottom: 4rem;
    }

    .purpose-card {
        padding: 1.85rem 1.4rem 2.1rem;
        border-radius: 18px;
    }

    .purpose-icon {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        font-size: 1.2rem;
    }

    .purpose-watermark {
        font-size: 6.5rem;
    }
}

.experience-pillar {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}

.experience-pillar:hover {
    transform: translateY(-4px);
}

.experience-pillar .pillar-num {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--accent);
    line-height: 1;
    flex-shrink: 0;
}

.experience-pillar h5 {
    margin-bottom: 0.5rem;
}

.experience-pillar p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ========== CTA Section ========== */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-section h2 {
    color: var(--white);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
}

/* ========== Testimonials Swiper ========== */
.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    margin: 1rem 0;
}

.testimonial-card .stars {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.testimonial-card .author {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--dark);
}

.testimonial-card .location {
    font-size: 0.85rem;
    color: var(--text-light);
}

.swiper-pagination-bullet-active {
    background: var(--primary) !important;
}

/* ========== Gallery Page ========== */
.gallery-page {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
}

.gallery-intro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.gallery-intro-kicker {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    color: var(--accent-dark);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 0.65rem;
}

.gallery-intro-copy h2 {
    color: #0a2351;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 0.75rem;
}

.gallery-intro-copy p {
    max-width: 560px;
    color: #667085;
    margin: 0;
}

.gallery-stats {
    display: flex;
    gap: 1rem;
}

.gallery-stat {
    min-width: 110px;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(10, 35, 81, 0.08);
    text-align: center;
}

.gallery-stat-value {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #0a2351;
    line-height: 1;
}

.gallery-stat-label {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.82rem;
    color: #667085;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 2rem;
}

.gallery-filter {
    border: 1.5px solid #dbe3ee;
    background: var(--white);
    color: #475467;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    cursor: pointer;
    transition: 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.gallery-filter span {
    background: #eef2f7;
    color: #667085;
    font-size: 0.72rem;
    padding: 0.15rem 0.45rem;
    border-radius: 999px;
}

.gallery-filter:hover,
.gallery-filter.is-active {
    background: #0a2351;
    border-color: #0a2351;
    color: var(--white);
}

.gallery-filter:hover span,
.gallery-filter.is-active span {
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
}

.gallery-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 1rem;
}

.gallery-bento-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery-bento-item.is-hidden {
    display: none;
}

.gallery-bento-item--feature {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-bento-item--tall {
    grid-row: span 2;
}

.gallery-bento-item--wide {
    grid-column: span 2;
}

.gallery-bento-trigger {
    width: 100%;
    height: 100%;
    border: none;
    padding: 0;
    background: none;
    cursor: pointer;
    position: relative;
    display: block;
}

.gallery-bento-trigger img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

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

.gallery-bento-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 18, 40, 0.05) 30%, rgba(8, 18, 40, 0.75) 100%);
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.gallery-bento-item:hover .gallery-bento-shade {
    opacity: 1;
}

.gallery-bento-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: var(--accent);
    color: #111;
    font-family: 'Poppins', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
}

.gallery-bento-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem 1.1rem;
    color: var(--white);
    text-align: left;
}

.gallery-bento-caption strong {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
}

.gallery-bento-caption i {
    font-size: 1.1rem;
    opacity: 0.9;
    flex-shrink: 0;
}

.gallery-empty {
    text-align: center;
    padding: 4rem 1.5rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(10, 35, 81, 0.08);
}

.gallery-empty i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.gallery-empty h3 {
    color: #0a2351;
    margin-bottom: 0.5rem;
}

.gallery-empty p {
    color: #667085;
    margin-bottom: 1.25rem;
}

/* Lightbox */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.gallery-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 18, 40, 0.92);
    backdrop-filter: blur(6px);
}

.gallery-lightbox-dialog {
    position: relative;
    z-index: 2;
    width: min(920px, 92vw);
    max-height: 90vh;
}

.gallery-lightbox-figure {
    margin: 0;
}

.gallery-lightbox-figure img {
    width: 100%;
    max-height: 72vh;
    object-fit: contain;
    border-radius: 14px;
    background: #111;
}

.gallery-lightbox-figure figcaption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
    color: var(--white);
    flex-wrap: wrap;
}

.gallery-lightbox-category {
    background: var(--accent);
    color: #111;
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
}

.gallery-lightbox-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    flex: 1;
}

.gallery-lightbox-counter {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
    position: absolute;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease;
    z-index: 3;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover {
    background: var(--accent);
    color: #111;
}

.gallery-lightbox-close {
    top: -52px;
    right: 0;
}

.gallery-lightbox-prev {
    left: -56px;
    top: 50%;
    transform: translateY(-50%);
}

.gallery-lightbox-next {
    right: -56px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 991.98px) {
    .gallery-bento {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .gallery-bento-item--feature,
    .gallery-bento-item--wide {
        grid-column: span 2;
    }

    .gallery-lightbox-prev {
        left: 0;
        top: auto;
        bottom: -56px;
        transform: none;
    }

    .gallery-lightbox-next {
        right: 0;
        top: auto;
        bottom: -56px;
        transform: none;
    }
}

@media (max-width: 575.98px) {
    .gallery-page {
        padding: 60px 0 80px;
    }

    .gallery-bento {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }

    .gallery-bento-item--feature,
    .gallery-bento-item--wide,
    .gallery-bento-item--tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-stats {
        width: 100%;
    }

    .gallery-stat {
        flex: 1;
    }
}

/* Legacy gallery item (about page etc.) */
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

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

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

.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 110, 253, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-item .gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
}

.gallery-item .gallery-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
}

/* ========== Contact Form ========== */
.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.contact-intro-text {
    max-width: 720px;
    color: var(--text-light);
    font-size: 1.05rem;
}

.contact-link {
    color: inherit;
}

.contact-link:hover {
    color: var(--accent-dark);
}

.date-range-wrap {
    position: relative;
}

.date-range-wrap .form-control {
    padding-right: 2.75rem;
    cursor: pointer;
    background-color: var(--white);
}

.date-range-wrap .date-range-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
    font-size: 1.05rem;
}

.flatpickr-calendar {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: none;
    font-family: 'Inter', sans-serif;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: var(--primary);
    border-color: var(--primary);
}

.flatpickr-day.inRange {
    background: rgba(13, 110, 253, 0.12);
    border-color: transparent;
    box-shadow: none;
}

.flatpickr-day:hover {
    background: rgba(13, 110, 253, 0.2);
    border-color: transparent;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

.contact-info-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    height: 100%;
}

.contact-info-card h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-item .icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.contact-info-item h6 {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.contact-info-item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    margin: 0;
}

/* ========== Detail Pages ========== */
.detail-content {
    padding: 60px 0;
}

.detail-sidebar {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: sticky;
    top: calc(var(--navbar-height) + 20px);
}

.detail-sidebar .price-tag {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.detail-sidebar-stack {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: sticky;
    top: calc(var(--navbar-height) + 20px);
}

.destination-long-description {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text);
}

.destination-long-description p {
    margin-bottom: 1.25rem;
}

.destination-map-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.destination-map-frame {
    height: 280px;
    width: 100%;
    min-height: 280px;
    background: #e9eef3;
    z-index: 1;
}

.destination-map-frame.leaflet-container,
#destination-leaflet-map.leaflet-container {
    width: 100%;
    height: 280px;
    min-height: 280px;
    border: 0;
    display: block;
}

.destination-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
}

.destination-gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow);
}

.destination-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.destination-gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 991.98px) {
    .detail-sidebar-stack {
        position: relative;
        top: 0;
    }

    .destination-map-frame,
    .destination-map-frame.leaflet-container,
    #destination-leaflet-map.leaflet-container {
        height: 320px;
        min-height: 320px;
    }
}

.highlights-list {
    list-style: none;
    padding: 0;
}

.highlights-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.highlights-list li i {
    color: var(--accent);
    font-size: 1.1rem;
}

/* ========== Tour Detail (Classic itinerary UI) ========== */
.tour-detail-page {
    padding: 70px 0 90px;
    background:
        radial-gradient(circle at 12% 8%, rgba(232, 168, 56, 0.08), transparent 28%),
        linear-gradient(180deg, #f7fafc 0%, #ffffff 42%, #f4f8fc 100%);
}

.tour-detail-intro {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.tour-detail-kicker {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: 0.75rem;
}

.tour-detail-intro h2 {
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    color: #0a2351;
    margin-bottom: 1rem;
}

.tour-detail-lead {
    font-size: 1.08rem;
    line-height: 1.75;
    color: var(--text);
    margin-bottom: 1rem;
}

.tour-detail-long {
    font-size: 0.98rem;
    line-height: 1.8;
    color: #566074;
}

.tour-detail-long p {
    margin-bottom: 0.9rem;
}

.tour-detail-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
}

.tour-intro-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.tour-intro-shot {
    position: relative;
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: 0 12px 28px rgba(10, 35, 81, 0.1);
    background: #e9eef3;
}

.tour-intro-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.tour-intro-shot:hover img {
    transform: scale(1.06);
}

.tour-intro-shot figcaption {
    position: absolute;
    left: 0.65rem;
    bottom: 0.65rem;
    z-index: 1;
    background: var(--accent);
    color: #111;
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.28rem 0.65rem;
    border-radius: 50px;
}

.tour-stat {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    background: var(--white);
    border-radius: 16px;
    padding: 1rem 1.1rem;
    box-shadow: 0 10px 28px rgba(10, 35, 81, 0.06);
    border: 1px solid rgba(10, 35, 81, 0.05);
}

.tour-stat i {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 168, 56, 0.15);
    color: var(--accent-dark);
    flex-shrink: 0;
}

.tour-stat span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 0.15rem;
}

.tour-stat strong {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #0a2351;
}

.tour-stat strong small {
    font-weight: 500;
    color: var(--text-light);
}

.tour-route {
    background: #0a2351;
    color: var(--white);
    border-radius: 18px;
    padding: 1.15rem 1.35rem;
    margin-bottom: 2rem;
    box-shadow: 0 16px 36px rgba(10, 35, 81, 0.18);
}

.tour-route-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.85rem;
}

.tour-route-track {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem 0.35rem;
}

.tour-route-stop {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
}

.tour-route-stop--tag {
    background: var(--accent);
    border-color: var(--accent);
    color: #111;
    font-weight: 600;
}

.tour-route-arrow {
    color: var(--accent);
    font-size: 0.85rem;
}

.tour-panel {
    background: var(--white);
    border-radius: 20px;
    padding: 1.6rem 1.5rem;
    box-shadow: 0 14px 34px rgba(10, 35, 81, 0.07);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(10, 35, 81, 0.04);
}

.tour-panel h3 {
    font-size: 1.25rem;
    color: #0a2351;
    margin-bottom: 1.15rem;
}

.tour-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.tour-panel-head h3 {
    margin-bottom: 0;
}

.tour-panel-badge {
    background: rgba(232, 168, 56, 0.16);
    color: var(--accent-dark);
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
}

.tour-highlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.tour-highlight-item {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    background: #f7fafc;
    border-radius: 12px;
    padding: 0.85rem 0.95rem;
    font-size: 0.92rem;
    color: var(--text);
}

.tour-highlight-item i {
    color: var(--accent-dark);
    margin-top: 0.1rem;
}

.tour-timeline {
    position: relative;
}

.tour-day {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 1rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.tour-day:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 68px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(232, 168, 56, 0.7), rgba(10, 35, 81, 0.08));
}

.tour-day-marker {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: linear-gradient(145deg, #0a2351, #163a7a);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 22px rgba(10, 35, 81, 0.22);
    position: relative;
    z-index: 1;
}

.tour-day-marker span {
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.75;
}

.tour-day-marker strong {
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    line-height: 1;
    color: var(--accent);
}

.tour-day-body {
    background: #f8fbfe;
    border-radius: 16px;
    padding: 1.15rem 1.25rem;
    border: 1px solid rgba(10, 35, 81, 0.05);
}

.tour-day-top h4 {
    font-size: 1.05rem;
    color: #0a2351;
    margin-bottom: 0.45rem;
}

.tour-day-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    margin-bottom: 0.75rem;
}

.tour-day-meta span {
    font-size: 0.82rem;
    color: #667085;
}

.tour-day-meta i {
    color: var(--accent-dark);
    margin-right: 0.25rem;
}

.tour-day-body > p {
    margin-bottom: 0.85rem;
    color: var(--text);
    line-height: 1.7;
}

.tour-day-activities {
    list-style: none;
    padding: 0;
    margin: 0 0 0.9rem;
}

.tour-day-activities li {
    display: flex;
    gap: 0.35rem;
    align-items: flex-start;
    font-size: 0.9rem;
    color: #445066;
    padding: 0.2rem 0;
}

.tour-day-activities i {
    color: var(--accent-dark);
    font-size: 1.2rem;
    line-height: 1;
}

.tour-day-note {
    background: rgba(232, 168, 56, 0.1);
    border-left: 3px solid var(--accent);
    border-radius: 0 12px 12px 0;
    padding: 0.85rem 1rem;
}

.tour-day-note strong {
    display: block;
    font-size: 0.88rem;
    color: #0a2351;
    margin-bottom: 0.35rem;
}

.tour-day-note p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.65;
    color: #566074;
}

.tour-panel--include h3 i {
    color: #1f8a4c;
}

.tour-panel--exclude h3 i {
    color: #c0392b;
}

.tour-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tour-check-list li {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    padding: 0.45rem 0;
    font-size: 0.92rem;
    color: var(--text);
}

.tour-check-list li i {
    color: #1f8a4c;
    margin-top: 0.15rem;
}

.tour-check-list--muted li i {
    color: #c0392b;
}

.tour-booking-card {
    background: var(--white);
    border-radius: 22px;
    padding: 1.6rem 1.4rem;
    box-shadow: 0 18px 42px rgba(10, 35, 81, 0.12);
    border: 1px solid rgba(10, 35, 81, 0.05);
}

.tour-sidebar-stack {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    height: 100%;
}

.tour-route-map-card {
    background: var(--white);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(10, 35, 81, 0.12);
    border: 1px solid rgba(10, 35, 81, 0.05);
}

.tour-route-map-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.1rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #0a2351;
    border-bottom: 1px solid #eef2f6;
}

.tour-route-map-label i {
    color: #e53935;
}

.tour-route-map {
    height: 320px;
    width: 100%;
    background: #e9eef3;
    z-index: 1;
}

.tour-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    gap: 1.25rem;
    align-items: stretch;
}

.tour-grid-cell {
    min-width: 0;
}

.tour-grid-highlights {
    grid-column: 1;
    grid-row: 1;
}

.tour-grid-map {
    grid-column: 2;
    grid-row: 1;
}

.tour-grid-itinerary {
    grid-column: 1;
    grid-row: 2;
}

.tour-grid-sidebar {
    grid-column: 2;
    grid-row: 2;
}

.tour-panel--fill {
    height: 100%;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
}

.tour-panel--fill .tour-route-map {
    flex: 1;
    min-height: 280px;
    height: auto;
}

.tour-route-map-card.tour-panel--fill {
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .tour-main-grid {
        grid-template-columns: 1fr;
    }

    .tour-grid-highlights,
    .tour-grid-map,
    .tour-grid-itinerary,
    .tour-grid-sidebar {
        grid-column: 1;
        grid-row: auto;
    }
}

.tour-map-pin-wrap {
    background: transparent;
    border: none;
}

.tour-map-pin {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e53935;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.45);
    border: 2px solid #fff;
}

.tour-map-pin--arrival {
    background: #1f8a4c;
    box-shadow: 0 4px 12px rgba(31, 138, 76, 0.45);
}

.tour-map-pin--departure {
    background: #0a2351;
    box-shadow: 0 4px 12px rgba(10, 35, 81, 0.45);
}

.tour-panel--sidebar {
    margin-bottom: 0;
}

.tour-panel--sidebar h3 {
    font-size: 1.05rem;
    margin-bottom: 0.85rem;
}

.tour-panel--sidebar .tour-check-list li {
    font-size: 0.86rem;
    padding: 0.35rem 0;
}

.tour-booking-price span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.tour-booking-price strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    color: #0a2351;
    line-height: 1.1;
    margin: 0.2rem 0;
}

.tour-booking-price em {
    display: block;
    font-style: normal;
    font-size: 0.82rem;
    color: #667085;
    margin-bottom: 1.15rem;
}

.tour-booking-facts {
    list-style: none;
    padding: 0;
    margin: 0 0 1.15rem;
}

.tour-booking-facts li {
    display: flex;
    gap: 0.65rem;
    align-items: center;
    padding: 0.45rem 0;
    font-size: 0.9rem;
    color: var(--text);
    border-bottom: 1px solid #eef2f6;
}

.tour-booking-facts i {
    color: var(--accent-dark);
}

.tour-pricing-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.15rem;
}

.tour-tier {
    background: #f4f8fc;
    border-radius: 12px;
    padding: 0.65rem 0.4rem;
    text-align: center;
}

.tour-tier span {
    display: block;
    font-size: 0.68rem;
    color: #667085;
    margin-bottom: 0.2rem;
}

.tour-tier strong {
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    color: #0a2351;
}

.tour-booking-note {
    margin: 1rem 0 0;
    font-size: 0.78rem;
    line-height: 1.55;
    color: #7a8699;
}

@media (max-width: 991.98px) {
    .tour-detail-intro {
        grid-template-columns: 1fr;
    }

    .tour-sidebar-stack {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .tour-detail-stats,
    .tour-highlight-grid,
    .tour-intro-gallery {
        grid-template-columns: 1fr 1fr;
    }

    .tour-day {
        grid-template-columns: 56px 1fr;
        gap: 0.75rem;
    }

    .tour-day-marker {
        width: 56px;
        height: 56px;
        border-radius: 14px;
    }

    .tour-day-marker strong {
        font-size: 1.05rem;
    }

    .tour-day:not(:last-child)::before {
        left: 27px;
        top: 56px;
    }

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

/* ========== Footer ========== */
.main-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 60px;
}

.main-footer h5 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

.main-footer a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: block;
    padding: 0.3rem 0;
}

.main-footer a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.main-footer .footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
}

.main-footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    margin-right: 0.5rem;
    padding: 0;
    font-size: 1.1rem;
}

.main-footer .social-links a:hover {
    background: var(--accent);
    color: var(--dark);
    padding-left: 0;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
    font-size: 0.92rem;
    line-height: 1.6;
}

.footer-contact p i {
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.footer-contact a {
    display: inline;
    color: rgba(255, 255, 255, 0.85);
    padding: 0;
}

.footer-contact a:hover {
    color: var(--accent);
    padding-left: 0;
}

.footer-hours-note {
    display: block;
    padding-left: 0;
    margin-top: 0.15rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    margin-top: 3rem;
    text-align: center;
    font-size: 0.85rem;
}

/* ========== Stats Counter ========== */
.stats-section {
    background: var(--white);
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.stat-item {
    text-align: center;
}

.stat-item .number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-item .label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* ========== Utilities ========== */
.brand-name {
    color: #0f5132;
}

.text-accent {
    color: var(--accent) !important;
}

.btn-accent {
    background: var(--accent);
    color: var(--dark);
    border: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-accent:hover {
    background: var(--accent-dark);
    color: var(--dark);
    transform: translateY(-2px);
}

/* ========== Tourism Cities (Destinations Index) ========== */
.tourism-cities-section {
    background: var(--white);
}

.tourism-city-search-wrap {
    position: relative;
    margin-bottom: 0.75rem;
}

.tourism-city-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 1rem;
    pointer-events: none;
}

.tourism-city-search {
    width: 100%;
    padding: 0.85rem 2.75rem 0.85rem 2.75rem;
    border: 1px solid #dbe3ef;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--dark);
    background: #f8fbff;
    transition: var(--transition);
}

.tourism-city-search::placeholder {
    color: #9aa3b2;
}

.tourism-city-search:focus {
    outline: none;
    border-color: #1565c0;
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.12);
}

.tourism-city-search-clear {
    position: absolute;
    right: 0.65rem;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.tourism-city-search-clear:hover {
    background: #eef3fa;
    color: var(--dark);
}

.tourism-city-search-count {
    min-height: 1.25rem;
    margin: 0 0 0.85rem;
    padding-left: 0.35rem;
    font-size: 0.82rem;
    color: var(--text-light);
}

.tourism-city-no-results {
    text-align: center;
    padding: 2.5rem 1rem;
    color: var(--text-light);
}

.tourism-city-no-results i {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: #c5d0df;
}

.tourism-city-no-results p {
    margin: 0;
}

.tourism-city-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-height: min(880px, calc(100vh - 240px));
    overflow-y: auto;
    padding-right: 0.35rem;
}

.tourism-city-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 1.15rem 1.25rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.tourism-city-card:hover,
.tourism-city-card.is-active {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
}

.tourism-city-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tourism-city-name {
    font-size: 1.2rem;
    margin: 0 0 0.25rem;
    color: var(--dark);
}

.tourism-city-region {
    font-size: 0.85rem;
    color: var(--text-light);
}

.tourism-city-region i {
    color: var(--accent);
    margin-right: 0.2rem;
}

.tourism-city-more {
    flex-shrink: 0;
    white-space: nowrap;
}

.tourism-city-body {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 1rem;
    align-items: stretch;
}

.tourism-city-image {
    border-radius: var(--radius);
    overflow: hidden;
    height: 110px;
}

.tourism-city-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tourism-city-copy p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--text);
    line-height: 1.65;
}

.tourism-map-panel {
    position: sticky;
    top: calc(var(--navbar-height) + 1.5rem);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: min(880px, calc(100vh - 240px));
}

.tourism-map-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.15rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--dark);
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
}

.tourism-map-label i {
    color: var(--accent);
}

.tourism-map-frame {
    flex: 1 1 auto;
    width: 100%;
    min-height: min(820px, calc(100vh - 300px));
    height: min(820px, calc(100vh - 300px));
    background: #e9eef3;
    z-index: 1;
}

.tourism-map-frame.leaflet-container,
#tourism-leaflet-map.leaflet-container {
    width: 100%;
    min-height: min(820px, calc(100vh - 300px));
    height: min(820px, calc(100vh - 300px));
    border: 0;
    display: block;
}

.tourism-map-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-light);
    font-size: 0.95rem;
    padding: 1.5rem;
    text-align: center;
}

.tourism-landmark-wrap,
.tourism-pin-wrap {
    background: transparent;
    border: none;
}

.tourism-landmark-pin {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #0f5132;
    color: #fff;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    box-shadow: 0 8px 22px rgba(15, 81, 50, 0.35);
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    border: 2px solid #fff;
}

.tourism-landmark-pin i {
    font-size: 0.95rem;
}

.tourism-city-pin {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent);
    border: 2px solid #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}

.tourism-popup-note {
    color: #0f5132;
    font-size: 0.8rem;
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .tourism-city-list {
        max-height: none;
        overflow: visible;
    }

    .tourism-map-panel {
        position: relative;
        top: 0;
        min-height: 0;
        height: auto;
    }

    .tourism-map-frame,
    .tourism-map-frame.leaflet-container,
    #tourism-leaflet-map.leaflet-container {
        height: 520px;
        min-height: 520px;
    }
}

@media (max-width: 575.98px) {
    .tourism-city-body {
        grid-template-columns: 1fr;
    }

    .tourism-city-image {
        height: 180px;
    }

    .tourism-city-head {
        flex-direction: column;
        align-items: stretch;
    }

    .tourism-city-more {
        width: 100%;
    }
}

.alert-success-custom {
    background: #d1e7dd;
    border: none;
    border-radius: var(--radius);
    color: #0f5132;
}

/* ========== Responsive ========== */
@media (max-width: 767.98px) {
    .section {
        padding: 50px 0;
    }

    .page-hero {
        min-height: 500px;
    }

    .about-img-wrap .experience-badge {
        right: 10px;
        bottom: 10px;
        padding: 1rem;
    }

    .about-img-wrap .experience-badge .number {
        font-size: 1.75rem;
    }

    .contact-form,
    .contact-info-card {
        padding: 1.5rem;
    }

    .video-hero {
        min-height: 500px;
    }
}

@media (max-width: 575.98px) {
    :root {
        --navbar-height: 70px;
    }

    .main-navbar .navbar-brand img {
        height: var(--navbar-height);
    }
}

/* ========== WhatsApp Float ========== */
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1040;
    display: inline-flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
}

.whatsapp-float-label {
    background: var(--white);
    color: #222;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.7rem 1.15rem;
    border-radius: 50px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
    margin-right: -8px;
    white-space: nowrap;
    line-height: 1.2;
}

.whatsapp-float-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    animation: whatsapp-pulse 2.4s ease-in-out infinite;
}

.whatsapp-float:hover .whatsapp-float-btn {
    background: #1ebe57;
    color: var(--white);
}

@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45); }
    50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 12px rgba(37, 211, 102, 0.15); }
}

@media (max-width: 575.98px) {
    .whatsapp-float {
        right: 16px;
        bottom: 16px;
    }

    .whatsapp-float-label {
        font-size: 0.78rem;
        padding: 0.55rem 0.9rem;
        max-width: 150px;
        white-space: normal;
        text-align: right;
        line-height: 1.25;
    }

    .whatsapp-float-btn {
        width: 52px;
        height: 52px;
        font-size: 1.65rem;
    }
}

/* ========== Transportation Page ========== */
.transport-page {
    background: #f7fafc;
}

.transport-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    height: 100%;
    box-shadow: 0 14px 34px rgba(10, 35, 81, 0.07);
    border: 1px solid rgba(10, 35, 81, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transport-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(10, 35, 81, 0.12);
}

.transport-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 168, 56, 0.16);
    color: var(--accent-dark);
    font-size: 1.45rem;
    margin-bottom: 1.1rem;
}

.transport-card h3 {
    font-size: 1.15rem;
    color: #0a2351;
    margin-bottom: 0.75rem;
}

.transport-card p {
    color: #566074;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.transport-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.transport-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text);
    padding: 0.3rem 0;
}

.transport-card ul li i {
    color: #1f8a4c;
    margin-top: 0.15rem;
}

.transport-notes {
    background: var(--white);
}

.transport-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.transport-checklist li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.55rem 0;
    font-size: 1rem;
    color: var(--text);
}

.transport-checklist i {
    color: var(--accent-dark);
    font-size: 1.15rem;
}

.transport-cta-card {
    background: #0a2351;
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    box-shadow: 0 18px 40px rgba(10, 35, 81, 0.2);
}

.transport-cta-card h3 {
    color: var(--white);
    margin-bottom: 0.75rem;
}

.transport-cta-card p {
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 1.35rem;
    line-height: 1.7;
}

/* ========== Info pages (footer links) ========== */
.info-page-content {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text);
}

.info-page-content h3 {
    color: #0a2351;
    font-size: 1.2rem;
    margin: 1.75rem 0 0.75rem;
}

.info-page-content p {
    margin-bottom: 1.1rem;
}

.info-page-content ul,
.info-page-content ol {
    margin-bottom: 1.25rem;
    padding-left: 1.25rem;
}

.info-page-content li {
    margin-bottom: 0.45rem;
}

.info-page-content a {
    color: var(--accent-dark);
    font-weight: 600;
}
