/* TRIPPER KIDS - Travel & Tourism Platform
   Modern, Responsive, Beautiful CSS*/

/* ---- CSS Variables ---- */
:root {
    --primary: #FF6B35;
    --primary-dark: #E85D2C;
    --primary-light: #FF8C5A;
    --secondary: #004E89;
    --secondary-dark: #003A66;
    --secondary-light: #0066B3;
    --accent: #F7C948;
    --accent-dark: #E5B83A;
    --dark: #1A1A2E;
    --dark-light: #16213E;
    --gray-900: #212529;
    --gray-800: #343A40;
    --gray-700: #495057;
    --gray-600: #6C757D;
    --gray-500: #ADB5BD;
    --gray-400: #CED4DA;
    --gray-300: #DEE2E6;
    --gray-200: #E9ECEF;
    --gray-100: #F8F9FA;
    --white: #FFFFFF;
    --success: #28A745;
    --danger: #DC3545;
    --warning: #FFC107;
    --info: #17A2B8;
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #F7C948 100%);
    --gradient-secondary: linear-gradient(135deg, #004E89 0%, #0066B3 100%);
    --gradient-dark: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
    --gradient-hero: linear-gradient(135deg, rgba(0,78,137,0.85) 0%, rgba(26,26,46,0.9) 100%);
    --gradient-stats: linear-gradient(135deg, #FF6B35 0%, #F7C948 100%); /* add this */
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-md: 0 5px 25px rgba(0,0,0,0.1);
    --shadow-lg: 0 15px 50px rgba(0,0,0,0.15);
    --shadow-xl: 0 25px 60px rgba(0,0,0,0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Playfair Display', serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.7;
    color: var(--gray-700);
    overflow-x: hidden;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p { margin-bottom: 1rem; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-sm {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ---- Utility Classes ---- */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent { color: var(--accent); }
.bg-primary { background-color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }
.bg-dark { background-color: var(--dark); }
.bg-light { background-color: var(--gray-100); }
.bg-white { background-color: var(--white); }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-transform: capitalize;
    letter-spacing: 0.3px;
    font-family: var(--font-primary);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.15);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255,107,53,0.4);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,107,53,0.5);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0,78,137,0.4);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,78,137,0.5);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-accent {
    background: var(--accent);
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(247,201,72,0.4);
}

.btn-accent:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-lg {
    padding: 1.1rem 2.8rem;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
}

/* ---- Section Styles ---- */
.section {
    padding: 5rem 0;
}

.section-lg {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.section-header .subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.section-header .subtitle::before,
.section-header .subtitle::after {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header h2 span {
    color: var(--primary);
}

.section-header p {
    color: var(--gray-600);
    font-size: 1.05rem;
}

/* ---- Page Header / Banner ---- */
.page-banner {
    position: relative;
    padding: 10rem 0 5rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: 1;
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    color: var(--white);
    margin-bottom: 1rem;
    font-family: var(--font-secondary);
}

.page-banner p {
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
    max-width: 600px;
}

.page-banner.text-center p {
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb .separator {
    color: var(--primary);
}

/* ── TOP INFO BAR ── */
.top-info-bar {
    background: var(--secondary-dark);
    color: rgba(255,255,255,0.88);
    font-size: 0.82rem;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-info-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.top-bar-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.top-bar-left a, .top-bar-left span {
    color: rgba(255,255,255,0.85);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.top-bar-left a:hover { color: var(--accent); }
.top-bar-divider {
    width: 1px; height: 14px;
    background: rgba(255,255,255,0.2);
    display: inline-block;
}
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.top-bar-social {
    display: flex; gap: 0.35rem; align-items: center;
}
.top-bar-social a {
    width: 26px; height: 26px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    font-size: 0.75rem;
    transition: background 0.2s;
}
.top-bar-social a:hover { background: var(--primary); color: #fff; }

/* ── Account Dropdown (Top Bar) ── */
.top-bar-account-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.top-bar-account-btn {
    color: rgba(255,255,255,0.85);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 2px 6px;
    border-radius: 6px;
    transition: all 0.2s;
    font-family: inherit;
    white-space: nowrap;
}
.top-bar-account-btn:hover {
    color: var(--accent);
    background: rgba(255,255,255,0.08);
}
.top-bar-account-btn i {
    font-size: 0.75rem;
    transition: transform 0.25s ease;
}
.top-bar-account-dropdown.open .top-bar-account-btn i.fa-chevron-down {
    transform: rotate(180deg);
}
.top-bar-account-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0,0,0,0.18);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100000;
}
.top-bar-account-dropdown.open .top-bar-account-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.top-bar-account-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: var(--gray-700);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s;
    text-decoration: none;
}
.top-bar-account-menu a:hover {
    background: rgba(255,107,53,0.08);
    color: var(--primary);
}
.top-bar-account-menu a i {
    width: 18px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-500);
    transition: color 0.2s;
}
.top-bar-account-menu a:hover i {
    color: var(--primary);
}
.top-bar-account-menu .account-menu-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 4px 10px;
}
.top-bar-account-menu .account-menu-header {
    padding: 8px 14px 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-500);
}
.top-bar-account-menu .account-menu-logout {
    color: var(--danger);
}
.top-bar-account-menu .account-menu-logout i {
    color: var(--danger);
}
.top-bar-account-menu .account-menu-logout:hover {
    background: rgba(220,53,69,0.08);
    color: var(--danger);
}
.top-bar-account-user-name {
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/* Account avatar circle */
.top-bar-account-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* ── MAIN NAVBAR ── */
/*  NAVIGATION */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease;
    padding: 0;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.13);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    z-index: 100;
    text-decoration: none;
    white-space: nowrap;
}

/* Real logo image */
.navbar-brand .brand-logo-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 10px;
    flex-shrink: 0;
    display: block;
    /* subtle shadow to lift the logo off the white navbar */
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
    transition: transform 0.25s ease;
}

.navbar-brand:hover .brand-logo-img {
    transform: scale(1.07);
}

/* Brand name text — styled in the site's primary gradient */
.navbar-brand .brand-name-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

/* Footer variant — slightly smaller logo */
.footer-brand .brand-logo-img {
    width: 48px;
    height: 48px;
}

.footer-brand .brand-name-text {
    font-size: 1.2rem;
}

