/* 
  Impressive & Modern Luxury Travel Design System
  Author: Antigravity
*/

@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Caveat:wght@600;700&family=Dancing+Script:wght@700&family=Kaushan+Script&family=Marcellus&family=Playfair+Display:ital,wght@0,600;0,700;1,400;1,600;1,700&display=swap');

:root {
    --primary: #ffb400;
    /* Teal */
    --secondary: #FF5A5F;
    /* Coral */
    --accent: #FCB941;
    /* Gold */
    --bg-main: #fcfcfc;
    --text-dark: #222222;
    --text-light: #717171;
    --white: #ffffff;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Marcellus', Georgia, serif;
}

body {
    background-color: var(--bg-main);
    color: var(--text-dark);
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Marcellus', Georgia, serif;
    font-weight: 900;
}

/* Layout Utilities */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

section {
    padding: 0px 0;
}

/* --- MASTER HEADER WRAPPER (FULL WIDTH FULL RESPONSIVE) --- */
.header-master-wrapper {
    position: relative;
    width: 100%;
    z-index: 1000;
    background: #0d3880;
}

/* Centered Content Container for Header */
.header-inner-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    position: relative;
}

/* White Curved & Slanted Brand Container */
.brand-polygon-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    min-height: 100px;
    width: max(250px, calc((100% - 1320px) / 2 + 245px));
    background: #ffffff;
    clip-path: polygon(0 0, 100% 0, calc(100% - 32px) 100%, 0 100%);
    z-index: 1015;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 36px;
    box-sizing: border-box;
    filter: drop-shadow(4px 0 12px rgba(0, 0, 0, 0.12));
}

.brand-shape-svg {
    display: none;
}

.brand-logo-anchor {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 185px;
    height: 100%;
}

.brand-polygon-bg img.logo {
    max-height: 85px;
    width: auto;
    max-width: 185px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Blue Top Bar Strip (Full Width Background) */
.header-top-strip {
    background: #052f68;
    min-height: 44px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1005;
    width: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.top-strip-content {
    margin-left: 235px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 235px);
    color: #ffffff;
    font-size: 0.82rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.top-contacts {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: nowrap;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.top-contacts span {
    color: #ffffff;
    font-weight: 500;
    white-space: nowrap;
    font-family: inherit;
}

.top-contacts strong {
    font-weight: 700;
    color: #ffffff;
    font-family: inherit;
    letter-spacing: 0.3px;
}

.or-badge {
    background: #ffb400;
    color: #ffffff !important;
    font-size: 0.62rem;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    flex-shrink: 0;
}

.email-link {
    color: #ffffff;
    text-decoration: none;
    margin-left: 4px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: inherit;
    transition: color 0.2s ease;
}

.email-link:hover {
    color: #ffb400;
}

.email-link i {
    margin-right: 2px;
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn-quote {
    background: #044231;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    color: #ffffff !important;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.78rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-block;
}

.btn-quote:hover {
    background: #ffb400;
    border-color: #ffb400;
    color: #ffffff !important;
    transform: translateY(-1px);
}

.btn-lang {
    background: #ffb400;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

/* White Main Navbar (Full Width Background) */
.header-main-nav {
    background: #ffffff;
    min-height: 58px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1004;
    width: 100%;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.header-main-nav .header-inner-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-main-nav .nav-links {
    margin-left: 235px;
    display: flex;
    align-items: center;
    flex: 1;
}

.mobile-only-logo {
    display: none;
}

.drawer-header,
.drawer-footer {
    display: none;
}

.drawer-body {
    display: flex;
    gap: 20px;
    align-items: center;
}

.drawer-body a.nav-item,
.drawer-body .dropdown-toggle {
    text-decoration: none;
    color: #222222;
    font-weight: 700;
    font-size: 0.90rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
    padding: 18px 0;
    transition: color 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.drawer-body a.nav-item:hover,
.drawer-body .dropdown-toggle:hover,
.drawer-body a.nav-item.active {
    color: #ffb400;
}

.drawer-body a.nav-item::after,
.drawer-body .dropdown-toggle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #ffb400;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.drawer-body a.nav-item:hover::after,
.drawer-body a.nav-item.active::after,
.drawer-body .dropdown-toggle:hover::after {
    width: 100%;
}

/* Desktop Right Actions: Pay Now + WhatsApp + Toggle */
.header-right-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-left: auto;
}

.nav-pay-now-badge {
    background: #044231 !important;
    color: #ffffff !important;
    padding: 7px 16px !important;
    border-radius: 20px;
    font-weight: 800 !important;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    white-space: nowrap;
}

.nav-pay-now-badge:hover {
    background: #e06800 !important;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(224, 104, 0, 0.25);
}

.nav-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #25d366;
    color: #ffffff !important;
    border-radius: 50%;
    font-size: 1.15rem;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.nav-whatsapp-btn:hover {
    background: #1da851;
    transform: scale(1.08);
}

.slide-panel-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #0d3880;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.slide-panel-toggle:hover {
    background: #ff7700;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.4rem;
    color: #222222;
}

/* ── Slide-In Left Panel ── */
.slide-panel-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.slide-panel-overlay.active {
    opacity: 1;
    visibility: visible;
}

.slide-panel {
    position: fixed;
    top: 0;
    left: -360px;
    width: 320px;
    max-width: 90vw;
    height: 100vh;
    background: #ffffff;
    z-index: 9100;
    overflow-y: auto;
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 30px 28px 40px;
    box-shadow: 6px 0 40px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.slide-panel.open {
    left: 0;
}

.slide-panel-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #f1f5f9;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: #555;
    transition: background 0.2s ease;
}

.slide-panel-close:hover {
    background: #ff7700;
    color: #fff;
}

.slide-panel-logo {
    margin-bottom: 8px;
    margin-top: 10px;
}

.slide-panel-logo img {
    max-height: 70px;
    width: auto;
    object-fit: contain;
}

.slide-panel-tagline {
    font-size: 0.82rem;
    color: #888;
    font-style: italic;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 2px solid #f1f5f9;
}

.slide-panel-contact {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
}

.sp-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.sp-contact-item>i {
    color: #ff7700;
    font-size: 1.1rem;
    margin-top: 3px;
    width: 18px;
    flex-shrink: 0;
}

.sp-contact-item>div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sp-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #aaa;
    font-weight: 600;
}

.sp-contact-item a,
.sp-contact-item span {
    font-size: 0.9rem;
    font-weight: 700;
    color: #222;
    text-decoration: none;
    transition: color 0.2s ease;
}

.sp-contact-item a:hover {
    color: #ff7700;
}

.slide-panel-social-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #aaa;
    font-weight: 700;
    margin-bottom: 12px;
}

.slide-panel-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.sp-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sp-social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.sp-fb {
    background: #1877f2;
}

.sp-ig {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.sp-yt {
    background: #ff0000;
}

.sp-wa {
    background: #25d366;
}

.sp-tw {
    background: #1da1f2;
}

.sp-book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff7700, #ff9500);
    color: #fff !important;
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.sp-book-btn:hover {
    background: linear-gradient(135deg, #e06800, #ff7700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 119, 0, 0.35);
}


/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block !important;
    padding: 10px 25px !important;
    color: #333 !important;
    font-size: 0.95rem !important;
    border-bottom: none !important;
}

.dropdown-menu a::before {
    display: none !important;
}

.dropdown-menu a:hover {
    color: var(--primary) !important;
    background: #fdfdfd;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.search-trigger {
    font-size: 1.2rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.search-trigger:hover {
    color: var(--secondary);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* =========================================
   HEADER — FULL MULTI-SCREEN RESPONSIVE
   ========================================= */

/* ── Compact Laptop / Tablet Landscape (1025px - 1280px) ── */
@media (min-width: 1025px) and (max-width: 1280px) {
    .brand-polygon-bg {
        width: max(220px, calc((100% - 1320px) / 2 + 215px));
        padding-right: 28px;
    }

    .brand-logo-anchor {
        width: 160px;
    }

    .brand-polygon-bg img.logo {
        max-height: 75px;
        max-width: 160px;
    }

    .top-strip-content {
        margin-left: 205px;
        width: calc(100% - 205px);
        font-size: 0.76rem;
    }

    .top-contacts {
        gap: 8px;
    }

    .header-main-nav .nav-links {
        margin-left: 205px;
    }

    .drawer-body {
        gap: 12px;
    }

    .drawer-body a.nav-item,
    .drawer-body .dropdown-toggle {
        font-size: 0.83rem;
        padding: 16px 0;
    }

    .nav-pay-now-badge {
        padding: 6px 12px !important;
        font-size: 0.78rem;
    }

    .nav-whatsapp-btn,
    .slide-panel-toggle {
        width: 32px;
        height: 32px;
        font-size: 0.95rem;
    }
}

/* ── Mobile & Tablet (<= 1024px) ── */
@media (max-width: 1024px) {

    /* Sticky wrapper on mobile for smooth scrolling */
    .header-master-wrapper {
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    /* Hide top info strip and desktop brand polygon */
    .header-top-strip {
        display: none !important;
    }

    .brand-polygon-bg {
        display: none !important;
    }

    /* Show inline mobile logo inside nav bar */
    .mobile-only-logo {
        display: flex;
        align-items: center;
        text-decoration: none;
        flex-shrink: 0;
    }

    .mobile-only-logo img.logo {
        max-height: 52px;
        width: auto;
        max-width: 160px;
        object-fit: contain;
        display: block;
    }

    .header-main-nav {
        min-height: 60px;
    }

    /* Navbar inner layout on mobile */
    .header-main-nav .header-inner-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 6px 16px;
    }

    /* ── Mobile Nav Drawer ── */
    .header-main-nav .nav-links {
        margin-left: 0;
        position: fixed;
        top: 0;
        left: -100%;
        width: 85vw;
        max-width: 330px;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        align-items: stretch;
        z-index: 9200;
        overflow-y: auto;
        box-shadow: 6px 0 30px rgba(0, 0, 0, 0.22);
        transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 0;
        display: flex;
    }

    .header-main-nav .nav-links.active {
        left: 0;
    }

    /* Drawer Header (logo + close) */
    .drawer-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 18px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        background: #0d3880;
        flex-shrink: 0;
    }

    .drawer-header .logo img.logo {
        max-height: 48px;
        width: auto;
        max-width: 140px;
        object-fit: contain;
        display: block;
        background: #ffffff;
        border-radius: 4px;
        padding: 2px 6px;
    }

    .close-menu {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 50%;
        color: #fff;
        font-size: 1rem;
        cursor: pointer;
        transition: background 0.2s ease;
    }

    .close-menu:hover {
        background: rgba(255, 255, 255, 0.3);
    }

    /* Drawer Body (links area) */
    .drawer-body {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 0;
        flex: 1;
        overflow-y: auto;
    }

    .drawer-body a.nav-item,
    .drawer-body .dropdown-toggle {
        padding: 13px 20px;
        font-size: 0.95rem;
        border-bottom: 1px solid #f2f4f8;
        color: #1e293b;
        white-space: normal;
        justify-content: space-between;
        display: flex;
        width: 100%;
    }

    .drawer-body a.nav-item:hover,
    .drawer-body .dropdown-toggle:hover {
        background: #f8fafc;
        color: #ff7700;
    }

    .drawer-body a.nav-item::after,
    .drawer-body .dropdown-toggle::after {
        display: none;
    }

    /* Mobile Dropdown accordion */
    .nav-dropdown {
        display: block;
        position: static;
        width: 100%;
    }

    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        background: #f8fafc;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        display: block;
        border-top: none;
    }

    .nav-dropdown.active .dropdown-menu {
        max-height: 600px;
    }

    .dropdown-menu a {
        padding: 10px 20px 10px 34px !important;
        font-size: 0.88rem !important;
        border-bottom: 1px solid #edf2f7 !important;
        display: flex !important;
        align-items: center;
        color: #475569 !important;
    }

    .dropdown-menu a:hover {
        color: #ff7700 !important;
        background: #f1f5f9 !important;
    }

    /* Drawer Footer (Pay Now + WhatsApp) */
    .drawer-footer {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 16px 18px;
        border-top: 1px solid #e2e8f0;
        background: #ffffff;
        flex-shrink: 0;
    }

    .pay-now-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        background: #044231;
        color: #fff !important;
        padding: 11px 18px;
        border-radius: 8px;
        font-weight: 800;
        font-size: 0.9rem;
        text-decoration: none;
        text-align: center;
        transition: background 0.3s ease;
    }

    .pay-now-btn:hover {
        background: #ff7700;
    }

    .whatsapp-btn-drawer {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: #25d366;
        color: #fff !important;
        padding: 11px 18px;
        border-radius: 8px;
        font-weight: 800;
        font-size: 0.9rem;
        text-decoration: none;
        transition: background 0.3s ease;
    }

    .whatsapp-btn-drawer:hover {
        background: #1da851;
    }

    /* Right side actions */
    .header-right-actions {
        gap: 8px;
        margin-left: auto;
    }

    .nav-pay-now-badge {
        display: none !important;
    }

    .slide-panel-toggle {
        display: none !important;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        background: #0d3880;
        color: #fff;
        border-radius: 6px;
        font-size: 1.15rem;
        cursor: pointer;
        transition: background 0.2s ease;
    }

    .menu-toggle:hover {
        background: #ff7700;
    }

    .nav-whatsapp-btn {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    /* Overlay for mobile nav drawer */
    .mobile-nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
        z-index: 9100;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s ease, visibility 0.35s ease;
    }

    .mobile-nav-overlay.active {
        opacity: 1;

    }
}

/* ── Small Phones (<= 480px) ── */
@media (max-width: 480px) {
    .header-main-nav .header-inner-container {
        padding: 6px 12px;
    }

    .mobile-only-logo img.logo {
        max-height: 44px;
        max-width: 135px;
    }

    .header-right-actions {
        gap: 6px;
    }

    .nav-whatsapp-btn {
        width: 34px;
        height: 34px;
        font-size: 1.05rem;
    }

    .menu-toggle {
        width: 34px;
        height: 34px;
        font-size: 1.05rem;
    }
}

/* Split Screen Hero */
.hero-split {
    height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f0f7f7 0%, #ffffff 100%);
    padding-top: 100px;
}

.hero-text-side {
    flex: 1;
    padding-right: 50px;
}

.hero-text-side h1 {
    font-size: 5rem;
    line-height: 1;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.hero-text-side p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-slider-side {
    flex: 1.2;
    height: 100%;
}

.album-slider {
    width: 100%;
    height: 600px;
}

.swiper-slide {

    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-info-glass {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    color: #fff;
}

/* Feature Cards */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    background: #fff;
    padding: 60px 40px;
    border-radius: 40px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
    transform: translateY(-20px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #ffb400, #054332);
    color: #fff;
}

.feature-card i {
    font-size: 4rem;
    color: linear-gradient(135deg, #ffb400, #054332);
    margin-bottom: 30px;
    transition: var(--transition);
}

.feature-card:hover i {
    color: #fff;
    transform: scale(1.1);
}

/* Package Grid v2 */
.package-card-v2 {
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    height: 550px;
    transition: var(--transition);
}

.package-card-v2 img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.package-card-v2 .content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: #fff;
}

.package-card-v2:hover {
    transform: scale(1.03);
}

/* Buttons */
.btn-impressive {
    display: inline-block;
    padding: 20px 50px;
    background: #054332;
    border: 2px solid #ffffff;
    color: #ffffff;
    border-radius: 100px;
    font-weight: 800;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0, 132, 137, 0.3);
}

.btn-impressive:hover {
    background: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 90, 95, 0.4);
}

/* Unified Premium Section Titles */
.title-block {
    margin-bottom: 50px;
}

.title-block span {
    font-family: 'Kaushan Script', 'Caveat', cursive;
    color: #ffb400;
    font-size: 2.3rem;
    text-align: center;
    display: block;
    margin-bottom: 8px;
    text-transform: none;
    letter-spacing: 1px;
    font-weight: normal;
}

/* Destination section - Popular Places styling matching screenshot */
.bento-pro-section .title-block span.cursive-blue,
.bento-pro-section .title-block span {
    color: #2ea3f2;
    font-family: 'Kaushan Script', 'Caveat', cursive;
    font-size: 2.5rem;
    letter-spacing: 0.5px;
    font-weight: normal;
    text-shadow: none;
    display: block;
    margin-bottom: 5px;
}

.bento-pro-section .title-block h2 {
    color: #111a2e;
    font-size: 3.2rem;
    font-weight: 800;
    text-shadow: none;
}

.bento-pro-section .title-block h2 span {
    color: #ff6f00;
}

.bento-pro-section .title-block p {
    color: #666;
}

.title-block h2 {
    font-family: 'Marcellus', Georgia, serif;
    font-weight: 700;
    font-size: 3.5rem;
    color: #222;
    text-align: center;
    letter-spacing: -1px;
    line-height: 1.1;
}

.title-block p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 15px auto 0;
    line-height: 1.6;
    text-align: center;
}

.title-block.text-left p {
    margin-left: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
        height: auto;
        padding-top: 150px;
    }

    .hero-text-side {
        padding: 0;
        text-align: center;
        margin-bottom: 50px;
    }

    .hero-text-side h1 {
        font-size: 3.5rem;
    }
}

/* Slide-Over Layered Hero Slider */
.hero-slider-section {
    position: relative;
    height: 650px;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.main-slider {
    width: 100%;
    height: 100%;
}

.hero-slider-section .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    box-shadow: -15px 0 35px rgba(0, 0, 0, 0.7);
}

@keyframes kenburnsZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.16);
    }
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    will-change: transform;
}

