/* ==========================================
   AGENCIA DE VIAJES - LANDING PAGE
   ========================================== */

:root {
    --primary: #6c5ce7;
    --primary-dark: #5a4bd1;
    --secondary: #00cec9;
    --accent: #ff7675;
    --hot: #e17055;
    --gold: #fdcb6e;
    --dark: #0c0c1d;
    --darker: #060613;
    --glass: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --gradient-main: linear-gradient(135deg, #6c5ce7, #00cec9);
    --gradient-hot: linear-gradient(135deg, #e17055, #fdcb6e);
    --gradient-dark: linear-gradient(135deg, #0c0c1d, #1a1a3e);
    --shadow-sm: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-md: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-lg: 0 25px 60px rgba(0,0,0,0.15);
    --shadow-glow: 0 0 40px rgba(108, 92, 231, 0.25);
    --radius: 20px;
    --radius-sm: 12px;
    --font: 'Poppins', sans-serif;
    --font-display: 'Playfair Display', serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: #2d3436;
    background: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

/* ---------- TOPBAR ---------- */
.topbar {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    font-size: 0.78rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    height: 40px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.3s ease;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.topbar-social {
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-social a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.78rem;
}

.topbar-social a:hover { color: var(--secondary); }

.topbar-social a i { font-size: 0.85rem; }

.topbar-divider {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,0.15);
    margin: 0 8px;
    display: inline-block;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-rates {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rate-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,0.8);
    font-size: 0.78rem;
}

.rate-item img { border-radius: 2px; }
.rate-item strong { color: var(--gold); }

/* Language Selector */
.lang-selector { position: relative; }

.lang-btn {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.85);
    padding: 3px 12px;
    border-radius: 6px;
    font-size: 0.78rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    font-family: var(--font);
}

.lang-btn:hover { background: rgba(255,255,255,0.15); }
.lang-btn .bi-chevron-down { font-size: 0.6rem; }

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    padding: 6px;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.25s;
    z-index: 10001;
}

.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    color: #333;
    text-decoration: none;
    font-size: 0.85rem;
    border-radius: 6px;
    transition: background 0.2s;
}

.lang-dropdown a:hover { background: #f0f0ff; color: var(--primary); }
.lang-dropdown a img { border-radius: 2px; }

/* Hide Google Translate bar */
.goog-te-banner-frame, .skiptranslate { display: none !important; }
body { top: 0 !important; }

/* ---------- NAVBAR ---------- */
#mainNav {
    padding: 18px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
}

#mainNav:not(.scrolled) { background: transparent; }

#mainNav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 30px rgba(0,0,0,0.08);
    padding: 10px 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: #fff !important;
    gap: 8px;
    transition: color 0.3s;
}

.navbar-logo { height: 55px; transition: all 0.3s; }
#mainNav.scrolled .navbar-logo { height: 45px; }
#mainNav.scrolled .navbar-brand { color: var(--dark) !important; }

.footer-logo { height: 50px; }

.nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px !important;
    border-radius: 10px;
    transition: all 0.3s;
}

.nav-link:hover, .nav-link.active { color: #fff !important; background: rgba(255,255,255,0.1); }
#mainNav.scrolled .nav-link { color: #555 !important; }
#mainNav.scrolled .nav-link:hover, #mainNav.scrolled .nav-link.active { color: var(--primary) !important; background: rgba(108,92,231,0.08); }

.navbar-toggler { border: none; color: #fff; font-size: 1.6rem; padding: 4px 8px; }
#mainNav.scrolled .navbar-toggler { color: var(--dark); }

.btn-wsp {
    background: #25d366;
    color: #fff !important;
    border: none;
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-wsp:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

/* ---------- DROPDOWNS & MEGA MENU ---------- */
.navbar .dropdown-menu {
    border: none;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    padding: 10px;
    margin-top: 8px;
    animation: dropIn 0.25s ease;
}

@keyframes dropIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.navbar .dropdown-item {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.88rem;
    color: #444;
    transition: all 0.2s;
}

.navbar .dropdown-item:hover {
    background: #f0f0ff;
    color: var(--primary);
    padding-left: 18px;
}

.navbar .dropdown-item.disabled { color: #bbb; pointer-events: none; opacity: 0.55; }
.navbar .dropdown-item .bi-arrow-right-short { color: var(--secondary); font-size: 1.1rem; }

.navbar .dropdown-divider { margin: 6px 10px; border-color: #eee; }

.navbar .dropdown-toggle::after {
    border: none;
    content: '\F282';
    font-family: 'bootstrap-icons';
    font-size: 0.6rem;
    vertical-align: middle;
    margin-left: 4px;
}

/* Mega Menu */
.mega-dropdown { position: static; }

.mega-menu {
    width: 100%;
    left: 0;
    right: 0;
    padding: 20px 25px !important;
}

.mega-menu-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mega-col {}

.mega-title {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    padding: 0 14px 8px;
    margin-bottom: 4px;
    border-bottom: 2px solid #f0f0ff;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Navbar transparent dropdowns */
#mainNav:not(.scrolled) .dropdown-menu {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
}

/* ---------- HERO ---------- */
.carousel-item { height: 100vh; min-height: 650px; position: relative; }

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--dark);
    transform: scale(1.05);
    transition: transform 8s ease-out;
}

.carousel-item.active .hero-bg { transform: scale(1); }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12,12,29,0.85) 0%, rgba(12,12,29,0.4) 50%, rgba(0,206,201,0.15) 100%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 40% 70%, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 60% 20%, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 80% 50%, rgba(255,255,255,0.2), transparent),
        radial-gradient(1.5px 1.5px at 90% 80%, rgba(255,255,255,0.25), transparent),
        radial-gradient(1px 1px at 10% 90%, rgba(255,255,255,0.2), transparent);
    animation: floatParticles 20s linear infinite;
}