/* Desktop Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.15rem;
}

.nav-menu a {
    color: var(--gray-700);
    font-weight: 600;
    padding: 0.5rem 0.6rem;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    position: relative;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 60%;
}

.nav-menu a:hover {
    color: var(--primary);
    background: rgba(255,107,53,0.06);
}

.nav-menu a.active {
    color: var(--primary);
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    z-index: 100;
}

.nav-actions .btn {
    padding: 0.55rem 1.2rem;
    font-size: 0.85rem;
    white-space: nowrap;
}

.nav-actions .btn-outline {
    color: var(--gray-700);
    border-color: var(--gray-400);
}
.nav-actions .btn-outline:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(255,107,53,0.06);
    transform: none;
}

/* Mobile Hamburger Button */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px 8px;
    z-index: 100;
    background: none;
    border: none;
    border-radius: 6px;
    transition: background 0.2s;
    order: -1;
}
.nav-toggle:hover { background: rgba(255,107,53,0.08); }
.nav-toggle span {
    width: 26px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
    display: block;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ── SIDEBAR OVERLAY ── */
.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.sidebar-overlay.active {
    display: block;
    opacity: 1;
}

/* ── MOBILE SIDEBAR DRAWER ── */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: #1a2a45;
    z-index: 10100;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    flex-direction: column;
}
.mobile-sidebar.open {
    transform: translateX(0);
}

/* Sidebar Header */
.mobile-sidebar-header {
    background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
    padding: 20px 18px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}
.mobile-sidebar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.mobile-sidebar-logo {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.mobile-sidebar-logo i { color: var(--white); font-size: 1.3rem; }

/* Real logo image in mobile sidebar */
.mobile-sidebar-logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 10px;
    flex-shrink: 0;
    display: block;
    background: rgba(255,255,255,0.08);
    padding: 3px;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}
.mobile-sidebar-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    line-height: 1.2;
    display: block;
}
.mobile-sidebar-sub {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    letter-spacing: 0.04em;
    display: block;
}
.sidebar-close-btn {
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    flex-shrink: 0;
    transition: background 0.2s;
}
.sidebar-close-btn:hover { background: rgba(255,255,255,0.3); }

/* Sidebar Nav Links */
.mobile-sidebar-nav {
    flex: 1;
    padding: 12px 0;
    overflow-y: auto;
}
.mobile-sidebar-nav .nav-section-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    padding: 14px 20px 6px;
}
.mobile-sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: all 0.2s;
}
.mobile-sidebar-nav a:hover,
.mobile-sidebar-nav a.active {
    background: rgba(255,255,255,0.07);
    color: #fff;
    border-left-color: var(--primary);
}
.mobile-sidebar-nav a i {
    width: 20px;
    text-align: center;
    font-size: 0.95rem;
    flex-shrink: 0;
    color: rgba(255,255,255,0.5);
}
.mobile-sidebar-nav a:hover i,
.mobile-sidebar-nav a.active i { color: var(--accent); }

/* Sidebar accordion parent item */
.mobile-sidebar-nav .sidebar-has-sub {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: rgba(255,255,255,0.82);
    font-size: 0.9rem;
    font-weight: 500;
    border-left: 3px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
}
.mobile-sidebar-nav .sidebar-has-sub:hover {
    background: rgba(255,255,255,0.07);
    color: #fff;
}
.mobile-sidebar-nav .sidebar-has-sub i:first-child {
    width: 20px;
    text-align: center;
    font-size: 0.95rem;
    flex-shrink: 0;
    color: rgba(255,255,255,0.5);
}
.mobile-sidebar-nav .sidebar-has-sub i.sidebar-caret {
    margin-left: auto;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    transition: transform 0.2s;
}
.mobile-sidebar-nav .sidebar-has-sub.open i.sidebar-caret {
    transform: rotate(180deg);
}
.mobile-sidebar-nav .sidebar-has-sub span {
    flex: 1;
}

/* Sidebar sub-nav */
.mobile-sidebar-sub-nav {
    background: rgba(0,0,0,0.2);
    padding: 4px 0;
    display: none;
}
.mobile-sidebar-sub-nav.open { display: block; }
.mobile-sidebar-sub-nav a {
    padding: 9px 20px 9px 52px;
    font-size: 0.84rem;
    color: rgba(255,255,255,0.65);
    border-left: none !important;
}
.mobile-sidebar-sub-nav a:hover {
    color: #fff;
    background: rgba(255,255,255,0.06);
}

/* Sidebar CTA button */
.sidebar-cta-btn {
    margin: 12px 16px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff !important;
    font-weight: 700;
    border-radius: 10px;
    padding: 13px 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
    flex-shrink: 0;
}
.sidebar-cta-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255,107,53,0.35);
}

/* Prevent body scroll when sidebar open */
body.sidebar-open { overflow: hidden; }

/*  HERO SECTION */
.hero {
    position: relative;
    min-height: 110vh;
    display: flex;
    align-items: center;
    overflow: visible;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,20,50,0.75) 0%, rgba(0,30,60,0.5) 50%, rgba(255,107,53,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 700px;
    padding: 0 1.5rem;
}

.hero-content .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.2);
    animation: fadeInDown 1s ease;
}

.hero-content h1 {
    color: var(--white);
    font-family: var(--font-secondary);
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    margin-bottom: 1.25rem;
    line-height: 1.15;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-content h1 span {
    color: var(--accent);
    position: relative;
}

.hero-content p {
    font-size: 1.15rem;
    opacity: 0.92;
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 550px;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    animation: fadeInUp 1s ease 0.8s backwards;
}

.hero-stat {
    text-align: center;
}

.hero-stat .number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
    line-height: 1;
}

.hero-stat .label {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 0.3rem;
    display: block;
    margin-bottom: 5%;
}

/* Hero Search Box */
.hero-search {
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 90%;
    max-width: 1000px;
    
}

.search-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-xl);
    display: flex;
    gap: 1rem;
    align-items: end;
    flex-wrap: wrap;
}

.search-box .search-field {
    flex: 1;
    min-width: 180px;
}

.search-box label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
}

.search-box input,
.search-box select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--gray-700);
    transition: var(--transition);
    background: var(--gray-100);
}

.search-box input:focus,
.search-box select:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
}

.search-box .btn {
    flex-shrink: 0;
    padding: 0.75rem 2rem;
    height: fit-content;
}

