/* ========================================
   BEST HOLIDAY SPOTS — Main Stylesheet
   ======================================== */

/* --- Variables --- */
:root {
    --blue:       #1a3a5c;
    --blue-mid:   #2a5298;
    --blue-light: #e8f0fe;
    --coral:      #ff6b35;
    --coral-dark: #e55a26;
    --gold:       #f5a623;
    --text:       #2d2d2d;
    --text-light: #666;
    --border:     #e5e7eb;
    --bg-light:   #f8f9fa;
    --white:      #ffffff;
    --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
    --shadow-md:  0 4px 16px rgba(0,0,0,.12);
    --shadow-lg:  0 8px 32px rgba(0,0,0,.16);
    --radius:     12px;
    --radius-sm:  8px;
    --radius-lg:  20px;
    --transition: .25s ease;
    --header-h:   72px;
    --font:       'Poppins', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    font-size: 16px;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Container --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 20px; }

/* --- Buttons --- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 28px; border-radius: 50px; font-family: var(--font);
    font-weight: 600; font-size: 15px; transition: all var(--transition);
    white-space: nowrap; cursor: pointer;
}
.btn-primary { background: var(--coral); color: var(--white); }
.btn-primary:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,107,53,.35); }
.btn-secondary { background: var(--white); color: var(--blue); border: 2px solid var(--blue); }
.btn-secondary:hover { background: var(--blue); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.7); }
.btn-outline-white:hover { background: var(--white); color: var(--blue); }
.btn-sm { padding: 9px 20px; font-size: 14px; }
.btn-lg { padding: 16px 40px; font-size: 17px; }

/* ========================================
   UTILITY BAR
   ======================================== */
.utility-bar {
    background: var(--blue);
    color: rgba(255,255,255,.85);
    font-size: 13px;
    padding: 7px 0;
}
.utility-inner {
    display: flex; align-items: center; justify-content: space-between;
}
.utility-right { display: flex; align-items: center; gap: 20px; }
.utility-right a { color: rgba(255,255,255,.85); }
.utility-right a:hover { color: var(--white); }
.currency-badge {
    background: rgba(255,255,255,.15); padding: 2px 10px; border-radius: 20px;
    font-weight: 600; color: var(--white);
}

/* ========================================
   HEADER
   ======================================== */
.site-header {
    position: sticky; top: 0; z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    height: var(--header-h);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: var(--header-h); gap: 24px;
}

/* Logo */
.logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; flex-shrink: 0;
}
.logo-text {
    font-size: 20px; font-weight: 500; color: var(--blue);
    letter-spacing: -.3px;
}
.logo-text strong { font-weight: 800; color: var(--coral); }
.footer-logo .logo-text { color: var(--white); }
.footer-logo .logo-text strong { color: var(--gold); }

/* Main nav */
.main-nav ul {
    display: flex; align-items: center; gap: 4px;
}
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
    display: flex; align-items: center; gap: 5px;
    padding: 10px 14px; border-radius: var(--radius-sm);
    font-size: 14px; font-weight: 500; color: var(--text);
    transition: all var(--transition);
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active { color: var(--coral); background: rgba(255,107,53,.07); }
.nav-arrow { font-size: 9px; opacity: .6; transition: transform var(--transition); }
.main-nav > ul > li:hover .nav-arrow { transform: rotate(180deg); }

/* Dropdowns */
.dropdown, .mega-dropdown {
    position: absolute; top: 100%; left: 0;
    margin-top: 0;
    background: var(--white); border-radius: var(--radius);
    box-shadow: var(--shadow-lg); border: 1px solid var(--border);
    opacity: 0; visibility: hidden; transform: translateY(6px);
    transition: all var(--transition); z-index: 200;
    pointer-events: none;
}
/* Invisible hover bridge fills gap between nav link and dropdown */
.has-dropdown::after {
    content: ''; position: absolute; top: 100%; left: 0;
    width: 100%; height: 16px;
}
.main-nav > ul > li:hover .dropdown,
.main-nav > ul > li:hover .mega-dropdown {
    opacity: 1; visibility: visible; transform: translateY(0);
    pointer-events: all;
}
.dropdown { min-width: 220px; padding: 10px; }
.dropdown a {
    display: block; padding: 9px 14px; border-radius: var(--radius-sm);
    font-size: 14px; font-weight: 400; color: var(--text); white-space: nowrap;
}
.dropdown a:hover { background: var(--bg-light); color: var(--coral); }

