/* ===========================
   VARIABLES & RESET
=========================== */
:root {
    --primary: #0077ff;
    --primary-dark: #005ce6;
    --accent: #ff5e3a;
    --dark: #0a142f;
    --text: #1a1a2e;
    --text-muted: #6b7280;
    --bg: #ffffff;
    --bg-soft: #f7f9fc;
    --border: rgba(0,0,0,0.07);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 999px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --gradient: linear-gradient(135deg, #0077ff, #00c6ff);
    --navbar-h: 72px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--bg); overflow-x: hidden; line-height: 1.6; }
h1,h2,h3,h4 { font-family: 'Outfit', sans-serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
input, button { font-family: inherit; }

/* ===========================
   UTILITIES
=========================== */
.section { padding: 90px 5%; }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.section-tag { display: inline-block; background: rgba(0,119,255,0.08); color: var(--primary); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 16px; border-radius: var(--radius-full); margin-bottom: 16px; }
.section-tag.light { background: rgba(255,255,255,0.2); color: #fff; }
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 16px; }
.section-header h2 span { color: var(--primary); }
.section-header p { color: var(--text-muted); font-size: 1rem; }

.glass { background: rgba(255,255,255,0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.6); }

/* ===========================
   BUTTONS
=========================== */
.btn-primary {
    background: var(--gradient);
    color: #fff; border: none;
    padding: 12px 28px; border-radius: var(--radius-full);
    font-weight: 600; font-size: 0.95rem;
    cursor: pointer; transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0,119,255,0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,119,255,0.35); }
.btn-primary.btn-lg { padding: 16px 40px; font-size: 1rem; }

.btn-ghost {
    background: transparent; border: none;
    color: #fff; font-weight: 600; font-size: 0.95rem;
    padding: 12px 20px; border-radius: var(--radius-full);
    cursor: pointer; transition: var(--transition);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.navbar.scrolled .btn-ghost { color: var(--text); }
.navbar.scrolled .btn-ghost:hover { background: var(--bg-soft); }

.btn-outline-light {
    background: transparent; border: 2px solid rgba(255,255,255,0.5);
    color: #fff; padding: 14px 38px; border-radius: var(--radius-full);
    font-weight: 600; font-size: 1rem;
    cursor: pointer; transition: var(--transition);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

/* ===========================
   NAVBAR
=========================== */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    height: var(--navbar-h);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
}
.logo {
    font-family: 'Outfit', sans-serif; font-size: 1.6rem; font-weight: 800;
    color: #fff; display: flex; align-items: center; gap: 10px;
}
.logo i { color: var(--primary); }
.logo span { color: var(--primary); }
.navbar.scrolled .logo { color: var(--text); }

.nav-links { display: flex; gap: 36px; }
.nav-link { font-weight: 500; font-size: 0.95rem; color: rgba(255,255,255,0.85); position: relative; transition: var(--transition); }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--primary); border-radius: 2px; transition: var(--transition); }
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.navbar.scrolled .nav-link { color: var(--text-muted); }
.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.active { color: var(--primary); }

.nav-actions { display: flex; align-items: center; gap: 8px; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: var(--transition); }
.navbar.scrolled .hamburger span { background: var(--text); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 999; }

/* ===========================
   HERO
=========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    padding: 0 5%; padding-top: var(--navbar-h);
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background: url('assets/hero_bg.png') center/cover no-repeat;
    transform: scale(1.05);
    transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(10,20,47,0.65) 0%, rgba(10,20,47,0.3) 50%, rgba(10,20,47,0.7) 100%);
}
.hero-content {
    position: relative; z-index: 2;
    text-align: center; max-width: 900px; width: 100%;
    padding: 60px 0 80px;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.12); color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    padding: 8px 20px; border-radius: var(--radius-full);
    font-size: 0.85rem; font-weight: 600; margin-bottom: 28px;
    backdrop-filter: blur(8px);
}
.hero-badge i { color: #ffd700; }
.hero-content h1 {
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    color: #fff; margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero-content h1 span { color: #60b3ff; }
.hero-content > p { font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,0.85); margin-bottom: 44px; }

/* Search Card */
.search-card {
    display: flex; align-items: center;
    padding: 10px 10px 10px 24px;
    border-radius: var(--radius-full);
    gap: 0; max-width: 820px; margin: 0 auto 44px;
    box-shadow: var(--shadow-lg);
}
.search-field { display: flex; align-items: center; gap: 14px; flex: 1; min-width: 0; }
.search-field i { font-size: 1.25rem; color: var(--primary); flex-shrink: 0; }
.search-field div { flex: 1; min-width: 0; text-align: left; }
.search-field label { display: block; font-size: 0.75rem; font-weight: 700; color: var(--text); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 3px; }
.search-field input { border: none; background: transparent; outline: none; font-size: 0.95rem; color: var(--text-muted); width: 100%; }
.search-field input::placeholder { color: #b0b8c8; }
.search-divider { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; margin: 0 16px; }
.btn-search {
    background: var(--gradient); color: #fff; border: none;
    padding: 16px 32px; border-radius: var(--radius-full);
    font-size: 1rem; font-weight: 700; cursor: pointer;
    display: flex; align-items: center; gap: 10px;
    transition: var(--transition); white-space: nowrap; flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0,119,255,0.3);
}
.btn-search:hover { transform: scale(1.04); }