/* Slider dots */
.hero-dots {
    position: absolute;
    bottom: 5rem;
    right: 3rem;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.hero-dot.active {
    background: var(--primary);
    border-color: var(--white);
    transform: scale(1.3);
}

/*   
   PACKAGE CARDS
*/
.package-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.package-card .card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.package-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.package-card:hover .card-image img {
    transform: scale(1.1);
}

.package-card .card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.package-card .card-wishlist {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    z-index: 2;
    color: var(--gray-600);
    font-size: 1.1rem;
}

.package-card .card-wishlist:hover {
    background: var(--primary);
    color: var(--white);
}

.package-card .card-price {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 2;
}

.package-card .card-price small {
    font-weight: 400;
    font-size: 0.75rem;
    opacity: 0.85;
}

.package-card .card-body {
    padding: 1.5rem;
}

.package-card .card-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.package-card .card-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.82rem;
    color: var(--gray-600);
}

.package-card .card-meta span i {
    color: var(--primary);
    font-size: 0.85rem;
}

.package-card .card-body h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.package-card:hover .card-body h3 {
    color: var(--primary);
}

.package-card .card-body p {
    color: var(--gray-600);
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
}

.package-card .card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.package-card .card-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.package-card .card-rating .stars {
    color: var(--accent);
    font-size: 0.85rem;
}

.package-card .card-rating .count {
    font-size: 0.82rem;
    color: var(--gray-600);
}

.package-card .card-footer .btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.82rem;
}

/*   
   DESTINATION CARDS
 */
.destination-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 350px;
    cursor: pointer;
    group: true;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.destination-card:hover img {
    transform: scale(1.15);
}

.destination-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 60%);
    transition: var(--transition);
}

.destination-card:hover .overlay {
    background: linear-gradient(to top, rgba(255,107,53,0.8) 0%, rgba(0,0,0,0.2) 60%);
}

.destination-card .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: var(--white);
    transform: translateY(0);
    transition: var(--transition);
}

.destination-card .card-content h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
}

.destination-card .card-content .trip-count {
    font-size: 0.9rem;
    opacity: 0.85;
}

.destination-card .card-content .explore-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.75rem;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.destination-card:hover .card-content .explore-link {
    opacity: 1;
    transform: translateY(0);
}

/*   
   EVENT CARDS
 */
.event-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.event-card .event-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.event-card .event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-card .event-date {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    text-align: center;
    z-index: 2;
    line-height: 1.2;
}

.event-card .event-date .day {
    font-size: 1.5rem;
    font-weight: 800;
    display: block;
}

.event-card .event-date .month {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.event-card .event-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-card .event-category {
    display: inline-block;
    background: rgba(255,107,53,0.1);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    width: fit-content;
}

.event-card .event-body h3 {
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.event-card .event-info {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    color: var(--gray-600);
    font-size: 0.88rem;
    margin-top: auto;
    padding-top: 1rem;
}

.event-card .event-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-card .event-info i {
    color: var(--primary);
    width: 18px;
}

/*   
   TESTIMONIAL SECTION
 */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-card .quote-icon {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.15;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.testimonial-card .stars {
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: var(--gray-600);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-card .author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-card .author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.15rem;
}

.testimonial-card .author-info span {
    font-size: 0.82rem;
    color: var(--gray-600);
}

/*   
   WHY CHOOSE US / FEATURES
 */
.feature-box {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.feature-box:hover::after {
    transform: scaleX(1);
}

.feature-box .icon {
    width: 80px;
    height: 80px;
    background: rgba(255,107,53,0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}

.feature-box:hover .icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: rotateY(180deg);
}

.feature-box h3 {
    margin-bottom: 0.75rem;
}

.feature-box p {
    color: var(--gray-600);
    font-size: 0.92rem;
}

/*   
   CATEGORY TABS / PILLS
 */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.category-tab {
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid var(--gray-200);
    color: var(--gray-700);
    background: var(--white);
    font-family: var(--font-primary);
}

.category-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.category-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/*   
   GRID LAYOUTS
 */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.25rem;
}

.destinations-grid .destination-card:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    height: 100%;
}

/*  STATS / COUNTER SECTION */
.stats-section {
    background: var(--gradient-stats);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    top: -200px;
    right: -100px;
}

.stats-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    bottom: -150px;
    left: -100px;
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 2rem 0;
}

.stat-item .stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.stat-item .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    display: block;
    line-height: 1;
}

.stat-item .stat-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    margin-top: 0.5rem;
    display: block;
}

/*   
   CTA SECTION
 */
.cta-section {
    position: relative;
    padding: 6rem 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,107,53,0.9) 0%, rgba(0,78,137,0.9) 100%);
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    color: var(--white);
    font-family: var(--font-secondary);
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    max-width: 600px;
}

.cta-section.text-center p {
    margin-left: auto;
    margin-right: auto;
}

/*   
   BLOG CARDS
 */
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-card .blog-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-card .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-card .blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    z-index: 2;
}

.blog-card .blog-body {
    padding: 1.5rem;
}

.blog-card .blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.82rem;
    color: var(--gray-600);
}

.blog-card .blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-card .blog-meta i {
    color: var(--primary);
}

.blog-card .blog-body h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.blog-card:hover .blog-body h3 {
    color: var(--primary);
}

.blog-card .blog-body p {
    color: var(--gray-600);
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.blog-card .read-more:hover {
    gap: 0.6rem;
}

/*   
   GALLERY
 */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 250px;
    cursor: pointer;
}

.gallery-item.tall {
    grid-row: span 2;
    height: 100%;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,107,53,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item .gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
}

/*   
   SAVINGS SECTION
 */
.savings-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.savings-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.savings-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.savings-card .savings-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255,107,53,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

.savings-card h3 {
    margin-bottom: 0.75rem;
}

.savings-card p {
    color: var(--gray-600);
    font-size: 0.92rem;
}

/* Progress bar */
.progress-bar-container {
    background: var(--gray-200);
    border-radius: var(--radius-full);
    height: 10px;
    overflow: hidden;
    margin: 1rem 0;
}

.progress-bar-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    transition: width 1.5s ease;
}

/*   
   NEWSLETTER
 */
.newsletter-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255,107,53,0.1);
    border-radius: 50%;
    top: -250px;
    right: -100px;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.08);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 0.95rem;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255,255,255,0.12);
}

/*   
   FOOTER
 */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    position: relative;
}

