/* =========================================
   SERENESCAPE TRAVEL - Premium Stylesheet
   ========================================= */

/* ---- CSS Variables ---- */
:root {
    --primary: #0c7ff2;
    --primary-dark: #0a5cbf;
    --primary-light: #e8f4fd;
    --secondary: #ff6b35;
    --secondary-dark: #e55a2b;
    --accent: #00c9a7;
    --dark: #0b1426;
    --dark-2: #132040;
    --gray-900: #1a2332;
    --gray-800: #2d3748;
    --gray-700: #4a5568;
    --gray-600: #718096;
    --gray-500: #a0aec0;
    --gray-400: #cbd5e0;
    --gray-300: #e2e8f0;
    --gray-200: #edf2f7;
    --gray-100: #f7fafc;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    --gradient-warm: linear-gradient(135deg, var(--secondary) 0%, #ff9a56 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

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

ul { list-style: none; }

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 6rem 0;
    overflow: hidden;
}

main {
    overflow-x: hidden;
}

[x-cloak] { display: none !important; }

/* ---- Typography ---- */
.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.5rem 1.3rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid rgba(12, 127, 242, 0.15);
}
.section-tag i {
    font-size: 0.75rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-title .text-gradient {
    position: relative;
}
.section-title .text-gradient::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient);
    opacity: 0.2;
    border-radius: 3px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--gray-600);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(12, 127, 242, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(12, 127, 242, 0.4);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    border-radius: 50px;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

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

/* =========================================
   TOP BAR
   ========================================= */
.topbar {
    background: linear-gradient(90deg, var(--dark) 0%, var(--dark-2) 100%);
    color: var(--gray-400);
    font-size: 0.78rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    z-index: 10000;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}

.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.topbar-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--gray-400);
    transition: var(--transition);
}
.topbar-link:hover { color: var(--white); }
.topbar-link i { color: var(--primary); font-size: 0.75rem; }

.topbar-social {
    display: flex;
    gap: 0.75rem;
}
.topbar-social a {
    color: var(--gray-500);
    font-size: 0.8rem;
    transition: var(--transition);
}
.topbar-social a:hover { color: var(--primary); transform: translateY(-1px); }

.topbar-divider {
    width: 1px;
    height: 14px;
    background: var(--gray-700);
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 85px;
    width: auto;
    transition: var(--transition);
}
.navbar.scrolled .logo-img {
    height: 68px;
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 1.75rem 1.1rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gray-800);
    letter-spacing: 0.3px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px 3px 0 0;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item:hover .nav-link,
.nav-item.active .nav-link {
    color: var(--primary);
}

.nav-item:hover .nav-link::after,
.nav-item.active .nav-link::after {
    width: 60%;
}

.nav-link i.fa-chevron-down {
    font-size: 0.65rem;
    transition: var(--transition);
}

.nav-item:hover .nav-link i.fa-chevron-down {
    transform: rotate(180deg);
}

/* Navbar Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-search-btn {
    background: none;
    border: none;
    color: var(--gray-700);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
}
.nav-search-btn:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.nav-cta {
    font-size: 0.85rem;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--gray-800);
    cursor: pointer;
    padding: 0.5rem;
}

/* =========================================
   MEGA MENU
   ========================================= */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 900px;
    z-index: 9999;
    max-width: 100vw;
    background: var(--white);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: var(--shadow-xl);
    border-top: 3px solid var(--primary);
    z-index: 100;
}

.mega-menu-sm {
    min-width: 700px;
    max-width: 100vw;
}

.mega-menu-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 2rem;
}

.mega-col {
    padding: 0 1rem;
    border-right: 1px solid var(--gray-200);
}
.mega-col:last-child { border-right: none; }

.mega-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.mega-title i { color: var(--primary); }

.mega-links li {
    margin-bottom: 0.5rem;
}
.mega-links a {
    color: var(--gray-600);
    font-size: 0.9rem;
    padding: 0.25rem 0;
    display: block;
    transition: var(--transition);
}
.mega-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

/* Mega Featured */
.mega-featured { border-right: none; }
.mega-featured-card {
    background: var(--gradient);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    color: var(--white);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.mega-featured-card::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}
.mega-featured-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    width: fit-content;
}
.mega-featured-card h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}
.mega-featured-card p {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}
.mega-featured-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}
.mega-featured-btn:hover {
    gap: 0.75rem;
}

/* Mega Services Grid */
.mega-services {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.mega-service-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
}
.mega-service-item:hover {
    background: var(--gray-100);
}
.mega-service-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    flex-shrink: 0;
}
.mega-service-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.2rem;
}
.mega-service-item p {
    font-size: 0.8rem;
    color: var(--gray-600);
    line-height: 1.4;
}