/* Stats */
.hero-stats { display: flex; align-items: center; justify-content: center; gap: 0; }
.stat { text-align: center; padding: 0 28px; }
.stat strong { display: block; font-family: 'Outfit', sans-serif; font-size: 1.6rem; font-weight: 800; color: #fff; }
.stat span { font-size: 0.8rem; color: rgba(255,255,255,0.7); font-weight: 500; }
.stat-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.2); }

/* Scroll indicator */
.scroll-indicator { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2; }
.scroll-dot { width: 28px; height: 44px; border: 2px solid rgba(255,255,255,0.4); border-radius: 14px; display: flex; justify-content: center; padding-top: 6px; }
.scroll-dot::before { content: ''; width: 4px; height: 8px; background: #fff; border-radius: 2px; animation: scrollAnim 2s infinite; }
@keyframes scrollAnim { 0%,100%{transform:translateY(0);opacity:1} 80%{transform:translateY(10px);opacity:0} }

/* ===========================
   DESTINATIONS SLIDER
=========================== */
.destinations-section { background: var(--bg-soft); }
.slider-wrapper { position: relative; overflow: hidden; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.slider-track { display: flex; transition: transform 0.6s cubic-bezier(0.77,0,0.18,1); will-change: transform; }
.slide-item {
    min-width: 100%; height: 560px;
    background-image: var(--bg);
    background-size: cover; background-position: center;
    position: relative; flex-shrink: 0;
}
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,20,47,0.85) 30%, rgba(10,20,47,0.1) 100%); }
.slide-content { position: absolute; bottom: 60px; left: 60px; color: #fff; max-width: 450px; z-index: 2; }
.slide-tag { display: inline-block; background: var(--primary); color: #fff; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 14px; border-radius: var(--radius-full); margin-bottom: 16px; }
.slide-content h3 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 14px; }
.slide-content p { color: rgba(255,255,255,0.75); margin-bottom: 22px; font-size: 0.95rem; line-height: 1.7; }
.slide-meta { display: flex; gap: 24px; margin-bottom: 28px; font-size: 0.9rem; font-weight: 600; }
.slide-meta i { margin-right: 6px; color: #ffd700; }
.btn-slide { display: inline-flex; align-items: center; gap: 10px; background: #fff; color: var(--primary); border: none; padding: 13px 28px; border-radius: var(--radius-full); font-weight: 700; cursor: pointer; transition: var(--transition); font-size: 0.9rem; }
.btn-slide:hover { background: var(--primary); color: #fff; transform: translateX(4px); }

.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; border: none; background: rgba(255,255,255,0.9); backdrop-filter: blur(8px); color: var(--text); font-size: 1rem; cursor: pointer; transition: var(--transition); z-index: 5; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); }
.slider-btn:hover { background: var(--primary); color: #fff; }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }
.slider-dots { position: absolute; bottom: 20px; right: 24px; display: flex; gap: 8px; z-index: 5; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); border: none; cursor: pointer; transition: var(--transition); padding: 0; }
.dot.active { background: #fff; width: 24px; border-radius: var(--radius-full); }

/* ===========================
   SERVICES (TRUST PILLARS)
=========================== */
.services-section { 
    background: #fff; 
    padding: 120px 5%; 
    position: relative;
    overflow: hidden; 
}

.services-section::before {
    content: '';
    position: absolute;
    top: -10%; right: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0,119,255,0.05) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
}

.services-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.services-left h2 { font-size: clamp(2.5rem, 4vw, 3.5rem); margin-bottom: 24px; line-height: 1.1; }
.services-left p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 40px; max-width: 450px; }

.trust-badge-row { display: flex; gap: 24px; }
.trust-badge { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 0.9rem; color: var(--dark); }
.trust-badge i { font-size: 1.4rem; color: var(--primary); }

.services-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.glass-pill {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 24px 32px;
    background: #fcfdfe;
    border: 1px solid rgba(0,119,255,0.05);
    border-radius: 100px; /* Fully rounded pill shape */
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.glass-pill:hover {
    transform: translateX(15px);
    background: #fff;
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.p-icon {
    width: 60px; height: 60px;
    background: var(--bg-soft);
    color: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.glass-pill:hover .p-icon {
    background: var(--primary);
    color: #fff;
    transform: rotate(-10deg);
}

.p-text h3 { font-size: 1.2rem; margin-bottom: 4px; color: var(--dark); }
.p-text p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.4; }

@media (max-width: 992px) {
    .services-container { grid-template-columns: 1fr; gap: 60px; text-align: center; }
    .services-left p { margin-left: auto; margin-right: auto; }
    .trust-badge-row { justify-content: center; }
    .glass-pill:hover { transform: translateY(-5px); }
}

@media (max-width: 580px) {
    .glass-pill { flex-direction: column; border-radius: 30px; text-align: center; padding: 30px; }
}

/* ===========================
   CTA SECTION
=========================== */
.cta-section { background: var(--bg-soft); padding: 80px 5%; }
.cta-card { background: linear-gradient(135deg, #0a1e5e, #0077ff); border-radius: var(--radius-xl); padding: 80px 60px; display: flex; align-items: center; justify-content: space-between; gap: 40px; overflow: hidden; position: relative; }
.cta-card::after { content: ''; position: absolute; top: -60px; right: -60px; width: 300px; height: 300px; background: rgba(255,255,255,0.05); border-radius: 50%; }
.cta-text { flex: 1; }
.cta-text h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: #fff; margin-bottom: 16px; }
.cta-text p { color: rgba(255,255,255,0.75); max-width: 480px; line-height: 1.7; }
.cta-actions { display: flex; gap: 16px; align-items: center; flex-shrink: 0; flex-wrap: wrap; }

/* ===========================
   FOOTER
=========================== */
.footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 72px 5% 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 60px; }
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; margin-bottom: 24px; }
.socials { display: flex; gap: 12px; }
.socials a { width: 40px; height: 40px; background: rgba(255,255,255,0.07); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; transition: var(--transition); }
.socials a:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }
.footer-col h4 { font-family: 'Outfit', sans-serif; color: #fff; font-size: 1rem; margin-bottom: 20px; }
.footer-col p { font-size: 0.88rem; margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { font-size: 0.88rem; transition: var(--transition); }
.footer-col a:hover { color: #fff; padding-left: 4px; }
.newsletter { display: flex; background: rgba(255,255,255,0.07); border-radius: var(--radius-full); overflow: hidden; border: 1px solid rgba(255,255,255,0.1); }
.newsletter input { background: transparent; border: none; padding: 12px 18px; color: #fff; font-size: 0.88rem; flex: 1; outline: none; }
.newsletter input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter button { background: var(--primary); border: none; color: #fff; width: 46px; cursor: pointer; transition: var(--transition); flex-shrink: 0; }
.newsletter button:hover { background: var(--primary-dark); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; flex-wrap: wrap; gap: 8px; }

/* ===========================
   ANIMATIONS (Safe-Reveal)
=========================== */
/* Default state (Visible) */
.animate-up { opacity: 1; transform: translateY(0); }

/* Only hide if JS is ready */
html.js-ready .animate-up { 
    opacity: 0; 
    transform: translateY(32px); 
    transition: opacity 0.8s cubic-bezier(0.2, 0, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0, 0.2, 1); 
}

html.js-ready .animate-up.visible { 
    opacity: 1; 
    transform: translateY(0); 
}

/* ===========================
   RESPONSIVE — TABLET (≤992px)
=========================== */
@media (max-width: 992px) {
    .section { padding: 70px 5%; }
    .search-card { flex-direction: column; border-radius: var(--radius-xl); padding: 24px; gap: 18px; max-width: 480px; }
    .search-field { width: 100%; }
    .search-divider { width: 100%; height: 1px; margin: 0; }
    .btn-search { width: 100%; justify-content: center; border-radius: var(--radius-full); padding: 16px; }
    .slide-item { height: 500px; }
    .slide-content { left: 40px; bottom: 50px; max-width: 380px; }
    .cta-card { flex-direction: column; text-align: center; padding: 60px 40px; }
    .cta-text p { margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ===========================
   RESPONSIVE — MOBILE (≤768px)
=========================== */
@media (max-width: 768px) {
    :root { --navbar-h: 64px; }
    .section { padding: 60px 5%; }
    .section-header { margin-bottom: 40px; }

    /* Navbar mobile */
    .hamburger { display: flex; }
    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: var(--navbar-h); right: 0;
        width: 100%; max-width: 320px;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(16px);
        padding: 24px 28px;
        gap: 6px;
        box-shadow: var(--shadow-lg);
        z-index: 1001;
        border-radius: 0 0 0 var(--radius-xl);
    }
    .nav-links.open { display: flex; }
    .nav-link { color: var(--text); padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 1rem; }
    .nav-link:last-child { border-bottom: none; }
    .nav-actions { display: none; }
    .mobile-overlay.open { display: block; }

    /* Hero */
    .hero-content { padding: 40px 0 60px; }
    .hero-content h1 br { display: none; }
    .hero-stats { gap: 0; }
    .stat { padding: 0 16px; }
    .stat strong { font-size: 1.3rem; }

    /* Slider */
    .slide-item { height: 420px; }
    .slide-content { left: 24px; right: 24px; bottom: 80px; max-width: none; }
    .slide-content h3 { font-size: 1.6rem; }
    .slide-content p { display: none; }
    .slider-btn { width: 42px; height: 42px; }
    .slider-prev { left: 12px; }
    .slider-next { right: 12px; }

    /* Services */
    .services-grid { grid-template-columns: 1fr; }

    /* CTA */
    .cta-card { padding: 48px 28px; border-radius: var(--radius-xl); }
    .cta-actions { justify-content: center; width: 100%; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===========================
   RESPONSIVE — SMALL (≤480px)
=========================== */
@media (max-width: 480px) {
    .hero-badge { font-size: 0.78rem; padding: 6px 14px; }
    .hero-stats { flex-wrap: wrap; gap: 16px; justify-content: center; }
    .stat-divider { display: none; }
    .slide-item { height: 380px; }
    .slide-content { bottom: 70px; }
}

/* ===========================
   PROMO BENTO GRID
=========================== */
.promo-grid-section { background: var(--bg); }

.bento-container {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    height: 600px;
}

.bento-item {
    position: relative;
    border-radius: var(--radius-lg);
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    animation-delay: var(--delay, 0s);
}

.bento-item:hover { transform: scale(0.985); }

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10,20,47,0.8) 0%, rgba(10,20,47,0.2) 50%, rgba(10,20,47,0.7) 100%);
    transition: var(--transition);
}

.bento-item:hover .bento-overlay { background: rgba(10,20,47,0.4); }

.bento-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
}

/* Featured Styling */
.bento-item.featured .dest-name {
    position: absolute;
    top: 40px;
    left: 40px;
    font-size: 8rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    color: rgba(255,255,255,0.05);
    line-height: 0.8;
    pointer-events: none;
}

.bento-item.featured h3 { font-size: 2.2rem; margin-bottom: 8px; }
.bento-item.featured p { color: rgba(255,255,255,0.7); max-width: 380px; margin-bottom: 24px; font-size: 0.95rem; }

.price-tags { display: flex; gap: 16px; margin-bottom: 30px; }
.tag {
    padding: 10px 20px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.tag.glass { background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); }
.tag.primary { background: var(--primary); }

.tag .label { font-size: 0.7rem; text-transform: uppercase; font-weight: 700; opacity: 0.8; letter-spacing: 0.05em; }
.tag .val { font-family: 'Outfit', sans-serif; font-size: 1.8rem; font-weight: 800; line-height: 1; margin-top: 4px; }
.tag .val span { font-size: 0.9rem; margin-left: 2px; }

.btn-bento {
    align-self: flex-start;
    background: #fff;
    color: var(--dark);
    border: none;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-bento:hover { gap: 18px; background: var(--primary); color: #fff; }

/* Side Stack Styling */
.bento-side { display: flex; flex-direction: column; gap: 24px; }
.bento-side .bento-item { flex: 1; }

.vertical-text {
    position: absolute;
    top: 30px;
    right: 30px;
    writing-mode: vertical-rl;
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.2em;
}

.bento-side h3 { font-size: 1.4rem; margin-bottom: 12px; }
.tag.mini { padding: 6px 14px; align-self: flex-start; }
.tag.mini .val { font-size: 1.3rem; }

@media (max-width: 992px) {
    .bento-container { height: auto; grid-template-columns: 1fr; }
    .bento-item.featured { height: 500px; }
    .bento-side { height: 400px; flex-direction: row; }
}

@media (max-width: 768px) {
    .bento-item.featured .dest-name { font-size: 5rem; }
    .bento-side { flex-direction: column; height: auto; }
    .bento-side .bento-item { height: 250px; }
    .bento-content { padding: 30px; }
}