.swiper-slide-active .slide-bg {
    animation: kenburnsZoom 7s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.slider-content-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    padding: 0 20px;
}

.slider-content-inner {
    margin: 0 auto;
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 1.4s cubic-bezier(0.25, 1, 0.5, 1), transform 1.4s cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0.4s;
}

.swiper-slide-active .slider-content-inner {
    opacity: 1;
    transform: translateY(0);
}

/* TYPOGRAPHY - LUXURY SLIDER */
.slider-content-inner span.top-line {
    font-family: 'Kaushan Script', 'Caveat', cursive;
    color: #ffb400;
    font-size: 2.8rem;
    display: block;
    margin-bottom: 8px;
    font-weight: normal;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.slider-content-inner h1 {
    font-family: 'Marcellus', Georgia, serif;
    font-size: 3.2rem;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 5px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
}

.slider-content-inner h1 span {
    display: inline;
    color: #ffb400;
}

.slider-content-inner p {
    font-size: 1.15rem;
    color: #f0f0f0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.slider-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-yellow {
    padding: 16px 35px;
    background: #054332;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 30px;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-yellow:hover {
    background: #e6a200;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 180, 0, 0.4);
}

.btn-blue {
    padding: 16px 35px;
    background: #054332;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 30px;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
}

.btn-blue:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .slider-content-inner h1 {
        font-size: 2.8rem;
        letter-spacing: 3px;
    }

    .slider-content-inner span.top-line {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .slider-content-inner h1 {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    .slider-content-inner span.top-line {
        font-size: 1.8rem;
    }

    .slider-actions {
        flex-direction: column;
        gap: 12px;
    }

    .title-block span {
        font-family: 'Kaushan Script', 'Caveat', cursive;
        color: #ffb400;
        font-size: 1.8rem;
        text-align: center;
        display: block;
        margin-bottom: 4px;
        text-transform: none;
        letter-spacing: 1px;
        font-weight: normal;
    }
}

/* Ultra-Luxury Slider Navigation Arrows */
.hero-slider-section .swiper-button-next,
.hero-slider-section .swiper-button-prev {
    width: 52px;
    height: 52px;
    background: rgba(15, 20, 30, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: #ffffff !important;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.hero-slider-section .swiper-button-prev {
    left: 35px;
}

.hero-slider-section .swiper-button-next {
    right: 35px;
}

.hero-slider-section .swiper-button-next:after,
.hero-slider-section .swiper-button-prev:after {
    font-size: 16px !important;
    font-weight: 900;
    transition: transform 0.3s ease;
}

.hero-slider-section .swiper-button-prev:hover {
    background: #ffb400;
    color: #000000 !important;
    border-color: #ffb400;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 30px rgba(255, 180, 0, 0.5);
}

.hero-slider-section .swiper-button-prev:hover:after {
    transform: translateX(-2px);
}

.hero-slider-section .swiper-button-next:hover {
    background: #ffb400;
    color: #000000 !important;
    border-color: #ffb400;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 30px rgba(255, 180, 0, 0.5);
}

.hero-slider-section .swiper-button-next:hover:after {
    transform: translateX(2px);
}

/* Premium Pagination Pills */
.hero-slider-section .swiper-pagination {
    bottom: 25px !important;
    z-index: 10;
}

.hero-slider-section .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4) !important;
    opacity: 1 !important;
    border-radius: 20px;
    margin: 0 6px !important;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-slider-section .swiper-pagination-bullet-active {
    width: 32px;
    background: #ffb400 !important;
    box-shadow: 0 0 15px rgba(255, 180, 0, 0.8);
    opacity: 1 !important;
}

@media (max-width: 768px) {
    .hero-slider-section {
        height: 550px;
    }

    .slider-content-inner h1 {
        font-size: 2.2rem !important;
        letter-spacing: 2px !important;
    }

    .slider-content-inner span.top-line {
        font-size: 1.8rem;
        letter-spacing: 3px;
    }

    .slider-actions {
        flex-direction: column;
        align-items: center;
        /* Center the buttons */
        gap: 15px;
    }

    .btn-yellow,
    .btn-blue {
        width: auto;
        /* Make them smaller instead of full width */
        min-width: 220px;
        /* Keep them consistent in size */
        padding: 12px 20px;
        /* Slightly better padding */
        font-size: 0.85rem;
        text-align: center;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .hero-slider-section {
        height: 500px;
    }

    .slider-content-inner h1 {
        font-size: 1.8rem !important;
    }

    .slider-content-inner p {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .slider-content-inner span.top-line {
        font-size: 1.4rem;
    }
}


/* --- CLEAN ABOUT SECTION (MATCHING SCREENSHOT) --- */
.about-section-v2 {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.about-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* --- TRAVEL COLLAGE RESPONSIVE --- */
@media (max-width: 1200px) {
    .about-collage-complex {
        grid-template-rows: repeat(6, 60px);
    }

    .c4-circle {
        width: 120px !important;
        height: 120px !important;
    }
}

@media (max-width: 991px) {
    .about-grid-v2 {
        grid-template-columns: 1fr !important;
    }

    .drawer-body {
        gap: 0px;
        text-align: left !important;
        align-items: left !important;
    }

    .about-collage-complex {
        max-width: 500px;
        margin: 0 auto 40px;
    }

    .about-content-v2 {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .about-collage-complex {
        grid-template-rows: repeat(6, 35px) !important;
        gap: 8px;
        margin-bottom: 0px !important;
        max-height: 300px;
    }

    .c4-circle {
        width: 80px !important;
        height: 80px !important;
    }
}

@media (max-width: 480px) {

    .c4-circle {
        width: 60px !important;
        height: 60px !important;
    }
}

/* --- ABOUT SHOWCASE SECTION (SCREENSHOT LAYOUT) --- */
.about-showcase-section {
    padding: 70px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-showcase-card {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.about-media-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-media-box {
    width: 100%;
    height: 390px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    background: #0f172a;
}

.about-slide-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
    transform: scale(1.03);
}

.about-slide-item.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.about-slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-badge-tag {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffb400;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 30px;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Red Circular Navigation Buttons matching screenshot */
.about-arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #054332, #054332);
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 6px 18px rgba(239, 68, 68, 0.4);
    transition: all 0.3s ease;
}

.about-arrow-btn.prev-btn {
    left: -22px;
}

.about-arrow-btn.next-btn {
    right: -22px;
}

.about-arrow-btn:hover {
    background: #0f172a;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.35);
}

/* Right Content Box Typography & Layout */
.about-info-content {
    padding: 10px 0;
}

.about-showcase-title {
    font-family: 'Marcellus', Georgia, serif;
    font-size: 2.3rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin: 0 0 14px 0;
}

.about-showcase-title span {
    color: #054332;
    background: linear-gradient(135deg, #ffb400, #054332);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-meta-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.meta-pill {
    font-size: 0.86rem;
    font-weight: 700;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.meta-pill.author i,
.meta-pill.date i {
    color: #ffffff;
}

.about-showcase-desc {
    font-size: 0.98rem;
    line-height: 1.75;
    color: #475569;
    margin-bottom: 22px;
}

.about-feature-chips {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.chip-item {
    font-size: 0.88rem;
    font-weight: 700;
    color: #1e293b;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.chip-item i {
    color: #10b981;
}

.about-cta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.about-main-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #054332, #054332);
    color: #ffffff !important;
    border: 2px solid #054332;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.88rem;
    border-radius: 50px;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(255, 133, 34, 0.3);
    transition: all 0.3s ease;
}

.about-main-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(255, 133, 34, 0.45);
    color: #ffffff !important;
}

.about-secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    border: 2px solid #0f172a;
    color: #0f172a !important;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.88rem;
    border-radius: 50px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.about-secondary-btn:hover {
    background: #0f172a;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.25);
}

@media (max-width: 991px) {
    .about-showcase-card {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 24px;
    }

    .about-media-box {
        height: 300px;
    }

    .about-arrow-btn.prev-btn {
        left: 8px;
    }

    .about-arrow-btn.next-btn {
        right: 8px;
    }
}

text-transform: uppercase;
}

.btn-theme-solid:hover {
    background: #222;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 180, 0, 0.3);
}

/* Keep the decorative corners in gold */
.c1::before,
.c7::after {
    border-color: #ffb400 !important;
}

/* Responsive */
@media (max-width: 991px) {
    .about-grid-v2 {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-content-v2 {
        text-align: center;
    }

    .about-collage-complex {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .about-content-v2 .about-title {
        font-size: 2.2rem;
    }

    .about-content-v2 .about-subtitle {
        font-size: 1rem;
    }
}


/* --- DESTINATION FLIP CARDS --- */
.destinations-section {
    padding: 100px 0;
    background: #fdfdfd;
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

/* Flip on hover for desktop, can be changed to click if needed */
.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
}

.flip-card-front {
    background-color: #bbb;
}

.flip-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flip-card-front h3 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 800;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.flip-card-front::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.flip-card-back {
    background-color: #222;
    color: white;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.flip-card-back h3 {
    font-size: 2rem;
    color: #ffb400;
    margin-bottom: 15px;
    font-family: 'Marcellus', Georgia, serif;
    font-weight: 800;
}

.flip-card-back p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ccc;
}

.btn-flip {
    padding: 12px 25px;
    background: #ffb400;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-flip:hover {
    background: #fff;
    transform: scale(1.1);
}



/* --- ADVANCED 3D BENTO DESTINATION GRID --- */
.bento-dest-section {
    padding: 120px 0;
    background: #fff;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 400px);
    gap: 25px;
    margin-top: 60px;
}

.bento-item {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
    perspective: 1500px;
    /* Base for 3D */
    background: #222;
}

/* Bento Sizing Classes */
.bento-item.tall {
    grid-row: span 2;
}

.bento-item.wide {
    grid-column: span 2;
}

.bento-inner {
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
    transform-style: preserve-3d;
}

.bento-item:hover .bento-inner {
    transform: rotateX(5deg) rotateY(-5deg) scale(1.02);
}

.bento-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    filter: brightness(0.9);
}

.bento-item:hover .bento-img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

/* Glassmorphism Info Overlay */
.bento-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
    transform: translateZ(50px);
    /* 3D Pop out */
    transition: all 0.5s ease;
}

.bento-info h3 {
    font-size: 2.5rem;
    font-family: 'Marcellus', Georgia, serif;
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.bento-item.tall h3 {
    font-size: 3rem;
}

.bento-info p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.bento-item:hover .bento-info p {
    opacity: 1;
    transform: translateY(0);
}

/* Circular Icon Button matching screenshot */
.bento-btn {
    width: 60px;
    height: 60px;
    background: #3498db;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: scale(0.8);
    opacity: 0;
}

.bento-item:hover .bento-btn {
    transform: scale(1);
    opacity: 1;
}

.bento-btn:hover {
    background: #ffb400;
    color: #000;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.bento-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateZ(30px);
}

@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 300px);
    }

    .bento-item.wide {
        grid-column: span 1;
    }

    .bento-item.tall {
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .bento-item {
        height: 400px;
    }
}



/* --- DESTINATION SECTION - CLEAN PASTEL AMBIENT BACKGROUND --- */
.bento-pro-section {
    padding: 70px 0 85px;
    background: #e8b43714;
    position: relative;
    overflow: hidden;
}

/* Soft Decorative Circular Ambient Shapes matching user screenshot */
.dest-bg-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* Large Left Circle - Soft Warm Peach */
.dest-circle-left-1 {
    width: 520px;
    height: 520px;
    top: 64%;
    left: -180px;
    background: #97adf821;
    opacity: 1;
}

/* Small Left Circle */
.dest-circle-left-2 {
    width: 140px;
    height: 140px;
    top: 240px;
    left: 170px;
    background: #97adf821;
    opacity: 0.9;
}

/* Large Right Circle - Soft Warm Peach */
.dest-circle-right-1 {
    width: 480px;
    height: 480px;
    bottom: -60px;
    right: -150px;
    background: #fbeee2;
    opacity: 1;
}

/* Small Right Circle */
.dest-circle-right-2 {
    width: 130px;
    height: 130px;
    top: 100px;
    right: 130px;
    background: #f3ebe3;
    opacity: 0.9;
}

.bento-pro-section .container {
    position: relative;
    z-index: 2;
}

/* --- TOP DESTINATIONS CUSTOM HEADER (MATCHING SCREENSHOT) --- */
.dest-header-custom {
    margin-bottom: 80px;
}

.dest-head-top {
    margin-bottom: 6px;
}

.dest-top-tag {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #64748b;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.dest-main-title {
    font-family: 'Playfair Display', 'Marcellus', Georgia, serif;
    font-size: 2.9rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    display: flex;
    align-items: baseline;
}

.dest-main-title .title-first {
    color: #1a1a1a;
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
    margin-right: 12px;
}

.dest-main-title .title-first::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3.5px;
    background: #ffb400;
    border-radius: 2px;
}

.dest-main-title .title-second {
    font-style: italic;
    font-weight: 400;
    color: #ffb400;
}

.dest-head-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 8px;
}

.dest-desc-text {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
    max-width: 780px;
    line-height: 1.5;
}

.dest-all-btn {
    background: #054332;
    color: #ffffff !important;
    padding: 7px 26px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(255, 133, 34, 0.35);
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: -90px;
}

.dest-all-btn:hover {
    background: #111a2e;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(17, 26, 46, 0.25);
}

@media (max-width: 768px) {
    .dest-main-title {
        font-size: 2.2rem;
    }

    .dest-head-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

.bento-pro-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 205px);
    gap: 15px;
    margin-top: 20px;
}

.bento-pro-card {
    position: relative;
    border-radius: 16px;
    border: 3.5px solid #ffffff;
    overflow: hidden;
    cursor: pointer;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-pro-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
}

/* Rating Badge on top left of card */
.bento-rating-pill {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 4px 11px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.78rem;
    color: #0f172a;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.bento-rating-pill i {
    color: #ffb400;
    font-size: 0.75rem;
}

/* Tag Badge on top right of card */
.bento-tag-pill {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 4px 11px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 4;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.bento-tag-pill.trending {
    background: linear-gradient(135deg, #054332, #ef4444);
}

.bento-tag-pill.paradise {
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
}

.bento-pro-card.tall {
    grid-row: span 2;
}

.bento-pro-card.wide {
    grid-column: span 2;
}

.bento-pro-image-box {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-pro-card:hover .bento-pro-image-box {
    transform: scale(1.08);
}

.bento-pro-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.92);
    transition: filter 0.5s ease;
}

.bento-pro-card:hover .bento-pro-image-box img {
    filter: brightness(0.75);
}

/* Elegant Glass Gradient Overlay */
.bento-pro-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.4s ease;
}

.bento-pro-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.bento-sub-location {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.74rem;
    color: #ffb400;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.bento-pro-text h3 {
    font-family: 'Marcellus', Georgia, serif;
    font-weight: 800;
    font-size: 1.35rem;
    color: #ffffff;
    margin: 0;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bento-pro-card.tall h3 {
    font-size: 1.5rem;
}

.bento-card-meta {
    margin-top: 4px;
}

.bento-price {
    font-size: 0.78rem;
    color: #e2e8f0;
}

.bento-price strong {
    color: #ffffff;
    font-weight: 800;
}

/* Gold Circular Action Button with Arrow */
.bento-pro-action-btn {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffb400, #ff8c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000 !important;
    font-size: 0.95rem;
    box-shadow: 0 6px 18px rgba(255, 180, 0, 0.45);
    transition: all 0.3s ease;
    transform: translateX(10px);
    opacity: 0.85;
    text-decoration: none;
    flex-shrink: 0;
}

.bento-pro-card:hover .bento-pro-action-btn {
    transform: translateX(0) scale(1.08);
    opacity: 1;
    background: #ffffff;
    color: #054332 !important;
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.4);
}

@media (max-width: 1200px) {
    .bento-pro-grid {
        grid-template-rows: repeat(2, 205px);
    }

    .bento-pro-text h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 991px) {
    .bento-pro-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 180px);
        gap: 12px;
    }

    .bento-pro-card.wide {
        grid-column: span 1;
    }

    .bento-pro-card.tall {
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .bento-pro-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 15px;
    }

    .bento-pro-card {
        height: 200px;
    }

    .bento-pro-image-box {
        height: 100%;
    }

    .bento-pro-overlay {
        opacity: 1;
        transform: translateY(0);
    }

    .bento-pro-action-btn {
        opacity: 1 !important;
        transform: none !important;
    }
}


/* Continuous Sliding Destinations Row */
.dest-slider-row {
    width: 100%;
    overflow: hidden;
    padding: 20px 0 0px;
}

.slider-track {
    display: flex;
    width: calc(210px * 16);
    /* 8 images * 2 for loop */
    animation: scroll_dest 35s linear infinite;
}

.slider-track:hover {
    animation-play-state: paused;
}

.slide-item {
    width: 210px;
    height: 120px;
    padding: 0 6px;
    flex-shrink: 0;
    position: relative;
    transition: transform 0.3s ease;
}

.slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.slide-item .slide-title {
    position: absolute;
    bottom: 0;
    left: 6px;
    right: 6px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
    color: #fff;
    padding: 8px 10px;
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 0 0 12px 12px;
    z-index: 2;
}

@keyframes scroll_dest {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-210px * 8));
    }
}