.footer-main {
    padding: 5rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-about p {
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.7);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
    font-size: 1rem;
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer h4 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.footer-contact span {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.7);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/*   
   SCROLL TO TOP
 */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    box-shadow: 0 5px 20px rgba(255,107,53,0.4);
    transition: var(--transition);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    font-size: 1.2rem;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/*   
   PRELOADER
 */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/*   
   FORM STYLES (Contact, etc)
 */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 0.85rem 1.2rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--gray-700);
    transition: var(--transition);
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255,107,53,0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236C757D' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/*   
   ABOUT PAGE SPECIFIC
 */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image .main-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.about-image .experience-badge {
    position: absolute;
    bottom: -2rem;
    right: -1rem;
    background: var(--primary);
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-image .experience-badge .number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.about-image .experience-badge .text {
    font-size: 0.85rem;
    font-weight: 500;
}

.about-text .subtitle {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    display: block;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--gray-600);
    font-size: 1.02rem;
    margin-bottom: 1.25rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-feature i {
    width: 40px;
    height: 40px;
    background: rgba(255,107,53,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.about-feature span {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--gray-800);
}

/*   
   TEAM SECTION
 */
.team-card {
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-card .team-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.team-card .team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-card .team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 2rem 1rem 1rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.team-card:hover .team-social {
    transform: translateY(0);
}

.team-card .team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.85rem;
    transition: var(--transition);
}

.team-card .team-social a:hover {
    background: var(--primary);
    color: var(--white);
}

.team-card .team-info {
    padding: 1.5rem;
}

.team-card .team-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.team-card .team-info span {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.88rem;
}

/*   
   CONTACT STYLES
 */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
}

.contact-info-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    align-items: flex-start;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-info-card .icon {
    width: 56px;
    height: 56px;
    background: rgba(255,107,53,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.contact-info-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin: 0;
}

.contact-form-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
    margin-bottom: 0.5rem;
}

.contact-form-card > p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

/*   
   FAQ STYLES
 */
.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--gray-800);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-item.active .faq-question {
    color: var(--primary);
    background: rgba(255,107,53,0.05);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 1.5rem 1.25rem;
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/*   
   PACKAGE CATEGORY CARDS
 */
.pkg-category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 280px;
    cursor: pointer;
    transition: var(--transition);
}

.pkg-category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pkg-category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pkg-category-card:hover img {
    transform: scale(1.1);
}

.pkg-category-card .cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.pkg-category-card .cat-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.pkg-category-card h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0.3rem;
}

.pkg-category-card p {
    color: rgba(255,255,255,0.75);
    font-size: 0.88rem;
    margin: 0;
}

/*   
   ANIMATIONS
 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/*   
   RESPONSIVE DESIGN
 */
@media (max-width: 1200px) {
    .destinations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .destinations-grid .destination-card:nth-child(1) {
        grid-column: span 1;
        grid-row: span 1;
        height: 350px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .footer-grid > *:first-child {
        grid-column: span 3;
    }
}

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .hero-search {
        bottom: -4rem;
    }
    .search-box {
        padding: 1.25rem;
    }
    /* Mobile nav: show toggle, hide desktop menu */
    .nav-toggle {
        display: flex !important;
    }
    .nav-menu {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .section { padding: 3.5rem 0; }
    .section-lg { padding: 4rem 0; }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item { height: 200px; }
    .gallery-item.tall { grid-row: span 1; }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .footer-grid > *:first-child {
        grid-column: span 2;
    }
    
    .hero-stats { 
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    .hero-stat .number { font-size: 1.8rem; }
    
    .stat-item .stat-number { font-size: 2.2rem; }
    
    .hero-search {
        bottom: -8rem;
        width: 95%;
    }
    .search-box {
        flex-direction: column;
    }
    .search-box .search-field {
        min-width: 100%;
    }
    
    .hero-dots { display: none; }
    
    .page-banner { padding: 8rem 0 4rem; }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
    
    .category-tabs {
        gap: 0.5rem;
    }
    .category-tab {
        padding: 0.5rem 1rem;
        font-size: 0.82rem;
    }
    
    .nav-actions .btn {
        padding: 0.5rem 1rem;
        font-size: 0.82rem;
    }
}

@media (max-width: 480px) {
    html { font-size: 14px; }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item.wide { grid-column: span 1; }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid > *:first-child {
        grid-column: span 1;
    }
    
    .page-banner { padding: 7rem 0 3rem; }
    
    .contact-form-card { padding: 1.5rem; }
    
    .cta-section { padding: 4rem 0; }
}

/* ---- Print Styles ---- */
@media print {
    .navbar, .footer, .scroll-top, .preloader { display: none; }
    .hero { min-height: auto; padding: 2rem 0; }
    .section { padding: 2rem 0; }
}

/*   
   WHATSAPP FLOAT BUTTON
 */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(37,211,102,0.4);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
    color: var(--white);
}

/*   
   MOBILE NAV OVERLAY
 */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 98;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/*   
   DARK MODE SUPPORT (optional toggle)
 */
[data-theme="dark"] {
    --white: #1A1A2E;
    --gray-100: #16213E;
    --gray-200: #1F2B45;
    --gray-300: #2A3A5C;
    --gray-700: #CED4DA;
    --gray-800: #DEE2E6;
}

/*   
   PAGE HERO BANNERS (Sub-pages)
 */
.page-hero {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: var(--white);
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,78,137,0.8) 0%, rgba(26,26,46,0.85) 100%);
}
.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 6rem 0 3rem;
}
.page-hero-content h1 {
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.page-hero-content p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 1rem;
}
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.85;
}
.breadcrumb a { color: var(--accent); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: rgba(255,255,255,0.7); }

@media (max-width: 768px) {
    .page-hero { min-height: 280px; }
    .page-hero-content { padding: 5rem 0 2rem; }
    .page-hero-content h1 { font-size: 2rem; }
}

/*   
   PACKAGES PAGE
 */
.categories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}
.category-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-full);
    background: var(--white);
    color: var(--gray-700);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border: 2px solid var(--gray-300);
    transition: var(--transition);
}
.category-pill:hover, .category-pill.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,107,53,0.3);
}
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}
.package-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.package-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.package-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}
.package-card:hover .package-card-image img { transform: scale(1.1); }
.package-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.3rem 0.9rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}
.package-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.package-card:hover .package-card-overlay { opacity: 1; }
.package-card-content {
    padding: 1.25rem;
}
.package-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}
.package-meta i { color: var(--primary); margin-right: 0.25rem; }
.package-card-content h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}
.package-card-content h3 a { color: var(--gray-900); text-decoration: none; }
.package-card-content h3 a:hover { color: var(--primary); }
.package-card-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}
.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}
.package-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}
.package-price small {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--gray-600);
    display: block;
}
.package-rating {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
}
.package-rating i { color: var(--accent); }

@media (max-width: 768px) {
    .packages-grid { grid-template-columns: 1fr; }
}

/*   
   DESTINATIONS PAGE
 */