/* Mega Menu Transitions */
.mega-enter { transition: all 0.3s ease; }
.mega-enter-start { opacity: 0; transform: translateX(-50%) translateY(10px); }
.mega-enter-end { opacity: 1; transform: translateX(-50%) translateY(0); }
.mega-leave { transition: all 0.2s ease; }
.mega-leave-start { opacity: 1; transform: translateX(-50%) translateY(0); }
.mega-leave-end { opacity: 0; transform: translateX(-50%) translateY(10px); }

/* =========================================
   SEARCH OVERLAY
   ========================================= */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 20, 38, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.search-overlay.active {
    opacity: 1;
    visibility: visible;
}
.search-overlay-inner {
    width: 100%;
    max-width: 750px;
    padding: 0 1.5rem;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.search-overlay.active .search-overlay-inner {
    transform: translateY(0);
}
.search-overlay-inner::before {
    content: 'Where would you like to go?';
    display: block;
    text-align: center;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.search-overlay-inner::after {
    content: 'Search destinations, tours, packages and more';
    display: block;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}
.search-form {
    display: flex;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.search-input {
    flex: 1;
    padding: 1.4rem 1.75rem;
    border: none;
    font-size: 1.15rem;
    font-family: var(--font-body);
    outline: none;
}
.search-input::placeholder {
    color: var(--gray-400);
}
.search-submit {
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 0 2.5rem;
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
}
.search-submit:hover {
    opacity: 0.9;
}
.search-close {
    position: absolute;
    top: -80px;
    right: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.8;
    transition: var(--transition);
}
.search-close:hover {
    opacity: 1;
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

/* =========================================
   MOBILE MENU
   ========================================= */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--gray-200);
    max-height: 80vh;
    overflow-y: auto;
    z-index: 999;
}

.mobile-nav-links {
    padding: 1rem;
}

.mobile-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1rem;
    font-weight: 500;
    color: var(--gray-800);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.mobile-link:hover, .mobile-link.active {
    color: var(--primary);
    background: var(--primary-light);
}
.mobile-link i { transition: var(--transition); }

.mobile-submenu {
    padding-left: 1rem;
    overflow: hidden;
}
.mobile-submenu a {
    display: block;
    padding: 0.6rem 1rem;
    color: var(--gray-600);
    font-size: 0.9rem;
    border-left: 2px solid var(--gray-200);
    transition: var(--transition);
}
.mobile-submenu a:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: var(--primary-light);
}

.mobile-cta {
    padding: 1rem;
    border-top: 1px solid var(--gray-200);
    margin-top: 0.5rem;
}

.rotate-180 { transform: rotate(180deg); }

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    max-height: 1000px;
    overflow: visible;
}

.hero-slider {
    height: 100%;
    overflow: hidden;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(11,20,38,0.5) 0%, rgba(11,20,38,0.3) 40%, rgba(11,20,38,0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
    padding-top: 2rem;
    text-align: center;
}

.hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    padding: 0.55rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.2);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-title .text-gradient {
    -webkit-text-fill-color: transparent;
    background: linear-gradient(135deg, #60a5fa 0%, #34d399 50%, #60a5fa 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero-desc {
    font-size: 1.2rem;
    opacity: 0.92;
    margin-bottom: 2.5rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

/* Hero Pagination & Nav */
.hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    opacity: 1;
}
.hero-pagination .swiper-pagination-bullet-active {
    background: var(--white);
    width: 35px;
    border-radius: 6px;
}

.hero-nav.swiper-button-next,
.hero-nav.swiper-button-prev {
    color: var(--white);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}
.hero-nav.swiper-button-next::after,
.hero-nav.swiper-button-prev::after {
    font-size: 1rem;
}
.hero-nav:hover {
    background: rgba(255,255,255,0.2);
}

/* Hero Search Bar */
.hero-search-wrapper {
    position: absolute;
    bottom: -35px;
    left: 0;
    right: 0;
    z-index: 10;
}

.hero-search {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    padding: 0.5rem;
}

.search-bar-form {
    display: flex;
    align-items: stretch;
}

.search-field {
    flex: 1;
    padding: 0.85rem 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.search-field:hover {
    background: var(--gray-100);
}

.search-field label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.search-field label i {
    color: var(--primary);
    margin-right: 0.3rem;
    font-size: 0.7rem;
}

.search-field input,
.search-field select {
    width: 100%;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--gray-800);
    background: transparent;
    padding: 0.15rem 0;
}
.search-field input::placeholder {
    color: var(--gray-400);
}

.search-divider {
    width: 1px;
    height: auto;
    align-self: center;
    min-height: 35px;
    background: var(--gray-300);
    flex-shrink: 0;
}

.search-btn {
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 1rem 2.2rem;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    transition: var(--transition);
    margin: 0.2rem;
    letter-spacing: 0.3px;
}
.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(12, 127, 242, 0.4);
}

