/* ============================================
   ROYAL TRAVELS - Premium Travel Website CSS
   White + Navy Blue + Royal Blue Theme
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@300;400;600&display=swap');

/* ============ CSS VARIABLES ============ */
:root {
    --primary: #1d4ed8;
    --primary-light: #3b82f6;
    --primary-dark: #1e3a8a;
    --accent: #2563eb;
    --accent-light: #60a5fa;
    --accent-pale: #eff6ff;
    --white: #ffffff;
    --off-white: #f9f8f6;
    --text-dark: #0d1117;
    --text-mid: #374151;
    --text-light: #6b7280;
    --border: #e5e7eb;
    --shadow-sm: 0 2px 8px rgba(10, 36, 99, 0.08);
    --shadow-md: 0 8px 32px rgba(10, 36, 99, 0.12);
    --shadow-lg: 0 20px 60px rgba(10, 36, 99, 0.18);
    --shadow-accent: 0 4px 20px rgba(37, 99, 235, 0.2);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s ease;
    --header-h: 80px;
}

/* ============ RESET & BASE ============ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    line-height: 1.1;
    color: var(--primary);
    letter-spacing: -0.5px;
}

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

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

ul {
    list-style: none;
}

/* ============ UTILITY CLASSES ============ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-pad {
    padding: 90px 0;
}

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

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

.section-label {
    color: var(--primary);
    background: var(--accent-pale);
    padding: 6px 16px;
    border-radius: 50px;
    border-left: 3px solid var(--accent);
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 300;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto 48px;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.7;
}

.divider-accent {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 2px;
    margin: 16px auto 40px;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(10, 36, 99, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 36, 99, 0.4);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--white);
    box-shadow: var(--shadow-accent);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.7);
}

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

.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

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

.btn-sm {
    padding: 10px 22px;
    font-size: 13px;
}

.btn-lg {
    padding: 14px 30px;
    font-size: 15px;
}

/* ============ HEADER / NAVBAR ============ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: var(--white);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(10, 36, 99, 0.12);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: 24px;
}

.header.transparent {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text-wrapper .brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 300;
    color: var(--primary);
    line-height: 1;
    letter-spacing: 1px;
}

.logo-text-wrapper .tagline {
    font-size: 8px;
    color: var(--accent);
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 4px;
}

.header.transparent .logo-text-wrapper .brand,
.header.transparent .logo-text-wrapper .tagline {
    color: var(--white);
    opacity: 0.95;
}

.logo-premium {
    display: none;
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.header.scrolled .logo-premium,
.header.menu-open .logo-premium {
    display: block;
    height: 52px;
}

.header.scrolled .logo-text-wrapper,
.header.menu-open .logo-text-wrapper {
    display: none;
}

.header.transparent .nav-link {
    color: var(--white);
}

.header.transparent .nav-link:hover,
.header.transparent .nav-link.active {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.header.transparent .btn-admin-login {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.8);
    background: transparent;
}

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

.header.transparent .hamburger {
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 10px;
}

.header.transparent .hamburger span {
    background: var(--white);
}

.header.menu-open {
    background: var(--white);
    border-bottom-color: var(--border);
    box-shadow: 0 10px 30px rgba(10, 36, 99, 0.12);
}

.header.menu-open .nav-link {
    color: #1b2a4a;
}


.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

/* Removed old logo styles */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 400;
    color: var(--text-mid);
    transition: var(--transition);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(10, 36, 99, 0.06);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.nav-cta {
    margin-left: 16px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border: none;
    background: none;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============ HERO SECTION ============ */
.hero {
    position: relative;
    height: 110vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--primary-dark);
    margin-top: calc(-1 * var(--header-h));
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-image: url('../images/hero_taj_mahal_hd.png');
    transition: transform 0.5s ease;
    filter: brightness(0.9);
    /* Extra brightness to ensure pop */
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    /* Very subtle darken to keep it bright */
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 950px;
    animation: fadeUp 1s ease both;
    text-align: center;
    margin: 0 auto;
    padding: 20px;
    /* Subtle glow backdrop to make text pop on bright image */
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.25) 0%, transparent 80%);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
    padding: 10px 24px;
    border-radius: 100px;
    background: rgba(0, 0, 0, 0.5);
    /* Darker backdrop for badge */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
}