@media (max-width: 768px) {
    .dest-slider-row {
        padding: 20px 0;
    }

    .slider-track {
        width: calc(220px * 16) !important;
    }

    .slide-item {
        width: 220px;
        height: 130px;
    }

    @keyframes scroll_dest {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-220px * 8));
        }
    }
}

/* --- LUXURY WHY CHOOSE US FULL SECTION --- */
.why-choose-full-section {
    padding: 100px 0 110px;
    background: linear-gradient(180deg, #ffffff 0%, #faf8f5 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Background Ambient Orbs */
.wcu-ambient-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.wcu-blob-1 {
    width: 450px;
    height: 450px;
    top: -100px;
    left: -150px;
    background: radial-gradient(circle, rgba(255, 235, 215, 0.7) 0%, rgba(255, 255, 255, 0) 70%);
}

.wcu-blob-2 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    right: -150px;
    background: radial-gradient(circle, rgba(255, 230, 205, 0.7) 0%, rgba(255, 255, 255, 0) 70%);
}

.why-choose-full-section .container {
    position: relative;
    z-index: 2;
}

/* Section Header */
.why-choose-full-section .title-block {
    margin-bottom: 60px;
}

.why-choose-full-section .title-block span {
    font-family: 'Kaushan Script', 'Caveat', cursive;
    color: #ffb400;
    font-size: 2.4rem;
    display: block;
    margin-bottom: 6px;
}

.why-choose-full-section .title-block h2 {
    font-family: 'Marcellus', Georgia, serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: #111a2e;
    line-height: 1.2;
}

.why-choose-full-section .title-block h2 span {
    color: #ff6f00;
    background: linear-gradient(135deg, #ff7a00, #ff5500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-choose-full-section .title-block p {
    color: #666;
    font-size: 1.1rem;
    max-width: 750px;
    margin: 15px auto 0;
    line-height: 1.6;
}

/* 6-Card Modern Grid */
.wcu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.wcu-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 32px 35px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.wcu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(255, 140, 0, 0.12);
    border-color: rgba(255, 180, 0, 0.35);
}

/* Watermark Number in background */
.wcu-card-num {
    position: absolute;
    top: 20px;
    right: 25px;
    font-family: 'Marcellus', Georgia, serif;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    pointer-events: none;
    line-height: 1;
}

.wcu-card:hover .wcu-card-num {
    color: rgba(255, 180, 0, 0.15);
    transform: scale(1.1);
}

/* Icon Container */
.wcu-icon-box {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: linear-gradient(135deg, #fff7ea 0%, #ffeed2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #ff7a00;
    margin-bottom: 25px;
    border: 1.5px solid rgba(255, 180, 0, 0.25);
    box-shadow: 0 8px 20px rgba(255, 160, 0, 0.15);
    transition: all 0.4s ease;
}

.wcu-card:hover .wcu-icon-box {
    background: linear-gradient(135deg, #ff8a00 0%, #ff5500 100%);
    color: #ffffff;
    transform: rotate(-6deg) scale(1.08);
    box-shadow: 0 12px 28px rgba(255, 120, 0, 0.35);
}

.wcu-card-title {
    font-family: 'Marcellus', Georgia, serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: #111a2e;
    margin-bottom: 12px;
    line-height: 1.3;
}

.wcu-card-desc {
    font-size: 0.96rem;
    color: #666;
    line-height: 1.65;
    margin-bottom: 22px;
    flex-grow: 1;
}

.wcu-card-badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 50px;
    background: #fdf5eb;
    color: #e66a00;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 140, 0, 0.15);
    transition: all 0.3s ease;
}

.wcu-card:hover .wcu-card-badge {
    background: #fff0de;
    border-color: rgba(255, 120, 0, 0.35);
}

/* Stats / Trust Bar */
.wcu-stats-strip {
    background: #111a2e;
    border-radius: 22px;
    padding: 35px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    box-shadow: 0 20px 50px rgba(17, 26, 46, 0.25);
    position: relative;
    overflow: hidden;
}

.wcu-stats-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(255, 180, 0, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 90% 80%, rgba(255, 100, 0, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.wcu-stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.wcu-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 15%;
    right: -15px;
    height: 70%;
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.wcu-stat-number {
    font-family: 'Marcellus', Georgia, serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: #ffb400;
    margin-bottom: 5px;
    line-height: 1;
}

.wcu-stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 991px) {
    .wcu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .wcu-stats-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 30px 20px;
    }

    .wcu-stat-item:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .why-choose-full-section {
        padding: 70px 0 80px;
    }

    .why-choose-full-section .title-block h2 {
        font-size: 2.4rem;
    }

    .wcu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .wcu-stats-strip {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .wcu-stat-item::after {
        display: none !important;
    }
}

/* --- STRICT REFERENCE MATCH GRID --- */
.packages-section {
    padding: 100px 0;
    background: #fdfdfd;
    /* Clean near-white background */
}

.package-bento-grid {
    display: grid;
    grid-template-columns: repeat(40, 1fr);
    /* 40-unit precision grid */
    grid-template-rows: repeat(4, auto);
    gap: 30px;
    max-width: 1250px;
    margin: 50px auto 0;
    padding: 0 20px;
}

/* 
   MASTER BENTO SHUFFLE (40-Column Precision)
   - Vertical Card: 17 units (~42.5%)
   - Horizontal Card: 23 units (~57.5%)
*/

/* ROW 1 & 2: Vertical Left (17), Horizontals Right (23) */
.package-bento-grid .p-card:nth-child(1) {
    grid-column: 1 / span 17;
    grid-row: 1 / span 2;
}

/* Himachal V */
.package-bento-grid .p-card:nth-child(2) {
    grid-column: 18 / span 23;
    grid-row: 1;
}

/* Kashmir H */
.package-bento-grid .p-card:nth-child(3) {
    grid-column: 18 / span 23;
    grid-row: 2;
}

/* Rajasthan H */

/* ROW 3 & 4: Horizontals Left (23), Vertical Right (17) -- THE SHUFFLE */
.package-bento-grid .p-card:nth-child(4) {
    grid-column: 1 / span 23;
    grid-row: 3;
}

/* Spiti H */
.package-bento-grid .p-card:nth-child(5) {
    grid-column: 1 / span 23;
    grid-row: 4;
}

/* Leh H */
.package-bento-grid .p-card:nth-child(6) {
    grid-column: 24 / span 17;
    grid-row: 3 / span 2;
}

/* Uttarakhand V */

/* Ensure images fill cards properly in the dense grid */
.package-bento-grid .v-tall {
    height: 100%;
}

/* Card Base */
.p-card {
    background: #ffffff;
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 2px solid #ffcc00;
    transition: all 0.5s ease;
    height: 100%;
    /* All cards should fill their grid area */
}

.p-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 204, 0, 0.1);
}

/* Vertical Variant */
.p-card.v-tall {
    grid-row: span 2;
    min-height: 620px;
    /* Minimum height to maintain proportions */
}

.p-card.v-tall .p-img-box {
    height: 380px;
    width: 100%;
    padding: 20px;
}

.p-card.v-tall .p-img-box img {
    border-radius: 30px;
}

.p-card.v-tall .p-info-box {
    padding: 25px 35px;
    /* Standardized padding */
}

/* Horizontal Variant */
.p-card.h-wide,
.p-card.h-slim {
    flex-direction: row;
    min-height: 295px;
}

.p-card.h-wide .p-img-box,
.p-card.h-slim .p-img-box {
    width: 40%;
    height: 100%;
    padding: 20px;
}

.h-wide .p-img-box img,
.h-slim .p-img-box img {
    border-radius: 30px;
}

.p-card.h-wide .p-info-box,
.p-card.h-slim .p-info-box {
    padding: 25px 35px 25px 0;
    /* Standardized top padding to 25px */
}

/* Image Handling */
.p-img-box {
    position: relative;
    overflow: hidden;
}

.p-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.p-info-box {
    flex: 1;
    padding: 25px 35px;
    display: flex;
    flex-direction: column;
}

.p-luxury-badge .circle {
    width: 45px;
    height: 45px;
    border: 2px dotted #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    line-height: 1;
}

.p-luxury-badge .circle span {
    font-size: 0.55rem;
    font-weight: 800;
}

.p-duration-text {
    color: #ffcc00;
    /* Yellow */
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.p-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 8px;
}

.p-route {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 20px;
    font-weight: 500;
}

.p-amenities-row {
    display: flex;
    gap: 12px;
    margin: 20px 0;
}

.p-amenity-item {
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
}

.p-amenity-item i {
    color: #ffb400;
    /* Yellow */
    font-size: 1rem;
}

.p-footer-divider {
    border-top: 1px solid #eee;
    margin: 15px 0 20px;
}

.p-btn-row {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.p-btn-solid {
    background: #054332;
    /* Yellow */
    color: #ffffff;
    /* Dark text for yellow bg */
    flex: 1;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.85rem;
    text-decoration: none;
}

.p-btn-outline {
    border: 2px solid #054332;
    /* Yellow */
    color: #000000;
    /* Yellow */
    flex: 1;
    text-align: center;
    padding: 12px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.85rem;
    text-decoration: none;
}

@media (max-width: 1100px) {
    .package-bento-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
        /* Remove extra padding to avoid double padding with container */
    }

    .package-bento-grid .p-card {
        grid-column: 1 / -1 !important;
        /* Span the single column */
        grid-row: auto !important;
        height: auto;
        /* Removed hardcoded width and max-width to allow normal box model behavior */
    }

    .p-card.v-tall {
        min-height: auto;
    }

    .p-card.v-tall .p-img-box {
        padding: 0 !important;
        height: 250px;
    }

    .p-card.v-tall .p-img-box img {
        border-radius: 0;
        border-top-left-radius: 35px;
        border-top-right-radius: 35px;
    }

    .p-card.h-wide,
    .p-card.h-slim {
        flex-direction: column;
        height: auto;
    }

    .p-card.h-wide .p-img-box,
    .p-card.h-slim .p-img-box {
        width: 100%;
        height: 250px;
        padding: 0;
    }

    .h-wide .p-img-box img,
    .h-slim .p-img-box img {
        border-radius: 0;
        border-top-left-radius: 35px;
        border-top-right-radius: 35px;
    }

    .p-card.h-wide .p-info-box,
    .p-card.h-slim .p-info-box {
        padding: 20px !important;
    }

    .p-card.v-tall .p-info-box {
        padding: 20px !important;
    }

    .p-amenities-row {
        flex-wrap: wrap;
        gap: 8px;
        margin: 15px 0;
    }

    .p-amenity-item {
        padding: 6px 10px;
        font-size: 0.7rem;
    }
}

/* Swiper Navigation Customization */
.package-nav-btn {
    width: 60px;
    height: 60px;
    background: #ffb400;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(255, 180, 0, 0.3);
    transition: all 0.3s ease;
}

.package-nav-btn:hover {
    background: #1a1a1a;
    color: #ffb400;
}

.package-prev {
    left: -30px;
}

.package-next {
    right: -30px;
}

@media (max-width: 1300px) {
    .package-prev {
        left: 0;
    }

    .package-next {
        right: 0;
    }
}

@media (max-width: 768px) {
    .p-title {
        font-size: 1.4rem;
    }

    .p-amt {
        font-size: 1.8rem;
    }
}
}