/* =========================================
   STATS SECTION
   ========================================= */
.stats-section {
    padding: 5rem 0 3rem;
    margin-top: 2rem;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.stat-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: var(--transition);
}
.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    display: inline;
}
.stat-suffix {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    display: inline;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--gray-600);
    font-weight: 500;
    margin-top: 0.25rem;
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-section {
    background: var(--gray-100);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.service-card:hover::before {
    opacity: 1;
}
.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-link {
    color: var(--white);
    position: relative;
    z-index: 1;
}
.service-card:hover .service-icon {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.service-icon-wrapper {
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-md);
    font-size: 1.75rem;
    transition: var(--transition);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    position: relative;
    z-index: 1;
}
.service-link:hover { gap: 0.75rem; }

/* =========================================
   DESTINATIONS SECTION
   ========================================= */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 1.5rem;
}

.dest-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.dest-card-large {
    grid-row: span 2;
}

.dest-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

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

.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 1.5rem;
    transition: var(--transition);
}

.dest-card:hover .dest-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%);
}

.dest-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gradient);
    color: var(--white);
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.dest-badge-hot {
    background: var(--gradient-warm);
}

.dest-info { color: var(--white); text-align: center; }
.dest-rating {
    font-size: 0.85rem;
    color: #fbbf24;
    margin-bottom: 0.35rem;
}
.dest-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.dest-info p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}
.dest-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.85rem;
}
.dest-price strong {
    font-size: 1.1rem;
    color: var(--accent);
}

/* =========================================
   HOW IT WORKS
   ========================================= */
.how-it-works {
    background: var(--gray-100);
    overflow: hidden;
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    overflow: hidden;
}

.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
    flex: 1;
    max-width: 250px;
    min-width: 0;
    position: relative;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--primary);
    border-radius: 50%;
    font-size: 1.75rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 1.25rem;
    border: 3px solid var(--primary-light);
    transition: var(--transition);
}
.step-card:hover .step-icon {
    background: var(--gradient);
    color: var(--white);
    transform: scale(1.1);
    border-color: transparent;
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}
.step-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 5rem;
    color: var(--gray-400);
    font-size: 1.5rem;
}

/* =========================================
   PACKAGES SECTION
   ========================================= */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.package-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}
.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.package-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}
.package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.package-card:hover .package-img img {
    transform: scale(1.1);
}

.package-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gradient);
    color: var(--white);
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}
.package-badge-premium { background: linear-gradient(135deg, #d4af37, #f4d03f); }
.package-badge-new { background: var(--gradient-warm); }

.package-wishlist {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    color: var(--gray-600);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}
.package-wishlist:hover {
    background: var(--secondary);
    color: var(--white);
}

.package-duration {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0,0,0,0.6);
    color: var(--white);
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    backdrop-filter: blur(5px);
}

.package-body {
    padding: 1.5rem;
}

.package-location {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.package-location i { margin-right: 0.25rem; }

.package-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.package-desc {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.package-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}
.package-features span {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 0.3rem 0.7rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}
.package-features span i {
    color: var(--primary);
    margin-right: 0.25rem;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.25rem;
    border-top: 1px solid var(--gray-200);
}

.price-old {
    text-decoration: line-through;
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-right: 0.5rem;
}
.price-new {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}
.price-per {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* =========================================
   WHY CHOOSE US
   ========================================= */
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-us-desc {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 1.25rem 0 2rem;
}

.why-us-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.why-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.why-feature-icon {
    color: var(--accent);
    font-size: 1.25rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}
.why-feature h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.2rem;
}
.why-feature p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
}

/* Why Us Images */
.why-us-images {
    position: relative;
    overflow: hidden;
}

.why-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 1rem;
}

.why-img {
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.why-img:hover { transform: scale(1.03); }

.why-img-1 {
    grid-row: span 2;
    border-radius: var(--radius-lg);
}
.why-img-2 { border-radius: var(--radius-md); }
.why-img-3 { border-radius: var(--radius-md); }

.why-us-badge {
    position: absolute;
    bottom: -10px;
    left: 0;
    z-index: 2;
}
.why-badge-inner {
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}
.why-badge-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}
.why-badge-text {
    font-size: 0.7rem;
    text-align: center;
    opacity: 0.9;
    line-height: 1.2;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-section {
    background: var(--gray-100);
}

.testimonials-slider {
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--primary-light);
    line-height: 1;
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 0.15rem;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--gray-700);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-light);
}
.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-author h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
}
.testimonial-author span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.testimonial-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--gray-400);
    opacity: 1;
}
.testimonial-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}

