/********** Template CSS **********/
:root {
    --primary: #FF7A59;      /* Warm Brand Coral - Main brand color */
    --secondary: #FFEBE6;    /* Soft Warm Peach - Secondary actions */
    --accent: #C95DFF;       /* Vibrant Purple - Accent */
    --highlight: #F7D75B;    /* Warm Yellow - Special highlights */
    --dark: #1A1B4B;         /* Midnight Indigo - Dark text/elements */
    --light: #FCF9F9;        /* Soft Cream White - Light backgrounds */
    --muted: #6B7280;        /* Slate Gray - Muted text */
    --peach: #FFF7ED;        /* Very Pale Peach - Soft backgrounds */
    --gradient: linear-gradient(135deg, #F7D75B 0%, #F9A64E 25%, #FF7A59 50%, #FF4F8B 75%, #C95DFF 100%);
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ========== GLOBAL TYPOGRAPHY BASE ========== */
html {
    overflow-x: hidden !important;
    overflow-y: scroll !important;
    height: auto !important;
}
body {
    overflow: visible !important;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Merienda', 'Outfit', sans-serif !important;
    line-height: 1.2;
    color: var(--dark) !important;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a,
.h1 a, .h2 a, .h3 a, .h4 a, .h5 a, .h6 a {
    color: inherit !important;
    text-decoration: none;
}

h1, .h1 { font-size: 2.2rem !important; font-weight: 800; letter-spacing: -0.03em; }
h2, .h2 { font-size: 1.8rem !important; font-weight: 700; letter-spacing: -0.01em; }
h3, .h3 { font-size: 1.45rem !important; font-weight: 600; }
h4, .h4 { font-size: 1.25rem !important; font-weight: 600; }
h5, .h5 { font-size: 1.1rem !important; font-weight: 600; }
h6, .h6 { font-size: 0.9rem !important; font-weight: 500; }

.display-3 {
    font-size: 3rem !important;
}

@media (max-width: 768px) {
    h1, .h1 { font-size: 1.75rem !important; }
    h2, .h2 { font-size: 1.45rem !important; }
    h3, .h3 { font-size: 1.25rem !important; }
    h4, .h4 { font-size: 1.1rem !important; }
    h5, .h5 { font-size: 1.0rem !important; }
    h6, .h6 { font-size: 0.85rem !important; }
    .display-3 { font-size: 2.2rem !important; }
}


p, li, label, input, textarea, select {
    font-family: var(--font-body);
    line-height: 1.7;
}

/* Apply Inter to small text ONLY when it's not a Font Awesome icon */
small:not([class*="fa"]):not([class*="bi"]) {
    font-family: var(--font-body);
    line-height: 1.7;
}

/* ============================================================
   ICON FONT PROTECTION — Restore FA & Bootstrap Icons everywhere
   Covers: fas, far, fab, fal, fad, fa, bi-* classes
   Must use !important to override inherited Inter from body
============================================================ */
.fa, .fas, .far, .fab, .fal, .fad,
[class^="fa-"], [class*=" fa-"],
small.fa, small[class*="fa-"],
i.fa, i.fas, i.far, i.fab, i.fal,
i[class^="fa-"], i[class*=" fa-"] {
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    font-style: normal !important;
    line-height: 1 !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

/* Font Awesome Brands need different font-family */
.fab, i.fab, span.fab, a .fab {
    font-family: "Font Awesome 5 Brands" !important;
    font-weight: 400 !important;
}

/* Bootstrap Icons */
[class^="bi-"], [class*=" bi-"],
i[class^="bi-"], i[class*=" bi-"] {
    font-family: "bootstrap-icons" !important;
    font-style: normal !important;
    line-height: 1 !important;
}

/* Star icon visibility fix */
.fa-star, small.fa-star, i.fa-star {
    font-size: 14px;
    font-weight: 900 !important;
}

a { font-family: var(--font-body); }


.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

/* Global Button Uniformity */
.btn {
    border-radius: .3rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease !important;
}

.btn:not(.btn-square):not(.btn-sm-square):not(.btn-social):not(.btn-lg-square) {
    padding-left: 28px;
    padding-right: 28px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.btn-primary, .btn-secondary, .btn-dark, .btn-outline-primary {
    background: var(--gradient) !important;
    border: none !important;
    color: #FFFFFF !important;
}

.btn-primary:hover, .btn-secondary:hover, .btn-dark:hover, .btn-outline-primary:hover {
    background: linear-gradient(135deg, #F9A64E 0%, #FF7A59 33%, #FF4F8B 66%, #C95DFF 100%) !important;
    box-shadow: 0 8px 20px rgba(255, 79, 139, 0.3) !important;
    transform: translateY(-2px);
    color: #FFFFFF !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: var(--font-body);
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}


/*** Topbar Strip ***/
.topbar-strip {
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    height: 42px;
    font-size: 0.8rem;
}
.topbar-info {
    color: #444;
    font-weight: 500;
    font-size: 0.82rem;
}
.topbar-info i { color: var(--primary); }
.topbar-social {
    width: 30px; height: 30px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: inline-flex; align-items: center; justify-content: center;
    color: #555;
    font-size: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.topbar-social:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-2px); }
.topbar-social-wa:hover { background: #25D366; border-color: #25D366; }

/*** Navbar — 3-column: Logo | Nav Center | CTA Right ***/
.navbar-brand-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #fff;
    transition: color 0.3s;
    white-space: nowrap;
}
.sticky-top.navbar-light .navbar-brand-name { color: var(--primary); }

.navbar-logo {
    height: 48px;
    width: auto;
    transition: height 0.3s;
}
.sticky-top.navbar-light .navbar-logo { height: 38px; }

/* Nav links */
.navbar-light .navbar-nav .nav-link {
    font-family: var(--font-heading);
    position: relative;
    margin-right: 4px;
    margin-left: 4px;
    padding: 32px 10px;
    color: #FFFFFF !important;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    outline: none;
    transition: color 0.3s;
    white-space: nowrap;
}
.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 18px 10px;
    color: var(--dark) !important;
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--accent) !important;
}
.sticky-top.navbar-light .navbar-nav .nav-link:hover,
.sticky-top.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

/* Underline indicator on desktop */
@media (min-width: 992px) {
    .navbar-light .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        bottom: 24px;
        left: 10px;
        width: 0;
        height: 2px;
        background: var(--accent);
        transition: width 0.35s cubic-bezier(0.22,1,0.36,1);
        border-radius: 2px;
    }
    .sticky-top.navbar-light .navbar-nav .nav-link::after {
        bottom: 10px;
        background: var(--primary);
    }
    .navbar-light .navbar-nav .nav-link:hover::after,
    .navbar-light .navbar-nav .nav-link.active::after {
        width: calc(100% - 20px);
    }
}

/* Call CTA button — right side */
.navbar-call-btn {
    background: var(--gradient);
    color: #fff !important;
    border: none;
    border-radius: .3rem !important;
    padding: 8px 18px 8px 8px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 79, 139, 0.35);
    white-space: nowrap;
}
.navbar-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 79, 139, 0.5);
    color: #fff !important;
}
.call-icon-wrap {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}
.call-text {
    display: flex; flex-direction: column; line-height: 1.2;
}
.call-text small {
    font-size: 0.65rem;
    font-weight: 500;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.call-text strong {
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.3px;
}

/* Navbar desktop positioning */
@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0; left: 0;
        border-bottom: 1px solid rgba(255,255,255,0.12);
        z-index: 999;
    }
    .sticky-top.navbar-light {
        position: fixed;
        background: #ffffff;
        box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    }
    /* On sticky, make call button darker for white bg */
    .sticky-top.navbar-light .navbar-call-btn {
        box-shadow: 0 4px 16px rgba(255, 79, 139, 0.25);
    }
}

