/* Homepage Styles - Red & Black Theme */
:root {
    --brand-red: #E31837;
    --brand-red-dark: #B81430;
    --brand-red-light: #FF3D5A;
    --brand-black: #0A0A0A;
    --brand-dark: #1A1A1A;
    --brand-gray: #2D2D2D;
    --gold: #D4AF37;
    --primary-color: #E31837;
    --primary-hover: #B81430;
    --accent-color: #D4AF37;
    --bg-color: #ffffff;
    --surface-color: #f8f9fa;
    --text-color: #1a1a1a;
    --text-muted: #6c757d;
    --border-color: #e9ecef;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --gradient-dark: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 50%, #2D2D2D 100%);
    --gradient-red: linear-gradient(135deg, #E31837 0%, #B81430 100%);
}

[data-theme="dark"] {
    --brand-red: #FF3D5A;
    --primary-color: #FF3D5A;
    --bg-color: #0A0A0A;
    --surface-color: #1A1A1A;
    --text-color: #f8f9fa;
    --text-muted: #adb5bd;
    --border-color: #2D2D2D;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 0.75rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
}

[data-theme="dark"] .navbar {
    background: rgba(10, 10, 10, 0.95);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--brand-red) !important;
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--brand-red) !important;
}

/* ===================== Mega Menu ===================== */
.mega-dropdown {
    position: relative;
}

.mega-menu {
    width: 680px;
    max-width: 90vw;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-40%) !important;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.15);
    padding: 1.25rem 1.5rem 1rem;
    margin-top: 0.35rem !important;
    background: #fff;
    animation: megaFadeIn 0.2s ease;
    max-height: 80vh;
    overflow-y: auto;
}

@keyframes megaFadeIn {
    from { opacity: 0; transform: translateX(-40%) translateY(-6px) !important; }
    to   { opacity: 1; transform: translateX(-40%) translateY(0) !important; }
}

[data-theme="dark"] .mega-menu {
    background: #1a1a2e;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.4);
}