/* =========================================
   CTA BANNER
   ========================================= */
.cta-banner {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    max-width: 100vw;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12, 127, 242, 0.9) 0%, rgba(0, 201, 167, 0.9) 100%);
}

.cta-content {
    position: relative;
    text-align: center;
    color: var(--white);
    max-width: 650px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-banner .btn-primary {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-md);
}
.cta-banner .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* =========================================
   BLOG SECTION
   ========================================= */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.blog-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.blog-card:hover .blog-img img {
    transform: scale(1.08);
}

.blog-category {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: var(--gradient);
    color: var(--white);
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-body {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
}
.blog-meta i { margin-right: 0.25rem; }

.blog-body h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}
.blog-body h3 a { color: var(--dark); }
.blog-body h3 a:hover { color: var(--primary); }

.blog-body > p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.blog-read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.blog-read-more:hover { gap: 0.75rem; }

/* =========================================
   PARTNERS SECTION
   ========================================= */
.partners-section {
    padding: 3rem 0 4rem;
    background: var(--gray-100);
    border-top: 1px solid var(--gray-200);
}

.partners-header {
    text-align: center;
    margin-bottom: 2rem;
}
.partners-header p {
    color: var(--gray-500);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partners-slider {
    overflow: hidden;
    position: relative;
}

.partners-track {
    display: flex;
    gap: 3rem;
    animation: scroll-partners 25s linear infinite;
    width: max-content;
}

.partner-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-400);
    white-space: nowrap;
    padding: 0.5rem 1rem;
    transition: var(--transition);
}
.partner-logo:hover { color: var(--primary); }
.partner-logo i { font-size: 1.4rem; }

@keyframes scroll-partners {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =========================================
   NEWSLETTER
   ========================================= */
.newsletter-section {
    padding: 4rem 0;
    background: var(--dark);
}

.newsletter-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.newsletter-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}
.newsletter-content p {
    color: var(--gray-400);
    font-size: 0.95rem;
    line-height: 1.6;
}

.newsletter-input-group {
    display: flex;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
}
.newsletter-input-group input {
    flex: 1;
    padding: 1rem 1.25rem;
    background: transparent;
    border: none;
    outline: none;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
}
.newsletter-input-group input::placeholder { color: var(--gray-500); }
.newsletter-input-group .btn {
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 1rem 2rem;
}

.newsletter-note {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 0.75rem;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: var(--dark-2);
    color: var(--gray-400);
    position: relative;
    padding-top: 0;
}

.footer-wave {
    color: var(--dark);
    margin-top: -1px;
}
.footer-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    padding: 3rem 0;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
}
.footer-logo img {
    height: 65px;
    width: auto;
}

.footer-about {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.6rem;
}
.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--gray-400);
    font-size: 0.85rem;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px;
}

.footer-links li {
    margin-bottom: 0.6rem;
}
.footer-links a {
    color: var(--gray-400);
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}
.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 0.5rem;
    font-size: 0.7rem;
    color: var(--primary);
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}
.footer-contact i {
    color: var(--primary);
    margin-top: 0.2rem;
    width: 16px;
    flex-shrink: 0;
}

.footer-payment {
    margin-top: 1.5rem;
}
.footer-payment span {
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.5rem;
}
.payment-icons {
    display: flex;
    gap: 0.75rem;
}
.payment-icons i {
    font-size: 1.8rem;
    color: var(--gray-500);
    transition: var(--transition);
}
.payment-icons i:hover { color: var(--white); }

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 1.5rem 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p {
    font-size: 0.85rem;
}
.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}
.footer-bottom-links a {
    color: var(--gray-500);
    font-size: 0.85rem;
}
.footer-bottom-links a:hover { color: var(--white); }

/* =========================================
   BACK TO TOP
   ========================================= */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* =========================================
   RESPONSIVE
   ========================================= */