.hero-badge i {
    color: var(--accent);
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 7vw, 90px);
    font-weight: 300;
    color: var(--white);
    line-height: 1;
    margin-bottom: 24px;
    /* Multi-layer shadow for maximum readability on bright backgrounds */
    text-shadow:
        0 4px 12px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.hero-title .highlight {
    font-style: italic;
    font-weight: 400;
    color: var(--white);
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 0;
    width: 100%;
    height: 14px;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.7), transparent);
    z-index: -1;
    border-radius: 4px;
    transform: rotate(-1.5deg);
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--white);
    /* Brighter text color but with shadowing */
    margin: 0 auto 48px;
    font-weight: 400;
    line-height: 1.8;
    max-width: 720px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 1);
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: nowrap;
    margin-bottom: 20px;
    justify-content: center;
}

.hero-actions .btn {
    white-space: nowrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

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

.hero-stat .num {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-light);
    display: block;
    line-height: 1;
}

.hero-stat .label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {

    0%,
    100% {
        transform: scaleY(0.5);
        opacity: 0.4;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

/* ============ SEARCH BOX ============ */
.search-section {
    background: var(--white);
    position: relative;
    z-index: 5;
    margin-top: -60px;
}

.search-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 32px 36px;
    border: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 16px;
    align-items: end;
}

.search-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.search-field label {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.search-field select,
.search-field input {
    height: 52px;
    padding: 0 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    color: var(--text-dark);
    background: var(--off-white);
    transition: var(--transition);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    outline: none;
}

.search-field select:focus,
.search-field input:focus {
    border-color: var(--primary);
    background: var(--white);
}

.search-btn {
    height: 52px;
}

/* ============ DESTINATION ROWS ============ */
.dest-rows {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 60px;
}

.dest-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.dest-row.reverse {
    flex-direction: row-reverse;
}

.dest-row-img {
    flex: 1.2;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 450px;
    box-shadow: var(--shadow-lg);
}

.dest-row-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.dest-row:hover .dest-row-img img {
    transform: scale(1.05);
}

.dest-row-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: var(--white);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.dest-row-info {
    flex: 1;
}

.dest-row-num {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    font-weight: 700;
    color: rgba(29, 78, 216, 0.1);
    line-height: 1;
    margin-bottom: -10px;
    display: block;
}

.dest-row-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 300;
    color: var(--primary);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.dest-row-desc {
    font-size: 18px;
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 32px;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.dest-row-meta {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.meta-item i {
    color: var(--accent);
    font-size: 20px;
}

.meta-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

@media (max-width: 992px) {

    .dest-row,
    .dest-row.reverse {
        flex-direction: column;
        gap: 32px;
    }

    .dest-row-img {
        width: 100%;
        height: 350px;
    }
}

/* ============ PACKAGE ROWS ============ */
.pkg-rows {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 60px;
}

.pkg-horizontal-card {
    display: flex;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.pkg-horizontal-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-light);
}

.pkg-h-img {
    flex: 0 0 400px;
    height: 320px;
    position: relative;
}

.pkg-h-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pkg-h-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.pkg-h-content {
    flex: 1;
    padding: 32px 40px;
    display: flex;
    flex-direction: column;
}

.pkg-h-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.pkg-h-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 300;
    color: var(--primary);
}

.pkg-h-price {
    text-align: right;
}

.pkg-h-price .curr {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--accent);
}

.pkg-h-price .unit {
    font-size: 12px;
    color: var(--text-light);
}

.pkg-h-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.pkg-h-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-mid);
}

.pkg-h-meta i {
    color: var(--accent);
}

.pkg-h-desc {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: auto;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pkg-h-actions {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

@media (max-width: 992px) {
    .pkg-horizontal-card {
        flex-direction: column;
    }

    .pkg-h-img {
        flex: 0 0 250px;
        width: 100%;
    }
}

/* ============ DESTINATIONS GRID ============ */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.dest-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    background: var(--white);
    border: 1px solid var(--border);
    position: relative;
}

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

.dest-img-wrap {
    position: relative;
    height: 260px;
    overflow: hidden;
}

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

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

.dest-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(6, 21, 64, 0.7) 100%);
}