.mega-menu-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mega-menu-section {
    padding-bottom: 0.6rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mega-menu-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

[data-theme="dark"] .mega-menu-section {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.mega-menu-heading {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-color, #1e293b);
    margin-bottom: 0.35rem;
    display: block;
}

.mega-menu-heading a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.mega-menu-heading a:hover {
    color: var(--brand-red, #EC1C24);
}

[data-theme="dark"] .mega-menu-heading {
    color: #e2e8f0;
}

.mega-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 1rem;
}

.mega-menu-links li {
    position: relative;
    padding-left: 14px;
}

.mega-menu-links li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--text-muted, #94a3b8);
    font-size: 0.9rem;
    line-height: 1.75;
}

.mega-menu-links li a {
    display: block;
    padding: 1px 0;
    font-size: 0.82rem;
    color: var(--text-color, #374151);
    text-decoration: none;
    transition: all 0.15s;
    line-height: 1.75;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mega-menu-links li a:hover {
    color: var(--brand-red, #EC1C24);
    padding-left: 3px;
}

[data-theme="dark"] .mega-menu-links li a {
    color: #b0b8c8;
}

[data-theme="dark"] .mega-menu-links li a:hover {
    color: #ff6b70;
}

.mega-menu-footer {
    padding-top: 0.6rem;
    margin-top: 0.3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    text-align: right;
}

[data-theme="dark"] .mega-menu-footer {
    border-top-color: rgba(255, 255, 255, 0.08);
}

.mega-menu-viewall-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--brand-red, #EC1C24);
    text-decoration: none;
    transition: all 0.2s;
}

.mega-menu-viewall-link:hover {
    color: var(--brand-blue, #2E3191);
    gap: 8px;
}

[data-theme="dark"] .mega-menu-viewall-link {
    color: #ff6b70;
}

[data-theme="dark"] .mega-menu-viewall-link:hover {
    color: #818cf8;
}
/* ===================== End Mega Menu ===================== */

.btn-enquire {
    background: linear-gradient(135deg, #0504AA, #3a38d4);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn-enquire::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-enquire:hover::before {
    left: 100%;
}

.btn-enquire:hover {
    background: linear-gradient(135deg, #03027a, #0504AA);
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 10px 30px rgba(5, 4, 170, 0.45), 0 0 15px rgba(5, 4, 170, 0.2);
    color: white;
}

.btn-enquire:active {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 4px 15px rgba(5, 4, 170, 0.3);
}

/* Language Switcher */
.lang-switcher .lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s;
}

.lang-switcher .lang-toggle .bi-translate {
    font-size: 1rem;
}

.lang-switcher .lang-current {
    font-size: 0.8rem;
}

.lang-dropdown {
    min-width: 180px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    padding: 0.4rem;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.88rem;
    transition: all 0.2s;
}

.lang-option:hover {
    background: #f0f5ff;
}

.lang-option.active {
    background: linear-gradient(135deg, #e31837, #ff4757);
    color: white;
    font-weight: 600;
}

.lang-option.active:hover {
    background: linear-gradient(135deg, #e31837, #ff4757);
    color: white;
}

.lang-flag {
    font-size: 1.2rem;
    line-height: 1;
}

.lang-name {
    flex: 1;
}

/* Tamil Font Support */
html[lang="ta"] body {
    font-family: 'Noto Sans Tamil', 'Poppins', sans-serif;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--gradient-dark);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    background: #0a0a0a;
}

/* Pause video for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .hero-video {
        display: none;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(26, 26, 26, 0.8) 50%, rgba(227, 24, 55, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: none;
    padding: 8px 18px;
    border-radius: 50px;
    color: #1a1a1a;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInDown 0.8s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.hero-badge:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.hero h1 .highlight {
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.05rem;
    opacity: 0.9;
    max-width: 550px;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* Search Box — Modern Glass Card */
.search-box {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 0.6rem;
    animation: fadeInUp 0.8s ease 0.3s both;
    transition: border-color 0.4s, box-shadow 0.4s, background 0.4s;
}

.search-box:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.search-row {
    display: flex;
    gap: 0;
    align-items: stretch;
}

/* — Selectors — */
.search-selector {
    flex: 1;
    background: transparent;
    border: none;
    border-radius: 14px;
    padding: 1.1rem 1.35rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    position: relative;
    overflow: hidden;
}

/* Animated bottom border */
.search-selector::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-red);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-selector:hover::after {
    width: calc(100% - 2.7rem);
    left: 1.35rem;
}

.search-selector:hover {
    color: white;
    background: rgba(255, 255, 255, 0.06);
}

.search-selector.selected {
    color: white;
    background: rgba(255, 255, 255, 0.08);
}

.search-selector.selected::after {
    width: calc(100% - 2.7rem);
    left: 1.35rem;
    background: var(--gold);
}

/* Vertical divider between selectors */
.search-selector+.search-selector {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
}

.search-selector i:first-child {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s, transform 0.3s;
}

.search-selector:hover i:first-child,
.search-selector.selected i:first-child {
    color: var(--brand-red-light);
    transform: scale(1.15);
}

.search-selector span {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0.01em;
}

.search-selector i:last-child {
    font-size: 0.7rem;
    opacity: 0.4;
    transition: transform 0.3s, opacity 0.3s;
}

.search-selector:hover i:last-child {
    opacity: 0.8;
    transform: translateY(2px);
}

/* — Search Button — */
.btn-search {
    background: var(--gradient-red);
    color: white;
    border: none;
    padding: 1rem 1.75rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
    margin-left: 4px;
}

/* Shimmer sweep on hover */
.btn-search::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s ease;
}

.btn-search:hover::before {
    left: 100%;
}

.btn-search:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 12px 35px rgba(227, 24, 55, 0.45);
    color: white;
}

.btn-search:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 4px 12px rgba(227, 24, 55, 0.3);
}

.btn-search i {
    transition: transform 0.3s;
}

.btn-search:hover i {
    transform: rotate(15deg) scale(1.1);
}

/* Selector Modal */
#destinationModal .modal-dialog,
#vacationModal .modal-dialog {
    max-width: 800px;
    width: 90%;
}

.selector-modal {
    background: var(--gradient-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
}

.selector-modal .modal-header {
    background: rgba(227, 24, 55, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem 1.5rem;
}

.selector-modal .modal-title {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.selector-modal .modal-body {
    padding: 1.5rem;
    max-height: 70vh;
    overflow-y: auto;
}

.selector-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.selector-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 1.25rem 1rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.selector-item:hover {
    background: rgba(227, 24, 55, 0.2);
    border-color: var(--brand-red);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(227, 24, 55, 0.2);
}

.selector-item i {
    font-size: 1.75rem;
    color: var(--brand-red-light);
}

.selector-item span {
    font-size: 0.85rem;
}

@media (max-width: 991px) {

    #destinationModal .modal-dialog,
    #vacationModal .modal-dialog {
        max-width: 600px;
    }

    .selector-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .search-row {
        flex-direction: column;
        gap: 0;
    }

    .search-selector,
    .btn-search {
        width: 100%;
    }

    .search-selector+.search-selector {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 0;
    }

    .btn-search {
        margin-left: 0;
        margin-top: 4px;
        justify-content: center;
        border-radius: 14px;
    }

    #destinationModal .modal-dialog,
    #vacationModal .modal-dialog {
        max-width: 95%;
        margin: 1rem auto;
    }

    .selector-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .selector-item {
        padding: 1rem 0.75rem;
    }

    .selector-item i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .selector-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 360px) {
    .selector-grid {
        grid-template-columns: 1fr;
    }
}

/* Section Styles */
.section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Enquiry Form Section Titles */
.enquiry-section-title {
    color: var(--brand-red);
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.enquiry-section-title i {
    font-size: 1.1rem;
}

/* Destination Cards - Show More */
.dest-hidden {
    display: none;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

.dest-hidden.dest-visible {
    display: block;
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: destFadeIn 0.5s ease forwards;
}

@keyframes destFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.btn-show-more {
    background: transparent;
    color: #0504AA;
    border: 2px solid #0504AA;
    padding: 0.85rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.btn-show-more::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0504AA, #1a19cc);
    opacity: 0;
    transition: opacity 0.4s;
    border-radius: 50px;
}

.btn-show-more:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(5, 4, 170, 0.35);
}

.btn-show-more:hover::before {
    opacity: 1;
}

.btn-show-more .btn-show-more-text,
.btn-show-more i {
    position: relative;
    z-index: 1;
}

.btn-show-more i {
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.btn-show-more:hover i {
    transform: translateY(3px);
}

.btn-show-more.expanded:hover i {
    transform: translateY(-3px);
}

/* Destination Cards - Premium */
.destinations-section {
    background: linear-gradient(180deg, var(--bg-color) 0%, var(--surface-color) 100%);
}

.dest-card {
    position: relative;
    display: block;
    height: 320px;
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

/* Border draw effect */
.dest-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1.5px solid var(--brand-red);
    border-radius: 6px;
    z-index: 4;
    pointer-events: none;
    clip-path: inset(0 100% 100% 0);
    transition: clip-path 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.dest-card:hover::after {
    clip-path: inset(0 0 0 0);
}

.dest-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(227, 24, 55, 0.25);
}

/* Image */
.dest-card-img {
    position: absolute;
    inset: 0;
}

.dest-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s;
}

.dest-card:hover .dest-card-img img {
    transform: scale(1.15);
    filter: brightness(0.85);
}

/* Overlay */
.dest-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.1) 40%,
            rgba(0, 0, 0, 0.75) 80%,
            rgba(10, 10, 10, 0.95) 100%);
    z-index: 1;
    transition: opacity 0.4s;
}