/* ---------- Tablet (1024px) ---------- */
@media (max-width: 1024px) {
    .navbar-menu { display: none; }
    .mobile-toggle { display: flex; }
    .nav-cta { display: none; }
    .mega-menu { display: none !important; }

    .hero-content { max-width: 100%; padding: 0 1rem; }
    .hero-search-wrapper { position: relative; bottom: 0; margin-top: -3rem; padding: 0 1rem; }
    .hero-search { border-radius: var(--radius-md); }
    .search-bar-form { flex-wrap: wrap; }
    .search-field { flex: 1 1 200px; min-width: 150px; }
    .search-divider { display: none; }
    .search-btn { width: 100%; justify-content: center; margin: 0.5rem 0.25rem; border-radius: var(--radius-sm); }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .destinations-grid { grid-template-columns: repeat(2, 1fr); }
    .destinations-grid .dest-card-large { grid-row: span 1; }
    .packages-grid { grid-template-columns: repeat(2, 1fr); }
    .why-us-grid { grid-template-columns: 1fr; gap: 3rem; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .newsletter-inner { grid-template-columns: 1fr; text-align: center; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }

    .steps-grid { flex-wrap: wrap; justify-content: center; }
    .step-connector { display: none; }
    .step-card { flex: 0 0 45%; }

    .section-title { font-size: clamp(1.6rem, 4vw, 2.5rem); }
    .section-desc { font-size: 0.95rem; }

    .cta-content h2 { font-size: 1.6rem; }
    .cta-content p { font-size: 0.95rem; }

    .testimonial-card { padding: 1.5rem; }
    .testimonial-text { font-size: 0.95rem; }
}

/* ---------- Mobile Large (768px) ---------- */
@media (max-width: 768px) {
    .section-padding { padding: 4.5rem 0; overflow: hidden; }

    /* Topbar */
    .topbar { font-size: 0.72rem; overflow: hidden; }
    .topbar-left span:last-child { display: none; }
    .topbar-right .topbar-link { display: none; }

    /* Hide hero search bar on mobile */
    .hero-search-wrapper { display: none; }

    /* Swiper arrows */
    .hero-nav.swiper-button-next,
    .hero-nav.swiper-button-prev { width: 36px; height: 36px; }
    .hero-nav.swiper-button-next::after,
    .hero-nav.swiper-button-prev::after { font-size: 0.75rem; }

    /* Search overlay mobile */
    .search-overlay-inner::before { font-size: 1.3rem; }
    .search-overlay-inner::after { font-size: 0.82rem; margin-bottom: 1.5rem; }
    .search-input { padding: 1.1rem 1.25rem; font-size: 1rem; }
    .search-submit { padding: 0 1.5rem; font-size: 1.1rem; }
    .search-close { top: -65px; width: 38px; height: 38px; font-size: 1rem; }

    /* Navbar */
    .logo-img { height: 68px; }
    .navbar-inner { height: 76px; }
    .navbar.scrolled .logo-img { height: 56px; }

    /* Hero */
    .hero { min-height: 550px; max-height: 750px; }
    .hero-content { padding-top: 1rem; }
    .hero-subtitle { font-size: 0.72rem; padding: 0.4rem 1rem; letter-spacing: 1.5px; margin-bottom: 1rem; }
    .hero-title { font-size: 2rem; letter-spacing: -0.3px; line-height: 1.15; margin-bottom: 1rem; }
    .hero-desc { font-size: 0.88rem; max-width: 100%; margin-bottom: 1.5rem; line-height: 1.6; }
    .hero-buttons { flex-direction: column; align-items: center; gap: 0.8rem; }
    .hero-buttons .btn { width: 85%; justify-content: center; padding: 0.85rem 1.5rem; font-size: 0.9rem; }

    /* Section Headers */
    .section-header { margin-bottom: 2.5rem; }
    .section-tag { font-size: 0.7rem; padding: 0.4rem 1rem; letter-spacing: 1px; }
    .section-title { font-size: 1.5rem; margin-bottom: 0.75rem; }
    .section-desc { font-size: 0.88rem; line-height: 1.6; }

    /* Stats */
    .stats-section { padding: 3rem 0 2rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
    .stat-item { padding: 1.2rem 0.75rem; }
    .stat-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
    .stat-number { font-size: 1.6rem; }
    .stat-suffix { font-size: 1.3rem; }
    .stat-label { font-size: 0.78rem; }

    /* Services */
    .services-grid { grid-template-columns: 1fr; gap: 1rem; }
    .service-card { padding: 1.8rem 1.5rem; }
    .service-icon { width: 55px; height: 55px; font-size: 1.4rem; }
    .service-card h3 { font-size: 1.1rem; }
    .service-card p { font-size: 0.85rem; }

    /* Destinations */
    .destinations-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
        gap: 1rem;
    }
    .dest-info h3 { font-size: 1.25rem; }
    .dest-info p { font-size: 0.8rem; }
    .dest-meta { font-size: 0.78rem; gap: 1rem; }
    .dest-price strong { font-size: 1rem; }
    .dest-badge { font-size: 0.68rem; padding: 0.25rem 0.7rem; }
    .dest-overlay { padding: 1.2rem; }

    /* How It Works */
    .step-icon { width: 65px; height: 65px; font-size: 1.4rem; }
    .step-card h3 { font-size: 1rem; }
    .step-card p { font-size: 0.82rem; }
    .step-number { font-size: 2.2rem; }

    /* Packages */
    .packages-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .package-img { height: 200px; }
    .package-body { padding: 1.2rem; }
    .package-title { font-size: 1.05rem; }
    .package-desc { font-size: 0.82rem; line-height: 1.5; }
    .package-features span { font-size: 0.7rem; padding: 0.25rem 0.6rem; }
    .price-new { font-size: 1.3rem; }
    .price-old { font-size: 0.78rem; }
    .price-per { font-size: 0.72rem; }

    /* Why Us */
    .why-us-desc { font-size: 0.92rem; }
    .why-feature h4 { font-size: 0.92rem; }
    .why-feature p { font-size: 0.82rem; }
    .why-img-grid { grid-template-rows: 180px 180px; }
    .why-badge-inner { width: 100px; height: 100px; }
    .why-badge-number { font-size: 1.6rem; }
    .why-badge-text { font-size: 0.6rem; }

    /* Testimonials */
    .testimonial-card { padding: 1.5rem; }
    .testimonial-card::before { font-size: 3.5rem; top: 0.5rem; right: 1rem; }
    .testimonial-text { font-size: 0.9rem; line-height: 1.6; }
    .testimonial-author h4 { font-size: 0.9rem; }
    .testimonial-author span { font-size: 0.78rem; }
    .testimonial-avatar { width: 42px; height: 42px; }

    /* CTA Banner */
    .cta-banner { padding: 4rem 0; }
    .cta-content h2 { font-size: 1.4rem; }
    .cta-content p { font-size: 0.9rem; margin-bottom: 1.5rem; }

    /* Blog */
    .blog-grid { grid-template-columns: 1fr; gap: 1.25rem; }

    /* Newsletter */
    .newsletter-input-group { flex-direction: column; }
    .newsletter-input-group .btn { border-radius: 0 0 var(--radius-md) var(--radius-md); }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom-inner { flex-direction: column; gap: 0.75rem; text-align: center; }
    .footer-bottom-links { flex-wrap: wrap; justify-content: center; }

    /* Mobile Menu */
    .mobile-link { font-size: 0.92rem; padding: 0.8rem 1rem; }
    .mobile-submenu a { font-size: 0.85rem; }
}

/* ---------- Mobile Small (480px) ---------- */
@media (max-width: 480px) {
    .container { padding: 0 0.85rem; }
    .section-padding { padding: 3.5rem 0; overflow: hidden; }

    /* Topbar */
    .topbar { font-size: 0.7rem; padding: 0.4rem 0; }
    .topbar-left { gap: 0.4rem; }
    .topbar-left .topbar-link:nth-child(3) { display: none; }
    .topbar-social { gap: 0.4rem; }

    /* Swiper arrows hide */
    .hero-nav.swiper-button-next,
    .hero-nav.swiper-button-prev { display: none; }

    /* Why badge */
    .why-us-badge { display: none; }

    /* Navbar */
    .logo-img { height: 58px; }
    .navbar-inner { height: 68px; }
    .navbar.scrolled .logo-img { height: 48px; }
    .mobile-toggle { font-size: 1.2rem; }

    /* Hero */
    .hero { min-height: 480px; max-height: 650px; }
    .hero-subtitle { font-size: 0.65rem; padding: 0.35rem 0.8rem; letter-spacing: 1px; }
    .hero-title { font-size: 1.65rem; line-height: 1.2; }
    .hero-desc { font-size: 0.82rem; line-height: 1.6; margin-bottom: 1.2rem; }
    .hero-buttons .btn { width: 100%; font-size: 0.85rem; padding: 0.75rem 1.25rem; }
    .hero-buttons .btn-lg { padding: 0.75rem 1.25rem; font-size: 0.85rem; }

    /* Section headers */
    .section-header { margin-bottom: 2rem; }
    .section-tag { font-size: 0.65rem; padding: 0.35rem 0.85rem; }
    .section-title { font-size: 1.3rem; }
    .section-desc { font-size: 0.82rem; }

    /* Stats */
    .stats-section { padding: 2.5rem 0 1.5rem; }
    .stats-grid { gap: 0.6rem; }
    .stat-item { padding: 1rem 0.5rem; }
    .stat-icon { font-size: 1.3rem; }
    .stat-number { font-size: 1.4rem; }
    .stat-suffix { font-size: 1.1rem; }
    .stat-label { font-size: 0.7rem; }

    /* Services */
    .service-card { padding: 1.5rem 1.2rem; }
    .service-icon { width: 50px; height: 50px; font-size: 1.2rem; }
    .service-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
    .service-card p { font-size: 0.8rem; margin-bottom: 1rem; }

    /* Destinations */
    .destinations-grid { grid-auto-rows: 200px; gap: 0.8rem; }
    .dest-info h3 { font-size: 1.1rem; }
    .dest-rating { font-size: 0.75rem; }
    .dest-meta { font-size: 0.72rem; gap: 0.8rem; }

    /* Steps */
    .step-card { flex: 0 0 100%; padding: 1.5rem 1rem; }
    .step-icon { width: 58px; height: 58px; font-size: 1.2rem; }
    .step-card h3 { font-size: 0.95rem; }
    .step-card p { font-size: 0.78rem; }

    /* Packages */
    .package-img { height: 180px; }
    .package-body { padding: 1rem; }
    .package-title { font-size: 1rem; }
    .package-desc { font-size: 0.78rem; }
    .package-features span { font-size: 0.65rem; }
    .price-new { font-size: 1.15rem; }
    .btn-sm { padding: 0.45rem 1rem; font-size: 0.78rem; }

    /* Why Us */
    .why-us-desc { font-size: 0.85rem; }
    .why-feature h4 { font-size: 0.88rem; }
    .why-feature p { font-size: 0.78rem; }
    .why-img-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 200px 150px 150px;
    }
    .why-img-1 { grid-row: span 1; }
    .why-badge-inner { width: 85px; height: 85px; }
    .why-badge-number { font-size: 1.4rem; }

    /* Testimonials */
    .testimonial-card { padding: 1.2rem; }
    .testimonial-text { font-size: 0.85rem; }
    .testimonial-rating { font-size: 0.8rem; }

    /* CTA */
    .cta-banner { padding: 3rem 0; }
    .cta-content h2 { font-size: 1.2rem; }
    .cta-content p { font-size: 0.82rem; }
    .cta-buttons { flex-direction: column; }
    .cta-buttons .btn { width: 100%; justify-content: center; font-size: 0.85rem; }

    /* Newsletter */
    .newsletter-section { padding: 3rem 0; }

    /* Search bar */
}