.dest-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--accent);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.dest-info {
    padding: 24px;
}

.dest-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.dest-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.dest-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-light);
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.dest-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dest-explore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.dest-explore:hover {
    color: var(--accent);
    gap: 10px;
}

/* ============ PACKAGES SECTION ============ */
.pkg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.pkg-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pkg-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.pkg-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.pkg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pkg-card:hover .pkg-img img {
    transform: scale(1.06);
}

.pkg-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.pkg-duration-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(10, 36, 99, 0.85);
    color: var(--white);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.pkg-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pkg-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.pkg-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 20px;
}

.pkg-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    gap: 12px;
    flex-wrap: wrap;
}

.pkg-price .original {
    font-size: 13px;
    color: var(--text-light);
    text-decoration: line-through;
    display: block;
}

.pkg-price .current {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
}

.pkg-price .per {
    font-size: 12px;
    color: var(--text-light);
}

.pkg-h-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pkg-h-actions .btn {
    min-width: 96px;
    justify-content: center;
    font-size: 14px;
    padding: 10px 18px;
    flex: 1 1 0;
    min-width: 0;
}

.pkg-highlights {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.pkg-highlight {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-mid);
}

.pkg-highlight .icon {
    color: var(--accent);
    font-size: 16px;
}

/* ============ WHY CHOOSE US ============ */
.why-section {
    background: var(--off-white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.why-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: var(--transition);
}

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

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.why-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--white);
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    transform: rotate(5deg) scale(1.05);
}

.why-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.why-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============ TESTIMONIAL MARQUEE ============ */
.marquee-track-wrap {
    overflow: hidden;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.marquee-row {
    display: flex;
    width: 100%;
}

.marquee-content {
    display: flex;
    gap: 20px;
    animation: marquee-track linear infinite;
}

.marquee-left .marquee-content {
    animation-duration: 60s;
}

.marquee-right .marquee-content {
    animation-duration: 70s;
    animation-direction: reverse;
}

.testi-bubble {
    flex: 0 0 450px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    transition: var(--transition);
}

.testi-bubble:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Google-like look removed as per user request */

.bubble-stars {
    color: var(--accent-light);
    font-size: 14px;
    margin-bottom: 12px;
}

.testi-bubble-content p {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testi-bubble-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bubble-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--off-white);
    border: 2px solid var(--white);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.bubble-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bubble-info {
    display: flex;
    flex-direction: column;
}

.bubble-info .name {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}

.bubble-info .loc {
    font-size: 12px;
    color: var(--text-light);
}

@keyframes marquee-track {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-row:hover .marquee-content {
    animation-play-state: paused;
}

/* ============ CTA SECTION ============ */
.cta-section {
    background: var(--white);
    padding: 90px 0;
}

.cta-box {
    background: var(--off-white);
    border-radius: 32px;
    padding: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
}

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

.cta-box .section-title {
    color: var(--primary);
    margin-bottom: 16px;
}

.cta-subtitle {
    color: var(--text-mid);
    font-size: 17px;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-box-dark {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-color: rgba(255, 255, 255, 0.2);
}

.cta-box-dark .section-title {
    color: var(--white);
}

.cta-box-dark .cta-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

/* ============ FOOTER ============ */
.footer {
    background: var(--white);
    color: var(--text-mid);
    padding: 70px 0 0;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
}



.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo img {
    height: 48px;
    opacity: 0.9;
}

.footer-logo .brand {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--primary);
    font-weight: 700;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
    transition: var(--transition);
    text-decoration: none;
    border: 1px solid var(--border);
}

.social-link:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-heading {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-mid);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.footer-links a::before {
    content: none;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ============ CONTACT PAGE ============ */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text-mid);
}

.contact-item .icon {
    color: var(--accent);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-light);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: var(--text-light);
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

/* ============ WHATSAPP FLOATING BUTTON ============ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    transition: var(--transition);
    animation: pulse-wa 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: white;
}

@keyframes pulse-wa {

    0%,
    100% {
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 6px 50px rgba(37, 211, 102, 0.7), 0 0 0 12px rgba(37, 211, 102, 0.1);
    }
}

/* ============ BOOKING FORM ============ */
.booking-form-section {
    background: var(--off-white);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.booking-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.form-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-mid);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    color: var(--text-dark);
    transition: var(--transition);
    outline: none;
    font-family: 'Inter', sans-serif;
    background: var(--off-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(10, 36, 99, 0.06);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    display: none;
    background: #f0fdf4;
    border: 2px solid #86efac;
    border-radius: var(--radius-sm);
    padding: 20px;
    text-align: center;
    color: #15803d;
    font-weight: 600;
    margin-top: 20px;
}



.booking-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    color: var(--text-dark);
    margin-bottom: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.booking-info-card h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 20px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-mid);
}