/* Shine effect */
.dest-card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.15),
            transparent);
    z-index: 3;
    transition: left 0.7s;
    pointer-events: none;
}

.dest-card:hover .dest-card-shine {
    left: 130%;
}

/* Content */
.dest-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 2;
    color: white;
}

.dest-card-location {
    width: 40px;
    height: 40px;
    background: rgba(5, 4, 170, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #0504AA;
    margin-bottom: 0.75rem;
    box-shadow: 0 4px 15px rgba(5, 4, 170, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(5, 4, 170, 0.25);
    transition: transform 0.4s, box-shadow 0.4s, background 0.4s;
}

.dest-card:hover .dest-card-location {
    transform: scale(1.15) translateY(-4px);
    background: rgba(5, 4, 170, 0.25);
    box-shadow: 0 8px 25px rgba(5, 4, 170, 0.3);
}

.dest-card-content h4 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}

.dest-card:hover .dest-card-content h4 {
    transform: translateX(4px);
}

.dest-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.dest-pkg-count {
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 5px 14px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
}

.dest-explore {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s;
    color: var(--brand-red-light);
}

.dest-explore i {
    transition: transform 0.3s;
}

.dest-card:hover .dest-explore {
    opacity: 1;
    transform: translateX(0);
}

.dest-card:hover .dest-explore i {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 991px) {
    .dest-card {
        height: 280px;
    }

    .dest-card-content h4 {
        font-size: 1.15rem;
    }
}

@media (max-width: 767px) {
    .dest-card {
        height: 240px;
        border-radius: 6px;
    }

    .dest-card-content {
        padding: 1.25rem;
    }

    .dest-card-location {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
    }

    .dest-card-content h4 {
        font-size: 1rem;
    }

    .dest-pkg-count {
        font-size: 0.65rem;
        padding: 3px 8px;
        white-space: nowrap;
        border-radius: 6px;
    }
}

@media (max-width: 480px) {
    .dest-card {
        height: 200px;
    }

    .dest-card-content h4 {
        font-size: 0.9rem;
    }
    
    .dest-pkg-count {
        font-size: 0.6rem;
        padding: 2px 6px;
    }
}

/* =============================================
   Vacation Types — Light & Airy
   ============================================= */
.vtype-section {
    position: relative;
    padding: 5rem 0 5.5rem;
    background: #ffffff;
    overflow: hidden;
}

[data-theme="dark"] .vtype-section {
    background: #0f1117;
}

/* ---- Background Art ---- */
.vtype-bg-art {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.vtype-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
}

.vtype-orb--1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, #e67e22, transparent 70%);
    top: -20%; left: -10%;
    animation: vtypeOrb1 15s ease-in-out infinite;
}