/* ---------- Mobile Extra Small (360px) ---------- */
@media (max-width: 360px) {
    .container { padding: 0 0.75rem; }

    .logo-img { height: 50px; }
    .navbar-inner { height: 62px; }

    .hero-title { font-size: 1.45rem; }
    .hero-desc { font-size: 0.78rem; }
    .hero-subtitle { font-size: 0.6rem; }

    .section-title { font-size: 1.15rem; }
    .section-desc { font-size: 0.78rem; }

    .stat-number { font-size: 1.2rem; }
    .stat-label { font-size: 0.65rem; }
}

/* ---- Animations ---- */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* =========================================
   BOOKING MODAL
   ========================================= */
.booking-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 20, 38, 0.7);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.booking-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.booking-modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 680px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}
.booking-modal-overlay.active .booking-modal {
    transform: translateY(0) scale(1);
}

/* Scrollbar */
.booking-modal::-webkit-scrollbar { width: 6px; }
.booking-modal::-webkit-scrollbar-track { background: transparent; }
.booking-modal::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 3px; }

/* Close Button */
.booking-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.06);
    color: var(--gray-600);
    font-size: 1rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.booking-modal-close:hover {
    background: #fee2e2;
    color: #ef4444;
    transform: rotate(90deg);
}

/* Modal Header */
.booking-modal-header {
    text-align: center;
    padding: 2rem 2rem 1.5rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0fdf4 100%);
    border-bottom: 1px solid var(--gray-200);
}