.info-item .icon {
    color: var(--primary);
    font-size: 20px;
    width: 24px;
}

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
    margin-top: var(--header-h);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 70px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('../assets/images/hero_taj_mahal.png') center/cover no-repeat;
    opacity: 0.12;
}

.page-hero .section-title {
    color: var(--white);
}

.page-hero .section-label {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    border-left-color: rgba(255, 255, 255, 0.7);
}

.page-hero .breadcrumb {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.page-hero .breadcrumb a {
    color: var(--white);
}

.page-hero .breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 8px;
}

/* ============ ADMIN STYLES ============ */
.admin-header {
    background: var(--white);
    height: 64px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border);
}

.admin-sidebar {
    width: 260px;
    background: var(--white);
    min-height: 100vh;
    position: fixed;
    top: 64px;
    left: 0;
    padding: 24px 0;
    overflow-y: auto;
    border-right: 1px solid var(--border);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.admin-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    color: var(--text-mid);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    border-radius: 0 50px 50px 0;
    margin-right: 16px;
}

.admin-nav-link:hover {
    color: var(--primary);
    background: rgba(10, 36, 99, 0.04);
}

.admin-nav-link.active {
    color: var(--primary);
    background: rgba(10, 36, 99, 0.08);
    font-weight: 700;
}

.admin-content {
    margin-left: 260px;
    margin-top: 64px;
    padding: 32px;
    min-height: calc(100vh - 64px);
    background: var(--off-white);
}

.admin-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    overflow: hidden;
}

.admin-card-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-card-header h2 {
    font-size: 18px;
    color: var(--primary);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.data-table th {
    background: var(--off-white);
    padding: 12px 16px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-mid);
    border-bottom: 1px solid var(--border);
}

.data-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text-dark);
    vertical-align: middle;
}

.data-table tr:hover td {
    background: var(--off-white);
}

.data-table img {
    width: 60px;
    height: 45px;
    object-fit: cover;
    border-radius: 6px;
}

.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.badge-pending {
    background: #fef3c7;
    color: #92400e;
}

.badge-confirmed {
    background: #d1fae5;
    color: #065f46;
}

.badge-cancelled {
    background: #fee2e2;
    color: #991b1b;
}

.badge-completed {
    background: #dbeafe;
    color: #1e40af;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.stat-icon.blue {
    background: rgba(10, 36, 99, 0.1);
    color: var(--primary);
}

.stat-icon.gold {
    background: rgba(234, 179, 8, 0.1);
    color: #ca8a04;
}

.stat-icon.accent {
    background: rgba(37, 99, 235, 0.1);
    color: var(--accent);
}

.stat-icon.green {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 4px;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
}

/* ============ PACKAGE DETAIL ============ */
.pkg-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.pkg-detail-main {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    padding: 28px;
}

.pkg-gallery {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(10, 36, 99, 0.08);
    background: #0b1530;
}

.pkg-gallery-main {
    position: relative;
    height: 450px;
}

.pkg-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.6s ease;
}

.pkg-gallery:hover .pkg-gallery-main img {
    transform: scale(1.06);
}

.pkg-detail-title {
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.pkg-detail-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.pkg-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-mid);
    background: var(--off-white);
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(10, 36, 99, 0.08);
}

.pkg-meta-item .icon {
    color: var(--accent);
    font-size: 18px;
}

.pkg-tabs {
    display: flex;
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
    gap: 10px;
    flex-wrap: wrap;
}

.pkg-tab {
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: var(--transition);
    background: var(--off-white);
}