/* Navbar mobile */
@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }
    .navbar-light {
        background: rgba(5, 44, 101, 0.95);
        backdrop-filter: blur(10px);
    }
    .navbar-light .navbar-collapse {
        margin-top: 10px;
        border-top: 1px solid rgba(255,255,255,0.15);
        padding: 10px 0;
    }
    .sticky-top.navbar-light .navbar-collapse {
        border-top-color: #DDDDDD;
    }
    .navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin: 0;
        color: #FFFFFF !important;
    }
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin: 0;
        color: var(--dark) !important;
    }
    .navbar-logo { height: 40px; }
    .navbar-brand-name { color: #FFFFFF !important; }
    .sticky-top.navbar-light .navbar-brand-name { color: var(--primary) !important; }
    .navbar-call-btn { width: 100%; justify-content: center; margin-top: 8px; border-radius: .3rem !important; }
    /* Toggler icon white on dark bg */
    .navbar-light .navbar-toggler { color: #FFFFFF; }
    .navbar-light .navbar-toggler .fa-bars { color: #FFFFFF; }
    .sticky-top.navbar-light .navbar-toggler .fa-bars { color: var(--dark); }
}



/*** Hero Header ***/
.hero-header {
    background: linear-gradient(rgba(20, 20, 31, .7), rgba(20, 20, 31, .7)), url(../images/home_hero_1778188811.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: 3px;
    font-size: 0.9rem;
    color: var(--primary) !important;
    background: transparent !important;
    padding: 6px 16px;
    border: none;
    box-shadow: none;
    z-index: 1;
    transition: color 0.4s ease;
}

.section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: var(--secondary); /* Soft Cloud Blue */
    border-radius: 50%;
    z-index: -1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-title:hover {
    color: var(--dark) !important;
}

.section-title:hover::before {
    width: 100%;
    border-radius: 0px !important;
    background: var(--primary);
    opacity: 0.15;
}

.section-title::after {
    display: none !important;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Destination ***/
.destination img {
    transition: .5s;
}

.destination a:hover img {
    transform: scale(1.1);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
/*** Package ***/
.package-item img {
    height: 250px;
    object-fit: cover;
}

/*** Team ***/
.team-item img {
    height: 280px;
    object-fit: cover;
}

/*** Custom Animations & Hover Effects ***/

/* Smooth scroll for the whole page */
html {
    scroll-behavior: smooth;
}

/* ============================================
   FADE-UP ANIMATION SYSTEM  (bottom → top)
   ============================================ */

/* Core keyframe: element rises from below into view */
@keyframes slideFromBottom {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }
    60% {
        opacity: 1;
        transform: translateY(-6px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subtle rise for section headings & labels */
@keyframes riseUp {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Staggered rise for card grids */
@keyframes cascadeUp {
    0% {
        opacity: 0;
        transform: translateY(45px);
        filter: blur(3px);
    }
    70% {
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* ── reveal-up: hidden state (starts below) ── */
.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

/* ── reveal-up.visible: IntersectionObserver fires this ── */
.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Delay helpers for staggered siblings */
.reveal-up.delay-1 { transition-delay: 0.1s; }
.reveal-up.delay-2 { transition-delay: 0.2s; }
.reveal-up.delay-3 { transition-delay: 0.3s; }
.reveal-up.delay-4 { transition-delay: 0.4s; }
.reveal-up.delay-5 { transition-delay: 0.5s; }
.reveal-up.delay-6 { transition-delay: 0.6s; }

/* Hero headline – rises from below on page load */
.hero-slide-up {
    animation: slideFromBottom 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Section-title rise */
.section-title-animate {
    animation: riseUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Card / item cascade-up */
.cascade-up {
    opacity: 0;
    transform: translateY(45px);
    transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.cascade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Button Hover Effects */
.btn {
    transition: all 0.3s ease;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Card Hover Effects & Fixed Heights */
.package-item, .team-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-item .text-center, .team-item .text-center {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.package-item p, .team-item p {
    flex-grow: 1;
}

.package-item:hover, .team-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

/* Image Zoom inside Cards */
.package-item .overflow-hidden img, .team-item .overflow-hidden img {
    transition: transform 0.5s ease;
}

.package-item:hover .overflow-hidden img, .team-item:hover .overflow-hidden img {
    transform: scale(1.1);
}

/* Floating Animation Keyframes */
@keyframes floatAnim {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

.float-anim {
    animation: floatAnim 3s ease-in-out infinite;
}

/* Pulsing Animation Keyframes */
@keyframes pulseAnim {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse-anim {
    animation: pulseAnim 2s infinite;
}


/* Package Card Layout */
.package-item {
    position: relative;
    overflow: hidden !important;
    z-index: 1;
}

/* Package description + buttons: always visible, inline in card */
.package-reveal-content {
    display: block;
    width: 100%;
    padding: 0.5rem 0 0.25rem 0;
    background-color: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: none;
}

.package-item .text-center.p-4 {
    border-radius: 0 0 10px 10px;
    position: relative;
    z-index: 2;
    background-color: #fff;
}

/* =============================================
   NEW SECTIONS CSS
============================================= */

/* ── SECTION 1: STATS COUNTER ── */
.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
}
.stat-card {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.stat-icon { color: rgba(255,255,255,0.85); }
.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    display: inline;
    line-height: 1;
}
.stat-plus { font-size: 2rem; font-weight: 800; color: #ffebe6; display: inline; }
.stat-label { color: rgba(255,255,255,0.75); font-size: 0.95rem; font-weight: 600; }

/* ── SECTION 2: WHY CHOOSE US ── */
.why-card {
    background: #fff;
    border: 1px solid #ffebe6;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 20px rgba(255,122,89,0.06);
}
.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255,122,89,0.12);
    border-color: var(--primary);
}
.why-card-featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: #fff;
    border: none;
}
.why-card-featured h5, .why-card-featured p { color: #fff !important; }
.why-icon-wrap {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, #fff7ed, #ffebe6);
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
}
.why-card-featured .why-icon-wrap {
    background: rgba(255,255,255,0.2);
    color: #fff;
}
.why-card:hover .why-icon-wrap { background: var(--primary); color: #fff; transform: rotate(5deg) scale(1.1); }
.why-card-featured:hover .why-icon-wrap { background: rgba(255,255,255,0.3); }

/* ── SECTION 3: POPULAR DESTINATIONS ── */
.dest-card { cursor: pointer; }
.dest-img { height: 420px; object-fit: cover; transition: transform 0.5s ease; }
.dest-img-sm { height: 195px; }
.dest-img-tall { height: 420px; }
.dest-card:hover .dest-img { transform: scale(1.07); }
.dest-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.4) 60%, transparent 100%);
    display: flex; align-items: flex-end; padding: 1.5rem;
    opacity: 0; transition: opacity 0.4s ease;
}
.dest-card:hover .dest-overlay { opacity: 1; }
.dest-info { transform: translateY(10px); transition: transform 0.4s ease; }
.dest-card:hover .dest-info { transform: translateY(0); }
.dest-info small {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 600 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8) !important;
}
.dest-info h5 {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8) !important;
}

/* ── SECTION 4: AI TRIP PLANNER ── */
.ai-planner-wrap {
    background: linear-gradient(135deg, #e8f0fe 0%, #f0f8ff 50%, #cfe2ff 100%);
    border: 1px solid #cfe2ff;
}
.ai-badge {
    display: inline-flex; align-items: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff; padding: 6px 16px; border-radius: 0px !important;
    font-size: 0.85rem; font-weight: 700; letter-spacing: 0.5px;
}
.ai-title { font-size: 2rem; font-weight: 800; color: var(--dark); }
.ai-desc { color: var(--muted); line-height: 1.7; }
.ai-features { list-style: none; padding: 0; }
.ai-features li { padding: 5px 0; font-weight: 500; }
.ai-chat-box {
    background: #fff;
    box-shadow: 0 20px 60px rgba(255,122,89,0.1);
    border: 1px solid #ffebe6;
}
.ai-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.1rem;
}
.ai-online { font-size: 0.75rem; color: #28a745; font-weight: 600; }
.ai-dot {
    display: inline-block; width: 8px; height: 8px;
    background: #28a745; border-radius: 50%;
    margin-right: 4px; animation: pulse 1.5s infinite;
}
.ai-messages { max-height: 220px; overflow-y: auto; }
.ai-msg {
    padding: 10px 14px; border-radius: 14px;
    margin-bottom: 10px; font-size: 0.88rem; line-height: 1.5;
    max-width: 90%;
}
.ai-msg-bot { border-bottom-left-radius: 4px; }
.ai-msg-user {
    background: var(--gradient);
    color: #fff; margin-left: auto; border-bottom-right-radius: 4px;
}
.ai-typing { display: flex; gap: 5px; padding: 8px 14px; }
.ai-typing span {
    width: 8px; height: 8px; background: #adb5bd; border-radius: 50%;
    animation: typing 1.2s infinite ease-in-out;
}
.ai-typing span:nth-child(2) { animation-delay: 0.2s; }
.ai-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(-6px); opacity: 1; }
}
.ai-input-row { display: flex; gap: 8px; }
.ai-input {
    flex: 1; border: 1px solid #dee2e6; border-radius: 25px;
    padding: 10px 16px; font-size: 0.88rem; outline: none;
    transition: border-color 0.3s;
}
.ai-input:focus { border-color: var(--primary); }
.ai-send-btn {
    width: 42px; height: 42px; border-radius: 50%; border: none;
    background: var(--gradient);
}

.package-item:hover .overflow-hidden img, .team-item:hover .overflow-hidden img {
    transform: scale(1.1);
}

/* Floating Animation Keyframes */
@keyframes floatAnim {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

.float-anim {
    animation: floatAnim 3s ease-in-out infinite;
}

/* Pulsing Animation Keyframes */
@keyframes pulseAnim {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse-anim {
    animation: pulseAnim 2s infinite;
}


/* Package Card Layout */
.package-item {
    position: relative;
    overflow: hidden !important;
    z-index: 1;
}

/* Package description + buttons: always visible, inline in card */
.package-reveal-content {
    display: block;
    width: 100%;
    padding: 0.5rem 0 0.25rem 0;
    background-color: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: none;
}

.package-item .text-center.p-4 {
    border-radius: 0 0 10px 10px;
    position: relative;
    z-index: 2;
    background-color: #fff;
}

/* =============================================
   NEW SECTIONS CSS
============================================= */

/* ── SECTION 1: STATS COUNTER ── */
.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
}
.stat-card {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.stat-icon { color: rgba(255,255,255,0.85); }
.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    display: inline;
    line-height: 1;
}
.stat-plus { font-size: 2rem; font-weight: 800; color: #ffebe6; display: inline; }
.stat-label { color: rgba(255,255,255,0.75); font-size: 0.95rem; font-weight: 600; }

/* ── SECTION 2: WHY CHOOSE US ── */
.why-card {
    background: #fff;
    border: 1px solid #ffebe6;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 20px rgba(255,122,89,0.06);
}
.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255,122,89,0.12);
    border-color: var(--primary);
}
.why-card-featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: #fff;
    border: none;
}
.why-card-featured h5, .why-card-featured p { color: #fff !important; }
.why-icon-wrap {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, #fff7ed, #ffebe6);
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
}
.why-card-featured .why-icon-wrap {
    background: rgba(255,255,255,0.2);
    color: #fff;
}
.why-card:hover .why-icon-wrap { background: var(--primary); color: #fff; transform: rotate(5deg) scale(1.1); }
.why-card-featured:hover .why-icon-wrap { background: rgba(255,255,255,0.3); }

/* ── SECTION 3: POPULAR DESTINATIONS ── */
.dest-card { cursor: pointer; }
.dest-img { height: 420px; object-fit: cover; transition: transform 0.5s ease; }
.dest-img-sm { height: 195px; }
.dest-img-tall { height: 420px; }
.dest-card:hover .dest-img { transform: scale(1.07); }
.dest-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.4) 60%, transparent 100%);
    display: flex; align-items: flex-end; padding: 1.5rem;
    opacity: 0; transition: opacity 0.4s ease;
}
.dest-card:hover .dest-overlay { opacity: 1; }
.dest-info { transform: translateY(10px); transition: transform 0.4s ease; }
.dest-card:hover .dest-info { transform: translateY(0); }
.dest-info small {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 600 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8) !important;
}
.dest-info h5 {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8) !important;
}

/* ── SECTION 4: AI TRIP PLANNER ── */
.ai-planner-wrap {
    background: linear-gradient(135deg, #e8f0fe 0%, #f0f8ff 50%, #cfe2ff 100%);
    border: 1px solid #cfe2ff;
}
.ai-badge {
    display: inline-flex; align-items: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff; padding: 6px 16px; border-radius: 0px !important;
    font-size: 0.85rem; font-weight: 700; letter-spacing: 0.5px;
}
.ai-title { font-size: 2rem; font-weight: 800; color: var(--dark); }
.ai-desc { color: var(--muted); line-height: 1.7; }
.ai-features { list-style: none; padding: 0; }
.ai-features li { padding: 5px 0; font-weight: 500; }
.ai-chat-box {
    background: #fff;
    box-shadow: 0 20px 60px rgba(255,122,89,0.1);
    border: 1px solid #ffebe6;
}
.ai-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.1rem;
}
.ai-online { font-size: 0.75rem; color: #28a745; font-weight: 600; }
.ai-dot {
    display: inline-block; width: 8px; height: 8px;
    background: #28a745; border-radius: 50%;
    margin-right: 4px; animation: pulse 1.5s infinite;
}
.ai-messages { max-height: 220px; overflow-y: auto; }
.ai-msg {
    padding: 10px 14px; border-radius: 14px;
    margin-bottom: 10px; font-size: 0.88rem; line-height: 1.5;
    max-width: 90%;
}
.ai-msg-bot { border-bottom-left-radius: 4px; }
.ai-msg-user {
    background: var(--gradient);
    color: #fff; margin-left: auto; border-bottom-right-radius: 4px;
}
.ai-typing { display: flex; gap: 5px; padding: 8px 14px; }
.ai-typing span {
    width: 8px; height: 8px; background: #adb5bd; border-radius: 50%;
    animation: typing 1.2s infinite ease-in-out;
}
.ai-typing span:nth-child(2) { animation-delay: 0.2s; }
.ai-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(-6px); opacity: 1; }
}
.ai-input-row { display: flex; gap: 8px; }
.ai-input {
    flex: 1; border: 1px solid #dee2e6; border-radius: 25px;
    padding: 10px 16px; font-size: 0.88rem; outline: none;
    transition: border-color 0.3s;
}
.ai-input:focus { border-color: var(--primary); }
.ai-send-btn {
    width: 42px; height: 42px; border-radius: 50%; border: none;
    background: var(--gradient);
    color: #fff; cursor: pointer; transition: transform 0.2s;
}
.ai-send-btn:hover { transform: scale(1.1); }

/* ── SECTION 5: SPECIAL OFFERS ── */
.offer-card-main { height: 420px; }
.offer-img { height: 100%; object-fit: cover; transition: transform 0.5s; }
.offer-card-main:hover .offer-img { transform: scale(1.05); }
.offer-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(5,44,101,0.92) 0%, rgba(5,44,101,0.3) 60%, transparent 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
}
.offer-badge {
    display: inline-block; background: #ff4d4f; color: #fff;
    padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 700;
    width: fit-content !important;
    align-self: flex-start !important;
}
.offer-overlay .btn {
    align-self: flex-start !important;
    width: fit-content !important;
}
.offer-old-price { color: rgba(255,255,255,0.6); text-decoration: line-through; font-size: 1rem; }
.offer-new-price { color: #fff; font-size: 1.5rem; font-weight: 800; }
.offer-discount-badge {
    background: #52c41a; color: #fff;
    padding: 3px 10px; border-radius: 12px; font-size: 0.8rem; font-weight: 700;
}
.offer-card-sm {
    background: #fff; box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0; transition: transform 0.3s, box-shadow 0.3s;
}
.offer-card-sm:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.1); }
.offer-sm-img { width: 90px; height: 80px; object-fit: cover; flex-shrink: 0; }
.offer-badge-sm { font-size: 0.72rem; font-weight: 700; color: #ff4d4f; }
.offer-old-price-sm { font-size: 0.85rem; color: #999; text-decoration: line-through; }
.offer-price-sm { font-size: 1.05rem; font-weight: 800; color: var(--primary); }
.offer-tag {
    background: #ffebe6; color: var(--primary);
    padding: 2px 8px; border-radius: 0px !important; font-size: 0.72rem; font-weight: 700;
}

/* ── SECTION 6: PHOTO GALLERY ── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 220px 220px;
    gap: 12px;
}
.gallery-item {
    position: relative; overflow: hidden; border-radius: 12px; cursor: pointer;
}
.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-large { grid-row: span 2; }
.gallery-item-wide { grid-column: span 2; }
.gallery-hover {
    position: absolute; inset: 0;
    background: rgba(5,44,101,0.65);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-hover { opacity: 1; }
@media (max-width: 767px) {
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .gallery-item-large, .gallery-item-wide { grid-row: span 1; grid-column: span 1; }
    .gallery-item img { height: 160px; }
}

/* ── SECTION 7: TESTIMONIALS ── */
#testimonials {
    background-color: #ffffff !important;
}

.testi-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px !important;
    padding: 30px 24px 24px 24px !important;
    color: var(--dark);
    min-height: 330px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), inset 0 1px 1px rgba(255, 255, 255, 1);
}

.testi-card:hover {
    transform: translateY(-8px) scale(1.01);
    background: #ffffff;
    border-color: rgba(255, 122, 89, 0.4);
    box-shadow: 0 20px 40px rgba(255, 122, 89, 0.08);
}

/* Quote mark animations */
.testi-card .testi-quote-mark {
    transition: all 0.5s ease;
    color: #e2e8f0 !important;
}
.testi-card:hover .testi-quote-mark {
    transform: scale(1.15) rotate(-8deg);
    opacity: 0.25 !important;
    color: var(--primary) !important;
}

/* Text styles */
.testi-text {
    font-size: 0.98rem;
    font-style: italic;
    line-height: 1.8;
    color: #475569 !important;
    font-weight: 400;
}

.testi-card .testi-author strong {
    font-family: var(--font-heading) !important;
    color: var(--dark) !important;
}

.testi-card .testi-author small {
    color: #64748b !important;
}

.avatar-ring {
    padding: 3px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,122,89,0.2), rgba(201,93,255,0.2));
    transition: all 0.4s ease;
}