.vtype-orb--2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #9b59b6, transparent 70%);
    bottom: -15%; right: -10%;
    animation: vtypeOrb2 18s ease-in-out infinite;
}

.vtype-orb--3 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, #3498db, transparent 70%);
    top: 40%; left: 50%;
    animation: vtypeOrb3 20s ease-in-out infinite;
}

[data-theme="dark"] .vtype-orb {
    opacity: 0.15;
}

.vtype-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0,0,0,0.04) 1px, transparent 1px);
    background-size: 30px 30px;
}

[data-theme="dark"] .vtype-grid-pattern {
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
}

/* Travel element decorations */
.vtype-travel-deco {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: 0.06;
    color: #0504AA;
}

[data-theme="dark"] .vtype-travel-deco {
    opacity: 0.08;
    color: #6366f1;
}

.vtype-travel-deco--1 {
    top: 8%; left: 5%;
    font-size: 4rem;
    transform: rotate(-15deg);
    animation: vtypeFloat1 12s ease-in-out infinite;
}

.vtype-travel-deco--2 {
    top: 15%; right: 8%;
    font-size: 3.2rem;
    transform: rotate(10deg);
    animation: vtypeFloat2 14s ease-in-out infinite;
}

.vtype-travel-deco--3 {
    bottom: 12%; left: 8%;
    font-size: 3.5rem;
    transform: rotate(20deg);
    animation: vtypeFloat3 16s ease-in-out infinite;
}

.vtype-travel-deco--4 {
    bottom: 18%; right: 5%;
    font-size: 3rem;
    transform: rotate(-10deg);
    animation: vtypeFloat1 18s ease-in-out infinite;
}

.vtype-travel-deco--5 {
    top: 50%; left: 2%;
    font-size: 2.8rem;
    transform: rotate(5deg);
    animation: vtypeFloat2 15s ease-in-out infinite;
}

.vtype-travel-deco--6 {
    top: 45%; right: 3%;
    font-size: 3.2rem;
    transform: rotate(-20deg);
    animation: vtypeFloat3 13s ease-in-out infinite;
}

@keyframes vtypeFloat1 {
    0%, 100% { transform: translateY(0) rotate(-15deg); }
    50% { transform: translateY(-12px) rotate(-10deg); }
}

@keyframes vtypeFloat2 {
    0%, 100% { transform: translateY(0) rotate(10deg); }
    50% { transform: translateY(-10px) rotate(15deg); }
}

@keyframes vtypeFloat3 {
    0%, 100% { transform: translateY(0) rotate(20deg); }
    50% { transform: translateY(-14px) rotate(12deg); }
}