.pkg-tab.active,
.pkg-tab:hover {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: transparent;
}

.pkg-tab-content {
    display: none;
}

.pkg-tab-content.active {
    display: block;
}

.pkg-itinerary {
    color: var(--text-mid);
    line-height: 1.9;
    font-size: 15px;
    background: var(--off-white);
    border-radius: var(--radius-md);
    padding: 20px 22px;
    border: 1px dashed rgba(10, 36, 99, 0.15);
}

.inclusion-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.inclusion-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-mid);
}

.inclusion-item .icon-check {
    color: #10b981;
    font-size: 18px;
}

.inclusion-item .icon-x {
    color: #ef4444;
    font-size: 18px;
}

.booking-sidebar {
    position: sticky;
    top: 100px;
}

.booking-sidebar-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border);
    overflow: hidden;
}

.bsc-header {
    background: linear-gradient(135deg, var(--primary), #1b4bd1);
    padding: 24px;
    text-align: center;
    color: var(--white);
}

.bsc-price-now {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--white);
}

.bsc-price-was {
    font-size: 16px;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.5);
}

.bsc-per {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.bsc-body {
    padding: 24px;
}

.booking-sidebar-card .form-group label {
    font-size: 12px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.booking-sidebar-card .form-group input,
.booking-sidebar-card .form-group select,
.booking-sidebar-card .form-group textarea {
    background: #f8faff;
    border-color: rgba(10, 36, 99, 0.12);
    border-radius: 12px;
    padding: 12px 14px;
}

.booking-sidebar-card .form-group input:focus,
.booking-sidebar-card .form-group select:focus,
.booking-sidebar-card .form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(10, 36, 99, 0.12);
}

.booking-sidebar-card .form-group textarea {
    min-height: 90px;
}

.booking-sidebar-card .btn.btn-accent {
    width: 100%;
    justify-content: center;
    border-radius: 12px;
    padding: 14px 18px;
}

/* ============ FILTER BAR ============ */
.filter-bar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    align-items: flex-end;
}

/* ============ PACKAGES PAGE REFRESH ============ */
.packages-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.packages-content {
    min-width: 0;
}

.filter-sidebar {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.sidebar-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.reset-link {
    font-size: 12px;
    color: var(--text-light);
    text-decoration: underline;
    font-weight: 600;
}

.filter-section {
    margin-bottom: 30px;
}

.filter-subtitle {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Range Input */
.price-input-wrap {
    padding: 10px 0;
}

.price-range {
    width: 100%;
    margin-bottom: 15px;
    accent-color: var(--accent);
}

.price-labels {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-mid);
}

/* Checkbox Style */
.checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-mid);
    position: relative;
}

.check-item input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.check-box {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 6px;
    display: block;
    transition: var(--transition);
}

.check-item input:checked~.check-box {
    background: var(--accent);
    border-color: var(--accent);
}

.check-item input:checked~.check-box::after {
    content: '';
    display: block;
    width: 10px;
    height: 5px;
    border: 2px solid white;
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    margin: 5px 0 0 4px;
}

/* Destination Pills */
.destination-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pill-item {
    cursor: pointer;
}

.pill-item input {
    display: none;
}

.pill-text {
    padding: 6px 14px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-mid);
    transition: var(--transition);
}

.pill-item input:checked+.pill-text {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Results Content */
.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 16px;
}

.sort-select {
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid var(--border);
    font-size: 14px;
    background: white;
}

.filter-sidebar .sort-select {
    width: 100%;
}

.rt-select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    background: linear-gradient(180deg, #ffffff, #f6f8ff);
    box-shadow: 0 8px 18px rgba(10, 36, 99, 0.08);
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--primary) 50%),
        linear-gradient(135deg, var(--primary) 50%, transparent 50%),
        linear-gradient(180deg, #ffffff, #f6f8ff);
    background-position:
        calc(100% - 18px) calc(50% - 3px),
        calc(100% - 12px) calc(50% - 3px),
        0 0;
    background-size: 6px 6px, 6px 6px, 100% 100%;
    background-repeat: no-repeat;
    outline: none;
    transition: var(--transition);
}

.results-header .rt-select {
    min-width: 220px;
    width: auto;
}