.package-footer .loc {
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
}

.package-footer .loc i {
    color: #ffb400;
    margin-right: 5px;
}

.package-btn {
    padding: 10px 20px;
    background: #ffb400;
    color: #000;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.package-btn:hover {
    background: #222;
    color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .package-grid {
        grid-template-columns: 1fr;
    }
}

/* --- REDESIGNED WHY CHOOSE US --- */
.why-pro-section {
    padding: 120px 0;
    background: #fff;
    overflow: hidden;
}

.why-pro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.why-pro-features {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.why-feature-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.why-icon {
    width: 65px;
    height: 65px;
    background: #ffb400;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(255, 180, 0, 0.2);
    transition: all 0.4s ease;
}

.why-feature-item:hover .why-icon {
    background: #000;
    color: #ffb400;
    transform: rotateY(180deg);
}

.why-text h3 {
    font-family: 'Marcellus', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.why-text p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Visual Side */
.why-pro-visual {
    position: relative;
    padding-right: 50px;
}

.why-main-img {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.why-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-secondary-img {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 250px;
    height: 250px;
    border: 10px solid #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.why-secondary-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Stat Card */
.why-stat-card {
    position: absolute;
    top: 40px;
    right: -30px;
    background: #ffb400;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(255, 180, 0, 0.3);
    z-index: 3;
    animation: float_stat 4s infinite alternate ease-in-out;
}

@keyframes float_stat {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-20px);
    }
}

.why-stat-card .stat-num {
    font-family: 'Marcellus', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #000;
    line-height: 1;
}

.why-stat-card .stat-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 1024px) {
    .why-pro-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .why-pro-visual {
        padding-right: 0;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .why-main-img {
        height: 400px;
    }

    .why-secondary-img {
        width: 180px;
        height: 180px;
        bottom: -20px;
        right: -10px;
    }

    .why-stat-card {
        padding: 20px;
        right: 10px;
        top: 20px;
    }

    .why-stat-card .stat-num {
        font-size: 1.8rem;
    }
}

/* --- SIGNATURE HONEYMOON SUITE (LIGHT THEME) --- */
.honeymoon-suite-section {
    background: #d4af3724;
    background-position: center;
    padding: 80px 0;
    overflow: hidden;
    color: #333;
    /* Darker text for readability on light background */
}

.suite-grid-3col {
    display: grid;
    grid-template-columns: 1.1fr 1fr 280px;
    gap: 50px;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
}

/* --- Left Column: White Box Collage --- */
.suite-white-collage {
    background: #fff;
    padding: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.collage-grid {
    display: flex;
    gap: 12px;
    height: 450px;
}

.cw-main {
    width: 65%;
    height: 100%;
    object-fit: cover;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

.cw-side {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cw-sub {
    width: 100%;
    height: calc(33.33% - 8px);
    /* Space for 3 images with 12px gaps */
    object-fit: cover;
}

/* --- Center Column: Diamond Content --- */
.suite-diamond-content {
    position: relative;
    padding: 60px 30px;

    text-align: center;
    color: #ffffff;
    z-index: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.diamond-border {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    aspect-ratio: 1;
    /* Make it a square */
    border: 2px solid #d4af37;
    /* Elegant gold border */
    transform: translate(-50%, -50%) rotate(45deg);
    z-index: -1;
    pointer-events: none;
}

.diamond-inner {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.script-heading {
    font-family: 'Marcellus', Georgia, serif;
    font-style: italic;
    font-size: 2.8rem;
    color: #054332;
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 2px 1px 1px #ffb400;
}

.diamond-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #111;
    /* Dark for title */
    margin-bottom: 20px;
}

.diamond-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    /* Grey for description */
    margin-bottom: 30px;
}

.diamond-btn {
    display: inline-block;
    background: #054332;
    /* Red button */
    color: #ffffff;
    padding: 12px 30px;
    border: 2px solid #ffffff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s ease;
}

.diamond-btn:hover {
    background: #054332;
    color: #fff;
}

/* --- Right Column: Scrolling Strip --- */
.suite-right-scroll {
    height: 550px;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.scroll-track {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: scroll_up_fast 15s linear infinite;
}

.scroll-track:hover {
    animation-play-state: paused;
}

.sr-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border: 3px solid #ffb400;
    /* Yellow thick border */
    border-radius: 20px;
    /* Rounded corners */
    transition: transform 0.4s ease;
}

.sr-img:hover {
    transform: scale(1.05);
}

@keyframes scroll_up_fast {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .suite-grid-3col {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .suite-grid-3col {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .suite-desc {
        text-align: center;
    }

    .suite-right-scroll {
        height: auto;
        padding: 20px 0;
        overflow: hidden;
    }

    .scroll-track {
        flex-direction: row;
        width: calc(250px * 8);
        animation: scroll_left_fast 20s linear infinite;
    }

    .sr-img {
        width: 250px;
        height: 180px;
    }

    @keyframes scroll_left_fast {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }
}

/* --- CLIENT REVIEWS (INFINITE TICKER / WALL OF LOVE) --- */
.reviews-ticker-section {
    padding: 120px 0;
    background: #fdfdfd;
    position: relative;
    overflow: hidden;
}

/* Linear Transition for smooth marquee */
.ticker-swiper-1 .swiper-wrapper,
.ticker-swiper-2 .swiper-wrapper {
    transition-timing-function: linear !important;
}

/* Fixed width for auto slides */
.ticker-swiper-1 .swiper-slide,
.ticker-swiper-2 .swiper-slide {
    width: 450px !important;
    height: auto;
    display: flex;
}

.ticker-card {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ticker-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(209, 27, 93, 0.08);
    border-color: rgba(209, 27, 93, 0.1);
}

.tc-stars {
    color: #ffb400;
    font-size: 1rem;
    margin-bottom: 20px;
}

.ticker-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    font-style: italic;
    margin-bottom: 30px;
    flex-grow: 1;
}

.tc-user {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #f9f9f9;
    padding-top: 20px;
}

.tc-user img {
    width: 55px;
    height: 55px;
    border-radius: 15px;
    object-fit: cover;
}

.tc-user h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 800;
    color: #111;
}

.tc-user span {
    font-size: 0.85rem;
    color: #d11b5d;
    font-weight: 600;
}

@media (max-width: 768px) {

    .ticker-swiper-1 .swiper-slide,
    .ticker-swiper-2 .swiper-slide {
        width: 320px !important;
    }

    .ticker-card {
        padding: 30px;
    }

    .ticker-card p {
        font-size: 1rem;
    }

    /* --- Global Mobile Refinements --- */
    .title-block h2 {
        font-size: 2rem !important;
    }

    .title-block p {
        font-size: 0.9rem !important;
        padding: 0 10px;
    }

    /* About Section Mobile */
    .about-grid-v2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content-v2 {
        text-align: center;
        padding: 0 10px;
    }

    .about-title {
        font-size: 2.2rem;
    }

    .about-collage-complex {
        height: 400px;
        margin-bottom: 30px;
    }

    /* Bento Grid Mobile */
    .bento-pro-grid {
        grid-template-columns: 1fr !important;
    }

    .bento-pro-card {
        height: 350px !important;
    }

    /* Honeymoon Suite Mobile */
    .suite-grid-3col {
        grid-template-columns: 1fr !important;
        padding: 0 20px;
    }

    .suite-white-collage {
        order: 2;
    }

    .suite-diamond-content {
        order: 1;
        padding: 40px 10px;
    }

    .script-heading {
        font-size: 2rem;
    }

    .diamond-title {
        font-size: 1.8rem;
    }

    /* Packages Mobile Fixes */
    .p-card {
        margin-bottom: 20px;
    }

    .p-title {
        font-size: 1.4rem;
    }

    .p-info-box {
        padding: 20px;
    }
}

/* --- SITE FOOTER DESKTOP --- */
.site-footer {
    background: #222;
    /* Matches var(--text-dark) */
    color: #fff;
    padding: 100px 0;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {

    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    /* Header & Nav Mobile (Reference Match) */
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        height: 100vh;
        background: #fff;
        /* White as per reference */
        display: flex;
        flex-direction: column;
        transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 9999;
        box-shadow: 10px 0 50px rgba(0, 0, 0, 0.1);
        padding: 0 !important;
    }

    .nav-links.active {
        left: 0;
    }

    .drawer-header {
        padding: 30px 20px;
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #f0f0f0;
    }

    .drawer-body {
        padding: 20px 0;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }

    .nav-links a {
        font-size: 1.1rem !important;
        padding: 15px 25px;
        color: #333 !important;
        font-weight: 600 !important;
        text-transform: none !important;
        letter-spacing: 0 !important;
        display: flex;
        align-items: center;
        gap: 15px;
        border-bottom: 1px solid #f9f9f9;
        margin: 0 !important;
    }

    .nav-links a i {
        display: block !important;
        width: 25px;
        color: #555;
    }

    .close-menu {
        font-size: 1.5rem;
        color: #333;
        cursor: pointer;
    }

    .drawer-footer {
        display: block !important;
        padding: 20px;
        margin-top: auto;
    }

    .pay-now-btn {
        background: #8cb359 !important;
        /* Green from reference */
        color: #fff !important;
        padding: 15px !important;
        border-radius: 4px;
        text-align: center;
        justify-content: center !important;
        margin-bottom: 15px !important;
    }

    .whatsapp-btn-drawer {
        background: #25d366 !important;
        color: #fff !important;
        padding: 15px !important;
        border-radius: 4px;
        text-align: center;
        justify-content: center !important;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .top-bar-content div {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .title-block h2 {
        font-size: 1.8rem !important;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .p-btn-row {
        flex-direction: column;
        gap: 10px;
    }

    .p-btn-solid,
    .p-btn-outline {
        width: 100%;
        text-align: center;
    }

    .booking-banner-item {
        padding: 0 20px;
        text-align: center;
    }

    .banner-title {
        font-size: 1.8rem;
    }

    .logo {
        font-size: 1.8rem !important;
    }

    .btn-impressive {
        display: none;
    }

    /* Hide heavy button on tiny screens */
}

h2.dest-main-title {
    font-size: 2.2rem;
}



/* himachal page */
/* Himachal Page Specific Styles */
.himachal-hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1626621341517-bbf3d9990a23?auto=format&fit=crop&q=80&w=1600');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    position: relative;
}

.hero-title {
    font-family: 'Marcellus', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-sub {
    font-family: 'Marcellus', Georgia, serif;
    font-size: 2.5rem;
    color: #ffb400;
    display: block;
    margin-bottom: 10px;
}

.himachal-content {
    padding: 70px 0 100px;
    background: #f8fafc;
}

.himachal-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 32px;
    align-items: start;
}

/* Pixel-Perfect Package Card styles are centrally defined at the bottom of this file */

/* 3D Animated Sidebar Design */
.sidebar-form {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    align-self: start;
    z-index: 10;
}

.sidebar-booking {
    position: relative;
    background: #054332;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* 3D Background Animation Container */
.sidebar-3d-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    perspective: 1000px;
    overflow: hidden;
    opacity: 0.3;
}

.prism {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 180, 0, 0.05);
    border: 1px solid rgba(255, 180, 0, 0.1);
    animation: float-3d 20s infinite linear;
}

.prism-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.prism-2 {
    top: 60%;
    left: 70%;
    width: 120px;
    height: 120px;
    animation-delay: -5s;
}

.prism-3 {
    top: 80%;
    left: 20%;
    width: 60px;
    height: 60px;
    animation-delay: -10s;
}

@keyframes float-3d {
    0% {
        transform: translate3d(0, 0, 0) rotateX(0) rotateY(0);
    }

    50% {
        transform: translate3d(20px, 40px, 150px) rotateX(180deg) rotateY(180deg);
    }

    100% {
        transform: translate3d(0, 0, 0) rotateX(360deg) rotateY(360deg);
    }
}

.sidebar-header {
    position: relative;
    z-index: 2;
    background: #054332;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    text-align: center;
}

.sidebar-header h4 {
    color: #ffb400;
    font-size: 1.3rem;
    letter-spacing: 2px;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
}

.sidebar-header p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 8px;
}

.sidebar-body {
    position: relative;
    z-index: 2;
    padding: 30px 25px;
    background: #054332;
    backdrop-filter: blur(5px);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-size: 0.65rem;
    color: #ffb400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    display: block;
    font-weight: 800;
}

.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 15px;
    color: #fff;
    font-size: 0.9rem;
    transition: 0.4s;
    border-radius: 0;
    appearance: none;
    /* Modern look for selects */
}

/* Fix for dropdown visibility */
.form-input option {
    background: #1a1a1a;
    color: #fff;
    padding: 15px;
}

.form-input:focus {
    outline: none;
    border-color: #ffb400;
    background: rgba(255, 255, 255, 0.1);
}

.btn-ota-submit {
    width: 100%;
    background: #ffb400;
    color: #000;
    padding: 15px;
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: 0.5s;
    margin-top: 10px;
}

.btn-ota-submit:hover {
    background: #fff;
    transform: translateY(-2px);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    .himachal-grid {
        grid-template-columns: 1fr;
    }

    .sidebar-form {
        position: static;
        margin-top: 30px;
    }
}

/* end all destination page  */

/* ===================================================
   3D ANIMATED LUXURY FOOTER STYLES
   =================================================== */

@keyframes floatSlow3d {

    0%,
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    50% {
        transform: translateY(-22px) rotate(10deg) scale(1.06);
    }
}

@keyframes floatReverse3d {

    0%,
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    50% {
        transform: translateY(20px) rotate(-12deg) scale(0.95);
    }
}

@keyframes orbPulseGlow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.22;
    }

    50% {
        transform: scale(1.22);
        opacity: 0.42;
    }
}

.site-footer-3d {
    position: relative;
    background: linear-gradient(180deg, #051329 0%, #030a17 55%, #01040a 100%);
    color: #ffffff;
    overflow: hidden;
    padding-bottom: 30px;
}

/* 3D Background Glow Orbs */
.footer-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(95px);
    pointer-events: none;
    z-index: 1;
}

.footer-glow-1 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(255, 119, 0, 0.22), transparent 70%);
    top: 5%;
    left: -120px;
    animation: orbPulseGlow 9s infinite ease-in-out;
}