/* Mega dropdown */
.mega-dropdown {
    display: flex; gap: 0; min-width: 540px; padding: 24px;
    left: 50%; transform: translateX(-50%) translateY(6px);
}
.main-nav > ul > li:hover .mega-dropdown {
    transform: translateX(-50%) translateY(0);
}
.mega-col { flex: 1; padding: 0 16px; border-right: 1px solid var(--border); }
.mega-col:last-child { border-right: none; }
.mega-col h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 10px; }
.mega-col a {
    display: block; padding: 7px 0; font-size: 14px; color: var(--text);
    border-bottom: 1px solid transparent;
}
.mega-col a:hover { color: var(--coral); }
.mega-featured a { font-weight: 500; }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* Hamburger */
.hamburger {
    display: none; flex-direction: column; gap: 5px;
    width: 36px; height: 36px; padding: 6px; border-radius: 8px;
    align-items: center; justify-content: center;
    transition: background var(--transition);
}
.hamburger:hover { background: var(--bg-light); }
.hamburger span {
    display: block; width: 22px; height: 2px;
    background: var(--text); border-radius: 2px;
    transition: all var(--transition);
}
.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); }

/* Nav overlay */
.nav-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,.4); z-index: 998;
}
.nav-overlay.show { display: block; }

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative; min-height: 580px;
    display: flex; align-items: center;
    background: linear-gradient(135deg, #1a3a5c 0%, #2a5298 50%, #1a3a5c 100%);
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: .35;
}
.hero-content {
    position: relative; z-index: 1;
    text-align: center; padding: 80px 20px;
    width: 100%;
}
.hero-badge {
    display: inline-block; background: var(--coral); color: var(--white);
    font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; padding: 5px 16px; border-radius: 20px;
    margin-bottom: 20px;
}
.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800;
    color: var(--white); line-height: 1.15; margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.hero h1 span { color: var(--gold); }
.hero p {
    font-size: 18px; color: rgba(255,255,255,.88);
    max-width: 560px; margin: 0 auto 36px;
}

/* Hero search bar */
.hero-search {
    background: var(--white); border-radius: 60px;
    padding: 8px 8px 8px 24px;
    display: flex; align-items: center; gap: 8px;
    max-width: 700px; margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0,0,0,.25);
}
.hero-search input, .hero-search select {
    flex: 1; border: none; outline: none;
    font-family: var(--font); font-size: 15px; color: var(--text);
    min-width: 0; background: transparent;
}
.hero-search select { cursor: pointer; }
.hero-search .search-divider {
    width: 1px; height: 28px; background: var(--border); flex-shrink: 0;
}
.hero-search .btn { flex-shrink: 0; }

.hero-stats {
    display: flex; justify-content: center; gap: 40px;
    margin-top: 40px; flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-size: 26px; font-weight: 800; color: var(--white); }
.hero-stat span { font-size: 13px; color: rgba(255,255,255,.7); }

/* ========================================
   SECTION SHARED
   ======================================== */
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-alt { background: var(--bg-light); }
.section-dark { background: var(--blue); color: var(--white); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .eyebrow {
    font-size: 12px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--coral); margin-bottom: 10px;
}
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: var(--blue); margin-bottom: 12px; }
.section-dark .section-header h2 { color: var(--white); }
.section-header p { font-size: 17px; color: var(--text-light); max-width: 560px; margin: 0 auto; }
.section-dark .section-header p { color: rgba(255,255,255,.75); }
.section-footer { text-align: center; margin-top: 40px; }