.rt-select:focus {
    border-color: var(--primary);
    box-shadow: none;
}

.rt-select:focus-visible {
    outline: none;
}

.rt-select option {
    font-weight: 600;
    color: var(--text-dark);
    background: #f7f9ff;
    padding: 10px 12px;
}

.rt-select-wrap {
    position: relative;
    width: 100%;
}

.rt-select-native {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

.rt-select-display {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    background: linear-gradient(180deg, #ffffff, #f6f8ff);
    box-shadow: 0 8px 18px rgba(10, 36, 99, 0.08);
    text-align: left;
    cursor: pointer;
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--primary) 50%),
        linear-gradient(135deg, var(--primary) 50%, transparent 50%),
        linear-gradient(180deg, #ffffff, #f6f8ff);
    background-position:
        calc(100% - 18px) calc(50% - 3px),
        calc(100% - 12px) calc(50% - 3px),
        0 0;
    background-size: 6px 6px, 6px 6px, 100% 100%;
    background-repeat: no-repeat;
    outline: none;
    transition: var(--transition);
}

.rt-select-wrap.open .rt-select-display {
    border-color: var(--primary);
}

.rt-select-options {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 16px 30px rgba(10, 36, 99, 0.15);
    z-index: 2000;
    max-height: 260px;
    overflow-y: auto;
    display: none;
    padding: 6px;
}

.rt-select-wrap.open .rt-select-options {
    display: block;
}

.rt-select-option {
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.rt-select-option:hover {
    background: #eef3ff;
    color: var(--primary);
}

.rt-select-option.selected {
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.12), rgba(59, 130, 246, 0.12));
    color: var(--primary);
}

.rt-select-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Mobile filter trigger */
.mobile-filter-trigger {
    display: none;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 12px;
    background: var(--off-white);
    border-radius: var(--radius-md);
}

.close-sidebar {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
}

@media (max-width: 992px) {
    .packages-wrapper {
        grid-template-columns: 1fr;
    }

    .mobile-filter-trigger {
        display: flex;
    }

    .filter-sidebar {
        position: fixed;
        left: -100%;
        top: 0;
        bottom: 0;
        width: 100%;
        max-width: 320px;
        z-index: 2000;
        transition: 0.4s ease;
        overflow-y: auto;
        border-radius: 0;
    }

    .filter-sidebar.open {
        left: 0;
        box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.5);
    }

    .close-sidebar {
        display: block;
    }

    .hide-desktop {
        display: block !important;
    }

    .hide-mobile {
        display: none !important;
    }
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 180px;
}

.filter-group label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
}

.filter-group select {
    padding: 10px 14px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--text-dark);
    background: var(--off-white);
    outline: none;
    cursor: pointer;
    transition: var(--transition);
}

.filter-group select:focus {
    border-color: var(--primary);
    background: var(--white);
}

/* ============ ANIMATIONS ============ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

/* ============ PAGE TRANSITIONS ============ */
.page-fade {
    animation: pageFade 0.5s ease both;
}

@keyframes pageFade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .pkg-detail-grid {
        grid-template-columns: 1fr;
    }

    .pkg-detail-main {
        padding: 22px;
    }

    .booking-sidebar {
        position: static;
    }
}