.footer-glow-2 {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(13, 56, 128, 0.45), transparent 70%);
    bottom: 0;
    right: -100px;
    animation: orbPulseGlow 11s infinite ease-in-out 2s;
}

.footer-glow-3 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255, 180, 0, 0.16), transparent 70%);
    top: 35%;
    left: 45%;
    animation: orbPulseGlow 13s infinite ease-in-out 4s;
}

/* 3D Floating Background Travel Elements */
.floating-3d-element {
    position: absolute;
    color: rgba(255, 255, 255, 0.05);
    pointer-events: none;
    z-index: 1;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.4));
}

.el-plane {
    top: 14%;
    right: 10%;
    font-size: 3.8rem;
    color: rgba(255, 119, 0, 0.14);
    animation: floatSlow3d 8s infinite ease-in-out;
}

.el-compass {
    bottom: 22%;
    left: 6%;
    font-size: 4.6rem;
    color: rgba(255, 255, 255, 0.05);
    animation: floatReverse3d 10s infinite ease-in-out;
}

.el-globe {
    top: 42%;
    right: 5%;
    font-size: 4.2rem;
    color: rgba(13, 56, 128, 0.28);
    animation: floatSlow3d 12s infinite ease-in-out 1s;
}

.el-mountain {
    bottom: 12%;
    left: 36%;
    font-size: 4.8rem;
    color: rgba(255, 180, 0, 0.06);
    animation: floatReverse3d 9s infinite ease-in-out 2s;
}