.destinations-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}
.destination-page-card { border-radius: var(--radius-md); overflow: hidden; }
.destination-page-image {
    position: relative;
    height: 350px;
    overflow: hidden;
    border-radius: var(--radius-md);
}
.destination-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}
.destination-page-card:hover .destination-page-image img { transform: scale(1.08); }
.destination-page-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: var(--white);
}
.destination-country {
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
    opacity: 0.9;
}
.destination-page-overlay h3 {
    font-family: var(--font-secondary);
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}
.destination-page-overlay p { font-size: 0.9rem; opacity: 0.85; margin-bottom: 0.75rem; }
.destination-stats { font-size: 0.85rem; margin-bottom: 1rem; opacity: 0.8; }
.destination-stats i { margin-right: 0.3rem; }

@media (max-width: 768px) {
    .destinations-page-grid { grid-template-columns: 1fr; }
    .destination-page-image { height: 280px; }
}

/*   
   EVENTS PAGE
 */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}
.event-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.event-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.event-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.event-card-image img { width: 100%; height: 100%; object-fit: cover; }
.event-date-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-sm);
    text-align: center;
    padding: 0.5rem 0.75rem;
    line-height: 1.1;
}
.event-month { display: block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; }
.event-day { display: block; font-size: 1.5rem; font-weight: 800; }
.event-category-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
}
.event-card-content { padding: 1.25rem; }
.event-card-content h3 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.event-info {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 0.75rem;
}
.event-info i { color: var(--primary); margin-right: 0.3rem; width: 16px; }
.event-card-content p { font-size: 0.9rem; color: var(--gray-600); margin-bottom: 1rem; }
.event-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.event-price { font-size: 1.2rem; font-weight: 700; color: var(--primary); }
.event-countdown { font-size: 0.8rem; color: var(--secondary); font-weight: 600; }
.btn-block { display: block; width: 100%; text-align: center; }

@media (max-width: 768px) {
    .events-grid { grid-template-columns: 1fr; }
}

/*   
   GALLERY PAGE
 */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}
.gallery-filter-btn {
    padding: 0.5rem 1.2rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-full);
    background: transparent;
    color: var(--gray-700);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}
.gallery-filter-btn:hover, .gallery-filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.gallery-masonry {
    columns: 3;
    column-gap: 1.5rem;
}
.gallery-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    display: block;
    transition: var(--transition-slow);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay h4 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.gallery-item-overlay span { font-size: 0.85rem; opacity: 0.8; }
.gallery-item.hidden { display: none; }

@media (max-width: 992px) { .gallery-masonry { columns: 2; } }
@media (max-width: 576px) { .gallery-masonry { columns: 1; } }

/*   
   BLOG PAGE
 */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}
.blog-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card-image { height: 220px; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.blog-card:hover .blog-card-image img { transform: scale(1.08); }
.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
}
.blog-card-image { position: relative; }
.blog-card-content { padding: 1.25rem; }
.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-bottom: 0.75rem;
}
.blog-meta i { color: var(--primary); margin-right: 0.2rem; }
.blog-card-content h3 { font-size: 1.15rem; margin-bottom: 0.5rem; line-height: 1.4; }
.blog-card-content h3 a { color: var(--gray-900); text-decoration: none; }
.blog-card-content h3 a:hover { color: var(--primary); }
.blog-card-content p { font-size: 0.9rem; color: var(--gray-600); margin-bottom: 1rem; }
.read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: var(--transition);
}
.read-more:hover { gap: 0.6rem; color: var(--primary-dark); }

@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; }
}

/* Blog Detail */
.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}
.blog-detail-meta i { color: var(--primary); margin-right: 0.3rem; }
.blog-detail-image {
    width: 100%;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
}
.blog-detail-content { font-size: 1.05rem; line-height: 1.8; color: var(--gray-700); }
.blog-detail-content p { margin-bottom: 1.5rem; }
.blog-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}
.blog-share span { font-weight: 600; color: var(--gray-800); }
.blog-share a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-700);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}
.blog-share a:hover { background: var(--primary); color: var(--white); }

/*   
   CONTACT PAGE
 */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}
.contact-info h2, .contact-form-wrapper h2 {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}
.contact-info p { color: var(--gray-600); margin-bottom: 2rem; }
.contact-info-items { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.contact-info-item h4 { font-size: 1rem; margin-bottom: 0.2rem; }
.contact-info-item p { font-size: 0.9rem; color: var(--gray-600); margin: 0; }
.contact-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
}
.contact-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-700);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}
.contact-social a:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); }
.contact-form-wrapper {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-800);
}
.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: var(--font-primary);
    transition: var(--transition);
    background: var(--white);
    color: var(--gray-800);
}
.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255,107,53,0.1);
}
textarea.form-control { resize: vertical; min-height: 120px; }
.form-error { color: var(--danger); font-size: 0.8rem; margin-top: 0.25rem; display: block; }
.alert-success {
    background: #d4edda;
    color: #155724;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.map-section { margin-top: -4px; }

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .contact-form .form-row { grid-template-columns: 1fr; }
}

/*   
   FAQ PAGE
 */
.faq-list { display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    cursor: pointer;
    font-family: var(--font-primary);
    text-align: left;
}
.faq-question i {
    transition: var(--transition);
    color: var(--primary);
    flex-shrink: 0;
    margin-left: 1rem;
}
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-item.active .faq-question { color: var(--primary); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.95rem;
}

/*   
   SAVINGS PAGE
 */
.savings-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}
.savings-step {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
}
.savings-step-number {
    position: absolute;
    top: 0;
    right: 1rem;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255,107,53,0.08);
    line-height: 1;
}
.savings-step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.25rem;
}
.savings-step h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.savings-step p { font-size: 0.9rem; color: var(--gray-600); }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.benefit-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.benefit-card i { font-size: 2rem; color: var(--primary); margin-bottom: 1rem; }
.benefit-card h4 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.benefit-card p { font-size: 0.9rem; color: var(--gray-600); }

@media (max-width: 992px) {
    .savings-steps { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .savings-steps { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
}

/*   
   PACKAGE DETAIL PAGE
 */
.package-detail-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}
.package-detail-hero-img {
    width: 100%;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}
.package-detail-badges {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.package-detail-badges .package-badge {
    position: static;
}
.package-detail-main h2 {
    font-family: var(--font-secondary);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}
.package-detail-main p { line-height: 1.8; color: var(--gray-700); margin-bottom: 1rem; }
.package-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--gray-100);
    border-radius: var(--radius-md);
}
.highlight {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.highlight i { font-size: 1.5rem; color: var(--primary); }
.highlight strong { display: block; font-size: 0.85rem; color: var(--gray-600); }
.highlight span { font-size: 1rem; font-weight: 600; color: var(--gray-800); }

.booking-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
}
.booking-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}
.booking-price small {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--gray-600);
}
.booking-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}
.booking-meta i { color: var(--primary); margin-right: 0.5rem; }
.booking-help {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}
.booking-help p { font-size: 0.85rem; color: var(--gray-600); margin-bottom: 0.3rem; }
.booking-help a {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
    font-size: 0.95rem;
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 0.75rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}
.btn-outline-white:hover { background: var(--white); color: var(--primary); }