.booking-modal-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 25px rgba(12, 127, 242, 0.3);
}

.booking-modal-header h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.3rem;
}
.booking-modal-header p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* Steps Indicator */
.booking-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 1.5rem;
}

.booking-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.45;
    transition: var(--transition);
}
.booking-step.active {
    opacity: 1;
}
.booking-step.done {
    opacity: 1;
}

.step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gray-300);
    color: var(--gray-600);
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.booking-step.active .step-circle {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(12, 127, 242, 0.35);
}
.booking-step.done .step-circle {
    background: var(--accent);
    color: var(--white);
}

.booking-step span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-700);
}

.booking-step-line {
    width: 40px;
    height: 2px;
    background: var(--gray-300);
    margin: 0 0.5rem;
    transition: var(--transition);
}
.booking-step-line.done {
    background: var(--accent);
}

/* Modal Body */
.booking-modal-body {
    padding: 1.5rem 2rem;
}

.booking-form-step {
    display: none;
    animation: fadeSlideIn 0.4s ease;
}
.booking-form-step.active {
    display: block;
}

@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Form Elements */
.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    flex: 1;
}
.form-group.full-width {
    flex: 1 1 100%;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.4rem;
}
.form-group label i {
    color: var(--primary);
    margin-right: 0.3rem;
    font-size: 0.78rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--gray-800);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(12, 127, 242, 0.1);
}
.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Traveler Counter */
.traveler-counter-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.traveler-counter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.2rem;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    border: 2px solid var(--gray-200);
    transition: var(--transition);
}
.traveler-counter:hover {
    border-color: var(--primary-light);
}