@keyframes floatParticles {
    0% { transform: translateY(0); }
    100% { transform: translateY(-30px); }
}

.z-3 { z-index: 3; }

.hero-content { max-width: 680px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-sub {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 35px;
    max-width: 520px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn-hero-primary {
    background: var(--gradient-main);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-primary:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-hero-outline {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-outline:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
    transform: translateY(-3px);
}

.carousel-arrow {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.15);
}

.carousel-control-prev:hover .carousel-arrow,
.carousel-control-next:hover .carousel-arrow { background: var(--primary); border-color: var(--primary); }

.carousel-control-prev-icon, .carousel-control-next-icon { display: none; }

.carousel-indicators button {
    width: 12px; height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    transition: all 0.3s;
}

.carousel-indicators .active {
    background: var(--secondary);
    border-color: var(--secondary);
    width: 35px;
    border-radius: 20px;
}

/* Hero Search */
.hero-search-bar {
    position: relative;
    margin-top: -45px;
    z-index: 50;
    padding: 0 15px;
}

.search-box {
    background: #fff;
    border-radius: var(--radius);
    padding: 25px 30px;
    box-shadow: var(--shadow-lg);
}

.search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    border-radius: var(--radius-sm);
    transition: background 0.3s;
    cursor: pointer;
}

.search-item:hover { background: #f8f9fa; }
.search-item i { font-size: 1.5rem; color: var(--primary); }
.search-item small { color: #999; font-size: 0.78rem; display: block; }
.search-item strong { font-size: 0.95rem; color: var(--dark); }

.btn-search {
    background: var(--gradient-main);
    color: #fff !important;
    border: none;
    width: 100%;
    padding: 16px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-search:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }

/* ---------- STATS ---------- */
.stats-section {
    padding: 70px 0;
    background: var(--gradient-dark);
}

.stat-box {
    text-align: center;
    padding: 30px 15px;
    border-radius: var(--radius);
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    transition: all 0.4s;
}

.stat-box:hover { transform: translateY(-8px); background: rgba(255,255,255,0.12); }

.stat-icon-wrap {
    width: 60px; height: 60px;
    margin: 0 auto 15px;
    background: var(--gradient-main);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
}

.stat-box h3 { font-size: 2.2rem; font-weight: 800; color: #fff; margin-bottom: 5px; }
.stat-box p { color: rgba(255,255,255,0.6); margin: 0; font-size: 0.9rem; }

/* ---------- SECTIONS COMMON ---------- */
.section-block { padding: 100px 0; }
.bg-light-custom { background: #f8f9ff; }

.pill-badge {
    display: inline-block;
    background: var(--gradient-main);
    color: #fff;
    padding: 6px 22px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.pill-hot { background: var(--gradient-hot); }
.pill-light { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); }

.section-heading {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--dark);
    margin-top: 15px;
    line-height: 1.2;
}

.section-sub {
    color: #888;
    font-size: 1.05rem;
    max-width: 550px;
    margin: 12px auto 0;
    line-height: 1.7;
}

/* ---------- DESTINATIONS ---------- */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.dest-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 240px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.dest-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: var(--shadow-lg); }
.dest-img { position: absolute; inset: 0; }
.dest-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.dest-card:hover .dest-img img { transform: scale(1.15); }

.dest-placeholder {
    width: 100%; height: 100%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 3rem;
}

.dest-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    z-index: 2;
}

.dest-info h5 { font-weight: 700; margin-bottom: 3px; font-size: 1rem; }
.dest-info span { font-size: 0.85rem; color: var(--gold); font-weight: 600; }
.dest-link { position: absolute; inset: 0; z-index: 3; }

/* ---------- TOUR CARDS ---------- */
.tour-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.04);
}

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

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