@keyframes vtypeOrb1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(60px, -40px) scale(1.15); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

@keyframes vtypeOrb2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-50px, 30px) scale(1.1); }
    66% { transform: translate(40px, -40px) scale(0.95); }
}

@keyframes vtypeOrb3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, -30px) scale(1.2); }
}

/* ---- Header ---- */
.vtype-header {
    text-align: center;
    margin-bottom: 3rem;
}

.vtype-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.75rem;
}

.vtype-label-line {
    display: block;
    width: 40px;
    height: 2px;
    background: rgba(0,0,0,0.15);
    border-radius: 2px;
}

[data-theme="dark"] .vtype-label-line {
    background: rgba(255,255,255,0.15);
}

.vtype-label-text {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #0504AA;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.vtype-label-text i {
    font-size: 0.95rem;
}

[data-theme="dark"] .vtype-label-text {
    color: #6366f1;
}

.vtype-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 0.6rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

[data-theme="dark"] .vtype-title {
    color: #f5f5f5;
}

.vtype-title-accent {
    background: linear-gradient(135deg, #e74c3c 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.vtype-title-accent::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 2px;
    height: 8px;
    background: rgba(231, 76, 60, 0.2);
    border-radius: 4px;
    z-index: -1;
}

.vtype-desc {
    font-size: 1.05rem;
    color: #64748b;
    margin: 0;
    max-width: 520px;
    margin-inline: auto;
}

[data-theme="dark"] .vtype-desc {
    color: rgba(255,255,255,0.45);
}

/* ---- Cards Grid ---- */
.vtype-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* ---- Card ---- */
.vtype-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    aspect-ratio: 3/4;
    cursor: pointer;
    animation: vtypeCardIn 0.6s ease-out both;
    animation-delay: calc(var(--i) * 0.1s);
    transition: transform 0.45s cubic-bezier(.25,.8,.25,1), box-shadow 0.45s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

[data-theme="dark"] .vtype-card {
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

@keyframes vtypeCardIn {
    from { opacity: 0; transform: translateY(40px) scale(0.95); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.vtype-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--accent, #e67e22), transparent 50%, var(--accent, #e67e22));
    opacity: 0;
    z-index: 0;
    transition: opacity 0.4s ease;
}

.vtype-card:hover::before {
    opacity: 1;
}

.vtype-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

[data-theme="dark"] .vtype-card:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

/* Background image */
.vtype-card-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
}

.vtype-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(.25,.8,.25,1), filter 0.4s ease;
}

.vtype-card:hover .vtype-card-bg img {
    transform: scale(1.12);
    filter: brightness(0.6);
}

/* Shine sweep effect */
.vtype-card-shine {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    border-radius: 20px;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255,255,255,0.12) 45%,
        rgba(255,255,255,0.25) 50%,
        rgba(255,255,255,0.12) 55%,
        transparent 60%
    );
    background-size: 250% 100%;
    background-position: 200% 0;
    transition: background-position 0s;
}

.vtype-card:hover .vtype-card-shine {
    background-position: -200% 0;
    transition: background-position 0.7s ease;
}

/* Gradient overlay */
.vtype-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: 20px;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.35) 45%,
        rgba(0,0,0,0.05) 75%,
        transparent 100%
    );
    transition: background 0.4s ease;
}

.vtype-card:hover .vtype-card-overlay {
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.9) 0%,
        rgba(0,0,0,0.5) 50%,
        rgba(0,0,0,0.15) 75%,
        rgba(0,0,0,0.05) 100%
    );
}

/* Card content */
.vtype-card-content {
    position: relative;
    z-index: 4;
    padding: 1.5rem 1.2rem;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(.25,.8,.25,1);
}

.vtype-card:hover .vtype-card-content {
    transform: translateY(0);
}