.el-sun {
    top: 22%;
    left: 18%;
    font-size: 3.2rem;
    color: rgba(255, 119, 0, 0.08);
    animation: floatSlow3d 11s infinite ease-in-out 3s;
}

/* Full Width Glowing Accent Top Line */
.footer-top-accent-line {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff7700 25%, #ffb400 50%, #0d3880 75%, transparent);
    box-shadow: 0 0 20px rgba(255, 119, 0, 0.4);
    margin-bottom: 50px;
}

.footer-content-wrap {
    position: relative;
    z-index: 2;
}

/* 1. Pre-Footer Glassmorphic Floating CTA Card */
.footer-cta-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 38px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    margin-bottom: 60px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.footer-cta-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55), 0 0 35px rgba(255, 119, 0, 0.18);
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 119, 0, 0.2);
    color: #ff9500;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 119, 0, 0.4);
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
    font-family: 'Outfit', sans-serif;
}

.cta-desc {
    font-size: 0.92rem;
    color: #94a3b8;
    max-width: 520px;
    line-height: 1.6;
    margin: 0;
}

.cta-form {
    display: flex;
    gap: 12px;
    align-items: center;
    min-width: 430px;
}

.cta-input-group {
    flex: 1;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.cta-input-group:focus-within {
    border-color: #ff7700;
    box-shadow: 0 0 15px rgba(255, 119, 0, 0.35);
}

.cta-input-icon {
    color: #ff7700;
    font-size: 1.05rem;
    margin-right: 10px;
}

.cta-input-group input {
    background: transparent;
    border: none;
    padding: 13px 0;
    color: #ffffff;
    width: 100%;
    outline: none;
    font-size: 0.92rem;
}

.cta-submit-btn {
    background: linear-gradient(135deg, #ff7700, #ff9500);
    color: #ffffff;
    border: none;
    padding: 13px 24px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.92rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 119, 0, 0.35);
}

.cta-submit-btn:hover {
    background: linear-gradient(135deg, #e06800, #ff7700);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 119, 0, 0.5);
}

/* 2. Main 4-Column Footer Grid */
.footer-main-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1.3fr;
    gap: 45px;
    margin-bottom: 50px;
}

.footer-logo-img {
    max-height: 70px;
    width: auto;
    object-fit: contain;
    margin-bottom: 16px;
    border-radius: 8px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}

.footer-tagline {
    color: #94a3b8;
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 20px;
}

/* 3D Trust Badges */
.footer-trust-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.trust-chip {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 5px 11px;
    font-size: 0.76rem;
    font-weight: 700;
    color: #e2e8f0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.trust-chip i {
    color: #ff9500;
}

.trust-chip:hover {
    background: rgba(255, 119, 0, 0.15);
    border-color: rgba(255, 119, 0, 0.4);
    transform: translateY(-2px);
}

/* 3D Social Buttons */
.footer-social-3d {
    display: flex;
    gap: 10px;
}

.social-btn-3d {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.social-btn-3d:hover {
    transform: translateY(-5px) rotate(6deg) scale(1.1);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.s-fb:hover {
    background: #1877f2;
    border-color: #1877f2;
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.45);
}

.s-ig:hover {
    background: linear-gradient(135deg, #f09433, #dc2743, #bc1888);
    border-color: #dc2743;
    box-shadow: 0 10px 25px rgba(220, 39, 67, 0.45);
}

.s-yt:hover {
    background: #ff0000;
    border-color: #ff0000;
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.45);
}

.s-wa:hover {
    background: #25d366;
    border-color: #25d366;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
}

.s-tw:hover {
    background: #1da1f2;
    border-color: #1da1f2;
    box-shadow: 0 10px 25px rgba(29, 161, 242, 0.45);
}

/* Column Headings & Links */
.footer-heading {
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
}

.footer-heading i {
    color: #ff7700;
    font-size: 0.95rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    background: linear-gradient(90deg, #ff7700, #ffb400);
    border-radius: 2px;
}

.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link-list li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer-link-list li a i {
    font-size: 0.62rem;
    color: #ff7700;
    opacity: 0.6;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-link-list li a:hover {
    color: #ff9500;
    transform: translateX(5px);
}

.footer-link-list li a:hover i {
    opacity: 1;
    transform: translateX(2px);
}

/* Contact Column Boxes */
.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 18px;
}

.contact-box-3d {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 10px 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: all 0.3s ease;
}

.contact-box-3d:hover {
    background: rgba(255, 119, 0, 0.08);
    border-color: rgba(255, 119, 0, 0.3);
    transform: translateX(4px);
}

.contact-icon {
    color: #ff7700;
    font-size: 1.05rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-sub {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    font-weight: 700;
    margin-bottom: 2px;
}

.contact-val {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 700;
    transition: color 0.2s ease;
}

.contact-val:hover {
    color: #ff9500;
}

.footer-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #25d366, #1da851);
    color: #ffffff !important;
    padding: 11px 18px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.92rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}

.footer-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
}

/* 3. Footer Bottom Bar */
.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.bottom-legal p {
    color: #64748b;
    font-size: 0.86rem;
    margin-bottom: 6px;
}

.bottom-legal p strong {
    color: #cbd5e1;
}

.footer-policy-links {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: #475569;
}

.footer-policy-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-policy-links a:hover {
    color: #ff9500;
}

/* Payment Badges */
.footer-payment-badges {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pay-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 0.76rem;
    font-weight: 700;
    color: #cbd5e1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pay-secure {
    background: rgba(37, 211, 102, 0.12);
    border-color: rgba(37, 211, 102, 0.3);
    color: #25d366;
}

/* 3D Back To Top Button */
.back-to-top-3d {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff7700, #ff9500);
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.92rem;
    z-index: 999;
    box-shadow: 0 10px 25px rgba(255, 119, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.back-to-top-3d.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-3d:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(255, 119, 0, 0.6);
}

.top-text {
    font-size: 0.52rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    margin-top: 1px;
}

/* Responsive Footer */
@media (max-width: 1200px) {
    .footer-main-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .footer-cta-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        gap: 25px;
    }

    .cta-form {
        width: 100%;
        min-width: unset;
        flex-direction: column;
    }

    .cta-input-group,
    .cta-submit-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .site-footer-3d {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 20 !important;
        padding-bottom: 95px !important;
        clear: both !important;
    }

    .footer-main-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
    }

    .footer-col {
        width: 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .footer-bottom-bar {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 16px !important;
    }
}

/* ==============================================
   INDEX.PHP — COMPREHENSIVE MOBILE RESPONSIVE
   Breakpoints: 768px (phone), 480px (small phone)
   ============================================== */

/* ── Section Header (dest-header-custom) ── */
@media (max-width: 768px) {
    .dest-header-custom {
        margin-bottom: 30px;
    }

    .dest-main-title {
        font-size: 1.9rem;
        flex-wrap: wrap;
        gap: 4px;
    }

    .dest-head-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-top: 10px;
    }

    .dest-all-btn {
        margin-top: 0;
        align-self: flex-start;
    }
}

/* ── Bento Destination Grid ── */
@media (max-width: 768px) {
    .bento-pro-section {
        padding: 50px 0 60px;
    }

    .bento-pro-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 12px;
    }

    .bento-pro-card {
        height: 160px;
    }

    .bento-pro-card.tall,
    .bento-pro-card.wide {
        grid-column: span 1;
        grid-row: span 1;
        height: 160px;
    }
}