@media (max-width: 992px) {
    .package-detail-grid { grid-template-columns: 1fr; }
    .booking-card { position: static; }
    .package-highlights { grid-template-columns: 1fr; }
}

/*   
   LEGAL PAGES (Terms, Privacy)
 */
.legal-content h2 {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    color: var(--gray-900);
    margin: 2rem 0 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}
.legal-content h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.legal-content p { line-height: 1.8; color: var(--gray-700); margin-bottom: 0.75rem; }
.legal-content a { color: var(--primary); }

/*   
   BG UTILITIES
 */
.bg-gradient {
    background: var(--gradient-primary);
}
.text-center { text-align: center; }
.text-white, .text-white h2, .text-white p { color: var(--white) !important; }
.btn-white {
    background: var(--white);
    color: var(--primary);
    padding: 0.75rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.9rem; }

/* Section Badge */
.section-badge {
    display: inline-block;
    background: rgba(255,107,53,0.1);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

/* Fade in up animation class */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

/*   
   TOP INFO BAR
 */
.top-info-bar {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    font-size: 0.78rem;
    padding: 0.45rem 0;
    position: relative;
    z-index: 10000;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-info-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.top-bar-left a, .top-bar-left span {
    color: rgba(255,255,255,0.75);
    font-size: 0.78rem;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.top-bar-left a:hover { color: var(--primary); }
.top-bar-left i { font-size: 0.72rem; color: var(--primary); }
.top-bar-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.15); }
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.top-bar-social {
    display: flex;
    gap: 0.5rem;
}
.top-bar-social a {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.7rem;
    transition: all 0.25s;
}
.top-bar-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}
.top-bar-auth {
    color: rgba(255,255,255,0.75);
    font-size: 0.78rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    transition: all 0.2s;
}
.top-bar-auth:hover { color: var(--primary); background: rgba(255,107,53,0.08); }
.top-bar-user {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.78rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

/* Navbar always sticks at top */
.navbar { position: sticky; top: 0; }

/*   
   NAV LINK ICONS (subtle)
 */
.nav-link-icon {
    font-size: 0.72rem;
    margin-right: 3px;
    opacity: 0.6;
    transition: opacity 0.2s;
}
.nav-menu a:hover .nav-link-icon,
.nav-menu a.active .nav-link-icon { opacity: 1; }

/*   
   NAV DROPDOWN & MEGA MENU
 */
.nav-dropdown {
    position: relative;
}
.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.nav-arrow {
    font-size: 0.6rem;
    transition: transform 0.3s;
    margin-left: 2px;
}
.nav-dropdown:hover .nav-arrow { transform: rotate(180deg); }

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.04);
    padding: 0.75rem 0;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    z-index: 9999;
}
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 1.25rem;
    color: var(--gray-700) !important;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s;
    background: none !important;
}
.nav-dropdown-menu a::after { display: none !important; }
.nav-dropdown-menu a:hover {
    background: rgba(255,107,53,0.06) !important;
    color: var(--primary) !important;
    padding-left: 1.5rem;
}
.nav-dropdown-menu a i { color: var(--primary); font-size: 0.75rem; width: 16px; text-align: center; }

.mega-badge {
    margin-left: auto;
    background: rgba(255,107,53,0.1);
    color: var(--primary);
    padding: 0.1rem 0.5rem;
    border-radius: 12px;
    font-size: 0.68rem;
    font-weight: 700;
}
.mega-price {
    margin-left: auto;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.78rem;
}
.dropdown-footer-link {
    border-top: 1px solid var(--gray-200);
    margin-top: 0.5rem;
    padding-top: 0.5rem;
}
.dropdown-footer-link a {
    color: var(--primary) !important;
    font-weight: 600 !important;
    justify-content: center;
}

/* ═══ Mega Menu (Packages) ═══ */
.nav-mega-menu {
    min-width: 680px;
    padding: 0;
    left: 50%;
}
.mega-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 200px;
    gap: 0;
}
.mega-menu-col {
    padding: 1rem 0;
    border-right: 1px solid var(--gray-200);
}
.mega-menu-col:last-child { border-right: none; }
.mega-menu-title {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    font-weight: 700;
    padding: 0.3rem 1.25rem 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.mega-menu-title i { color: var(--primary); font-size: 0.7rem; }

.mega-menu-featured {
    padding: 0.75rem;
}
.mega-featured-card {
    display: block !important;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    padding: 0 !important;
}
.mega-featured-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.mega-featured-card:hover img { transform: scale(1.08); }
.mega-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0.75rem;
    color: white;
}
.mega-featured-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: var(--primary);
    color: white;
    padding: 0.15rem 0.5rem;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 700;
}
.mega-featured-overlay h6 {
    color: white;
    font-size: 0.82rem;
    font-weight: 700;
    margin: 0 0 2px;
}
.mega-featured-overlay span {
    font-size: 0.72rem;
    color: var(--accent);
    font-weight: 600;
}

.mega-menu-footer {
    border-top: 1px solid var(--gray-200);
    padding: 0.6rem 1.25rem;
    text-align: center;
}
.mega-menu-footer a {
    color: var(--primary) !important;
    font-weight: 600 !important;
    font-size: 0.85rem;
    display: inline-flex !important;
    align-items: center;
    gap: 0.4rem;
    justify-content: center;
    padding: 0.3rem 0 !important;
}
.mega-menu-footer a:hover {
    background: none !important;
    padding-left: 0 !important;
}

/* ---- Package Detail Styling ---- */
.pkg-hero { min-height: 65vh; }