.traveler-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.traveler-info > i {
    font-size: 1.2rem;
    color: var(--primary);
    width: 36px;
    height: 36px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.traveler-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}
.traveler-info p {
    font-size: 0.78rem;
    color: var(--gray-500);
    margin: 0;
}

.counter-controls {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.counter-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--gray-300);
    background: var(--white);
    color: var(--gray-700);
    font-size: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.counter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

.counter-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    min-width: 24px;
    text-align: center;
}

/* Service Check Cards */
.services-check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-top: 0.3rem;
}

.check-card {
    cursor: pointer;
}
.check-card input {
    display: none;
}
.check-card-inner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: var(--transition);
    background: var(--white);
}
.check-card-inner i {
    color: var(--gray-400);
    transition: var(--transition);
}
.check-card input:checked + .check-card-inner {
    border-color: var(--primary);
    background: var(--primary-light);
    color: var(--primary);
}
.check-card input:checked + .check-card-inner i {
    color: var(--primary);
}

/* Terms */
.terms-check {
    display: flex !important;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem !important;
    cursor: pointer;
}
.terms-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}
.terms-check a {
    color: var(--primary);
    text-decoration: underline;
}

/* Modal Footer */
.booking-modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    border-top: 1px solid var(--gray-200);
    background: var(--gray-100);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.btn-modal {
    padding: 0.75rem 1.8rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-modal-back {
    background: var(--white);
    color: var(--gray-700);
    border: 2px solid var(--gray-300);
}
.btn-modal-back:hover {
    border-color: var(--gray-400);
    color: var(--dark);
}

.btn-modal-next {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(12, 127, 242, 0.3);
    margin-left: auto;
}
.btn-modal-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(12, 127, 242, 0.4);
}

.btn-modal-submit {
    background: linear-gradient(135deg, var(--accent) 0%, #059669 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 201, 167, 0.3);
    margin-left: auto;
}
.btn-modal-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 201, 167, 0.4);
}

/* Success State */
.booking-success {
    text-align: center;
    padding: 3rem 2rem;
}
.success-animation {
    margin-bottom: 1.5rem;
}
.success-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, #059669 100%);
    color: var(--white);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: successPop 0.5s cubic-bezier(0.17, 0.89, 0.32, 1.28);
    box-shadow: 0 10px 30px rgba(0, 201, 167, 0.3);
}

@keyframes successPop {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.booking-success h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}
.booking-success p {
    font-size: 0.95rem;
    color: var(--gray-600);
    max-width: 400px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.success-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}
.success-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent);
}
.success-details span i {
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 600px) {
    .booking-modal {
        max-height: 95vh;
        border-radius: var(--radius-md);
    }
    .booking-modal-header {
        padding: 1.5rem 1.2rem 1.2rem;
    }
    .booking-modal-header h2 {
        font-size: 1.3rem;
    }
    .booking-modal-body {
        padding: 1.2rem;
    }
    .booking-modal-footer {
        padding: 1rem 1.2rem;
    }
    .form-row {
        flex-direction: column;
        gap: 0.8rem;
    }
    .booking-steps span {
        display: none;
    }
    .booking-step-line {
        width: 25px;
    }
    .services-check-grid {
        grid-template-columns: 1fr;
    }
    .success-details {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    .btn-modal {
        padding: 0.7rem 1.3rem;
        font-size: 0.85rem;
    }
}

/* Print styles */
@media print {
    .topbar, .navbar, .hero-search-wrapper, .back-to-top, .newsletter-section { display: none; }
    .hero { height: auto; min-height: auto; }
}