@media (max-width: 480px) {
    .bento-pro-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .bento-pro-card,
    .bento-pro-card.tall,
    .bento-pro-card.wide {
        height: 180px;
    }
}

/* ── Domestic Packages Bento Grid ── */
@media (max-width: 768px) {
    .packages-section {
        padding: 50px 0 !important;
    }

    .package-bento-grid {
        grid-template-columns: 1fr !important;
        gap: 18px;
        padding: 0 !important;
    }

    .package-bento-grid .p-card {
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
        height: auto;
    }

    .p-card.v-tall {
        min-height: auto;
        flex-direction: column;
    }

    .p-card.v-tall .p-img-box {
        height: 220px;
        width: 100%;
        padding: 0 !important;
    }

    .p-card.v-tall .p-img-box img {
        border-radius: 0;
        border-top-left-radius: 35px;
        border-top-right-radius: 35px;
    }

    .p-card.h-wide,
    .p-card.h-slim {
        flex-direction: column;
    }

    .p-card.h-wide .p-img-box,
    .p-card.h-slim .p-img-box {
        width: 100%;
        height: 220px;
        padding: 0 !important;
    }

    .h-wide .p-img-box img,
    .h-slim .p-img-box img {
        border-radius: 0;
        border-top-left-radius: 35px;
        border-top-right-radius: 35px;
    }

    .p-card.h-wide .p-info-box,
    .p-card.h-slim .p-info-box,
    .p-card.v-tall .p-info-box {
        padding: 18px 20px !important;
    }

    .p-title {
        font-size: 1.25rem;
    }

    .p-amenities-row {
        flex-wrap: wrap;
        gap: 8px;
        margin: 12px 0;
    }

    .p-amenity-item {
        padding: 5px 9px;
        font-size: 0.68rem;
    }

    .p-btn-row {
        flex-direction: column;
        gap: 10px;
    }

    .p-btn-solid,
    .p-btn-outline {
        width: 100%;
        text-align: center;
    }
}

/* ── Honeymoon Suite / "Explore India" 3-col Section ── */
@media (max-width: 1200px) {
    .suite-grid-3col {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .suite-right-scroll {
        grid-column: 1 / -1;
        /* Span full width below the first two */
        height: auto;
        padding: 20px 0;
        overflow: hidden;
    }

    .suite-right-scroll .scroll-track {
        flex-direction: row;
        width: calc(250px * 26);
        /* Enough width for all images */
        animation: scroll_left_fast 25s linear infinite;
    }

    .suite-right-scroll .sr-img {
        width: 250px;
        height: 180px;
    }
}

@keyframes scroll_left_fast {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .honeymoon-suite-section {
        padding: 50px 0;
    }

    .suite-grid-3col {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 16px;
    }

    .suite-white-collage {
        order: 2;
    }

    .suite-diamond-content {
        order: 1;
        text-align: center;
    }

    .collage-grid {
        height: 280px;
        flex-direction: column;
    }

    .cw-main {
        width: 100%;
        height: 55%;
    }

    .cw-side {
        width: 100%;
        height: 45%;
        flex-direction: row;
    }

    .cw-sub {
        height: 100% !important;
        flex: 1;
    }

    .diamond-title {
        font-size: 1.6rem !important;
    }

    .suite-right-scroll {
        order: 3;
    }
}

/* ── International Cards Grid ── */
@media (max-width: 768px) {
    #international {
        padding: 60px 0 !important;
    }
}