.pkg-hero-badges {
    display: flex;
    gap: .5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.pkg-hero-badge {
    padding: .3rem 1rem;
    border-radius: var(--radius-full);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.badge-primary { background: var(--primary); color: #fff; }
.badge-secondary { background: var(--secondary); color: #fff; }

.pkg-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    color: rgba(255,255,255,.9);
    font-size: .9rem;
    margin-bottom: 1rem;
}

.pkg-hero-meta span {
    display: flex;
    align-items: center;
    gap: .4rem;
}

.pkg-hero-meta i { color: var(--accent); }

/* ---- Stats Bar ---- */
.pkg-stats-bar {
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--gray-200);
}

.pkg-stats-inner {
    display: flex;
    align-items: center;
    gap: 0;
    padding: .85rem 0;
    overflow-x: auto;
}

.pkg-stat {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 0 2rem;
    flex-shrink: 0;
}

.pkg-stat > i {
    font-size: 1.3rem;
    color: var(--primary);
}

.pkg-stat-label {
    display: block;
    font-size: .72rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.pkg-stat-value {
    display: block;
    font-size: .92rem;
    font-weight: 700;
    color: var(--gray-900);
}

.pkg-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--gray-200);
    flex-shrink: 0;
}

.pkg-stats-cta {
    margin-left: auto;
    padding-right: 1rem;
    flex-shrink: 0;
}

/* ---- Main Image ---- */
.pkg-main-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.pkg-main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* ---- Tabs ---- */
.pkg-tabs {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--gray-200);
    padding-bottom: 0;
}

.pkg-tab {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .65rem 1.25rem;
    border: none;
    background: transparent;
    color: var(--gray-600);
    font-size: .88rem;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    border-radius: 0;
    transition: var(--transition);
    font-family: var(--font-primary);
}

.pkg-tab:hover { color: var(--primary); }

.pkg-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.pkg-tab-content { display: none; }
.pkg-tab-content.active { display: block; }

/* ---- Section Cards ---- */
.pkg-section-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
    border: 1px solid var(--gray-200);
}

.pkg-section-card h3 {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    padding-bottom: .75rem;
    border-bottom: 2px solid var(--gray-200);
}

.pkg-section-card h3 i { color: var(--primary); }

.pkg-short-desc {
    font-size: 1.02rem;
    color: var(--gray-600);
    line-height: 1.8;
}

/* ---- Highlights Grid ---- */
.pkg-highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.pkg-highlight-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.pkg-highlight-card:hover {
    border-color: var(--primary);
    background: rgba(255,107,53,.04);
}

.pkg-highlight-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(255,107,53,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary);
    flex-shrink: 0;
}

.pkg-highlight-label {
    display: block;
    font-size: .75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: .15rem;
}

.pkg-highlight-value {
    display: block;
    font-size: .95rem;
    font-weight: 700;
    color: var(--gray-900);
}

/* ---- Checklist ---- */
.pkg-checklist {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.pkg-checklist-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .92rem;
    color: var(--gray-700);
}

.pkg-checklist-item i { font-size: 1rem; flex-shrink: 0; }
.pkg-checklist-item.included i { color: var(--success); }
.pkg-checklist-item.excluded i { color: var(--danger); }
.pkg-checklist-item:not(.included):not(.excluded) i { color: var(--primary); }

/* ---- Includes Grid ---- */
.pkg-inc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.pkg-inc-title {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.pkg-inc-title.included { color: var(--success); }
.pkg-inc-title.excluded { color: var(--danger); }

/* ---- Rich Content (Itinerary) ---- */
.pkg-rich-content h2,
.pkg-rich-content h3,
.pkg-rich-content h4 {
    color: var(--dark);
    margin: 1.5rem 0 .75rem;
}

.pkg-rich-content p { color: var(--gray-700); line-height: 1.8; }
.pkg-rich-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.pkg-rich-content ul li { color: var(--gray-700); margin-bottom: .4rem; }

/* ---- Booking Sidebar ---- */
.booking-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    position: sticky;
    top: 80px;
}

.pkg-booking-price {
    margin-bottom: .75rem;
}

.pkg-price-amount {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.pkg-price-label {
    font-size: .82rem;
    color: var(--gray-500);
}

.pkg-booking-rating {
    display: flex;
    align-items: center;
    gap: .3rem;
    font-size: .88rem;
    color: var(--gray-600);
    margin-bottom: .5rem;
}

.pkg-booking-rating i { font-size: .85rem; }

.pkg-booking-divider {
    border: none;
    border-top: 1px solid var(--gray-200);
    margin: 1.25rem 0;
}

.pkg-booking-details {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.pkg-booking-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .88rem;
}

.pkg-booking-detail span {
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: .4rem;
}

.pkg-booking-detail i { color: var(--primary); }
.pkg-booking-detail strong { color: var(--gray-900); font-weight: 600; }

/* ---- Trust Badges ---- */
.pkg-trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .5rem;
    margin-top: 1.25rem;
}

.pkg-trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .35rem;
    text-align: center;
    padding: .75rem .5rem;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    font-size: .72rem;
    color: var(--gray-600);
    font-weight: 500;
}

.pkg-trust-badge i {
    font-size: 1.1rem;
    color: var(--primary);
}

/* ---- Help / Phone ---- */
.pkg-booking-help {
    text-align: center;
}

.pkg-booking-help p {
    font-size: .82rem;
    color: var(--gray-500);
    margin-bottom: .3rem;
}

.pkg-booking-phone {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

.pkg-booking-phone:hover { color: var(--primary-dark); }

/* ---- Share Card ---- */
.pkg-share-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.pkg-share-card > span {
    font-size: .88rem;
    font-weight: 600;
    color: var(--gray-700);
    white-space: nowrap;
}

.pkg-share-btns {
    display: flex;
    gap: .5rem;
}

.pkg-share-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
    color: var(--white);
}