.testi-card:hover .avatar-ring {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 0 12px rgba(255, 122, 89, 0.3);
}

.testi-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.testi-card:hover .testi-avatar {
    box-shadow: 0 0 12px rgba(255, 122, 89, 0.3);
    transform: scale(1.05);
}

/* Fallback flex alignment before Owl fully loads */
.testimonial-carousel:not(.owl-loaded) {
    display: flex !important;
    flex-wrap: nowrap;
    overflow-x: hidden;
    gap: 24px;
}
.testimonial-carousel:not(.owl-loaded) .testi-card {
    min-width: calc(33.333% - 16px);
    flex: 0 0 calc(33.333% - 16px);
}
@media(max-width: 991px) {
    .testimonial-carousel:not(.owl-loaded) .testi-card {
        min-width: calc(50% - 12px);
        flex: 0 0 calc(50% - 12px);
    }
}
@media(max-width: 767px) {
    .testimonial-carousel:not(.owl-loaded) .testi-card {
        min-width: 100%;
        flex: 0 0 100%;
    }
}

/* Custom Owl Dots for Testimonials Slider */
.testimonials-section .owl-dots,
#testimonials .owl-dots {
    display: block !important;
    text-align: center;
    margin-top: 35px;
}

.testimonials-section .owl-dots .owl-dot,
#testimonials .owl-dots .owl-dot {
    display: inline-block !important;
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    zoom: 1;
}