/* ========================================
   CARDS
   ======================================== */
.cards-grid { display: grid; gap: 24px; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.cards-2 { grid-template-columns: repeat(2, 1fr); }

.card {
    background: var(--white); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-img {
    position: relative; aspect-ratio: 4/3; overflow: hidden;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
}
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card-img img { transform: scale(1.06); }
.card-badge {
    position: absolute; top: 14px; left: 14px;
    background: var(--coral); color: var(--white);
    font-size: 11px; font-weight: 700; padding: 4px 12px;
    border-radius: 20px; letter-spacing: .5px;
}
.card-badge-blue { background: var(--blue); }
.card-badge-gold { background: var(--gold); color: var(--text); }
.card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--blue); }
.card-body p { font-size: 14px; color: var(--text-light); line-height: 1.5; flex: 1; }
.card-meta {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border);
}
.card-price { font-size: 18px; font-weight: 800; color: var(--coral); }
.card-price small { font-size: 12px; font-weight: 400; color: var(--text-light); }
.card-link {
    font-size: 13px; font-weight: 600; color: var(--blue-mid);
    display: flex; align-items: center; gap: 4px;
}
.card-link:hover { color: var(--coral); }

/* Destination card (tall) */
.dest-card {
    position: relative; border-radius: var(--radius);
    overflow: hidden; aspect-ratio: 3/4; cursor: pointer;
    flex-shrink: 0;
}
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.dest-card:hover img { transform: scale(1.08); }
.dest-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 55%);
}
.dest-card-info {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 20px;
    color: var(--white);
}
.dest-card-info h3 { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.dest-card-info p { font-size: 13px; opacity: .85; }
.dest-card-badge {
    position: absolute; top: 14px; right: 14px;
    background: var(--coral); color: var(--white);
    font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 20px;
}

/* Continent tiles */
.continent-grid {
    display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px;
}
.continent-tile {
    border-radius: var(--radius); padding: 24px 16px;
    text-align: center; cursor: pointer;
    transition: all var(--transition);
    text-decoration: none; color: var(--white);
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
}
.continent-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.continent-tile .tile-emoji { font-size: 32px; display: block; margin-bottom: 8px; }
.continent-tile span { font-size: 13px; font-weight: 600; display: block; }

/* Type pills */
.type-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.type-card {
    border-radius: var(--radius); padding: 28px 20px; text-align: center;
    background: var(--white); box-shadow: var(--shadow-sm);
    cursor: pointer; transition: all var(--transition);
    text-decoration: none; color: var(--text);
    border: 2px solid transparent;
}
.type-card:hover { border-color: var(--coral); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.type-card .type-emoji { font-size: 36px; display: block; margin-bottom: 12px; }
.type-card h3 { font-size: 15px; font-weight: 700; color: var(--blue); margin-bottom: 6px; }
.type-card p { font-size: 13px; color: var(--text-light); }

/* ========================================
   DEAL BANNER
   ======================================== */
.deal-banner {
    background: linear-gradient(135deg, var(--coral) 0%, #ff8c5a 100%);
    border-radius: var(--radius-lg); padding: 32px 40px;
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
    color: var(--white);
}
.deal-banner h3 { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.deal-banner p { font-size: 15px; opacity: .9; }
.deal-banner .btn { background: var(--white); color: var(--coral); font-weight: 700; flex-shrink: 0; }
.deal-banner .btn:hover { background: var(--blue); color: var(--white); }

/* ========================================
   FEATURED POSTS
   ======================================== */
.post-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--white); transition: all var(--transition); }
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.post-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--blue-light); }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.post-card:hover .post-card-img img { transform: scale(1.06); }
.post-card-body { padding: 20px; }
.post-cat {
    display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; color: var(--coral); margin-bottom: 8px;
}
.post-card-body h3 { font-size: 17px; font-weight: 700; line-height: 1.4; margin-bottom: 8px; color: var(--blue); }
.post-card-body p { font-size: 14px; color: var(--text-light); line-height: 1.5; margin-bottom: 14px; }
.post-meta { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--text-light); }
.post-meta span { display: flex; align-items: center; gap: 4px; }