@media (max-width: 900px) {

    .dest-grid,
    .pkg-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .search-box {
        grid-template-columns: 1fr 1fr;
    }

    .search-btn {
        grid-column: span 2;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .booking-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .admin-sidebar {
        display: none;
    }

    .admin-content {
        margin-left: 0;
    }

    .admin-sidebar .admin-welcome {
        display: none !important;
    }
}

@media (max-width: 768px) {
    :root {
        --header-h: 68px;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: #f7f9ff;
        padding: 16px;
        box-shadow: var(--shadow-md);
        gap: 4px;
        border-top: 1px solid var(--border);
        z-index: 2000;
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu.open .nav-link {
        color: #1b2a4a;
        font-weight: 600;
    }

    .nav-menu.open .nav-link:hover,
    .nav-menu.open .nav-link.active {
        background: #e7efff;
        color: #1b3ea5;
    }

    .nav-menu.open .nav-cta .btn {
        background: linear-gradient(135deg, #1b4bd1, #2b6fff);
        color: #ffffff;
        border-color: #1b4bd1;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 8px;
        width: 100%;
    }

    .nav-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .nav-menu.open .nav-cta {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .nav-menu.open .nav-cta .btn {
        width: 100%;
        padding: 12px 10px;
        font-size: 13px;
        border-radius: 14px;
    }

    .nav-menu.open .nav-cta .btn i {
        font-size: 16px;
    }

    .hamburger {
        display: flex;
    }

    .hero-stats {
        gap: 24px;
    }

    .hero-actions {
        gap: 12px;
    }

    .hero-actions .btn {
        flex: 1 1 0;
        min-width: 0;
        padding: 10px 18px;
        font-size: 11px;
    }

    .pkg-h-actions {
        margin-top: 16px;
        gap: 12px;
    }

    .pkg-h-actions .btn {
        flex: 1;
        padding: 10px 16px;
        font-size: 10px;
        letter-spacing: 1px;
    }

    .pkg-h-title {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .pkg-h-meta {
        gap: 12px;
        flex-wrap: wrap;
    }

    .pkg-h-meta span {
        font-size: 12px;
    }

    .dest-grid,
    .pkg-grid {
        grid-template-columns: 1fr;
    }

    .search-box {
        grid-template-columns: 1fr;
    }

    .search-btn {
        width: 100%;
    }

    .cta-box {
        padding: 48px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pkg-gallery-main {
        height: 320px;
    }

    .pkg-detail-main {
        padding: 20px;
    }

    .pkg-detail-meta {
        gap: 12px;
    }

    .pkg-meta-item {
        width: 100%;
        justify-content: flex-start;
    }

    .pkg-tab {
        width: 100%;
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

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

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .admin-content {
        padding: 16px;
        margin-left: 0;
    }

    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 34px;
    }

    .hero-stats {
        gap: 16px;
    }

    .hero-stat .num {
        font-size: 26px;
    }

    .pkg-gallery-main {
        height: 240px;
    }

    .pkg-itinerary {
        padding: 16px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .stat-grid {
        grid-template-columns: 1fr;
    }
}

/* ============ PAGINATION ============ */
.pagination-simple {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.pagination-simple .page-num {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    text-decoration: none;
    color: var(--text-mid);
    font-weight: 600;
    transition: var(--transition);
}

.pagination-simple .page-num:hover,
.pagination-simple .page-num.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* New Dest Card */
.dest-card-new {
    position: relative;
    height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.dest-card-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.dest-card-new:hover img {
    transform: scale(1.1);
}

.dest-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 20, 50, 0.95) 0%, rgba(0, 20, 50, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: var(--transition);
}

.dest-card-new:hover .dest-card-overlay {
    background: linear-gradient(0deg, rgba(0, 20, 50, 1) 0%, rgba(0, 20, 50, 0.6) 60%, transparent 100%);
}

.dest-card-info {
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.dest-card-new:hover .dest-card-info {
    transform: translateY(0);
}

.dest-country {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-light);
    margin-bottom: 8px;
    font-weight: 600;
}

.dest-title {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}

.dest-short-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.dest-card-new:hover .dest-short-desc {
    opacity: 1;
    height: auto;
    margin-bottom: 20px;
}

.btn-dest {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.btn-dest:hover {
    color: var(--accent-light);
    gap: 12px;
}

/* Home Pkg Card */
.pkg-card-home {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pkg-card-home:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pkg-card-home .pkg-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.pkg-card-home .pkg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pkg-card-home:hover .pkg-img img {
    transform: scale(1.05);
}

.pkg-price-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.pkg-duration-home {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    backdrop-filter: blur(5px);
    z-index: 2;
}

.pkg-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pkg-body .pkg-title {
    font-size: 20px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 8px;
    color: var(--primary);
}

.pkg-location {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pkg-meta-home {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px dashed var(--border);
}

.pkg-meta-home span {
    font-size: 12px;
    color: var(--text-mid);
    display: flex;
    align-items: center;
    gap: 5px;
}

.pkg-footer-home {
    margin-top: auto;
    display: flex;
    gap: 10px;
}

.pkg-footer-home .btn {
    flex: 1;
    font-size: 13px;
    padding: 10px;
}