.vtype-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    border-radius: 14px;
    background: var(--accent, #e67e22);
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.vtype-card:hover .vtype-card-icon {
    transform: scale(1.12) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.vtype-card-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.6rem;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.vtype-card-info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s ease 0.08s, transform 0.35s ease 0.08s;
}

.vtype-card:hover .vtype-card-info {
    opacity: 1;
    transform: translateY(0);
}

.vtype-card-count {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
    font-size: 0.72rem;
    color: #fff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 5px 11px;
    border-radius: 20px;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s;
}

.vtype-card:hover .vtype-card-count {
    opacity: 1;
    transform: translateY(0);
}

.vtype-card-count i {
    font-size: 0.7rem;
    color: var(--accent, #e67e22);
}

.vtype-card-cta {
    font-size: 0.75rem;
    color: var(--accent, #e67e22);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: gap 0.3s ease;
}

.vtype-card:hover .vtype-card-cta {
    gap: 8px;
}

.vtype-card-cta i {
    transition: transform 0.3s ease;
    font-size: 0.85rem;
}

.vtype-card:hover .vtype-card-cta i {
    transform: translateX(3px);
}

/* ---- Responsive ---- */
@media (max-width: 1199px) {
    .vtype-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.1rem;
    }
}

@media (max-width: 767px) {
    .vtype-section {
        padding: 3.5rem 0 4rem;
    }

    .vtype-title {
        font-size: 1.9rem;
    }

    .vtype-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.85rem;
    }

    .vtype-orb {
        opacity: 0.15;
    }

    .vtype-card-content {
        padding: 1rem 0.9rem;
    }

    .vtype-card-name {
        font-size: 0.9rem;
    }

    .vtype-card-icon {
        width: 36px; height: 36px;
        font-size: 0.95rem;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .vtype-section {
        padding: 2.5rem 0 3rem;
    }

    .vtype-label-line { width: 24px; }

    .vtype-title {
        font-size: 1.5rem;
    }

    .vtype-desc {
        font-size: 0.9rem;
    }

    .vtype-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.65rem;
    }

    .vtype-card {
        border-radius: 14px;
    }

    .vtype-card-bg,
    .vtype-card-shine,
    .vtype-card-overlay {
        border-radius: 14px;
    }

    .vtype-card-content {
        padding: 0.75rem 0.7rem;
    }

    .vtype-card-name {
        font-size: 0.8rem;
    }

    .vtype-card-icon {
        width: 30px; height: 30px;
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
        border-radius: 8px;
    }

    .vtype-card-count {
        font-size: 0.68rem;
    }

    .vtype-card-cta {
        font-size: 0.68rem;
    }

    .vtype-orb--3 { display: none; }

    .vtype-travel-deco { display: none; }
}

/* Legacy vacation-card compat (kept for other pages) */
.vacation-card {
    background: var(--surface-color);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.4s;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.05);
}

.vacation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(227, 24, 55, 0.15);
    border-color: var(--brand-red);
}

.vacation-card-img {
    height: 200px;
    overflow: hidden;
}

.vacation-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.vacation-card:hover .vacation-card-img img {
    transform: scale(1.1);
}

.vacation-card-body {
    padding: 1.5rem;
}

.vacation-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--brand-red);
}

.vacation-card .pkg-count {
    color: var(--text-muted);
    font-weight: 600;
}

/* Package Cards */
.package-card {
    background: var(--bg-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.4s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #0504AA;
}

.package-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.package-card:hover .package-image img {
    transform: scale(1.08);
}

.package-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-red);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.package-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
}

.package-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-body h5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.package-location {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.package-location i {
    color: var(--brand-red);
}

.package-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex: 1;
}

.package-features span {
    background: var(--surface-color);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.package-features i {
    color: var(--brand-red);
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.package-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-red);
}

.package-price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
}