/* ========================================
   NEWSLETTER (Footer)
   ======================================== */
.newsletter-section {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
    padding: 60px 0;
}
.newsletter-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 40px; flex-wrap: wrap;
}
.newsletter-text { flex: 1; min-width: 260px; }
.newsletter-text h2 { font-size: 26px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.newsletter-text p { color: rgba(255,255,255,.8); font-size: 16px; }
.newsletter-form { flex: 1; min-width: 320px; max-width: 520px; }
.newsletter-fields { display: flex; gap: 8px; flex-wrap: wrap; }
.newsletter-fields input {
    flex: 1; min-width: 180px; padding: 13px 18px; border-radius: 50px;
    border: none; outline: none; font-family: var(--font); font-size: 15px;
    background: rgba(255,255,255,.12); color: var(--white);
}
.newsletter-fields input::placeholder { color: rgba(255,255,255,.55); }
.newsletter-fields input:focus { background: rgba(255,255,255,.18); }
.newsletter-fields .btn { flex-shrink: 0; background: var(--coral); color: var(--white); }
.newsletter-fields .btn:hover { background: var(--coral-dark); }
.newsletter-notice { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 8px; padding-left: 4px; }
.newsletter-msg { margin-top: 10px; font-size: 14px; font-weight: 500; min-height: 20px; }
.newsletter-msg.success { color: #4ade80; }
.newsletter-msg.error { color: #f87171; }

/* ========================================
   SITE FOOTER
   ======================================== */
.site-footer { background: #111827; color: rgba(255,255,255,.75); padding: 60px 0 0; }
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px; padding-bottom: 48px;
}
.footer-brand p { font-size: 14px; margin-top: 14px; line-height: 1.7; color: rgba(255,255,255,.6); max-width: 260px; }
.site-footer .footer-col h4 {
    font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    color: var(--white); margin-bottom: 16px;
}
.site-footer .footer-col ul li { margin-bottom: 10px; }
.site-footer .footer-col a { font-size: 14px; color: rgba(255,255,255,.65); transition: color var(--transition); }
.site-footer .footer-col a:hover { color: var(--coral); }
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-icon {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,.1); color: rgba(255,255,255,.75);
    display: flex; align-items: center; justify-content: center;
    transition: all var(--transition);
}
.social-icon svg { width: 16px; height: 16px; }
.social-icon:hover { background: var(--coral); color: var(--white); transform: translateY(-2px); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0;
}
.footer-bottom-inner {
    display: flex; align-items: center; justify-content: space-between;
    font-size: 13px; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,.45); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,.45); }
.footer-legal a:hover { color: var(--white); }

/* ========================================
   PAGE HERO (inner pages)
   ======================================== */
.page-hero {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
    padding: 70px 0; text-align: center; color: var(--white);
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 14px; }
.page-hero p { font-size: 18px; opacity: .85; max-width: 560px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 20px; font-size: 14px; }
.breadcrumb a { color: rgba(255,255,255,.75); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,.5); }

/* ========================================
   SEARCH BAR (page level)
   ======================================== */