.tour-no-img {
    height: 100%;
    background: linear-gradient(135deg, #dfe6e9, #b2bec3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #fff;
}

.tour-discount { position: absolute; top: 15px; left: 15px; z-index: 3; }
.tour-discount span {
    background: var(--accent);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(255, 118, 117, 0.4);
}

.tour-slots-tag {
    position: absolute;
    bottom: 15px; right: 15px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(10px);
}

.tag-ok { background: rgba(0, 184, 148, 0.9); color: #fff; }
.tag-warm { background: rgba(253, 203, 110, 0.95); color: #333; }
.tag-hot { background: rgba(225, 112, 85, 0.95); color: #fff; animation: pulseTag 1.5s infinite; }
.tag-sold { background: rgba(214, 48, 49, 0.9); color: #fff; }

@keyframes pulseTag { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }

.tour-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12,12,29,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 2;
}

.tour-card:hover .tour-img-overlay { opacity: 1; }

.tour-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }

.tour-tags { display: flex; gap: 15px; margin-bottom: 12px; }
.tour-tags span { font-size: 0.82rem; color: #999; display: flex; align-items: center; gap: 4px; }
.tour-tags i { color: var(--primary); font-size: 0.85rem; }

.tour-name { font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; line-height: 1.3; }
.tour-excerpt { color: #777; font-size: 0.9rem; line-height: 1.6; margin-bottom: 12px; }

.tour-includes { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 15px; }
.tour-includes span {
    font-size: 0.78rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 4px;
    background: #f0f0ff;
    padding: 3px 10px;
    border-radius: 20px;
}
.tour-includes i { color: var(--secondary); font-size: 0.7rem; }

.tour-slots-bar { margin-bottom: 12px; }

.progress-custom { height: 8px; background: #eee; border-radius: 10px; overflow: hidden; }
.progress-fill { height: 100%; border-radius: 10px; transition: width 1s ease; }
.fill-ok { background: var(--secondary); }
.fill-warm { background: var(--gold); }
.fill-hot { background: var(--hot); }
.fill-sold { background: #d63031; }

.slots-ok { color: #00b894; }
.slots-warm { color: #e17055; }
.slots-hot { color: #d63031; }
.slots-sold { color: #d63031; }

.tour-departure { font-size: 0.85rem; color: #888; margin-bottom: 15px; display: flex; align-items: center; gap: 6px; }
.tour-departure i { color: var(--primary); }

.tour-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
}

.tour-pricing small { display: block; color: #999; font-size: 0.75rem; }
.old-price { text-decoration: line-through; color: #bbb; font-size: 0.85rem; }

.now-price {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-reserve-now {
    background: var(--gradient-main);
    color: #fff !important;
    border: none;
    border-radius: 50px;
    padding: 10px 22px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-reserve-now:hover { transform: translateY(-3px); box-shadow: var(--shadow-glow); }

.btn-sold-out { background: #ddd; color: #999; border: none; border-radius: 50px; padding: 10px 22px; font-weight: 600; }

.empty-state { padding: 60px 20px; }
.empty-state i { font-size: 4rem; color: #ddd; display: block; margin-bottom: 15px; }
.empty-state h4 { font-weight: 700; color: #999; }
.empty-state p { color: #bbb; }

/* ---------- CTA BANNER ---------- */
.cta-banner { padding: 80px 0; position: relative; overflow: hidden; }

.cta-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-main);
    z-index: 1;
}

.cta-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0,0,0,0.1) 0%, transparent 50%);
}

.cta-title { font-family: var(--font-display); font-size: 2.5rem; font-weight: 900; color: #fff; margin-bottom: 10px; }
.cta-sub { color: rgba(255,255,255,0.85); font-size: 1.1rem; }

.btn-cta-main {
    background: #fff;
    color: var(--primary) !important;
    border: none;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-cta-main:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 10px 30px rgba(0,0,0,0.2); color: var(--primary); }

.btn-cta-outline {
    background: transparent;
    color: #fff !important;
    border: 2px solid rgba(255,255,255,0.4);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-cta-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; color: #fff; transform: translateY(-3px); }

/* ---------- PROMOTIONS ---------- */
.promos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }

.promo-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 350px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-item:hover { transform: translateY(-10px) scale(1.02); box-shadow: var(--shadow-lg); }
.promo-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.promo-item:hover img { transform: scale(1.1); }

.promo-glass {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 30px 25px 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 70%, transparent 100%);
    color: #fff;
    transform: translateY(30%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-item:hover .promo-glass { transform: translateY(0); }

.promo-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--gradient-hot);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.promo-glass h4 { font-weight: 700; font-size: 1.2rem; margin-bottom: 5px; }
.promo-glass p { font-size: 0.9rem; opacity: 0.85; margin-bottom: 10px; }

/* ---------- VIDEOS ---------- */
.section-dark { background: var(--gradient-dark); }

.video-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    transition: all 0.4s;
}

.video-card:hover { transform: translateY(-8px); border-color: var(--primary); }

.video-frame { position: relative; padding-bottom: 56.25%; height: 0; }
.video-frame iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

.video-details { padding: 18px; color: #fff; }
.video-details h5 { font-weight: 600; font-size: 1rem; margin-bottom: 5px; }
.video-details p { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin: 0; }

/* ---------- ABOUT ---------- */
.about-visual { position: relative; }

.about-img-main { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md); }

.about-img-placeholder {
    height: 450px;
    background: var(--gradient-main);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-globe { font-size: 8rem; color: rgba(255,255,255,0.2); animation: spinSlow 20s linear infinite; }
@keyframes spinSlow { to { transform: rotate(360deg); } }

.about-floating-card {
    position: absolute;
    bottom: -20px; right: -20px;
    background: #fff;
    padding: 20px 25px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-floating-card i { font-size: 2rem; color: var(--gold); }
.about-floating-card strong { display: block; font-size: 1.1rem; color: var(--dark); }
.about-floating-card small { color: #999; }

.about-text { color: #666; font-size: 1.05rem; line-height: 1.8; margin: 15px 0 25px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.about-feat {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 15px;
    border-radius: var(--radius-sm);
    transition: all 0.3s;
}

.about-feat:hover { background: #f8f9ff; }

.feat-icon {
    width: 48px; height: 48px; min-width: 48px;
    background: var(--gradient-main);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.about-feat h6 { font-weight: 700; font-size: 0.95rem; margin-bottom: 3px; color: var(--dark); }
.about-feat p { color: #999; font-size: 0.82rem; margin: 0; }

/* ---------- TESTIMONIALS ---------- */
.testimonial-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s;
    height: 100%;
    position: relative;
}

.testimonial-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.testi-quote { position: absolute; top: 20px; right: 25px; font-size: 2.5rem; color: #eee; }
.testi-stars { margin-bottom: 15px; color: var(--gold); font-size: 0.9rem; }
.testi-text { color: #555; font-style: italic; line-height: 1.8; margin-bottom: 20px; font-size: 0.95rem; }

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.testi-author img { width: 45px; height: 45px; border-radius: 50%; object-fit: cover; }

.testi-avatar {
    width: 45px; height: 45px;
    border-radius: 50%;
    background: var(--gradient-main);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.testi-author strong { font-size: 0.95rem; color: var(--dark); }

/* ---------- CONTACT ---------- */
.contact-box {
    text-align: center;
    padding: 40px 25px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s;
    height: 100%;
}

.contact-box:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }

.contact-icon {
    width: 70px; height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
}

.contact-icon.icon-blue { background: var(--gradient-main); }
.contact-icon.icon-purple { background: linear-gradient(135deg, #a29bfe, #6c5ce7); }

.contact-box h5 { font-weight: 700; margin-bottom: 5px; }
.contact-box p { color: #888; font-size: 0.9rem; margin-bottom: 15px; }

.mega-cta {
    background: var(--gradient-main);
    padding: 50px 40px;
    border-radius: var(--radius);
    color: #fff;
}

.mega-cta h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.8rem; }
.mega-cta p { opacity: 0.85; margin-bottom: 20px; }

.btn-mega-wsp {
    background: #25d366;
    color: #fff !important;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-mega-wsp:hover {
    background: #128c7e;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
    color: #fff;
}

/* ---------- FOOTER ---------- */
.site-footer { position: relative; }
.footer-wave { color: var(--dark); line-height: 0; margin-bottom: -2px; }

.footer-content { background: var(--dark); padding: 60px 0 30px; color: #fff; }

.footer-brand { font-weight: 800; font-size: 1.3rem; margin-bottom: 15px; display: flex; align-items: center; gap: 8px; }
.footer-brand i { color: var(--secondary); }
.footer-desc { color: rgba(255,255,255,0.5); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }

.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
    width: 42px; height: 42px;
    border-radius: 12px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s;
    text-decoration: none;
}

.footer-socials a:hover { background: var(--primary); transform: translateY(-3px); }

.footer-content h6 { font-weight: 700; font-size: 1rem; margin-bottom: 18px; color: #fff; }
.footer-nav { list-style: none; padding: 0; }
.footer-nav li { margin-bottom: 10px; }
.footer-nav a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.9rem; transition: all 0.3s; }
.footer-nav a:hover { color: var(--secondary); padding-left: 5px; }

.footer-contact li { color: rgba(255,255,255,0.5); font-size: 0.9rem; display: flex; align-items: flex-start; gap: 8px; }
.footer-contact i { color: var(--primary); margin-top: 3px; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 25px; margin-top: 40px; }
.footer-bottom p { text-align: center; color: rgba(255,255,255,0.3); font-size: 0.85rem; margin: 0; }

/* ---------- WHATSAPP FLOAT ---------- */
.wsp-float {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 62px; height: 62px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    z-index: 9998;
    text-decoration: none;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    transition: all 0.3s;
    animation: wspBounce 2.5s infinite;
}

.wsp-float:hover { transform: scale(1.15); color: #fff; animation: none; }

.wsp-tooltip {
    position: absolute;
    right: 75px;
    background: #fff;
    color: #333;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s;
    pointer-events: none;
}

.wsp-float:hover .wsp-tooltip { opacity: 1; transform: translateX(0); }

.wsp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px; top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #fff;
}

@keyframes wspBounce {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-10px); }
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
    position: fixed;
    bottom: 30px; right: 100px;
    width: 45px; height: 45px;
    border-radius: 50%;
    background: var(--gradient-main);
    color: #fff;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s;
    box-shadow: var(--shadow-glow);
}

.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); }

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991px) {
    .topbar { height: auto; padding: 6px 0; }
    .topbar-inner { flex-wrap: wrap; gap: 6px; justify-content: center; }
    .topbar-social { flex-wrap: wrap; justify-content: center; font-size: 0.72rem; }
    .topbar-social a span,
    .topbar-social a:not([aria-label]) { font-size: 0.72rem; }
    .topbar-right { flex-wrap: wrap; justify-content: center; gap: 6px; }
    .topbar-rates { gap: 8px; }
    .rate-item { font-size: 0.72rem; }

    #mainNav { background: rgba(255,255,255,0.97); backdrop-filter: blur(20px); top: 40px !important; }
    .navbar-brand { color: var(--dark) !important; }
    .navbar-logo { height: 45px; }
    .nav-link { color: #555 !important; }

    .hero-title { font-size: 2.8rem; }
    .section-heading { font-size: 2.2rem; }
    .cta-title { font-size: 2rem; }
    .about-features { grid-template-columns: 1fr; }
    .about-floating-card { right: 10px; bottom: -10px; }

    .hero-search-bar { margin-top: -25px; }
    .search-box { padding: 20px; }

    .mega-menu-inner { grid-template-columns: 1fr; gap: 10px; }
    .mega-menu { padding: 10px !important; }
    .navbar .dropdown-menu { box-shadow: none; background: rgba(0,0,0,0.03); margin-top: 0; }
    .mega-title { font-size: 0.78rem; }
}

@media (max-width: 576px) {
    .topbar-social a:has(> .bi-envelope-fill),
    .topbar-social a:has(> .bi-telephone-fill) { display: none; }
    .topbar-rates { gap: 6px; }
    .rate-item strong { font-size: 0.72rem; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .hero-sub { font-size: 1rem; }
    .section-block { padding: 60px 0; }
    .section-heading { font-size: 1.8rem; }
    .stat-box h3 { font-size: 1.6rem; }
    .destinations-grid { grid-template-columns: repeat(2, 1fr); }
    .dest-card { height: 180px; }
    .promos-grid { grid-template-columns: 1fr; }
    .promo-item { height: 280px; }

    .hero-btns { flex-direction: column; }
    .btn-hero-primary, .btn-hero-outline { width: 100%; justify-content: center; }
    .cta-title { font-size: 1.6rem; }
    .btn-cta-main, .btn-cta-outline { width: 100%; text-align: center; justify-content: center; }
    .btn-cta-outline { margin-left: 0 !important; margin-top: 10px; }
    .mega-cta { padding: 35px 25px; }
    .mega-cta h3 { font-size: 1.4rem; }
    .wsp-float { bottom: 20px; right: 20px; width: 55px; height: 55px; font-size: 1.5rem; }
    .back-to-top { right: 85px; bottom: 20px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.8rem; }
    .destinations-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .dest-card { height: 160px; }
}