.btn-view {
    background: var(--brand-black);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-view:hover {
    background: var(--brand-red);
    color: white;
    transform: translateX(5px);
}

/* Why Choose Us */
.feature-box {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 6px rgba(0, 0, 0, 0.04);
}

.feature-box:hover {
    transform: translateY(-5px);
    border-color: var(--brand-red);
    box-shadow: 0 16px 40px rgba(227, 24, 55, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-red);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.4rem;
    color: white;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s, border-radius 0.4s;
}

.feature-box:hover .feature-icon {
    transform: scale(1.15) rotateY(180deg);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(227, 24, 55, 0.4);
}

.feature-box h5 {
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* Testimonials */
.testimonial-card {
    background: var(--bg-color);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    height: 100%;
}

.testimonial-rating {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-info h6 {
    font-weight: 600;
    margin: 0;
}

.testimonial-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* CTA Section */
.cta-section {
    background: var(--gradient-dark);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(227, 24, 55, 0.15) 0%, transparent 70%);
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-cta {
    background: var(--gradient-red);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(227, 24, 55, 0.4);
    color: white;
}

.btn-cta-outline {
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-cta-outline:hover {
    background: white;
    color: var(--brand-black);
    border-color: white;
}

/* Footer */
.footer {
    background: var(--brand-black);
    color: white;
    padding: 5rem 0 2rem;
}

.footer h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--brand-red-light);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s;
}

.footer-links a:hover {
    color: var(--brand-red-light);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--brand-red);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    opacity: 0.7;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    color: white;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    background: var(--gradient-red);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 991px) {
    .hero h1 {
        font-size: 2.25rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .hero-stats {
        gap: 2rem;
        flex-wrap: wrap;
    }

    .section {
        padding: 4rem 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .hero {
        min-height: auto;
        padding: 90px 0 50px;
    }

    .hero h1 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .hero p {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 5px 12px;
        margin-bottom: 0.75rem;
    }

    .hero-stats {
        gap: 1.5rem;
        justify-content: center;
    }

    .stat-number {
        font-size: 2rem;
    }

    .search-box {
        padding: 0.75rem;
    }

    .search-selector {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .btn-search {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .destination-card {
        height: 280px;
    }
}

@media (max-width: 575px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.85rem;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }
}

/* ====== COMPREHENSIVE MOBILE RESPONSIVE STYLES ====== */

/* Mobile Navbar Styles */
@media (max-width: 991px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .navbar-brand img {
        height: 35px !important;
    }
    
    .navbar-toggler {
        border: none;
        padding: 0.5rem;
        background: transparent;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
    
    .navbar-toggler-icon {
        width: 1.5em;
        height: 1.5em;
    }
    
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-top: 1px solid var(--border-color);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 1rem;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }
    
    [data-theme="dark"] .navbar-collapse {
        background: rgba(10, 10, 10, 0.98);
    }
    
    .navbar-nav {
        gap: 0 !important;
    }
    
    .navbar-nav .nav-item {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
    }
    
    .navbar-nav .nav-item:last-child {
        border-bottom: none;
        padding-top: 1rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.875rem 1rem !important;
        font-size: 1rem;
    }
    
    .navbar-nav .dropdown-menu {
        position: static !important;
        transform: none !important;
        box-shadow: none;
        border: none;
        background: var(--surface-color);
        border-radius: 8px;
        margin-bottom: 0.5rem;
        padding: 0.5rem 0;
    }

    /* Mega menu mobile overrides */
    .mega-dropdown {
        position: relative !important;
    }

    .mega-menu {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        left: 0 !important;
        box-shadow: none !important;
        border-radius: 8px !important;
        padding: 0.75rem 1rem !important;
        background: var(--surface-color) !important;
        animation: none !important;
        max-height: none !important;
        overflow-y: visible !important;
    }

    .mega-menu-links {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0 0.5rem !important;
    }

    .mega-menu-heading {
        font-size: 0.8rem !important;
    }

    .mega-menu-links li a {
        font-size: 0.78rem !important;
    }

    .mega-menu-footer {
        text-align: center !important;
    }
    
    .navbar-nav .dropdown-item {
        text-align: center;
        padding: 0.5rem 1rem;
    }
    
    .btn-enquire {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        margin-top: 0.5rem;
    }
}

/* Mobile Hero Section */
@media (max-width: 767px) {
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        padding: 80px 0 30px;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 6px 14px;
        margin-bottom: 1rem;
    }
    
    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }
    
    .hero p {
        font-size: 0.875rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
        margin-top: 1.5rem;
    }
    
    .hero-stats .stat {
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    /* Search Box Mobile */
    .search-box {
        padding: 1rem;
        margin: 0 0.5rem;
        border-radius: 16px;
    }
    
    .search-row {
        flex-direction: column;
        gap: 0;
    }
    
    .search-selector {
        width: 100%;
        padding: 1rem;
        border-radius: 12px !important;
        margin-bottom: 0.5rem;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .search-selector + .search-selector {
        border-left: 1px solid rgba(255, 255, 255, 0.15) !important;
        border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
    }
    
    .search-selector-icon {
        font-size: 1.25rem;
    }
    
    .search-selector-text span {
        font-size: 0.75rem;
    }
    
    .search-selector-text strong {
        font-size: 0.875rem;
    }
    
    .btn-search {
        width: 100%;
        padding: 1rem;
        border-radius: 12px !important;
        margin-left: 0;
        margin-top: 0.5rem;
        justify-content: center;
        font-size: 1rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .hero {
        padding: 70px 0 20px;
    }
    
    .hero h1 {
        font-size: 1.4rem;
    }
    
    .hero p {
        font-size: 0.8rem;
    }
    
    .hero-badge {
        font-size: 0.65rem;
        padding: 5px 12px;
    }
    
    .search-box {
        padding: 0.75rem;
        margin: 0 0.25rem;
    }
    
    .search-selector {
        padding: 0.75rem;
    }
    
    .btn-search {
        padding: 0.875rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title h2 {
        font-size: 1.35rem;
    }
    
    .section-title p {
        font-size: 0.85rem;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .navbar-brand {
        font-size: 1rem;
    }
    
    .hero h1 {
        font-size: 1.25rem;
    }
    
    .hero p {
        font-size: 0.75rem;
    }
    
    .hero-badge {
        font-size: 0.6rem;
        padding: 4px 10px;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .section-title h2 {
        font-size: 1.2rem;
    }
}

/* Vacation Cards Mobile */
@media (max-width: 767px) {
    .vacation-card {
        min-height: 180px;
    }
    
    .vacation-card h3 {
        font-size: 1rem;
    }
    
    .vacation-card span {
        font-size: 0.75rem;
    }
}

/* Feature Cards Mobile */
@media (max-width: 767px) {
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .feature-card h4 {
        font-size: 1rem;
    }
    
    .feature-card p {
        font-size: 0.85rem;
    }
}

/* Destination Cards Mobile */
@media (max-width: 767px) {
    .destination-card {
        height: 250px;
    }
    
    .destination-card h3 {
        font-size: 1.1rem;
    }
    
    .destination-card span {
        font-size: 0.8rem;
    }
}

/* Article Cards Mobile */
@media (max-width: 767px) {
    .home-article-card .card-body {
        padding: 1rem;
    }
    
    .home-article-card .card-title {
        font-size: 1rem;
    }
    
    .home-article-card .card-text {
        font-size: 0.85rem;
    }
}

/* CTA Section Mobile */
@media (max-width: 767px) {
    .cta-section {
        padding: 3rem 1rem;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
    
    .cta-section p {
        font-size: 0.875rem;
    }
    
    .cta-section .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Footer Mobile */
@media (max-width: 767px) {
    footer {
        padding: 2rem 0 1rem;
    }
    
    footer .container {
        text-align: center;
    }
    
    footer .row > div {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    footer h5 {
        font-size: 1rem;
        margin-top: 0;
        margin-bottom: 1rem;
    }
    
    footer p, footer li, footer a {
        font-size: 0.875rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links a:hover {
        padding-left: 0;
    }
    
    footer .col-lg-4:first-child p {
        text-align: center;
    }
    
    footer ul.list-unstyled {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    footer ul.list-unstyled li {
        text-align: center;
    }
}

/* Modal Mobile Optimization */
@media (max-width: 767px) {
    .modal-dialog {
        margin: 0.5rem;
        max-width: calc(100% - 1rem);
    }
    
    .modal-content {
        border-radius: 16px;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .modal-title {
        font-size: 1.1rem;
    }
    
    #destinationModal .modal-dialog,
    #vacationModal .modal-dialog {
        max-width: calc(100% - 1rem);
    }
    
    .selector-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .selector-item {
        padding: 0.75rem;
    }
    
    .selector-item i {
        font-size: 1.5rem;
    }
    
    .selector-item span {
        font-size: 0.75rem;
    }
}

/* Landscape Phone Orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 70px 0 20px;
    }
    
    .hero h1 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .hero p {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-stats {
        margin-top: 1rem;
    }
    
    .search-box {
        margin-top: 1rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn-enquire:hover,
    .nav-link:hover,
    .search-selector:hover,
    .vacation-card:hover,
    .bento-card:hover,
    .destination-card:hover,
    .feature-card:hover {
        transform: none;
    }
    
    .btn-enquire:active {
        transform: scale(0.98);
    }
    
    .search-selector {
        cursor: pointer;
    }
}