.search-bar {
    background: var(--white); border-radius: var(--radius);
    box-shadow: var(--shadow-md); padding: 20px 24px;
    display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.search-bar label { font-size: 12px; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: .5px; display: block; margin-bottom: 4px; }
.search-bar input, .search-bar select {
    width: 100%; border: 1px solid var(--border); border-radius: var(--radius-sm);
    padding: 10px 14px; font-family: var(--font); font-size: 14px;
    outline: none; transition: border-color var(--transition);
}
.search-bar input:focus, .search-bar select:focus { border-color: var(--blue-mid); }
.search-field { flex: 1; min-width: 160px; }

/* ========================================
   TRUST BADGES
   ======================================== */
.trust-bar { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-icon { font-size: 28px; }
.trust-text strong { display: block; font-size: 15px; font-weight: 700; color: var(--blue); }
.trust-text span { font-size: 13px; color: var(--text-light); }
.section-dark .trust-text strong { color: var(--white); }
.section-dark .trust-text span { color: rgba(255,255,255,.7); }

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonial-card {
    background: var(--white); border-radius: var(--radius); padding: 28px 24px;
    box-shadow: var(--shadow-sm);
}
.stars { color: var(--gold); font-size: 16px; margin-bottom: 12px; }
.testimonial-card p { font-size: 15px; line-height: 1.65; color: var(--text); margin-bottom: 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 44px; height: 44px; border-radius: 50%; overflow: hidden;
    background: var(--blue-light); display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
}
.author-info strong { display: block; font-size: 14px; font-weight: 600; }
.author-info span { font-size: 13px; color: var(--text-light); }

/* ========================================
   BLOG PAGE
   ======================================== */
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.sidebar { position: sticky; top: calc(var(--header-h) + 20px); }
.sidebar-widget { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); margin-bottom: 24px; }
.sidebar-widget h4 { font-size: 16px; font-weight: 700; color: var(--blue); margin-bottom: 16px; border-bottom: 2px solid var(--border); padding-bottom: 10px; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
    display: inline-block; padding: 5px 14px; background: var(--bg-light);
    border-radius: 20px; font-size: 13px; color: var(--text);
    transition: all var(--transition); cursor: pointer;
}
.tag:hover { background: var(--coral); color: var(--white); }

/* ========================================
   FILTERS
   ======================================== */
.filter-bar { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-btn {
    padding: 8px 18px; border-radius: 50px; font-family: var(--font);
    font-size: 14px; font-weight: 500; border: 2px solid var(--border);
    background: var(--white); color: var(--text); cursor: pointer;
    transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active { border-color: var(--coral); color: var(--coral); background: rgba(255,107,53,.06); }

/* ========================================
   CONTACT FORM
   ======================================== */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 12px 16px; border: 2px solid var(--border);
    border-radius: var(--radius-sm); font-family: var(--font); font-size: 15px;
    outline: none; transition: border-color var(--transition); background: var(--white);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--blue-mid); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-msg { padding: 12px 18px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; margin-top: 14px; }
.form-msg.success { background: #dcfce7; color: #15803d; }
.form-msg.error { background: #fee2e2; color: #dc2626; }

/* ========================================
   MISC UTILITIES
   ======================================== */
.text-center { text-align: center; }
.text-coral { color: var(--coral); }
.text-blue { color: var(--blue); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-24 { margin-bottom: 24px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-16 { gap: 16px; }
.hidden { display: none !important; }

/* Horizontal scroll (mobile destination cards) */
.scroll-row { display: flex; gap: 20px; overflow-x: auto; padding-bottom: 12px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.scroll-row::-webkit-scrollbar { height: 4px; }
.scroll-row::-webkit-scrollbar-track { background: var(--border); border-radius: 2px; }
.scroll-row::-webkit-scrollbar-thumb { background: var(--blue-mid); border-radius: 2px; }
.scroll-row > * { scroll-snap-align: start; flex-shrink: 0; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .cards-4 { grid-template-columns: repeat(2, 1fr); }
    .continent-grid { grid-template-columns: repeat(3, 1fr); }
    .type-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .blog-layout { grid-template-columns: 1fr; }
    .sidebar { position: static; }
}

@media (max-width: 768px) {
    .utility-bar .utility-inner span:first-child { display: none; }
    .main-nav, .header-actions .btn-primary { display: none; }
    .hamburger { display: flex; }
    .main-nav.open {
        display: flex; flex-direction: column;
        position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
        background: var(--white); padding: 20px; overflow-y: auto;
        z-index: 999;
    }
    .main-nav.open ul { flex-direction: column; gap: 0; width: 100%; }
    .main-nav.open > ul > li > a { padding: 14px 10px; border-bottom: 1px solid var(--border); border-radius: 0; font-size: 16px; }
    .mega-dropdown, .dropdown { display: none !important; }
    .cards-3 { grid-template-columns: 1fr; }
    .cards-2 { grid-template-columns: 1fr; }
    .continent-grid { grid-template-columns: repeat(2, 1fr); }
    .type-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .footer-legal { justify-content: center; }
    .hero-search { flex-direction: column; border-radius: var(--radius); padding: 16px; }
    .hero-search input, .hero-search select { width: 100%; }
    .hero-search .search-divider { display: none; }
    .hero-search .btn { width: 100%; }
    .hero-stats { gap: 24px; }
    .deal-banner { flex-direction: column; text-align: center; }
    .newsletter-inner { flex-direction: column; }
    .newsletter-fields { flex-direction: column; }
    .newsletter-fields input, .newsletter-fields .btn { width: 100%; }
    .form-row { grid-template-columns: 1fr; }
    .search-bar { flex-direction: column; }
    .search-field { width: 100%; }
}

@media (max-width: 480px) {
    .continent-grid { grid-template-columns: repeat(2, 1fr); }
    .type-grid { grid-template-columns: 1fr; }
    .hero { min-height: 480px; }
    .hero h1 { font-size: 1.8rem; }
    .hero p { font-size: 15px; }
}

/* ========================================
   PACKAGE CARD IMAGE
   ======================================== */
.pkg-card-img {
    position: relative; height: 200px; overflow: hidden;
    background: #1a3a5c;
}
.pkg-card-img img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    transition: transform .4s ease;
}
.card:hover .pkg-card-img img { transform: scale(1.06); }
.pkg-card-badge {
    position: absolute; top: 14px; left: 14px;
    background: var(--coral); color: white;
    font-size: 11px; font-weight: 700; letter-spacing: .5px;
    text-transform: uppercase; padding: 4px 12px; border-radius: 20px;
    z-index: 2;
}
.pkg-card-location {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 100%);
    padding: 24px 16px 12px;
    z-index: 2;
}
.pkg-card-location span {
    font-size: 13px; font-weight: 600; color: rgba(255,255,255,.95);
    text-shadow: 0 1px 4px rgba(0,0,0,.5);
}

/* ========================================
   BLOG POST PAGE
   ======================================== */
.post-hero { background: linear-gradient(135deg, #1a3a5c 0%, #0f6b8e 100%); padding: 70px 0 0; color: white; }
.post-hero-inner { max-width: 860px; margin: 0 auto; padding: 0 20px; }
.post-hero-img {
    margin-top: 40px; border-radius: 20px 20px 0 0; overflow: hidden;
    aspect-ratio: 21/9; display: flex; align-items: center; justify-content: center;
    font-size: 80px; position: relative;
}
.post-hero-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.post-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; max-width: 1140px; margin: 0 auto; padding: 48px 20px; }
.post-content { min-width: 0; }
.post-content h2 { font-size: 1.65rem; font-weight: 800; color: var(--blue); margin: 40px 0 16px; }
.post-content h3 { font-size: 1.25rem; font-weight: 700; color: var(--blue); margin: 28px 0 12px; }
.post-content p { font-size: 16px; line-height: 1.85; color: #3a3a3a; margin-bottom: 18px; }
.post-content ul { list-style: disc; padding-left: 22px; margin-bottom: 18px; }
.post-content ol { list-style: decimal; padding-left: 22px; margin-bottom: 18px; }
.post-content li { font-size: 16px; line-height: 1.8; color: #3a3a3a; margin-bottom: 6px; }
.post-content strong { color: var(--blue); }
.post-content a { color: var(--coral); text-decoration: underline; }
.post-content table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; border-radius: var(--radius); overflow: hidden; }
.post-content table th { background: var(--blue); color: white; padding: 11px 14px; text-align: left; font-size: 13px; }
.post-content table td { padding: 10px 14px; border-bottom: 1px solid var(--border); }
.post-content table tr:nth-child(even) td { background: var(--bg-light); }

.tip-box { background: var(--blue-light); border-left: 4px solid var(--blue-mid); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 18px 22px; margin: 24px 0; }
.tip-box p { margin: 0; font-size: 15px; color: var(--blue); }
.warning-box { background: #fff8e1; border-left: 4px solid #f59e0b; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 18px 22px; margin: 24px 0; }
.warning-box p { margin: 0; font-size: 15px; color: #92400e; }
.success-box { background: #f0fdf4; border-left: 4px solid #16a34a; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 18px 22px; margin: 24px 0; }
.success-box p { margin: 0; font-size: 15px; color: #15803d; }

.verdict-box { background: linear-gradient(135deg, var(--coral), #ff8c5a); border-radius: var(--radius); padding: 28px 30px; color: white; margin: 40px 0; }
.verdict-box h3 { font-size: 20px; font-weight: 800; margin-bottom: 12px; color: white; }
.verdict-box p { color: rgba(255,255,255,.92); font-size: 15px; line-height: 1.7; margin: 0; }

.post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 32px 0; }
.post-tag { padding: 6px 16px; background: var(--bg-light); border-radius: 20px; font-size: 13px; color: var(--text); font-weight: 500; transition: all var(--transition); text-decoration: none !important; }
.post-tag:hover { background: var(--coral); color: white !important; }

.author-box { display: flex; gap: 20px; align-items: flex-start; background: var(--bg-light); border-radius: var(--radius); padding: 28px; margin: 40px 0; }
.author-img { width: 72px; height: 72px; border-radius: 50%; flex-shrink: 0; background: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 32px; }
.author-info h4 { font-size: 16px; font-weight: 700; color: var(--blue); margin-bottom: 4px; }
.author-info .author-role { font-size: 12px; font-weight: 600; color: var(--coral); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; }
.author-info p { font-size: 14px; color: var(--text-light); line-height: 1.6; margin: 0; }

.share-bar { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; border-top: 2px solid var(--border); border-bottom: 2px solid var(--border); padding: 18px 0; margin: 32px 0; }
.share-bar > span { font-size: 14px; font-weight: 600; color: var(--text-light); }
.share-btn { display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; border-radius: 50px; font-size: 13px; font-weight: 600; transition: all var(--transition); text-decoration: none !important; }
.share-facebook { background: #1877f2; color: white !important; }
.share-twitter  { background: #000; color: white !important; }
.share-pinterest{ background: #e60023; color: white !important; }
.share-whatsapp { background: #25d366; color: white !important; }
.share-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.related-posts { display: flex; flex-direction: column; gap: 14px; margin-top: 16px; }
.related-post { display: flex; gap: 12px; align-items: flex-start; text-decoration: none; color: var(--text); padding: 8px 0; border-bottom: 1px solid var(--border); }
.related-post:last-child { border-bottom: none; }
.related-thumb { width: 64px; height: 64px; border-radius: 8px; flex-shrink: 0; background: linear-gradient(135deg, var(--blue), var(--blue-mid)); display: flex; align-items: center; justify-content: center; font-size: 24px; }
.related-post h5 { font-size: 13px; font-weight: 600; line-height: 1.4; margin-bottom: 4px; color: var(--blue); }
.related-post span { font-size: 12px; color: var(--text-light); }
.related-post:hover h5 { color: var(--coral); }

.toc { background: var(--bg-light); border-radius: var(--radius); padding: 22px 24px; margin-bottom: 32px; }
.toc h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: var(--text-light); margin-bottom: 14px; }
.toc ol { padding-left: 20px; margin: 0; }
.toc li { margin-bottom: 8px; }
.toc a { font-size: 14px; font-weight: 500; color: var(--blue-mid); text-decoration: none; }
.toc a:hover { color: var(--coral); }

/* Numbered item cards (used in top-10 style posts) */
.item-card { border-radius: var(--radius); border: 2px solid var(--border); overflow: hidden; margin: 32px 0; transition: box-shadow var(--transition); }
.item-card:hover { box-shadow: var(--shadow-md); }
.item-card-header { display: flex; align-items: center; gap: 16px; background: linear-gradient(135deg, var(--blue), var(--blue-mid)); padding: 20px 24px; color: white; }
.item-rank { width: 48px; height: 48px; background: var(--coral); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800; flex-shrink: 0; color: white; }
.item-card-header h3 { font-size: 18px; font-weight: 700; margin: 0; color: white; }
.item-card-header p { font-size: 13px; opacity: .8; margin: 4px 0 0; }
.item-card-body { padding: 22px 24px; background: white; }
.item-card-body p { margin-bottom: 14px; font-size: 15px; }
.item-facts { display: flex; gap: 20px; flex-wrap: wrap; background: var(--bg-light); border-radius: var(--radius-sm); padding: 14px 18px; margin-top: 14px; }
.item-fact { font-size: 13px; }
.item-fact strong { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .5px; color: var(--text-light); margin-bottom: 2px; }
.item-fact span { font-weight: 600; color: var(--blue); }

/* Comparison table */
.compare-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14px; border-radius: var(--radius); overflow: hidden; }
.compare-table th { background: var(--blue); color: white; padding: 13px 16px; text-align: center; }
.compare-table th:first-child { text-align: left; }
.compare-table td { padding: 11px 16px; border-bottom: 1px solid var(--border); text-align: center; }
.compare-table td:first-child { text-align: left; font-weight: 600; }
.compare-table tr:nth-child(even) td { background: var(--bg-light); }
.compare-table .win { color: #16a34a; font-weight: 700; }
.compare-table .draw { color: #92400e; }

/* Budget breakdown bar */
.budget-row { display: flex; align-items: center; gap: 14px; margin: 10px 0; }
.budget-label { width: 220px; font-size: 13px; font-weight: 600; flex-shrink: 0; }
.budget-bar { flex: 1; height: 10px; background: var(--border); border-radius: 5px; overflow: hidden; }
.budget-fill { height: 100%; background: var(--coral); border-radius: 5px; }
.budget-amount { width: 60px; text-align: right; font-size: 13px; font-weight: 700; color: var(--blue); flex-shrink: 0; }

/* ========================================
   WIDGET SECTIONS
   ======================================== */

/* Flight search */
.widget-flight-section { background: var(--blue); }
.widget-flight-section .eyebrow { color: rgba(255,255,255,.6); }
.widget-flight-section h2 { color: #fff; }
.widget-flight-section p { color: rgba(255,255,255,.8); }
.widget-flight-wrap {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,.25);
    min-height: 80px;
}

/* Activities */
.widget-activities-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 80px;
}

/* Rental grid */
.rental-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.rental-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}
.rental-card-header {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 24px 24px 16px;
    border-bottom: 2px solid var(--border);
}
.rental-icon { font-size: 36px; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.rental-card-header h3 { font-size: 1.15rem; font-weight: 700; color: var(--blue); margin: 0 0 4px; }
.rental-card-header p { font-size: 13px; color: var(--text-light); margin: 0; }
.rental-widget { padding: 20px 24px 24px; min-height: 60px; }

@media (max-width: 768px) {
    .rental-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) { .post-layout { grid-template-columns: 1fr; } }
@media (max-width: 600px) {
    .item-card-header { flex-direction: column; align-items: flex-start; }
    .item-facts { flex-direction: column; gap: 10px; }
    .author-box { flex-direction: column; }
    .post-content h2 { font-size: 1.35rem; }
    .post-hero-img { aspect-ratio: 4/3; font-size: 56px; }
    .budget-row { flex-wrap: wrap; }
    .budget-label { width: 100%; margin-bottom: 4px; }
    .budget-bar { flex: 1; min-width: 120px; }
}