.pkg-share-btn.whatsapp { background: #25D366; }
.pkg-share-btn.facebook { background: #1877F2; }
.pkg-share-btn.twitter  { background: #1DA1F2; }
.pkg-share-btn.copy     { background: var(--gray-400); color: var(--gray-700); }

.pkg-share-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* ---- Related Section ---- */
.pkg-related { margin-top: 5rem; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .package-detail-grid {
        grid-template-columns: 1fr;
    }
    .booking-card { position: static; }
    .pkg-stats-bar { display: none; }
}

@media (max-width: 768px) {
    .pkg-highlights-grid { grid-template-columns: 1fr; }
    .pkg-inc-grid { grid-template-columns: 1fr; }
    .pkg-trust-badges { grid-template-columns: repeat(3,1fr); }
    .pkg-main-image img { height: 260px; }
    .pkg-hero { min-height: 50vh; }
    .pkg-hero-meta { gap: .75rem; font-size: .82rem; }
}

/* CTA buttons in nav */
.nav-cta-btn { white-space: nowrap; }
.nav-logout-btn { margin-left: 4px; }

@media (max-width: 1200px) {
    .nav-mega-menu { min-width: 520px; }
    .mega-menu-grid { grid-template-columns: 1fr 1fr; }
    .mega-menu-featured { display: none; }
}

@media (max-width: 992px) {
    .top-info-bar { display: none; }
    .nav-link-icon { display: none; }
    .nav-arrow { display: none; }
    .nav-dropdown-menu { display: none !important; }
    .nav-cta-text { display: none; }
    /* Show hamburger, hide desktop nav & auth buttons */
    .nav-toggle { display: flex !important; }
    .nav-menu { display: none !important; }
    .nav-cta-btn { display: none !important; }
    .nav-logout-btn { display: none !important; }
}

@media (max-width: 576px) {
    .mobile-sidebar { width: 280px; }
    .navbar-brand span { font-size: 1.15rem; }
}

/* ---- Destinations page styling ---- */
.dest-hero { min-height: 70vh; }

.dest-hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 1.75rem 0 1.25rem;
    flex-wrap: wrap;
}

.dest-hero-stat {
    text-align: center;
}

.dest-hero-stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.dest-hero-stat-lbl {
    display: block;
    font-size: .82rem;
    color: rgba(255,255,255,.8);
    margin-top: .2rem;
}

.dest-hero-stat-div {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,.25);
}

/* ---- Filter Bar ---- */
.dest-filter-bar {
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 100;
}

.dest-filter-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .85rem 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.dest-filter-inner::-webkit-scrollbar { display: none; }

.dest-search-wrap {
    position: relative;
    flex-shrink: 0;
}

.dest-search-wrap i {
    position: absolute;
    left: .85rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-500);
    font-size: .85rem;
    pointer-events: none;
}

.dest-search-input {
    padding: .55rem .85rem .55rem 2.25rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-size: .88rem;
    color: var(--gray-700);
    transition: var(--transition);
    width: 220px;
    background: var(--gray-100);
}

.dest-search-input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(255,107,53,.1);
}

.dest-filter-btns {
    display: flex;
    gap: .4rem;
    flex-shrink: 0;
}

.dest-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .45rem 1rem;
    border-radius: var(--radius-full);
    border: 2px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-700);
    font-size: .82rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    font-family: var(--font-primary);
}

.dest-filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.dest-filter-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 3px 12px rgba(255,107,53,.3);
}

.dest-count-wrap { margin-left: auto; flex-shrink: 0; }

.dest-count {
    font-size: .82rem;
    color: var(--gray-500);
    white-space: nowrap;
}

/* ---- Destinations Grid ---- */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

/* ---- Destination Card ---- */
.dest-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

.dest-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.dest-card.hidden { display: none; }

.dest-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.dest-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.dest-card:hover .dest-card-image img {
    transform: scale(1.08);
}

/* Package count badge */
.dest-pkg-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(26,26,46,.75);
    color: var(--white);
    padding: .3rem .85rem;
    border-radius: var(--radius-full);
    font-size: .75rem;
    font-weight: 600;
    z-index: 2;
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    gap: .35rem;
    transition: var(--transition);
}

.dest-card:hover .dest-pkg-badge {
    background: var(--primary);
}

/* Overlay */
.dest-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(26,26,46,.95) 0%,
        rgba(26,26,46,.5) 50%,
        rgba(0,0,0,.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    opacity: 0;
    transition: opacity .35s ease;
}

.dest-card:hover .dest-card-overlay { opacity: 1; }

.dest-card-overlay-top { display: flex; justify-content: flex-start; }

.dest-country-pill {
    background: rgba(255,107,53,.9);
    color: #fff;
    font-size: .72rem;
    font-weight: 600;
    padding: .25rem .75rem;
    border-radius: var(--radius-full);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    gap: .3rem;
    transform: translateY(-6px);
    transition: transform .3s ease;
}

.dest-card:hover .dest-country-pill { transform: translateY(0); }

.dest-card-overlay-body {
    transform: translateY(10px);
    transition: transform .35s ease;
}

.dest-card:hover .dest-card-overlay-body { transform: translateY(0); }

.dest-card-overlay-body h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: .4rem;
}

.dest-card-overlay-body p {
    color: rgba(255,255,255,.8);
    font-size: .85rem;
    line-height: 1.6;
    margin-bottom: .75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dest-card-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: .85rem;
    font-size: .78rem;
    color: rgba(255,255,255,.75);
}

.dest-card-meta i { color: var(--accent); }

.dest-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .82rem;
}

/* Card Footer (always visible) */
.dest-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--gray-200);
    background: var(--white);
}

.dest-card-country {
    display: block;
    font-size: .75rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: .2rem;
}

.dest-card-country i { margin-right: .2rem; }

.dest-card-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
}

.dest-arrow-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,107,53,.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    transition: var(--transition);
    flex-shrink: 0;
    text-decoration: none;
}

.dest-card:hover .dest-arrow-btn {
    background: var(--primary);
    color: var(--white);
    transform: translateX(3px);
}

/* ---- Empty State ---- */
.dest-empty {
    text-align: center;
    padding: 5rem 2rem;
    color: var(--gray-600);
}

.dest-empty i {
    font-size: 3.5rem;
    color: var(--gray-300);
    display: block;
    margin-bottom: 1rem;
}

.dest-empty h3 {
    font-size: 1.3rem;
    margin-bottom: .5rem;
    color: var(--gray-700);
}

.dest-empty p { margin-bottom: 1.5rem; }

/* ---- CTA Section ---- */
.dest-cta-section {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
}

.dest-cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.dest-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(255,107,53,.92) 0%,
        rgba(0,78,137,.92) 100%);
}

.dest-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.dest-cta-inner h2 {
    color: var(--white);
    font-family: var(--font-secondary);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin: .5rem 0 1rem;
}

.dest-cta-inner p {
    color: rgba(255,255,255,.9);
    font-size: 1.05rem;
    max-width: 580px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.dest-cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.dest-cta-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: rgba(255,255,255,.85);
    font-size: .88rem;
    font-weight: 500;
}

.dest-cta-features i {
    color: var(--accent);
    margin-right: .3rem;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .dest-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .dest-grid { grid-template-columns: 1fr; }
    .dest-card-image { height: 240px; }
    .dest-hero { min-height: 55vh; }
    .dest-hero-stats { gap: 1.25rem; }
    .dest-hero-stat-num { font-size: 1.5rem; }
    .dest-filter-inner { flex-wrap: nowrap; }
    .dest-search-input { width: 160px; }
    .dest-cta-section { padding: 4rem 0; }
}  