/* ── CTA Section ── */
@media (max-width: 480px) {
    .premium-cta-title {
        font-size: 1.8rem !important;
    }

    .premium-cta-section {
        padding: 60px 0 !important;
    }
}

/* ── About Showcase Section ── */
@media (max-width: 768px) {
    .about-showcase-section {
        padding: 50px 0;
    }

    .about-showcase-card {
        grid-template-columns: 1fr !important;
        gap: 28px;
        padding: 20px !important;
    }

    .about-media-box {
        height: 260px;
    }

    .about-arrow-btn.prev-btn {
        left: 8px;
    }

    .about-arrow-btn.next-btn {
        right: 8px;
    }

    .about-showcase-title {
        font-size: 1.6rem;
    }

    .about-cta-row {
        flex-direction: column;
        gap: 10px;
    }

    .about-main-btn,
    .about-secondary-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ── General Section Padding on Mobile ── */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    /* Prevent overflow on entire page */
    body {
        overflow-x: hidden;
    }
}

@media (max-width: 480px) {
    .dest-main-title {
        font-size: 1.6rem;
    }

    .dest-header-custom {
        margin-bottom: 20px;
    }
}

/* ── Menu Toggle Fixes ── */
/* Desktop: Show slide panel toggle, hide mobile menu toggle */
.menu-toggle {
    display: none !important;
}

.slide-panel-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

@media (max-width: 1024px) {

    /* Mobile: Hide desktop slide panel toggle, show mobile menu toggle */
    .slide-panel-toggle {
        display: none !important;
    }

    .menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        background: #0d3880;
        color: #fff;
        border-radius: 6px;
        font-size: 1.1rem;
        cursor: pointer;
        z-index: 9999;
    }
}

/* ══════════════════════════════════════════
   GLOBAL ANIMATED GLOWING BORDER & LUXURY BOX SHADOW
   ══════════════════════════════════════════ */
@keyframes borderGlowPulse {
    0% {
        background-position: 0% 50%;
        box-shadow: 0 12px 35px rgba(15, 23, 42, 0.06), 0 0 0 1px rgba(226, 232, 240, 0.8);
    }

    50% {
        background-position: 100% 50%;
        box-shadow: 0 18px 45px rgba(5, 67, 50, 0.12), 0 0 15px rgba(255, 180, 0, 0.2);
    }

    100% {
        background-position: 0% 50%;
        box-shadow: 0 12px 35px rgba(15, 23, 42, 0.06), 0 0 0 1px rgba(226, 232, 240, 0.8);
    }
}

/* ============================================================
   PIXEL-PERFECT LUXURY OTA PACKAGE CARD (UNIFORM SIZES & SPACIOUS)
   ============================================================ */
.package-card {
    display: flex;
    height: 250px;
    /* Fixed uniform height on desktop */
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 24px;
    overflow: hidden;
    position: relative;
    transition: all 0.35s ease;
    box-sizing: border-box;
    width: 100%;
}

.package-card:hover {
    transform: translateY(-4px);
    border-color: #ffb400;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.09), 0 0 0 1px rgba(255, 180, 0, 0.35);
}

/* 1. Left Image Column (Uniform Fixed Dimensions) */
.package-img-col {
    width: 310px;
    min-width: 310px;
    max-width: 310px;
    height: 100%;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
    background: #0f172a;
}

.package-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.package-card:hover .package-img-col img {
    transform: scale(1.06);
}

/* Floating Badges on Image */
.pkg-badge-top-left {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #ff9800;
    color: #1e293b;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.76rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    z-index: 2;
    line-height: 1.2;
}

.pkg-badge-top-right {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(6px);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.76rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
    line-height: 1.2;
}

.pkg-badge-top-right i {
    color: #ffb400;
    font-size: 0.72rem;
}

.pkg-duration-pill {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: #054332;
    color: #ffffff;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 180, 0, 0.35);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 2;
    line-height: 1.2;
}

.pkg-duration-pill i {
    color: #ffb400;
}

/* 2. Middle Details Column (Balanced, Spacious Spacing) */
.package-info-col {
    flex: 1;
    min-width: 0;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 6px;
    background: #ffffff;
    overflow: hidden;
}

.package-info-col h3 {
    font-family: 'Marcellus', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.25;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-shrink: 0;
}

.package-card:hover .package-info-col h3 {
    color: #054332;
}

.route-map-box {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    color: #475569;
    font-weight: 600;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex-shrink: 0;
}

.route-map-box i.fa-map-marker-alt {
    color: #ffb400;
    font-size: 0.82rem;
    flex-shrink: 0;
}

.route-map-box i.fa-chevron-right {
    color: #94a3b8;
    font-size: 0.62rem;
    flex-shrink: 0;
}

/* Package Card Middle Highlights Section */
.package-card-highlights {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 8px 0 6px 0;
}

.pkg-hl-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.81rem;
    color: #475569;
    font-weight: 500;
    line-height: 1.35;
}

.pkg-hl-item i {
    color: #059669;
    font-size: 0.82rem;
    flex-shrink: 0;
}

.pkg-hl-item span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.inclusions-row {
    display: flex;
    flex-wrap: nowrap;
    /* Always single row — no wrapping */
    gap: 6px;
    align-items: center;
    margin-top: auto;
    /* Pushes icons to bottom */
    overflow: hidden;
}

.inc-item {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 4px 9px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #334155;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.25s ease;
    white-space: nowrap;
    flex-shrink: 0;
    /* Never shrink */
}

.inc-item i {
    color: #ffb400;
    font-size: 0.8rem;
}

.package-card:hover .inc-item {
    border-color: #cbd5e1;
    color: #054332;
    background: #ffffff;
}

/* 3. Right Price & Action Column */
.package-price-col {
    width: 225px;
    min-width: 225px;
    max-width: 225px;
    padding: 18px 16px;
    background: #fafbfc;
    border-left: 1.5px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-shrink: 0;
}

.pkg-deal-badge {
    background: #fffbeb;
    border: 1px solid #fef3c7;
    color: #b45309;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 3px 12px;
    border-radius: 50px;
    margin-bottom: 6px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.pkg-deal-badge i {
    color: #f59e0b;
}

.old-price-wrap {
    font-size: 0.9rem;
    color: #94a3b8;
    text-decoration: line-through;
    margin-bottom: 1px;
    font-weight: 500;
}

.main-price-wrap {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 2.15rem;
    font-weight: 800;
    color: #054332;
    line-height: 1.1;
    margin-bottom: 1px;
    letter-spacing: -0.5px;
}

.main-price-wrap.price-on-req,
.price-on-request {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    color: #054332 !important;
    letter-spacing: -0.2px;
    margin: 4px 0 2px 0;
    white-space: nowrap;
}

.main-price-wrap span {
    font-size: 1.65rem;
    color: #ffb400;
}

.price-sub-text {
    font-size: 0.74rem;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 12px;
}

.action-btns {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.btn-ota-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 14px;
    background: #054332;
    color: #ffffff !important;
    border: 2px solid #ffb400;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(5, 67, 50, 0.2);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.btn-ota-primary:hover {
    background: #ffb400;
    color: #054332 !important;
    border-color: #ffb400;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 180, 0, 0.35);
}

.btn-ota-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 9px 14px;
    background: #ffffff;
    color: #0f172a !important;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.btn-ota-outline:hover {
    border-color: #054332;
    color: #054332 !important;
    background: #f0fdf4;
    transform: translateY(-2px);
}

/* Package Card Short Description & Highlights */
.pkg-short-desc {
    font-size: 0.84rem;
    color: #475569;
    line-height: 1.45;
    margin: 4px 0 8px 0;
    display: flex;
    align-items: center;
    gap: 7px;
    background: #f8fafc;
    border: 1px solid #edf2f7;
    border-left: 3.5px solid #ffb400;
    padding: 6px 11px;
    border-radius: 6px;
}

.pkg-short-desc span {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #334155;
    font-weight: 600;
    font-size: 0.8rem;
}

/* ══════════════════════════════════════════
   MOBILE & TABLET RESPONSIVE PERFECTION
   ══════════════════════════════════════════ */
@media (max-width: 992px) {
    .package-card {
        flex-direction: column;
        height: auto !important;
        min-height: auto !important;
        border-radius: 18px !important;
    }

    .package-img-col {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        height: 220px !important;
        min-height: 220px !important;
        max-height: 220px !important;
    }

    .package-img-col img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .package-info-col {
        padding: 18px 16px !important;
        gap: 10px !important;
    }

    .package-price-col {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        border-left: none !important;
        border-top: 1.5px solid #f1f5f9 !important;
        padding: 16px !important;
    }

    .action-btns {
        flex-direction: row !important;
        gap: 10px !important;
    }

    .btn-ota-primary,
    .btn-ota-outline {
        flex: 1 !important;
        padding: 11px 12px !important;
    }
}

/* Specific Phone View (320px - 768px) */
@media (max-width: 768px) {
    .himachal-hero {
        min-height: 38vh !important;
        padding: 115px 16px 45px !important;
    }

    .hero-sub {
        font-size: 1.65rem !important;
        margin-bottom: 4px !important;
    }

    .hero-title {
        font-size: clamp(1.85rem, 6.5vw, 2.5rem) !important;
        line-height: 1.2 !important;
        letter-spacing: -0.5px !important;
    }

    .himachal-content {
        padding: 30px 0 60px !important;
    }

    .himachal-content .container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .himachal-grid {
        gap: 18px !important;
    }

    .package-card {
        margin-bottom: 18px !important;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06) !important;
    }

    .package-img-col {
        height: 200px !important;
        min-height: 200px !important;
        max-height: 200px !important;
    }

    .package-info-col {
        padding: 15px 14px !important;
        text-align: center;

    }

    .package-info-col h3 {
        font-size: 1.25rem !important;
        line-height: 1.3 !important;
    }

    .route-map-box {
        font-size: 0.76rem !important;
        padding: 4px 10px !important;
    }

    .inclusions-row {
        gap: 4px !important;
    }

    .inc-item {
        padding: 3px 7px !important;
        font-size: 0.68rem !important;
    }

    .main-price-wrap {
        font-size: 1.9rem !important;
    }

    .btn-ota-primary,
    .btn-ota-outline {
        padding: 10px 8px !important;
        font-size: 0.78rem !important;
    }
}