.testimonials-section .owl-dots .owl-dot span,
#testimonials .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 6px;
    background: #cbd5e1 !important;
    display: block;
    -webkit-backface-visibility: visible;
    transition: all 0.3s ease;
    border-radius: 30px;
}

.testimonials-section .owl-dots .owl-dot.active span,
.testimonials-section .owl-dots .owl-dot:hover span,
#testimonials .owl-dots .owl-dot.active span,
#testimonials .owl-dots .owl-dot:hover span {
    background: var(--primary) !important;
    width: 28px;
    box-shadow: 0 0 10px rgba(255, 122, 89, 0.3);
}
.testi-avatar-featured {
    background: linear-gradient(135deg, var(--primary), var(--dark));
}
.testi-card-featured .testi-avatar-featured { background: linear-gradient(135deg, var(--primary), var(--dark)); }

/* ── SECTION 8: AWARDS ── */
.award-card {
    background: #fff;
    border: 2px solid #ffebe6;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.award-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(255,122,89,0.15);
    border-color: var(--primary);
}
.award-card-gold {
    background: linear-gradient(135deg, #fff9e6, #fff3cd);
    border-color: #ffc107;
}
.award-icon { color: var(--primary); }
.award-card-gold .award-icon { color: #ffc107; }
.award-name { font-size: 0.85rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }

/* ── SECTION 10: NEWSLETTER ── */
.newsletter-section { }
.newsletter-wrap {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
}
.newsletter-icon {
    width: 70px; height: 70px; border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    color: #fff; margin: 0 auto;
}
.newsletter-title { color: #fff; font-size: 2rem; font-weight: 800; }
.newsletter-desc { color: rgba(255,255,255,0.8); line-height: 1.7; }
.newsletter-form { max-width: 520px; margin: 0 auto; }
.newsletter-input {
    border: none; border-radius: 0px !important;
    padding: 14px 24px; font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.newsletter-btn { border-radius: 0px !important; white-space: nowrap; }
.newsletter-success { color: #fff; font-weight: 600; font-size: 1.05rem; }
.newsletter-note { color: rgba(255,255,255,0.6); font-size: 0.82rem; }


/* -- HERO BANNER FORM -- */
.custom-hero-form {
    border: 1px solid rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.95) !important;
    border-radius: 0px !important;
}
.custom-hero-form .btn {
    border-radius: 50px !important;
}
@media (min-width: 768px) {
    .border-md-end { border-right: 1px solid #e9ecef; }
}
@media (max-width: 767.98px) {
    .custom-hero-form { border-radius: 0px !important; padding: 20px !important; }
    .custom-hero-form > div { padding-bottom: 15px !important; padding-top: 10px !important; border-bottom: 1px solid #e9ecef; margin-bottom: 0px; }
    .custom-hero-form > div:nth-last-child(2) { border-bottom: none; }
}

/* -- PREMIUM TRUST & CERTIFICATIONS SECTION -- */
:root {
    --visible-logos: 5;
    --logo-gap: 30px;
    --card-width: calc((100vw - (var(--visible-logos) - 1) * var(--logo-gap)) / var(--visible-logos));
}

@media (max-width: 1199.98px) {
    :root {
        --visible-logos: 4;
        --logo-gap: 24px;
    }
}

@media (max-width: 991.98px) {
    :root {
        --visible-logos: 3;
        --logo-gap: 20px;
    }
}

@media (max-width: 575.98px) {
    :root {
        --visible-logos: 2;
        --logo-gap: 16px;
    }
}

#trust-factor {
    background-color: #f8fafc !important;
}

.trust-marquee {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 24px 0;
}

.trust-marquee-track {
    display: flex;
    width: max-content;
    animation: scrollTrust 25s linear infinite;
    will-change: transform;
}

.trust-marquee:hover .trust-marquee-track {
    animation-play-state: paused;
}

.trust-marquee-group {
    display: flex;
    align-items: center;
    gap: var(--logo-gap);
    padding-right: var(--logo-gap);
}

.trust-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 24px 20px;
    box-shadow: 0 10px 30px rgba(5, 44, 101, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: var(--card-width);
    flex: 0 0 var(--card-width);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(5, 44, 101, 0.08);
    border-color: rgba(13, 110, 253, 0.2);
}

.trust-card-img-wrap {
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.trust-card-img {
    height: 48px;
    max-width: 100%;
    object-fit: contain;
    transition: all 0.35s ease;
}

.trust-card:hover .trust-card-img {
    transform: scale(1.05);
}

.trust-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #475569;
    margin: 0;
    transition: color 0.3s ease;
}

.trust-card:hover .trust-card-title {
    color: var(--primary);
}

@media (max-width: 575.98px) {
    .trust-card {
        padding: 16px 12px;
        border-radius: 12px;
    }
    .trust-card-img-wrap {
        height: 42px;
        margin-bottom: 8px;
    }
    .trust-card-img {
        height: 36px;
    }
    .trust-card-title {
        font-size: 0.85rem;
    }
}

@keyframes scrollTrust {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.3333%);
    }
}

/* ========================================================
   TYPOGRAPHY POLISH — Outfit + Inter System
   Ensures consistent font assignment across all sections
======================================================== */

/* Hero Heading */
.hero-header h1,
.hero-header .display-3 {
    font-family: var(--font-heading) !important;
    font-weight: 800 !important;
    letter-spacing: -0.03em !important;
}

/* Section headings on all pages */
.container h1, .container h2, .container h3,
.container-fluid h1, .container-fluid h2, .container-fluid h3,
.container-xxl h1, .container-xxl h2, .container-xxl h3 {
    font-family: var(--font-heading) !important;
}

/* Package card headings & prices */
.package-item h3,
.package-item h5,
.package-item h6 {
    font-family: var(--font-heading) !important;
    font-weight: 600;
}
.package-item p,
.package-item small {
    font-family: var(--font-body) !important;
}

/* Stats section */
.stat-number {
    font-family: var(--font-heading) !important;
    font-weight: 800 !important;
}
.stat-label, .stat-plus {
    font-family: var(--font-body) !important;
}

/* Why Choose Us cards */
.why-card h5 {
    font-family: var(--font-heading) !important;
    font-weight: 600;
}
.why-card p {
    font-family: var(--font-body) !important;
}

/* Testimonials */
.testi-card p,
.testi-card .testi-text {
    font-family: var(--font-body) !important;
    line-height: 1.8 !important;
}
.testi-card strong {
    font-family: var(--font-heading) !important;
    font-weight: 600;
}

/* Footer headings */
.footer h4, .footer h5, .footer h6 {
    font-family: var(--font-heading) !important;
    font-weight: 700;
}
/* Footer body content */
.footer p, .footer a, .footer small,
.footer .btn.btn-link {
    font-family: var(--font-body) !important;
}

/* Contact form */
.form-control, .form-select, .form-floating label {
    font-family: var(--font-body) !important;
}

/* App section */
.app-title {
    font-family: var(--font-heading) !important;
    font-weight: 800 !important;
}
.app-desc, .app-features li {
    font-family: var(--font-body) !important;
}

/* App store buttons */
.app-store-btn strong {
    font-family: var(--font-heading) !important;
    font-weight: 700;
}
.app-store-btn small {
    font-family: var(--font-body) !important;
}

/* Accordion / FAQ */
.accordion-button {
    font-family: var(--font-heading) !important;
    font-weight: 600 !important;
}
.accordion-body {
    font-family: var(--font-body) !important;
    line-height: 1.7;
}

/* Awards section */
.award-name {
    font-family: var(--font-heading) !important;
    font-weight: 600;
}

/* Trust carousel titles */
.trust-card-title {
    font-family: var(--font-heading) !important;
    font-weight: 600;
}

/* Offer cards */
.offer-card h3, .offer-card h6,
.offer-card-sm h6 {
    font-family: var(--font-heading) !important;
    font-weight: 700;
}
.offer-card p, .offer-card small,
.offer-card-sm p, .offer-card-sm small {
    font-family: var(--font-body) !important;
}

/* Modal */
.modal-title {
    font-family: var(--font-heading) !important;
    font-weight: 700;
}
.modal-body p, .modal-body label {
    font-family: var(--font-body) !important;
}

/* Navbar brand & call button text */
.call-text small, .call-text strong {
    font-family: var(--font-heading) !important;
}

/* Topbar info */
.topbar-info {
    font-family: var(--font-body) !important;
}

/* Star icon visibility fix when placed inside small tags inside package-item */
.package-item small.fa,
.package-item small.fas,
.package-item small.far,
.package-item small[class*="fa-"] {
    font-family: "Font Awesome 5 Free" !important;
}

/* Blog Section Images Border Radius */
.blog-card-custom img,
.blog-img-wrap-custom,
.blog-img-wrap-custom img,
.blog-card-item img,
.blog-img-box img,
.blog-content img,
.blog-detail-img {
    border-radius: .3rem !important;
}

/* Remove bottom spacing after footer */
html, body {
    margin: 0 !important;
    padding: 0 !important;
}
.footer {
    margin-bottom: 0 !important;
    margin-top: auto !important;
}

/* Hero Heading Word-by-Word Animation */
@keyframes wordEntrance {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.animated-word {
    display: inline-block;
    opacity: 0;
    animation: wordEntrance 1.2s ease-out forwards;
}

/* Adjacent Buttons (Attached Style) */
.package-reveal-content .d-flex .btn:first-child,
.package-item .d-flex .btn:first-child,
.package-reveal-content .justify-content-center .btn:first-child {
    border-radius: .3rem 0px 0px .3rem !important;
}

.package-reveal-content .d-flex .btn:last-child,
.package-item .d-flex .btn:last-child,
.package-reveal-content .justify-content-center .btn:last-child {
    border-radius: 0px .3rem .3rem 0px !important;
}

/* Responsive UI Adjustments */
@media (min-width: 768px) {
    .w-md-auto {
        width: auto !important;
    }
}

@media (max-width: 991.98px) {
    .navbar-brand {
        max-width: 65%;
    }
    .navbar-brand-name {
        font-size: 1.25rem !important;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    /* Sticky position fix for mobile sticky class trigger */
    .sticky-top.navbar-light {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1030;
    }
}

@media (max-width: 767.98px) {
    .hero-header .display-3 {
        font-size: 2.2rem !important;
    }
    /* Destinations Cards Mobile Height Fix */
    .dest-img, .dest-img-sm, .dest-img-tall {
        height: 260px !important;
    }
    .dest-card {
        margin-bottom: 12px;
    }
    /* Step Cards vertical spacing */
    .step-card {
        margin-top: 3rem !important;
        height: calc(100% - 1.5rem) !important;
        padding-top: 3.5rem !important;
    }
}

@media (max-width: 575.98px) {
    .hero-header .display-3 {
        font-size: 1.7rem !important;
    }
    /* Navbar scale down on mobile */
    .navbar-brand {
        max-width: 70%;
    }
    .navbar-brand-name {
        font-size: 1.1rem !important;
    }
    .navbar-logo {
        height: 32px !important;
    }
    /* Custom hero form formatting on small mobile */
    .custom-hero-form {
        padding: 16px !important;
    }
    /* Stacking blog list images cleanly */
    .blog-card-custom {
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
    }
    .blog-img-wrap-custom {
        width: 100% !important;
        height: 210px !important;
    }
    .blog-info-custom {
        width: 100%;
        padding-top: 10px;
    }
    /* Instagram image height adaptation */
    .insta-card-image img {
        height: 240px !important;
    }
    /* Modal layout adjustments */
    .modal-body {
        padding: 15px !important;
    }
}

@media (max-width: 380px) {
    .navbar-brand-name {
        font-size: 0.95rem !important;
    }
    .navbar-logo {
        height: 28px !important;
    }
    .hero-header .display-3 {
        font-size: 1.5rem !important;
    }
}

/* -- DYNAMIC INSTAGRAM FEED -- */
.insta-card-wrap {
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
}
.insta-card-wrap:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 122, 89, 0.15) !important;
}
.insta-card-image {
    position: relative;
}
.insta-card-image img {
    transition: transform 0.6s ease;
}
.insta-card-wrap:hover .insta-card-image img {
    transform: scale(1.08);
}
.insta-hover-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}
.insta-card-wrap:hover .insta-hover-overlay {
    opacity: 1;
}
.bg-blur {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 12px;
    font-weight: 600;
}
.filter-btn {
    transition: all 0.3s ease;
    font-weight: 600;
    border-width: 2px;
}
.filter-btn.active, .filter-btn:hover {
    background: var(--gradient) !important;
    border-color: transparent !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(255, 122, 89, 0.3);
}

/* Lightbox details styling */
#modalCommentsList::-webkit-scrollbar {
    width: 6px;
}
#modalCommentsList::-webkit-scrollbar-track {
    background: #f1f1f1;
}
#modalCommentsList::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}
.modal-comment-item {
    animation: slideInComment 0.3s ease-out forwards;
}
@keyframes slideInComment {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}







