/*
Theme Name: Manimahesh Yatra
Theme URI: https://manimahesh.net.in
Author: Manimahesh.net.in
Author URI: https://manimahesh.net.in
Description: A beautiful travel booking WordPress theme for Manimahesh Yatra with AJAX tour packages, sidebar widgets, archive pages, and full Customizer control.
Version: 2.0.10
License: GNU General Public License v2 or later
Text Domain: manimahesh
Tags: travel, yatra, booking, ajax, responsive, pilgrimage, sidebar, customizer

Changelog:
  v2.0.4 — Bug fixes + Professional Theme Options
    - FIX: AJAX filter race condition — loading/error states now properly isolated
    - FIX: Lightbox DOM leakage — hidden via display:none, shown only via .open class
    - FIX: HTML entity encoding — titles/duration/location decoded before JSON output
    - FIX: Gallery alt text bleed — empty/invalid URLs skipped, onerror hides slot
    - NEW: Professional tabbed Theme Options admin page (7 tabs, 60+ settings)
    - NEW: Gallery upload grid with media library integration
    - NEW: Color pickers, toggle switches, range sliders in admin UI
    - NEW: Custom CSS + Header/Footer scripts input fields
    - NEW: Announcement bar, WA button controls in admin
    - IMPROVEMENT: Admin options JS with wp.media upload support
  v2.0.0 — Major release
    - Two Customizer panels: Theme Options (11 sections) + Global Sections (6 sections)
    - Per-section show/hide toggles for all homepage sections
    - Global sidebar visibility per page type (home/single/page/archive/package)
    - Global pre-footer strip visibility per page type
    - Announcement bar (global, dismissible)
    - Floating WhatsApp button with pulse animation
    - Newsletter bar above footer
    - archive.php: category/tag/archive pages with hero, grid/list layout, pagination
    - Theme color, font, logo, overlay — all Customizer controlled
    - Left sidebar position support
    - Version constant MM_VERSION defined in functions.php
    - Asset versions bumped to 2.0.0 for cache busting
  v1.0.0 — Initial release
    - Homepage, sidebar widgets (8 types), single.php, page.php
    - Custom WP_Widget classes for all sidebar widgets
    - Tour package single template with booking card
    - Customizer (basic)
*/

/* ========================================
   GLOBAL RESET & BASE
   ======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --primary:   #14b8a6;
    --secondary: #0f766e;
    --dark:      #1e293b;
    --light:     #f8fafc;
    --shadow:    0 4px 24px rgba(0,0,0,.10);
}
html { scroll-behavior: smooth; }
body {
    font-family: 'Poppins', sans-serif;
    background: var(--light);
    color: var(--dark);
    line-height: 1.7;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ========================================
   NAVIGATION
   ======================================== */
.site-header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 999;
    background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,.08);
    transition: background .3s;
}
.site-header .nav-inner {
    max-width: 1280px; margin: auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 24px; height: 76px;
}
.site-logo { display: flex; align-items: center; gap: 10px; }
.site-logo .logo-icon { font-size: 28px; color: var(--primary); }
.site-logo .logo-text { font-weight: 700; font-size: 1.2rem; letter-spacing: .04em; color: var(--dark); }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { font-weight: 500; font-size: .95rem; color: #555; transition: color .2s; }
.main-nav a:hover, .main-nav a.current { color: var(--primary); }
.nav-book-btn {
    background: var(--primary); color: #fff !important;
    padding: 9px 24px; border-radius: 50px; font-weight: 600;
    box-shadow: 0 4px 14px rgba(20,184,166,.35);
    transition: background .2s, transform .2s;
}
.nav-book-btn:hover { background: var(--secondary); transform: translateY(-2px); }
.nav-toggle { display: none; cursor: pointer; font-size: 1.5rem; color: var(--dark); }

/* ========================================
   HERO
   ======================================== */
.hero-section {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    background: var(--dark);
    overflow: hidden;
}
.hero-bg-img {
    position: absolute; inset: 0;
    background-size: cover; background-position: center; background-attachment: fixed;
    opacity: .55; transition: opacity .5s;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.3) 0%, rgba(0,0,0,.65) 100%);
}
.hero-content {
    position: relative; z-index: 2;
    text-align: center; padding: 24px;
    max-width: 900px; margin: auto;
}
.hero-tagline {
    display: inline-block; background: var(--primary);
    color: #fff; font-size: .8rem; font-weight: 600;
    letter-spacing: .1em; text-transform: uppercase;
    padding: 5px 18px; border-radius: 50px; margin-bottom: 18px;
}
.hero-title {
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 800; color: #fff; line-height: 1.15;
    margin-bottom: 18px; text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.hero-title span { color: var(--primary); }
.hero-subtitle {
    font-size: 1.1rem; color: rgba(255,255,255,.85);
    max-width: 600px; margin: 0 auto 36px;
}

/* Search Box */
.hero-search {
    background: #fff; border-radius: 14px;
    padding: 18px 18px; display: flex; flex-wrap: wrap;
    gap: 16px; align-items: flex-end;
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
    max-width: 860px; margin: 0 auto;
}
.search-field { flex: 1; min-width: 160px; text-align: left; }
.search-field label { display: block; font-size: .75rem; font-weight: 600; color: #888; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.search-field select, .search-field input {
    width: 100%; border: none; border-bottom: 2px solid #e2e8f0;
    padding: 8px 4px; font-family: inherit; font-size: .95rem;
    color: var(--dark); background: transparent; outline: none;
    transition: border-color .2s;
}
.search-field select:focus, .search-field input:focus { border-color: var(--primary); }
.search-btn {
    background: var(--primary); color: #fff;
    border: none; padding: 14px 32px; border-radius: 10px;
    font-family: inherit; font-size: .95rem; font-weight: 700;
    cursor: pointer; box-shadow: 0 4px 14px rgba(20,184,166,.4);
    transition: background .2s, transform .2s; white-space: nowrap;
}
.search-btn:hover { background: var(--secondary); transform: translateY(-2px); }

/* ========================================
   SECTION WRAPPER & TITLE
   ======================================== */
.section-wrap { max-width: 1280px; margin: auto; padding: 80px 24px; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-label {
    display: inline-block; color: var(--primary);
    font-size: .8rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .1em; margin-bottom: 8px;
}
.section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: var(--dark); margin-bottom: 14px; }
.section-divider { width: 50px; height: 3px; background: var(--primary); border-radius: 2px; margin: 0 auto 14px; }
.section-desc { color: #64748b; max-width: 580px; margin: auto; font-size: .98rem; }

/* ========================================
   FILTER TABS
   ======================================== */
.filter-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 40px; }
.filter-tab {
    padding: 9px 22px; border-radius: 50px;
    border: 2px solid #e2e8f0; background: #fff;
    font-family: inherit; font-size: .88rem; font-weight: 600;
    color: #64748b; cursor: pointer;
    transition: all .2s;
}
.filter-tab:hover, .filter-tab.active {
    background: var(--primary); border-color: var(--primary); color: #fff;
    box-shadow: 0 4px 14px rgba(20,184,166,.35);
}

/* ========================================
   PACKAGE CARDS
   ======================================== */
#packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 28px;
}
.package-card {
    background: #fff; border-radius: 16px;
    overflow: hidden; box-shadow: var(--shadow);
    border: 1px solid #f1f5f9;
    transition: transform .3s, box-shadow .3s;
    opacity: 0; transform: translateY(20px);
    animation: cardIn .45s ease forwards;
}
.package-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,.12); }
@keyframes cardIn {
    to { opacity: 1; transform: translateY(0); }
}
.card-image-wrap { position: relative; height: 230px; overflow: hidden; }
.card-image-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .6s ease;
}
.package-card:hover .card-image-wrap img { transform: scale(1.08); }
.card-badge {
    position: absolute; top: 14px; right: 14px;
    background: var(--primary); color: #fff;
    font-size: .8rem; font-weight: 700;
    padding: 5px 14px; border-radius: 50px;
}
.card-badge.heli { background: #7c3aed; }
.card-duration {
    position: absolute; bottom: 0; left: 0; width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,.75));
    color: #fff; font-size: .82rem; padding: 18px 14px 10px;
    display: flex; align-items: center; gap: 6px;
}
.card-body { padding: 18px 20px 20px; }
.card-meta { display: flex; align-items: center; gap: 6px; font-size: .82rem; color: #94a3b8; margin-bottom: 8px; }
.card-meta i { color: var(--primary); }
.card-title { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; line-height: 1.35; }
.card-title a:hover { color: var(--primary); }
.card-stars { color: #f59e0b; font-size: .82rem; }
.card-stars span { color: #94a3b8; margin-left: 4px; }
.card-footer {
    display: flex; align-items: center; justify-content: space-between;
    border-top: 1px solid #f1f5f9; padding-top: 14px; margin-top: 14px;
}
.card-price { font-size: 1.2rem; font-weight: 800; color: var(--primary); }
.card-price small { font-size: .72rem; color: #94a3b8; font-weight: 400; display: block; }
.card-btn {
    background: var(--primary); color: #fff;
    padding: 9px 20px; border-radius: 8px;
    font-size: .85rem; font-weight: 600;
    border: none; cursor: pointer; font-family: inherit;
    transition: background .2s, transform .2s;
}
.card-btn:hover { background: var(--secondary); transform: translateY(-2px); }

/* Loading Spinner */
#packages-loading {
    grid-column: 1/-1; text-align: center; padding: 48px;
    display: none;
}
.spinner {
    width: 44px; height: 44px; border: 4px solid #e2e8f0;
    border-top-color: var(--primary); border-radius: 50%;
    animation: spin .8s linear infinite; margin: auto;
}
@keyframes spin { to { transform: rotate(360deg); } }
#no-packages { grid-column: 1/-1; text-align: center; padding: 48px; color: #94a3b8; display: none; font-size: 1rem; }

/* ========================================
   FEATURES STRIP
   ======================================== */
.features-section { background: #fff; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 32px;
    text-align: center;
}
.feature-item {}
.feature-icon {
    width: 72px; height: 72px;
    background: #f0fdfa; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; color: var(--primary);
    margin: 0 auto 18px;
}
.feature-title { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.feature-desc { font-size: .88rem; color: #64748b; }

/* ========================================
   GALLERY
   ======================================== */
.gallery-section { background: var(--light); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}
.gallery-item {
    position: relative; border-radius: 12px;
    overflow: hidden; aspect-ratio: 4/3;
    cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(20,184,166,.65);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity .3s;
    color: #fff; font-size: 1.6rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-section { background: #fff; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}
.testimonial-card {
    background: var(--light); border-radius: 16px;
    padding: 28px; border: 1px solid #e2e8f0;
}
.testimonial-stars { color: #f59e0b; margin-bottom: 12px; }
.testimonial-text { font-size: .92rem; color: #475569; margin-bottom: 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; background: #e2e8f0; }
.testimonial-name { font-weight: 700; font-size: .92rem; color: var(--dark); }
.testimonial-origin { font-size: .78rem; color: #94a3b8; }

/* ========================================
   STATS STRIP
   ======================================== */
.stats-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: #fff;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 24px; text-align: center;
}
.stat-number { font-size: 2.4rem; font-weight: 800; }
.stat-label { font-size: .88rem; opacity: .85; margin-top: 4px; }

/* ========================================
   FOOTER
   ======================================== */
.site-footer { background: var(--dark); color: #fff; }
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 40px; padding: 64px 24px 40px; max-width: 1280px; margin: auto;
}
.footer-brand .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand .footer-logo-icon { font-size: 24px; color: var(--primary); }
.footer-brand .footer-logo-text { font-weight: 700; font-size: 1.05rem; }
.footer-about { font-size: .88rem; color: #94a3b8; line-height: 1.7; }
.footer-heading { font-size: .95rem; font-weight: 700; margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: .88rem; color: #94a3b8; transition: color .2s; }
.footer-links a:hover { color: var(--primary); }
.footer-contact-item { display: flex; gap: 10px; font-size: .88rem; color: #94a3b8; margin-bottom: 10px; }
.footer-contact-item i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }
.footer-newsletter p { font-size: .88rem; color: #94a3b8; margin-bottom: 14px; }
.footer-form { display: flex; border-radius: 8px; overflow: hidden; }
.footer-form input {
    flex: 1; padding: 11px 14px;
    background: #334155; border: none; color: #fff; font-family: inherit; font-size: .88rem; outline: none;
}
.footer-form button {
    background: var(--primary); border: none;
    padding: 11px 16px; color: #fff; cursor: pointer; transition: background .2s;
}
.footer-form button:hover { background: var(--secondary); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.social-link {
    width: 36px; height: 36px; border-radius: 50%;
    background: #334155; display: flex; align-items: center; justify-content: center;
    color: #94a3b8; font-size: .9rem; transition: all .2s;
}
.social-link:hover { background: var(--primary); color: #fff; }
.footer-bottom {
    border-top: 1px solid #334155; padding: 20px 24px;
    max-width: 1280px; margin: auto;
    display: flex; flex-wrap: wrap; gap: 10px;
    justify-content: space-between; font-size: .82rem; color: #64748b;
}

/* ========================================
   LIGHTBOX
   ======================================== */
/* Lightbox styles moved to v2.0.4 fix block below */

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .main-nav { display: none; flex-direction: column; position: absolute; top: 76px; left: 0; width: 100%; background: #fff; padding: 16px 24px; box-shadow: 0 8px 16px rgba(0,0,0,.08); }
    .main-nav.open { display: flex; }
    .nav-toggle { display: block; }
    .hero-search { flex-direction: column; }
    .search-field { min-width: 100%; }
}

/* ========================================
   DROPDOWN MENUS (Desktop & Mobile)
   ======================================== */
.primary-menu { display: flex; list-style: none; gap: 28px; align-items: center; margin: 0; padding: 0; }
.primary-menu li { position: relative; }
.primary-menu a { font-weight: 500; font-size: .95rem; color: #555; display: flex; align-items: center; justify-content: space-between; gap: 6px; transition: color .2s; padding: 10px 0; }
.primary-menu li.menu-item-has-children > a::after { content: '\f0d7'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: .75rem; }
.primary-menu li:hover > a, .primary-menu li.current-menu-item > a { color: var(--primary); }

/* Sub-menu Desktop */
.primary-menu .sub-menu {
    position: absolute; top: 100%; left: 0; background: #fff;
    min-width: 230px; box-shadow: 0 10px 30px rgba(0,0,0,.1);
    border-radius: 8px; padding: 10px 0; list-style: none;
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: all .3s ease; border-top: 3px solid var(--primary);
    z-index: 999;
}
.primary-menu li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.primary-menu .sub-menu li { width: 100%; }
.primary-menu .sub-menu a { padding: 8px 24px; font-size: .9rem; color: #444; border: none; font-weight: 400; }
.primary-menu .sub-menu li.menu-item-has-children > a::after { content: '\f0da'; }
.primary-menu .sub-menu a:hover { background: #f8fafc; color: var(--primary); padding-left: 32px; }

/* Sub-menu Deep (Level 3+) */
.primary-menu .sub-menu .sub-menu { top: -3px; left: 100%; border-top: 3px solid var(--secondary); }

/* Remove default WordPress custom logo link styles that interfere */
.custom-logo-link { display: flex; align-items: center; }

/* Mobile Navigation */
@media (max-width: 768px) {
    .main-nav { display: none; flex-direction: column; position: absolute; top: 76px; left: 0; width: 100%; background: #fff; padding: 0 24px 24px; box-shadow: 0 8px 16px rgba(0,0,0,.08); max-height: calc(100vh - 76px); overflow-y: auto; }
    .main-nav.open { display: flex; }
    .nav-toggle { display: block; }
    .nav-book-btn { width: 100%; text-align: center; margin-top: 20px; }

    .primary-menu { flex-direction: column; align-items: flex-start; gap: 0; width: 100%; }
    .primary-menu li { width: 100%; }
    .primary-menu a { padding: 14px 0; border-bottom: 1px solid #f1f5f9; width: 100%; }
    .primary-menu > li:last-child > a { border-bottom: none; }

    /* Mobile Sub-menu Accordion */
    .primary-menu .sub-menu { 
        position: static; box-shadow: none; border-top: none; 
        padding: 0 0 0 16px; opacity: 1; visibility: visible; 
        transform: none; display: none; background: #f8fafc; 
        border-radius: 0; 
    }
    .primary-menu li.open > .sub-menu { display: block; }
    .primary-menu li.menu-item-has-children > a { cursor: pointer; }
    .primary-menu .sub-menu a { padding: 12px 16px; border-bottom: 1px solid #e2e8f0; }
    .primary-menu .sub-menu a:hover { padding-left: 16px; }
}

/* ========================================================
   CONTENT + SIDEBAR LAYOUT
   ======================================================== */
.mm-content-sidebar-wrap {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 0;
    align-items: start;
    max-width: 100%;
}
.mm-main-content {
    min-width: 0; /* prevent grid blowout */
}

/* ========================================================
   SIDEBAR BASE
   ======================================================== */
.mm-sidebar {
    background: #f0fdf9;
    border-left: 1px solid #e2f5f0;
    padding: 40px 24px 60px;
    min-height: 100%;
}
.sidebar-inner {
    position: sticky;
    top: 94px; /* below fixed header */
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #14b8a6 #e2f5f0;
    padding-right: 4px;
    padding-bottom: 40px;
}
.sidebar-inner::-webkit-scrollbar { width: 4px; }
.sidebar-inner::-webkit-scrollbar-track { background: #e2f5f0; border-radius: 2px; }
.sidebar-inner::-webkit-scrollbar-thumb { background: #14b8a6; border-radius: 2px; }


/* ─── Widget inner styles → assets/css/widgets.css ─── */

   RESPONSIVE — SIDEBAR COLLAPSES ON TABLET/MOBILE
   ======================================================== */
@media (max-width: 1100px) {
    .mm-content-sidebar-wrap {
        grid-template-columns: 1fr 300px;
    }
}
@media (max-width: 900px) {
    .mm-content-sidebar-wrap {
        grid-template-columns: 1fr;
    }
    .mm-sidebar {
        display: none; /* shown via toggle on mobile — see JS below */
        border-left: none;
        border-top: 1px solid #e2f5f0;
    }
    .mm-sidebar.open { display: block; }
}

@media (max-width: 640px) {
    .prefooter-cats {
        grid-template-columns: repeat(2, 1fr);
    }
    .prefooter-featured-row {
        grid-template-columns: 1fr;
    }
    .prefooter-cta-strip {
        flex-direction: column;
        text-align: center;
    }
    .cta-strip-text { flex-direction: column; text-align: center; }
    .cta-strip-actions { justify-content: center; }
}

/* ========================================================
   SINGLE POST / PAGE / PACKAGE — SHARED TEMPLATES
   ======================================================== */

/* ── Post / Page Hero Banner ── */
.mm-post-hero {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: flex-end;
    padding-top: 76px; /* header height */
    background-size: cover;
    background-position: center;
    background-color: #1e293b;
}
.mm-pkg-hero { min-height: 420px; }
.mm-page-hero { min-height: 240px; }

.mm-post-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.25) 0%, rgba(0,0,0,.72) 100%);
}
.mm-post-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 24px 36px;
}
.mm-page-hero-content { padding: 32px 24px 28px; }

/* hero breadcrumb */
.mm-hero-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: .78rem;
    color: rgba(255,255,255,.7);
    margin-bottom: 14px;
}
.mm-hero-breadcrumb a { color: rgba(255,255,255,.7); text-decoration: none; transition: color .2s; }
.mm-hero-breadcrumb a:hover { color: #14b8a6; }
.mm-hero-breadcrumb i { font-size: .65rem; color: rgba(255,255,255,.4); }

/* post cat badges */
.mm-post-cats { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.mm-post-cat-badge {
    background: var(--primary);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 4px 14px;
    border-radius: 50px;
    text-decoration: none;
    transition: background .2s;
}
.mm-post-cat-badge:hover { background: var(--secondary); }

.mm-pkg-hero-badge {
    display: inline-block;
    background: #7c3aed;
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 10px;
}

/* post title in hero */
.mm-post-title {
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 14px;
    text-shadow: 0 2px 8px rgba(0,0,0,.3);
    max-width: 820px;
}

/* post meta row */
.mm-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: .82rem;
    color: rgba(255,255,255,.8);
}
.mm-post-meta span { display: flex; align-items: center; gap: 5px; }
.mm-post-meta i { color: #14b8a6; font-size: .78rem; }

/* ── Article Card (white content box) ── */
.mm-article-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 36px;
    box-shadow: 0 2px 20px rgba(0,0,0,.07);
    border: 1px solid #f1f5f9;
    margin-bottom: 24px;
}
.mm-page-card { padding: 36px 40px; }
.mm-pkg-body  { padding: 32px 36px; }

/* ── Single / Page Wrap ── */
.mm-single-wrap,
.mm-page-wrap,
.mm-pkg-wrap {
    padding-top: 0;
}
.mm-single-wrap .mm-main-content,
.mm-page-wrap .mm-main-content,
.mm-pkg-wrap .mm-main-content {
    padding: 36px 24px 48px;
}
.mm-single-wrap .mm-sidebar,
.mm-page-wrap .mm-sidebar,
.mm-pkg-wrap .mm-sidebar {
    padding-top: 36px;
    padding-bottom: 48px;
}

/* ── Breadcrumb (inside article card) ── */
.mm-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: .78rem;
    color: #94a3b8;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
}
.mm-breadcrumb a { color: #94a3b8; text-decoration: none; transition: color .2s; }
.mm-breadcrumb a:hover { color: var(--primary); }
.mm-bc-sep i { font-size: .6rem; color: #cbd5e1; }
.mm-bc-current { color: #475569; font-weight: 500; }

/* ── Post Body Typography ── */
.mm-post-body { line-height: 1.85; color: #374151; }
.mm-post-body h2 { font-size: 1.4rem; font-weight: 800; color: #1e293b; margin: 32px 0 14px; padding-top: 8px; border-top: 2px solid #f1f5f9; }
.mm-post-body h3 { font-size: 1.15rem; font-weight: 700; color: #1e293b; margin: 24px 0 10px; }
.mm-post-body h4 { font-size: 1rem; font-weight: 700; color: #1e293b; margin: 18px 0 8px; }
.mm-post-body p  { margin-bottom: 18px; }
.mm-post-body ul, .mm-post-body ol { padding-left: 24px; margin-bottom: 18px; }
.mm-post-body li { margin-bottom: 6px; }
.mm-post-body blockquote {
    border-left: 4px solid var(--primary);
    background: #f0fdfa;
    padding: 16px 20px;
    margin: 24px 0;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: #475569;
}
.mm-post-body img { border-radius: 10px; margin: 16px 0; box-shadow: 0 2px 12px rgba(0,0,0,.08); }
.mm-post-body a { color: var(--primary); text-decoration: underline; }
.mm-post-body a:hover { color: var(--secondary); }
.mm-post-body table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: .9rem; }
.mm-post-body th { background: var(--primary); color: #fff; padding: 10px 14px; text-align: left; }
.mm-post-body td { padding: 9px 14px; border-bottom: 1px solid #e2e8f0; }
.mm-post-body tr:nth-child(even) td { background: #f8fafc; }
.mm-post-body hr { border: none; border-top: 2px solid #f1f5f9; margin: 32px 0; }

/* ── Tags ── */
.mm-post-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
    font-size: .8rem;
    color: #94a3b8;
}
.mm-post-tags > i { color: var(--primary); }
.mm-tag-pill {
    background: #f0fdfa;
    color: var(--secondary);
    border: 1px solid #99f6e4;
    padding: 4px 12px;
    border-radius: 50px;
    text-decoration: none;
    font-size: .76rem;
    font-weight: 600;
    transition: background .2s, color .2s;
}
.mm-tag-pill:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ── Author box ── */
.mm-author-box {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: #f8fafc;
    border: 1px solid #e8f5f2;
    border-radius: 14px;
    padding: 20px 22px;
    margin-top: 28px;
}
.mm-author-avatar img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; border: 3px solid #14b8a6; display: block; }
.mm-author-info { flex: 1; }
.mm-author-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .07em; color: #94a3b8; font-weight: 600; display: block; }
.mm-author-name  { font-size: 1rem; font-weight: 800; color: #1e293b; display: block; margin-top: 2px; }
.mm-author-bio   { font-size: .82rem; color: #64748b; margin: 6px 0 0; line-height: 1.5; }

/* ── Post navigation ── */
.mm-post-nav {
    display: flex;
    gap: 16px;
    margin-top: 28px;
    flex-wrap: wrap;
}
.mm-post-nav-link {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none;
    transition: border-color .2s, background .2s;
    min-width: 0;
}
.mm-post-nav-link:hover { border-color: var(--primary); background: #f0fdfa; }
.mm-nav-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    transition: background .2s;
}
.mm-post-nav-link:hover .mm-nav-arrow { background: var(--primary); color: #fff; border-color: var(--primary); }
.mm-nav-text { display: flex; flex-direction: column; min-width: 0; }
.mm-nav-text small { font-size: .72rem; color: #94a3b8; text-transform: uppercase; letter-spacing: .06em; }
.mm-nav-text strong { font-size: .84rem; color: #1e293b; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mm-nav-next { justify-content: flex-end; }

/* ── Comments wrapper ── */
.mm-comments-wrap { margin-top: 28px; }

/* ── Related posts ── */
.mm-related-posts { margin-top: 28px; }
.mm-related-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.mm-related-title i { color: var(--primary); }
.mm-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}
.mm-related-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    transition: transform .25s, box-shadow .25s;
    display: block;
}
.mm-related-card:hover { transform: translateY(-4px); box-shadow: 0 10px 25px rgba(0,0,0,.1); }
.mm-related-img { height: 130px; overflow: hidden; }
.mm-related-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; display: block; }
.mm-related-card:hover .mm-related-img img { transform: scale(1.07); }
.mm-related-body { padding: 12px 14px; }
.mm-related-body h4 { font-size: .84rem; font-weight: 700; color: #1e293b; margin-bottom: 6px; line-height: 1.3; }
.mm-related-body span { font-size: .75rem; color: #94a3b8; display: flex; align-items: center; flex-wrap: wrap; gap: 4px; }
.mm-related-body i { color: var(--primary); font-size: .7rem; }

/* ── Inclusions / Exclusions ── */
.mm-incex-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.mm-incex-col h4 {
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
}
.mm-inc-col h4 { color: #15803d; }
.mm-inc-col h4 i { color: #15803d; }
.mm-exc-col h4 { color: #dc2626; }
.mm-exc-col h4 i { color: #dc2626; }
.mm-incex-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.mm-incex-col ul li { font-size: .83rem; color: #475569; display: flex; align-items: flex-start; gap: 8px; }
.mm-inc-col ul li i { color: #15803d; margin-top: 2px; font-size: .75rem; }
.mm-exc-col ul li i { color: #dc2626; margin-top: 2px; font-size: .75rem; }

/* ── Package gallery grid ── */
.mm-section-inner-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.mm-section-inner-title i { color: var(--primary); }
.mm-pkg-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}
.mm-pkg-gimg { border-radius: 10px; aspect-ratio: 1/1; }

/* ── Package booking card ── */
.mm-pkg-booking-card { padding: 24px 22px !important; }
.mm-pkg-price-display {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 10px;
}
.mm-pkg-price-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}
.mm-pkg-price-label { font-size: .78rem; color: #94a3b8; }
.mm-pkg-rating-row {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: .84rem;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
}
.mm-pkg-rating-row .fas.fa-star { color: #f59e0b; }
.mm-pkg-rating-row .far.fa-star { color: #e2e8f0; }
.mm-pkg-rating-row span { font-size: .8rem; color: #64748b; margin-left: 4px; }
.mm-pkg-details { margin-bottom: 20px; display: flex; flex-direction: column; gap: 0; }
.mm-pkg-detail-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: .84rem;
}
.mm-pkg-detail-row:last-child { border-bottom: none; }
.mm-pkg-detail-row > span { color: #64748b; display: flex; align-items: center; gap: 6px; }
.mm-pkg-detail-row > span i { color: var(--primary); font-size: .78rem; }
.mm-pkg-detail-row strong { color: #1e293b; font-weight: 600; text-align: right; font-size: .82rem; }
.mm-pkg-book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 16px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: inherit;
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: background .2s, transform .2s;
    box-shadow: 0 4px 14px rgba(20,184,166,.35);
    margin-bottom: 10px;
}
.mm-pkg-book-btn:hover { background: var(--secondary); transform: translateY(-2px); color: #fff; }
.mm-pkg-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px 16px;
    background: #25d366;
    color: #fff;
    border-radius: 10px;
    font-size: .88rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: background .2s;
    margin-bottom: 8px;
}
.mm-pkg-wa-btn:hover { background: #128c7e; color: #fff; }
.mm-pkg-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #475569;
    border-radius: 10px;
    font-size: .85rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: border-color .2s, color .2s;
    margin-bottom: 16px;
}
.mm-pkg-call-btn:hover { border-color: var(--primary); color: var(--primary); }
.mm-pkg-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}
.mm-pkg-trust span {
    font-size: .72rem;
    color: #64748b;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 4px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.mm-pkg-trust span i { color: var(--primary); font-size: .68rem; }

/* ── Page links ── */
.mm-page-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
    font-size: .84rem;
    color: #94a3b8;
}
.mm-page-links a {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary);
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: .8rem;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .mm-article-card { padding: 22px 18px; }
    .mm-page-card    { padding: 24px 18px; }
    .mm-pkg-body     { padding: 22px 18px; }
    .mm-incex-grid   { grid-template-columns: 1fr; }
    .mm-post-nav     { flex-direction: column; }
    .mm-post-nav-link { flex: none; }
    .mm-post-meta    { gap: 10px; font-size: .76rem; }
}
@media (max-width: 640px) {
    .mm-post-hero { min-height: 260px; }
    .mm-pkg-hero  { min-height: 300px; }
    .mm-related-grid { grid-template-columns: 1fr 1fr; }
    .mm-single-wrap .mm-main-content,
    .mm-page-wrap .mm-main-content,
    .mm-pkg-wrap .mm-main-content { padding: 20px 14px 36px; }
}

/* ========================================================
   HERO GRADIENT FALLBACK (when no featured image)
   ======================================================== */
.mm-hero-gradient {
    background: linear-gradient(140deg, #1e293b 0%, #0f4c3a 50%, #1e293b 100%) !important;
    background-image: none !important;
}
.mm-hero-gradient .mm-post-hero-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,.1), rgba(0,0,0,.45)) !important;
}

/* ========================================================
   ITINERARY DAY CARDS  (.mm-day-card)
   Auto-generated by content-filters.php for "Day N: ..." patterns
   ======================================================== */
.mm-day-card {
    display: flex;
    gap: 0;
    margin: 28px 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e2f5f0;
    box-shadow: 0 3px 16px rgba(20,184,166,.08);
    background: #fff;
    transition: box-shadow .25s, transform .25s;
}
.mm-day-card:hover {
    box-shadow: 0 8px 28px rgba(20,184,166,.14);
    transform: translateY(-2px);
}
.mm-day-num {
    flex-shrink: 0;
    width: 64px;
    background: linear-gradient(160deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}
.mm-day-num span {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: .04em;
    line-height: 1;
    writing-mode: horizontal-tb;
    transform: none;
}
/* Day number count badge style */
.mm-day-num::before {
    content: 'DAY';
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .14em;
    color: rgba(255,255,255,.7);
    display: block;
    text-align: center;
    margin-bottom: 6px;
    writing-mode: horizontal-tb;
}
.mm-day-num {
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
}
.mm-day-body {
    flex: 1;
    padding: 20px 22px;
    min-width: 0;
}
.mm-day-title {
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin: 0 0 10px !important;
    padding: 0 !important;
    border: none !important;
    display: flex;
    align-items: center;
    gap: 8px;
}
.mm-day-title i {
    color: var(--primary);
    font-size: .9rem;
    flex-shrink: 0;
}
.mm-day-body p {
    font-size: .88rem !important;
    color: #475569 !important;
    line-height: 1.7 !important;
    margin: 0 !important;
}

/* Alternating accent colours for day cards */
.mm-day-card:nth-child(4n+1) .mm-day-num { background: linear-gradient(160deg,#14b8a6,#0f766e); }
.mm-day-card:nth-child(4n+2) .mm-day-num { background: linear-gradient(160deg,#7c3aed,#5b21b6); }
.mm-day-card:nth-child(4n+3) .mm-day-num { background: linear-gradient(160deg,#f59e0b,#d97706); }
.mm-day-card:nth-child(4n+4) .mm-day-num { background: linear-gradient(160deg,#ec4899,#be185d); }

/* ========================================================
   INFO GRID  (.mm-info-grid)
   Auto-generated for bold key: value blocks
   ======================================================== */
.mm-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: #e2f5f0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #b3e8df;
    margin: 24px 0;
}
.mm-info-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: #fff;
    padding: 14px 16px;
    transition: background .18s;
}
.mm-info-row:hover { background: #f0fdfa; }
.mm-info-key {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--primary);
}
.mm-info-val {
    font-size: .9rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.35;
}

/* ========================================================
   AUTO HEADING NUMBERS  (.mm-heading-num)
   ======================================================== */
.mm-heading-num {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: .7em;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 6px;
    margin-right: 6px;
    vertical-align: middle;
    line-height: 1.6;
    letter-spacing: .02em;
}

/* ========================================================
   ENHANCED ENTRY-CONTENT / MM-POST-BODY
   Override defaults — ensures WP content looks great
   ======================================================== */
.entry-content,
.mm-post-body {
    font-size: .97rem;
    line-height: 1.85;
    color: #374151;
    word-break: break-word;
    overflow-wrap: break-word;
}

/* All heading levels */
.entry-content h1, .mm-post-body h1 { font-size: 1.7rem;  font-weight: 800; color: #1e293b; margin: 36px 0 16px; }
.entry-content h2, .mm-post-body h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1e293b;
    margin: 36px 0 14px;
    padding: 14px 18px;
    background: linear-gradient(135deg, #f0fdfa, #f8fafc);
    border-left: 4px solid var(--primary);
    border-radius: 0 10px 10px 0;
    line-height: 1.35;
}
.entry-content h3, .mm-post-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 28px 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0fdfa;
}
.entry-content h4, .mm-post-body h4 { font-size: .98rem; font-weight: 700; color: #1e293b; margin: 20px 0 8px; }
.entry-content h5, .mm-post-body h5 { font-size: .92rem; font-weight: 700; color: #475569; margin: 16px 0 6px; }
.entry-content h6, .mm-post-body h6 { font-size: .86rem; font-weight: 700; color: #64748b; margin: 14px 0 5px; }

/* Empty h3/h4/h5 stubs (theme generates empty ### headings) */
.entry-content h3:empty,
.entry-content h4:empty,
.entry-content h5:empty,
.mm-post-body h3:empty,
.mm-post-body h4:empty,
.mm-post-body h5:empty { display: none; }

/* Paragraphs */
.entry-content p, .mm-post-body p { margin-bottom: 18px; }
.entry-content p:last-child, .mm-post-body p:last-child { margin-bottom: 0; }

/* Lists */
.entry-content ul, .mm-post-body ul,
.entry-content ol, .mm-post-body ol {
    padding-left: 24px;
    margin-bottom: 18px;
}
.entry-content ul { list-style-type: none; padding-left: 0; }
.entry-content ul li, .mm-post-body ul li {
    padding: 5px 0 5px 24px;
    position: relative;
    color: #475569;
    border-bottom: 1px dashed #e2e8f0;
}
.entry-content ul li:last-child, .mm-post-body ul li:last-child { border-bottom: none; }
.entry-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}
.entry-content ol li, .mm-post-body ol li {
    margin-bottom: 8px;
    color: #475569;
    padding-left: 4px;
}

/* Bold & italic */
.entry-content strong, .mm-post-body strong { color: #1e293b; font-weight: 700; }
.entry-content em, .mm-post-body em { color: #475569; font-style: italic; }

/* Images */
.entry-content img, .mm-post-body img {
    border-radius: 12px;
    margin: 20px auto;
    box-shadow: 0 4px 20px rgba(0,0,0,.1);
    max-width: 100%;
    height: auto;
    display: block;
}
.entry-content .alignleft  { float: left;  margin: 10px 20px 10px 0; }
.entry-content .alignright { float: right; margin: 10px 0 10px 20px; }
.entry-content .aligncenter{ margin: 20px auto; display: block; }

/* Image captions */
.entry-content .wp-caption { max-width: 100%; }
.entry-content .wp-caption-text {
    font-size: .78rem;
    color: #94a3b8;
    text-align: center;
    margin-top: 6px;
    font-style: italic;
}

/* Blockquote */
.entry-content blockquote, .mm-post-body blockquote {
    border-left: 4px solid var(--primary);
    background: linear-gradient(135deg, #f0fdfa, #f8fafc);
    padding: 18px 22px;
    margin: 28px 0;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #475569;
    font-size: .95rem;
    line-height: 1.75;
}
.entry-content blockquote p { margin: 0; }

/* Tables */
.entry-content table, .mm-post-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: .88rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.entry-content th, .mm-post-body th {
    background: var(--primary);
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-weight: 700;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.entry-content td, .mm-post-body td {
    padding: 10px 16px;
    border-bottom: 1px solid #e2e8f0;
    color: #475569;
}
.entry-content tr:nth-child(even) td { background: #f8fafc; }
.entry-content tr:hover td { background: #f0fdfa; }

/* HR */
.entry-content hr, .mm-post-body hr {
    border: none;
    height: 2px;
    background: linear-gradient(to right, var(--primary), transparent);
    margin: 36px 0;
    border-radius: 2px;
}

/* Links */
.entry-content a:not(.mm-post-cat-badge):not(.wp-block-button__link),
.mm-post-body a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: rgba(20,184,166,.4);
    transition: color .18s, text-decoration-color .18s;
}
.entry-content a:hover, .mm-post-body a:hover {
    color: var(--secondary);
    text-decoration-color: var(--secondary);
}

/* Code */
.entry-content code, .mm-post-body code {
    background: #f1f5f9;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: .85em;
    color: #dc2626;
    font-family: 'Courier New', monospace;
}
.entry-content pre, .mm-post-body pre {
    background: #1e293b;
    color: #e2e8f0;
    padding: 20px;
    border-radius: 10px;
    overflow-x: auto;
    font-size: .85rem;
    line-height: 1.65;
    margin: 20px 0;
}

/* ── Responsive ── */
@media (max-width: 640px) {
    .mm-day-card { flex-direction: column; }
    .mm-day-num { width: 100%; flex-direction: row; justify-content: flex-start; padding: 10px 16px; writing-mode: horizontal-tb; gap: 8px; }
    .mm-day-num::before { margin-bottom: 0; margin-right: 4px; }
    .mm-info-grid { grid-template-columns: 1fr; }
    .entry-content h2, .mm-post-body h2 { font-size: 1.1rem; }
}

/* ================================================================
   v2.0 — GLOBAL SECTIONS CSS
   ================================================================ */

/* ── Announcement Bar ─────────────────────────────────────────── */
.mm-announcement-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 9px 20px;
    font-size: .82rem;
    font-weight: 600;
    flex-wrap: wrap;
    position: relative;
    z-index: 9999;
    line-height: 1.4;
}
.mm-ann-text { flex: 1; text-align: center; min-width: 0; }
.mm-ann-btn {
    display: inline-block;
    border: 1.5px solid currentColor;
    border-radius: 50px;
    padding: 4px 14px;
    font-size: .76rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background .15s, color .15s;
}
.mm-ann-btn:hover { background: rgba(255,255,255,.2); }
.mm-ann-close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    padding: 4px 6px;
    opacity: .75;
    flex-shrink: 0;
}
.mm-ann-close:hover { opacity: 1; }

/* Push header down when bar is showing */
body:has(.mm-announcement-bar) .site-header { top: 38px; }

/* ── Newsletter Bar ───────────────────────────────────────────── */
.mm-newsletter-bar { padding: 40px 24px; }
.mm-nl-bar-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.mm-nl-bar-text { flex: 1; min-width: 0; }
.mm-nl-bar-text h3 { font-size: 1.2rem; font-weight: 800; margin: 0 0 6px; }
.mm-nl-bar-text p  { font-size: .88rem; margin: 0; opacity: .88; }
.mm-nl-bar-form {
    display: flex;
    gap: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
    flex-shrink: 0;
}
.mm-nl-bar-form input[type="email"] {
    border: none;
    padding: 13px 18px;
    font-size: .9rem;
    min-width: 260px;
    outline: none;
    font-family: inherit;
    color: #1e293b;
}
.mm-nl-bar-form button {
    background: #1e293b;
    color: #fff;
    border: none;
    padding: 13px 22px;
    font-weight: 700;
    font-size: .88rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: background .2s;
    font-family: inherit;
    white-space: nowrap;
}
.mm-nl-bar-form button:hover { background: #0f172a; }
@media(max-width:700px){
    .mm-nl-bar-form { flex-direction: column; width: 100%; }
    .mm-nl-bar-form input[type="email"] { min-width: 0; width: 100%; }
    .mm-nl-bar-form button { justify-content: center; }
}

/* ── Floating WhatsApp Button ─────────────────────────────────── */
.mm-float-wa {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    z-index: 9990;
    box-shadow: 0 6px 24px rgba(37,211,102,.45);
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    animation: mmWaPulse 2.5s ease infinite;
}
.mm-float-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 32px rgba(37,211,102,.55);
    color: #fff;
}
@keyframes mmWaPulse {
    0%,100%{box-shadow:0 6px 24px rgba(37,211,102,.45),0 0 0 0 rgba(37,211,102,.4);}
    50%{box-shadow:0 6px 24px rgba(37,211,102,.45),0 0 0 14px rgba(37,211,102,0);}
}
.mm-float-wa-tip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: #1e293b;
    color: #fff;
    font-size: .76rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
}
.mm-float-wa-tip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #1e293b;
}
.mm-float-wa:hover .mm-float-wa-tip { opacity: 1; }

/* ================================================================
   v2.0 — ARCHIVE / CATEGORY PAGE
   ================================================================ */
.mm-archive-hero { min-height: 220px; }
.mm-archive-hero-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}
.mm-archive-hero-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,.25);
}
.mm-archive-type {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255,255,255,.6);
    margin: 0 0 6px;
}
.mm-archive-desc {
    font-size: .88rem;
    color: rgba(255,255,255,.8);
    margin: 8px 0 0;
    max-width: 600px;
    line-height: 1.55;
}

/* Archive wrap */
.mm-archive-wrap .mm-main-content { padding: 32px 24px 48px; }
.mm-archive-wrap .mm-sidebar { padding-top: 32px; padding-bottom: 48px; }
.mm-no-sidebar { grid-template-columns: 1fr !important; }
.mm-no-sidebar .mm-main-content { max-width: 1100px; margin: 0 auto; }

/* Archive topbar */
.mm-archive-main-inner { max-width: 100%; }
.mm-archive-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
}
.mm-archive-count { font-size: .84rem; color: #64748b; display: flex; align-items: center; gap: 6px; }
.mm-archive-count i { color: var(--primary); }
.mm-archive-layout-switch { display: flex; gap: 4px; }
.mm-layout-btn {
    width: 32px; height: 32px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #94a3b8;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .82rem;
    transition: all .18s;
}
.mm-layout-btn.active,
.mm-layout-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Archive card grid */
.mm-archive-grid.mm-layout-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}
.mm-archive-grid.mm-layout-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.mm-archive-grid.mm-layout-list .mm-archive-card {
    flex-direction: row;
    max-height: 180px;
}
.mm-archive-grid.mm-layout-list .mm-arch-card-img-wrap {
    width: 220px;
    flex-shrink: 0;
    border-radius: 12px 0 0 12px;
}
.mm-archive-grid.mm-layout-list .mm-arch-card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Archive card */
.mm-archive-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
    display: flex;
    flex-direction: column;
    transition: transform .25s, box-shadow .25s;
}
.mm-archive-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,0,0,.1); }
.mm-arch-card-img-wrap {
    position: relative;
    display: block;
    height: 190px;
    overflow: hidden;
    text-decoration: none;
}
.mm-arch-card-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .45s;
    display: block;
}
.mm-archive-card:hover .mm-arch-card-img-wrap img { transform: scale(1.06); }
.mm-arch-badge {
    position: absolute; top: 10px; left: 10px;
    background: var(--accent);
    color: #fff;
    font-size: .68rem; font-weight: 700;
    padding: 3px 10px; border-radius: 20px;
}
.mm-arch-cat {
    position: absolute; bottom: 10px; left: 10px;
    background: rgba(0,0,0,.55);
    color: #fff;
    font-size: .68rem; font-weight: 600;
    padding: 3px 10px; border-radius: 20px;
    backdrop-filter: blur(4px);
}
.mm-arch-card-body { padding: 16px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.mm-arch-card-title { font-size: .92rem; font-weight: 700; color: #1e293b; line-height: 1.3; margin: 0; }
.mm-arch-card-title a { text-decoration: none; color: inherit; transition: color .18s; }
.mm-arch-card-title a:hover { color: var(--primary); }
.mm-arch-card-meta { display: flex; flex-wrap: wrap; gap: 10px; font-size: .74rem; color: #94a3b8; }
.mm-arch-card-meta i { color: var(--primary); margin-right: 3px; font-size: .7rem; }
.mm-arch-card-excerpt { font-size: .81rem; color: #64748b; line-height: 1.55; margin: 0; flex: 1;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.mm-arch-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 8px; border-top: 1px solid #f1f5f9; margin-top: auto; }
.mm-arch-price { font-size: .95rem; font-weight: 800; color: var(--primary); }
.mm-arch-read-more {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .78rem; font-weight: 700;
    color: var(--primary); text-decoration: none;
    background: #f0fdfa; border: 1px solid #99f6e4;
    padding: 6px 14px; border-radius: 50px;
    transition: background .18s, color .18s;
    white-space: nowrap;
}
.mm-arch-read-more:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Pagination */
.mm-archive-pagination { margin-top: 36px; }
.mm-archive-pagination .nav-links { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.mm-archive-pagination .page-numbers {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: #fff; color: #64748b;
    font-size: .84rem; font-weight: 600; text-decoration: none;
    transition: all .18s;
}
.mm-archive-pagination .page-numbers.current,
.mm-archive-pagination .page-numbers:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.mm-archive-pagination .page-numbers.prev,
.mm-archive-pagination .page-numbers.next { width: auto; padding: 0 16px; gap: 6px; }

/* Empty state */
.mm-archive-empty { text-align: center; padding: 60px 20px; }
.mm-archive-empty-icon { font-size: 3rem; color: #cbd5e1; margin-bottom: 16px; }
.mm-archive-empty h2 { color: #1e293b; margin-bottom: 10px; }
.mm-archive-empty p { color: #64748b; margin-bottom: 20px; }

/* ================================================================
   v2.0 — LAYOUT FIXES (global)
   ================================================================ */

/* Ensure full-width sections span full grid width */
.mm-main-content > section,
.mm-main-content > .features-section,
.mm-main-content > .gallery-section,
.mm-main-content > .stats-section,
.mm-main-content > .testimonials-section {
    margin-left: -24px;
    margin-right: -24px;
}

/* Content sidebar layout — remove top padding bleed */
.mm-content-sidebar-wrap { overflow: hidden; }

/* Left sidebar support */
.mm-sidebar-left .mm-content-sidebar-wrap {
    grid-template-columns: 360px 1fr;
}
.mm-sidebar-left .mm-sidebar { order: -1; border-left: none; border-right: 1px solid #e2f5f0; }

/* No sidebar — full width content */
.mm-no-sidebar.mm-content-sidebar-wrap { grid-template-columns: 1fr; }

/* version tag in admin bar area */
.mm-version-badge {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: .6rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
    vertical-align: middle;
    letter-spacing: .04em;
}

@media(max-width:900px){
    .mm-archive-grid.mm-layout-list .mm-archive-card { flex-direction: column; max-height: none; }
    .mm-archive-grid.mm-layout-list .mm-arch-card-img-wrap { width: 100%; border-radius: 12px 12px 0 0; }
}
@media(max-width:640px){
    .mm-archive-grid.mm-layout-grid { grid-template-columns: 1fr; }
    .mm-archive-hero-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
    .mm-float-wa { bottom: 16px; right: 16px; width: 50px; height: 50px; font-size: 1.4rem; }
    .mm-announcement-bar { font-size: .76rem; gap: 8px; }
}

/* ================================================================
   v2.0.4 BUG FIXES
   ================================================================ */

/* ── FIX 2: Lightbox — properly hidden until .open added by JS ── */
.lightbox {
    display: none;           /* hidden by default — NEVER visible until .open */
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0,0,0,.92);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    animation: none;
}
.lightbox.open {
    display: flex;           /* only shown when JS adds .open */
    animation: lbFadeIn .2s ease;
}
@keyframes lbFadeIn {
    from { opacity:0; }
    to   { opacity:1; }
}
.lightbox-inner {
    position: relative;
    max-width: 92vw;
    max-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-close {
    position: absolute;
    top: -44px;
    right: -8px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .18s;
    line-height: 1;
    z-index: 2;
}
.lightbox-close:hover { background: rgba(255,255,255,.3); }
#lightbox-img {
    max-width: 88vw;
    max-height: 88vh;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
    object-fit: contain;
    display: block;
}
/* Prevent body scroll when lightbox open */
body.mm-no-scroll { overflow: hidden; }

/* ── FIX 1: Package filter — loading/error state isolation ──── */
/* Packages grid state management — all states hidden until JS acts */
#packages-grid {
    position: relative;
    min-height: 200px;
}
#packages-loading {
    display: none; /* JS calls .show() which sets display:block */
    grid-column: 1/-1;
    text-align: center;
    padding: 48px 20px;
    width: 100%;
}
#no-packages {
    display: none; /* JS calls .show() which sets display:block */
    grid-column: 1/-1;
    text-align: center;
    padding: 48px 20px;
    color: #94a3b8;
    font-size: .95rem;
    width: 100%;
}

/* card price badge (renamed from card-badge which conflicted with badge label) */
.card-price-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}
.card-badge-label {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}

/* ── FIX 4: Gallery empty state message ─────────────────────── */
.mm-gallery-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 48px 24px;
    color: #64748b;
    background: #f8fafc;
    border: 2px dashed #e2e8f0;
    border-radius: 14px;
    font-size: .9rem;
    line-height: 1.6;
}
.mm-gallery-empty i {
    font-size: 2.5rem;
    color: #cbd5e1;
    display: block;
    margin-bottom: 14px;
}
.mm-gallery-empty strong { color: var(--primary); }

/* Gallery grid items — ensure images fill properly */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    background: #e2e8f0; /* placeholder bg while loading */
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    opacity: 0;
    transition: opacity .25s, background .25s;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
    background: rgba(0,0,0,.4);
}

/* ================================================================
   v2.0.4 — ISSUE FIXES
   ================================================================ */

/* ── Issue 5: Full-width when sidebar hidden ─────────────────── */
.mm-content-sidebar-wrap.mm-no-sidebar {
    grid-template-columns: 1fr !important;
}
.mm-no-sidebar .mm-main-content {
    width: 100%;
    max-width: 100%;
}
/* Full-width sections when no sidebar */
.mm-no-sidebar .features-section,
.mm-no-sidebar .gallery-section,
.mm-no-sidebar .stats-section,
.mm-no-sidebar .testimonials-section,
.mm-no-sidebar #packages {
    margin-left: 0;
    margin-right: 0;
}
.mm-no-sidebar .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.mm-no-sidebar #packages-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

/* ── Issue 4: Pre-Footer Section fix ────────────────────────── */
.prefooter-section {
    background: linear-gradient(160deg, #1e293b 0%, #0f172a 50%, #1e293b 100%);
    position: relative;
    overflow: hidden;
    padding: 0 0 0 0;
}
.prefooter-wave {
    line-height: 0;
    overflow: hidden;
    height: 50px;
}
.prefooter-wave svg {
    display: block;
    width: 100%;
    height: 100%;
}
.prefooter-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 52px 24px 60px;
    position: relative;
    z-index: 1;
}
.prefooter-inner .section-header {
    text-align: center;
    margin-bottom: 40px;
}
.prefooter-inner .section-label {
    display: inline-block;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #a78bfa;
    margin-bottom: 10px;
}
.prefooter-inner .section-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.2;
}
.prefooter-inner .section-divider {
    width: 48px;
    height: 3px;
    background: #a78bfa;
    border-radius: 2px;
    margin: 0 auto 14px;
}
.prefooter-inner .section-desc {
    color: rgba(255,255,255,.65);
    font-size: .92rem;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Category cards */
.prefooter-cats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 14px;
    margin-bottom: 48px;
}
.cat-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    padding: 22px 14px 18px;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    transition: background .22s, border-color .22s, transform .22s;
}
.cat-card:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(167,139,250,.5);
    transform: translateY(-5px);
}
.cat-icon {
    width: 52px;
    height: 52px;
    background: rgba(167,139,250,.18);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #a78bfa;
    transition: background .22s, transform .22s;
}
.cat-card:hover .cat-icon {
    background: rgba(167,139,250,.32);
    transform: scale(1.1) rotate(-4deg);
}
.cat-name {
    font-size: .85rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin: 0;
}
.cat-count {
    font-size: .72rem;
    color: rgba(255,255,255,.5);
    background: rgba(255,255,255,.08);
    padding: 2px 10px;
    border-radius: 20px;
}
.cat-arrow {
    position: absolute;
    bottom: 10px;
    right: 12px;
    color: #a78bfa;
    font-size: .7rem;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity .2s, transform .2s;
}
.cat-card:hover .cat-arrow { opacity: 1; transform: translateX(0); }

/* Featured packages row */
.prefooter-featured-wrap { margin-bottom: 40px; }
.prefooter-featured-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
}
.prefooter-featured-title span {
    display: flex;
    align-items: center;
    gap: 8px;
}
.prefooter-featured-title .fas.fa-star { color: #f59e0b; }
.view-all-link {
    font-size: .8rem;
    color: #a78bfa;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap .18s;
}
.view-all-link:hover { gap: 9px; color: #a78bfa; }
.prefooter-featured-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
}
.featured-pkg-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform .28s, border-color .28s;
}
.featured-pkg-card:hover {
    transform: translateY(-4px);
    border-color: rgba(167,139,250,.45);
}
.featured-pkg-img {
    position: relative;
    height: 155px;
    overflow: hidden;
}
.featured-pkg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s;
    display: block;
}
.featured-pkg-card:hover .featured-pkg-img img { transform: scale(1.06); }
.featured-pkg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.55), transparent);
}
.featured-pkg-badge {
    position: absolute;
    top: 9px;
    right: 9px;
    background: rgba(245,158,11,.92);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    backdrop-filter: blur(4px);
}
.featured-pkg-body {
    padding: 13px 15px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    flex: 1;
}
.featured-pkg-body h4 {
    font-size: .87rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin: 0;
}
.featured-pkg-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .76rem;
    color: rgba(255,255,255,.55);
}
.featured-pkg-meta i { color: #a78bfa; margin-right: 3px; }
.featured-pkg-price { color: #a78bfa; font-weight: 700; font-size: .86rem; }

/* ── Issue 7: CTA Strip — fully editable + styled ────────────── */
.prefooter-cta-strip {
    background: linear-gradient(135deg, rgba(167,139,250,.18), rgba(167,139,250,.07));
    border: 1px solid rgba(167,139,250,.28);
    border-radius: 16px;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
    backdrop-filter: blur(6px);
}
.cta-strip-text {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
}
.cta-strip-text > i {
    font-size: 1.8rem;
    color: #a78bfa;
    flex-shrink: 0;
    animation: ctaPulse 2.2s ease infinite;
}
@keyframes ctaPulse {
    0%,100% { transform: scale(1) rotate(0deg); }
    30% { transform: scale(1.12) rotate(-10deg); }
    60% { transform: scale(1.12) rotate(10deg); }
}
.cta-strip-text strong {
    display: block;
    font-size: .97rem;
    font-weight: 700;
    margin-bottom: 3px;
    color: #fff;
}
.cta-strip-text span {
    font-size: .8rem;
    color: rgba(255,255,255,.62);
    display: block;
}
.cta-strip-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cta-strip-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 20px;
    border-radius: 50px;
    font-family: inherit;
    font-size: .86rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    white-space: nowrap;
}
.cta-strip-btn:hover { transform: translateY(-2px); }
.cta-call {
    background: var(--primary);
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(20,184,166,.38);
}
.cta-call:hover { box-shadow: 0 8px 22px rgba(20,184,166,.48); }
.cta-wa {
    background: #25d366;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(37,211,102,.32);
}
.cta-wa:hover { box-shadow: 0 8px 22px rgba(37,211,102,.42); }

@media(max-width:700px){
    .prefooter-cta-strip { flex-direction:column; text-align:center; }
    .cta-strip-text { flex-direction:column; }
    .cta-strip-actions { justify-content:center; }
    .prefooter-cats { grid-template-columns: repeat(2,1fr); }
    .prefooter-featured-row { grid-template-columns: 1fr; }
}

/* ================================================================
   v2.0.10 ALIGNMENT & LAYOUT FIXES
   ================================================================ */

/* ── Features Strip — proper alignment ──────────────────────── */
.features-section { background: #fff; padding: 60px 0; }
.features-section .section-wrap { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.feature-item {
    background: #f8fafc;
    border: 1px solid #e8f5f2;
    border-radius: 14px;
    padding: 28px 22px;
    text-align: center;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.feature-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(20,184,166,.12);
    border-color: var(--primary);
}
.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #f0fdfa, #e0fdf4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
    transition: background .25s, transform .25s;
}
.feature-item:hover .feature-icon {
    background: var(--primary);
    color: #fff;
    transform: rotate(-6deg) scale(1.08);
}
.feature-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.3;
}
.feature-desc {
    font-size: .85rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ── Footer alignment fixes ──────────────────────────────────── */
.site-footer { background: #1e293b; padding: 60px 0 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 48px;
    align-items: start;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-logo-icon { font-size: 1.6rem; color: var(--primary); }
.footer-logo-text { font-size: 1.15rem; font-weight: 800; color: #fff; }
.footer-about { font-size: .84rem; color: rgba(255,255,255,.6); line-height: 1.7; margin: 0; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.social-link {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.7);
    font-size: .9rem;
    text-decoration: none;
    transition: background .2s, color .2s, border-color .2s;
}
.social-link:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.footer-heading {
    font-size: .85rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    text-transform: uppercase;
    letter-spacing: .07em;
}
.footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-links li a {
    font-size: .84rem;
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color .18s, padding-left .18s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-links li a:hover { color: var(--primary); padding-left: 4px; }
.footer-links li a::before { content: '›'; color: var(--primary); font-size: 1rem; }
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .84rem;
    color: rgba(255,255,255,.6);
    margin-bottom: 12px;
    line-height: 1.5;
}
.footer-contact-item i { color: var(--primary); margin-top: 2px; flex-shrink: 0; font-size: .85rem; }
.footer-newsletter { display: flex; flex-direction: column; gap: 12px; }
.footer-newsletter p { font-size: .84rem; color: rgba(255,255,255,.6); margin: 0; line-height: 1.5; }
.footer-form {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.15);
}
.footer-form input[type="email"] {
    flex: 1;
    background: rgba(255,255,255,.08);
    border: none;
    padding: 10px 14px;
    color: #fff;
    font-size: .84rem;
    font-family: inherit;
    outline: none;
    min-width: 0;
}
.footer-form input::placeholder { color: rgba(255,255,255,.4); }
.footer-form button {
    background: var(--primary);
    border: none;
    padding: 10px 14px;
    color: #fff;
    cursor: pointer;
    font-size: .9rem;
    transition: background .2s;
    flex-shrink: 0;
}
.footer-form button:hover { background: var(--secondary); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 18px 24px;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .78rem;
    color: rgba(255,255,255,.4);
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom i { color: var(--primary); }

/* Packages section spacing fix */
#packages, .packages-section-block { overflow: hidden; }
#packages .section-wrap, .packages-section-block .section-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 24px;
}

/* Stats section alignment */
.stats-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    padding: 0;
}
.stats-section .section-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 24px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 32px;
    text-align: center;
}
.stat-item { display: flex; flex-direction: column; gap: 6px; align-items: center; }
.stat-num { font-size: 2.5rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-label { font-size: .84rem; color: rgba(255,255,255,.8); font-weight: 500; }

/* No-sidebar full-width override (strengthen) */
.mm-no-sidebar {
    display: block !important; /* override grid */
}
.mm-no-sidebar .mm-main-content {
    width: 100%;
}

/* ── Responsive footer ────────────────────────────────────────── */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 640px) {
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ================================================================
   v2.0.10 — GALLERY NUMBERED GRID + WEATHER CARD
   ================================================================ */

/* ── Numbered Gallery Grid ────────────────────────────────────── */
.mm-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 8px;
    margin-top: 32px;
}
/* Every 7th item spans 2 cols + 2 rows */
.mm-gitem--large {
    grid-column: span 2;
    grid-row:    span 2;
}

.mm-gitem {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #e2e8f0;
    cursor: pointer;
}
.mm-gitem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}
.mm-gitem:hover img { transform: scale(1.08); }

/* Overlay with number + expand icon */
.mm-gitem-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,0) 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 10px 12px;
    opacity: 0;
    transition: opacity .25s;
}
.mm-gitem:hover .mm-gitem-overlay { opacity: 1; }

.mm-gitem-num {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(0,0,0,.55);
    color: #fff;
    font-size: .65rem;
    font-weight: 800;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,.2);
    line-height: 1;
}
.mm-gitem-expand {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    color: #fff;
    font-size: 1.3rem;
    transition: transform .25s;
    opacity: 0;
}
.mm-gitem:hover .mm-gitem-expand {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.mm-gitem-title {
    font-size: .72rem;
    font-weight: 600;
    color: rgba(255,255,255,.9);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

/* Responsive gallery */
@media (max-width: 900px) {
    .mm-gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 160px; }
}
@media (max-width: 600px) {
    .mm-gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; gap: 6px; }
    .mm-gitem--large { grid-column: span 1; grid-row: span 1; }
}

/* ── Weather Widget Card ──────────────────────────────────────── */
.mm-widget-weather {
    background: linear-gradient(145deg, #0f2942 0%, #0a1f35 100%) !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    padding: 0 !important;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,.25) !important;
}
.mm-widget-weather .widget-title {
    color: rgba(255,255,255,.85) !important;
    border-bottom-color: rgba(255,255,255,.08) !important;
    margin: 0 !important;
    padding: 14px 18px 12px !important;
    font-size: .82rem !important;
}
.mm-widget-weather .widget-title i { color: #60a5fa !important; }

/* Card container */
.mm-weather-card {
    padding: 0 0 4px;
    position: relative;
}

/* Header */
.mm-wc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px 10px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.mm-wc-location-row {
    display: flex;
    align-items: center;
    gap: 8px;
}
.mm-wc-loc-icon { color: #60a5fa; font-size: .85rem; }
.mm-wc-loc-name {
    display: block;
    font-size: .78rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}
.mm-wc-altitude {
    display: block;
    font-size: .66rem;
    color: rgba(255,255,255,.45);
    line-height: 1.2;
}
.mm-wc-live-pill {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(34,197,94,.15);
    border: 1px solid rgba(34,197,94,.3);
    color: #4ade80;
    font-size: .62rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 50px;
    letter-spacing: .06em;
}
.mm-wc-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    display: inline-block;
    flex-shrink: 0;
    animation: mmLiveDot 1.4s ease infinite;
}
@keyframes mmLiveDot {
    0%,100% { opacity:1; transform:scale(1); }
    50%      { opacity:.3; transform:scale(.6); }
}

/* Loading skeleton */
.mm-wc-loading {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 16px;
}
.mm-wc-skeleton {
    background: rgba(255,255,255,.06);
    border-radius: 8px;
    animation: mmSkPulse 1.4s ease infinite;
}
@keyframes mmSkPulse {
    0%,100% { opacity:.4; }
    50%      { opacity:.9; }
}
.mm-wc-sk-icon   { width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0; }
.mm-wc-skeleton-group { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.mm-wc-sk-temp   { height: 28px; width: 70%; border-radius: 6px; }
.mm-wc-sk-cond   { height: 14px; width: 50%; border-radius: 4px; }

/* Main temp display */
.mm-wc-body { padding: 16px 16px 4px; }
.mm-wc-main {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 6px;
}
.mm-wc-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255,255,255,.07);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fbbf24;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,.08);
}
/* Icon colour by condition */
.mm-weather-card .fa-sun         { color: #fbbf24 !important; }
.mm-weather-card .fa-cloud-sun   { color: #93c5fd !important; }
.mm-weather-card .fa-cloud       { color: #94a3b8 !important; }
.mm-weather-card .fa-snowflake   { color: #bfdbfe !important; }
.mm-weather-card .fa-bolt        { color: #fbbf24 !important; }
.mm-weather-card .fa-cloud-rain,
.mm-weather-card .fa-cloud-showers-heavy,
.mm-weather-card .fa-cloud-drizzle  { color: #60a5fa !important; }
.mm-weather-card .fa-smog        { color: #94a3b8 !important; }

.mm-wc-temp-wrap { display: flex; align-items: flex-start; line-height: 1; margin-top: 4px; }
.mm-wc-temp {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -.02em;
}
/* Temperature colour classes */
.mm-wc-freezing .mm-wc-temp { color: #bfdbfe; }
.mm-wc-cold     .mm-wc-temp { color: #93c5fd; }
.mm-wc-cool     .mm-wc-temp { color: #a5f3fc; }
.mm-wc-warm     .mm-wc-temp { color: #fde68a; }
.mm-wc-hot      .mm-wc-temp { color: #fca5a5; }

.mm-wc-unit {
    font-size: .95rem;
    font-weight: 700;
    color: rgba(255,255,255,.5);
    margin-top: 8px;
    margin-left: 2px;
}
.mm-wc-condition {
    font-size: .82rem;
    font-weight: 600;
    color: rgba(255,255,255,.75);
    margin-bottom: 4px;
}
.mm-wc-feels {
    font-size: .74rem;
    color: rgba(255,255,255,.4);
    margin-bottom: 16px;
}
.mm-wc-feels strong { color: rgba(255,255,255,.65); }

/* Stats row */
.mm-wc-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 12px;
}
.mm-wc-stat {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 10px;
    padding: 10px 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: background .18s;
}
.mm-wc-stat:hover { background: rgba(255,255,255,.1); }
.mm-wc-stat-icon { font-size: .8rem; color: #60a5fa; }
.mm-wc-stat-val  { font-size: .8rem; font-weight: 700; color: #fff; line-height: 1.2; }
.mm-wc-stat-lbl  { font-size: .62rem; color: rgba(255,255,255,.38); text-transform: uppercase; letter-spacing: .06em; }

/* Updated row */
.mm-wc-updated {
    font-size: .68rem;
    color: rgba(255,255,255,.28);
    display: flex;
    align-items: center;
    gap: 5px;
    padding-bottom: 10px;
}
.mm-wc-updated i { color: #4ade80; font-size: .6rem; }

/* Error state */
.mm-wc-error {
    padding: 28px 16px;
    text-align: center;
    color: rgba(255,255,255,.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.mm-wc-error i { font-size: 1.8rem; color: rgba(255,255,255,.2); }
.mm-wc-error p { font-size: .8rem; margin: 0; line-height: 1.5; }
.mm-wc-error small { opacity: .7; }

/* Tip bar */
.mm-wc-tip {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 16px 14px;
    font-size: .75rem;
    color: rgba(255,255,255,.45);
    border-top: 1px solid rgba(255,255,255,.06);
    line-height: 1.45;
}
.mm-wc-tip i { color: #fbbf24; font-size: .72rem; margin-top: 1px; flex-shrink: 0; }

/* ================================================================
   v2.0.10 — FULL HEADER + UI REFINEMENTS
   ================================================================ */

/* ── Top Info Bar ─────────────────────────────────────────────── */
.mm-topbar {
    background: #1e293b;
    color: rgba(255,255,255,.85);
    font-size: .78rem;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    position: relative;
    z-index: 10001;
}
.mm-topbar-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.mm-topbar-left  { display: flex; align-items: center; gap: 12px; }
.mm-topbar-right { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.mm-topbar-msg   { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,.7); font-size: .75rem; }
.mm-topbar-msg i { color: #4ade80; font-size: .68rem; }
.mm-topbar-link  { display: flex; align-items: center; gap: 5px; color: rgba(255,255,255,.75); text-decoration: none; font-size: .77rem; font-weight: 500; transition: color .18s; white-space: nowrap; }
.mm-topbar-link:hover { color: #14b8a6; }
.mm-topbar-wa  { color: #4ade80 !important; font-weight: 600; }
.mm-topbar-wa:hover { color: #22c55e !important; }
.mm-topbar-social { color: rgba(255,255,255,.5); text-decoration: none; font-size: .75rem; transition: color .18s; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; }
.mm-topbar-social:hover { color: #14b8a6; }
@media(max-width:640px) { .mm-topbar-left, .mm-topbar-social { display:none; } .mm-topbar-right { margin:0 auto; } }

/* ── Main Header ─────────────────────────────────────────────── */
.site-header {
    position: sticky; top: 0; left: 0; right: 0; z-index: 10000;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 2px 16px rgba(0,0,0,.06);
    transition: box-shadow .3s, background .3s;
}
.site-header.scrolled { box-shadow: 0 4px 28px rgba(0,0,0,.13); }
.nav-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; gap: 20px; height: 70px;
}

/* Logo */
.site-logo             { text-decoration: none; display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.mm-logo-text-wrap     { text-decoration: none; }
.logo-icon             { font-size: 1.6rem; color: var(--primary); }
.mm-logo-text-group    { display: flex; flex-direction: column; }
.logo-text             { font-size: 1.05rem; font-weight: 800; color: #1e293b; line-height: 1.15; }
.mm-logo-tagline       { font-size: .6rem; color: #94a3b8; font-weight: 400; line-height: 1.2; }

/* Nav */
.main-nav { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.primary-menu { display: flex; align-items: center; list-style: none; margin: 0; padding: 0; gap: 2px; }
.primary-menu li { position: relative; }
.primary-menu li a {
    display: block; padding: 8px 13px;
    font-size: .88rem; font-weight: 600; color: #374151;
    text-decoration: none; border-radius: 8px;
    transition: color .18s, background .18s; white-space: nowrap;
}
.primary-menu li a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a { color: var(--primary); background: rgba(20,184,166,.08); }

/* Dropdown */
.primary-menu .sub-menu {
    position: absolute; top: calc(100% + 8px); left: 0; min-width: 210px;
    background: #fff; border: 1px solid #e2e8f0; border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,.12); padding: 6px; list-style: none; margin: 0;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .2s, transform .2s, visibility .2s; z-index: 100;
}
.primary-menu li:hover > .sub-menu { opacity:1; visibility:visible; transform:translateY(0); }
.primary-menu .sub-menu li a { padding: 9px 14px; border-radius: 8px; font-size: .85rem; color: #374151; }

/* Book + Phone buttons */
.nav-book-btn {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--primary); color: #fff !important; padding: 9px 20px;
    border-radius: 50px; font-size: .86rem; font-weight: 700; text-decoration: none;
    transition: background .2s, transform .18s, box-shadow .18s; white-space: nowrap;
    box-shadow: 0 4px 14px rgba(20,184,166,.3); flex-shrink: 0;
}
.nav-book-btn:hover { background: var(--secondary); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(20,184,166,.4); color: #fff !important; }
.nav-phone-btn { display: flex; align-items: center; gap: 6px; text-decoration: none; color: #374151; font-size: .83rem; font-weight: 600; white-space: nowrap; flex-shrink: 0; transition: color .18s; }
.nav-phone-btn i { color: var(--primary); }
.nav-phone-btn:hover { color: var(--primary); }
.nav-phone-text { display: none; }
@media(min-width:1100px) { .nav-phone-text { display: inline; } }

/* Hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; border-radius: 8px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; margin-left: auto; transition: background .18s; }
.nav-toggle:hover { background: rgba(20,184,166,.08); }
.nav-toggle-icon { display: flex; flex-direction: column; gap: 5px; width: 22px; }
.nav-toggle-icon span { display: block; width: 100%; height: 2px; background: #374151; border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav-toggle.open .nav-toggle-icon span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open .nav-toggle-icon span:nth-child(2) { opacity: 0; }
.nav-toggle.open .nav-toggle-icon span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Drawer */
.mm-mobile-nav {
    position: fixed; top: 0; right: -320px; width: 300px; max-width: 85vw; height: 100vh;
    background: #fff; z-index: 10002; box-shadow: -8px 0 40px rgba(0,0,0,.15);
    transition: right .3s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; overflow-y: auto;
}
.mm-mobile-nav.open { right: 0; }
.mm-mobile-nav-inner { padding: 24px 20px 40px; flex: 1; }
.mm-mobile-menu { list-style: none; margin: 0; padding: 0; }
.mm-mobile-menu li { border-bottom: 1px solid #f1f5f9; }
.mm-mobile-menu li:last-child { border-bottom: none; }
.mm-mobile-menu li a { display: block; padding: 13px 4px; font-size: .92rem; font-weight: 600; color: #1e293b; text-decoration: none; transition: color .18s; }
.mm-mobile-menu li a:hover { color: var(--primary); }
.mm-mobile-menu .sub-menu { list-style: none; padding: 0 0 8px 16px; margin: 0; }
.mm-mobile-menu .sub-menu li { border: none; }
.mm-mobile-menu .sub-menu li a { font-size: .86rem; color: #64748b; padding: 8px 4px; }
.mm-mobile-nav-ctas { margin-top: 20px; padding-top: 20px; border-top: 1px solid #f1f5f9; display: flex; flex-direction: column; gap: 10px; }
.mm-mobile-book { text-align: center; }
.mm-mobile-call, .mm-mobile-wa {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 11px 16px; border-radius: 10px; font-weight: 700; font-size: .88rem; text-decoration: none; transition: background .18s;
}
.mm-mobile-call { background: #f0fdfa; color: var(--primary); border: 1px solid #99f6e4; }
.mm-mobile-wa   { background: #f0fdf4; color: #16a34a; border: 1px solid #86efac; }
.mm-mobile-nav-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 10001;
    opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; backdrop-filter: blur(2px);
}
.mm-mobile-nav-overlay.open { opacity: 1; visibility: visible; }
@media(max-width:768px) { .nav-toggle { display: flex; } .main-nav { display: none; } }
@media(min-width:769px) { .mm-mobile-nav, .mm-mobile-nav-overlay { display: none; } }

/* ── Package cards ────────────────────────────────────────────── */
#packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px; margin-top: 32px; position: relative; min-height: 200px;
}
.mm-no-sidebar #packages-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.package-card {
    background: #fff; border-radius: 16px; overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,.06); border: 1px solid #f1f5f9;
    transition: transform .28s, box-shadow .28s;
    display: flex; flex-direction: column;
    animation: cardIn .4s ease both;
}
@keyframes cardIn { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
.package-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.1); }
.card-image-wrap { position: relative; height: 210px; overflow: hidden; }
.card-image-wrap img { width:100%; height:100%; object-fit:cover; transition: transform .5s; display:block; }
.package-card:hover .card-image-wrap img { transform: scale(1.06); }
.card-price-badge {
    position: absolute; top: 12px; right: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff; font-size: .78rem; font-weight: 800;
    padding: 5px 13px; border-radius: 50px; box-shadow: 0 2px 10px rgba(0,0,0,.2);
}
.card-badge-label {
    position: absolute; top: 12px; left: 12px;
    background: var(--accent, #7c3aed); color: #fff;
    font-size: .68rem; font-weight: 700; padding: 4px 10px; border-radius: 20px;
}
.card-duration {
    position: absolute; bottom: 12px; left: 12px;
    background: rgba(0,0,0,.55); color: #fff; font-size: .72rem; font-weight: 600;
    padding: 4px 10px; border-radius: 20px; backdrop-filter: blur(4px);
    display: flex; align-items: center; gap: 5px;
}
.card-body { padding: 16px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-meta { font-size: .76rem; color: #94a3b8; display: flex; align-items: center; gap: 5px; }
.card-meta i { color: var(--primary); font-size: .7rem; }
.card-title { font-size: .97rem; font-weight: 700; color: #1e293b; margin: 0; line-height: 1.3; }
.card-title a { color: inherit; text-decoration: none; transition: color .18s; }
.card-title a:hover { color: var(--primary); }
.card-stars { display: flex; align-items: center; gap: 3px; font-size: .78rem; }
.card-stars .fas.fa-star { color: #f59e0b; }
.card-stars .far.fa-star { color: #e2e8f0; }
.card-stars span { color: #64748b; font-size: .74rem; margin-left: 4px; }
.card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 12px; border-top: 1px solid #f1f5f9; }
.card-price-disp { font-size: 1.1rem; font-weight: 800; color: var(--primary); line-height: 1.1; }
.card-price-disp small { font-size: .64rem; font-weight: 400; color: #94a3b8; display: block; }
.card-btn.package-book-btn {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--primary); color: #fff; padding: 9px 18px;
    border-radius: 50px; font-size: .82rem; font-weight: 700; text-decoration: none;
    border: none; cursor: pointer; transition: background .2s, transform .18s; white-space: nowrap;
}
.card-btn.package-book-btn:hover { background: var(--secondary); transform: translateY(-1px); }

/* Filter tabs */
.filter-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.filter-tab {
    padding: 9px 20px; border: 2px solid #e2e8f0; border-radius: 50px;
    background: #fff; color: #475569; font-size: .84rem; font-weight: 600;
    cursor: pointer; transition: all .2s; font-family: inherit; white-space: nowrap;
}
.filter-tab:hover { border-color: var(--primary); color: var(--primary); background: rgba(20,184,166,.05); }
.filter-tab.active { background: var(--primary); border-color: var(--primary); color: #fff; box-shadow: 0 4px 14px rgba(20,184,166,.3); }

/* Loading / empty states */
#packages-loading { display: none; grid-column:1/-1; flex-direction:column; align-items:center; justify-content:center; gap:14px; padding:60px 20px; }
#packages-loading p { color: #94a3b8; font-size: .9rem; margin: 0; }
#no-packages { display:none; grid-column:1/-1; text-align:center; padding:60px 20px; color:#94a3b8; font-size:.95rem; }
.spinner { width:42px; height:42px; border:4px solid #e2e8f0; border-top-color:var(--primary); border-radius:50%; animation:spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Section headers ──────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 40px; }
.section-label {
    display: inline-block; font-size: .75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .12em; color: var(--primary);
    margin-bottom: 10px; padding: 5px 16px;
    background: rgba(20,184,166,.08); border-radius: 50px; border: 1px solid rgba(20,184,166,.2);
}
.section-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; color: #1e293b; margin: 0 0 14px; line-height: 1.2;
}
.section-title span { color: var(--primary); }
.section-divider { width: 48px; height: 3px; background: var(--primary); border-radius: 2px; margin: 0 auto 14px; }
.section-desc { color: #64748b; font-size: .95rem; max-width: 600px; margin: 0 auto; line-height: 1.65; }

/* ── Testimonials ─────────────────────────────────────────────── */
.testimonials-section { background: #f8fafc; padding: 80px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 24px; margin-top: 40px; }
.testimonial-card {
    background: #fff; border-radius: 16px; padding: 28px 24px;
    border: 1px solid #f1f5f9; box-shadow: 0 2px 16px rgba(0,0,0,.05);
    display: flex; flex-direction: column; gap: 14px; position: relative;
    transition: transform .25s, box-shadow .25s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.09); }
.testimonial-card::before { content:'\201C'; position:absolute; top:16px; right:20px; font-size:4rem; line-height:1; color:rgba(20,184,166,.1); font-family:Georgia,serif; }
.testimonial-stars { display: flex; gap: 3px; }
.testimonial-stars i { color: #f59e0b; font-size: .85rem; }
.testimonial-text { font-size: .9rem; color: #475569; line-height: 1.75; font-style: italic; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid #f1f5f9; }
.testimonial-avatar {
    width: 44px; height: 44px; border-radius: 50%; overflow: hidden;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: #fff; font-weight: 700; flex-shrink: 0;
}
.testimonial-avatar img { width:100%; height:100%; object-fit:cover; display:block; }
.testimonial-name   { font-size: .88rem; font-weight: 700; color: #1e293b; }
.testimonial-origin { font-size: .74rem; color: #94a3b8; display: flex; align-items: center; gap: 4px; }
.testimonial-origin i { font-size: .7rem; color: var(--primary); }

/* ── Hero search ──────────────────────────────────────────────── */
.hero-search {
    display: flex; flex-wrap: wrap; gap: 10px;
    background: rgba(255,255,255,.12); backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.25); border-radius: 16px;
    padding: 14px; max-width: 700px; margin-top: 28px;
}
.hero-search select, .hero-search input[type="date"] {
    flex: 1; min-width: 150px;
    background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.3);
    border-radius: 10px; padding: 11px 14px; color: #fff; font-family: inherit;
    font-size: .9rem; outline: none; transition: background .2s; appearance: none; -webkit-appearance: none;
}
.hero-search select:focus, .hero-search input:focus { background: rgba(255,255,255,.25); border-color: rgba(255,255,255,.6); }
.hero-search select option { color: #1e293b; background: #fff; }
#hero-search-btn {
    background: #fff; color: var(--primary); border: none; padding: 11px 24px;
    border-radius: 10px; font-weight: 700; font-size: .9rem; cursor: pointer;
    display: flex; align-items: center; gap: 8px; font-family: inherit;
    transition: background .2s, transform .18s; white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0,0,0,.15);
}
#hero-search-btn:hover { background: #f0fdfa; transform: translateY(-1px); }

/* ── body no scroll ───────────────────────────────────────────── */
body.mm-no-scroll { overflow: hidden; }

/* ================================================================
   v2.0.10 — HERO SEARCH + MISC FINAL FIXES
   ================================================================ */

/* Hero search field wrapper */
.search-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 150px;
}
.search-field label {
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255,255,255,.6);
    padding: 0 2px;
}
.search-field select,
.search-field input[type="date"] {
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 10px;
    padding: 10px 14px;
    color: #fff;
    font-family: inherit;
    font-size: .88rem;
    outline: none;
    transition: background .2s, border-color .2s;
    -webkit-appearance: none;
    appearance: none;
}
.search-field select:focus,
.search-field input[type="date"]:focus {
    background: rgba(255,255,255,.22);
    border-color: rgba(255,255,255,.55);
}
.search-field select option { color: #1e293b; background: #fff; }

/* Hero search button variants */
.search-btn, .hero-search-btn {
    align-self: flex-end;
    background: #fff;
    color: var(--primary);
    border: none;
    padding: 11px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: .9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    transition: background .2s, transform .18s;
    box-shadow: 0 4px 14px rgba(0,0,0,.15);
    white-space: nowrap;
    flex-shrink: 0;
}
.search-btn:hover, .hero-search-btn:hover {
    background: #f0fdfa;
    transform: translateY(-1px);
}

/* Footer social colour variants */
.social-link.social-facebook:hover  { background: #1877f2; border-color: #1877f2; color: #fff; }
.social-link.social-instagram:hover { background: #e1306c; border-color: #e1306c; color: #fff; }
.social-link.social-youtube:hover   { background: #ff0000; border-color: #ff0000; color: #fff; }
.social-link.social-whatsapp:hover  { background: #25d366; border-color: #25d366; color: #fff; }

/* Section wrap consistent padding */
.section-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 24px;
}
.section-wrap.narrow { max-width: 900px; }

/* Gallery section */
.gallery-section { background: #fff; padding: 0; overflow: hidden; }

/* Stats section */
.stats-section { background: linear-gradient(135deg, var(--secondary), var(--primary)); }
.stats-grid    { display: grid; grid-template-columns: repeat(auto-fit,minmax(150px,1fr)); gap: 32px; text-align: center; }
.stat-item     { display: flex; flex-direction: column; gap: 6px; align-items: center; }
.stat-num      { font-size: 2.5rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-label    { font-size: .84rem; color: rgba(255,255,255,.8); font-weight: 500; }

/* Features */
.features-section { background: #fff; overflow: hidden; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 24px; }
.feature-item {
    background: #f8fafc; border: 1px solid #e8f5f2; border-radius: 14px;
    padding: 28px 22px; text-align: center; transition: transform .25s, box-shadow .25s, border-color .25s;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.feature-item:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(20,184,166,.12); border-color: var(--primary); }
.feature-icon {
    width: 60px; height: 60px; border-radius: 16px;
    background: linear-gradient(135deg,#f0fdfa,#e0fdf4);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--primary);
    transition: background .25s, transform .25s;
}
.feature-item:hover .feature-icon { background: var(--primary); color: #fff; transform: rotate(-6deg) scale(1.08); }
.feature-title { font-size: 1rem; font-weight: 700; color: #1e293b; margin: 0; }
.feature-desc  { font-size: .85rem; color: #64748b; line-height: 1.6; margin: 0; }

/* Packages section */
#packages { overflow: hidden; }

/* Responsive global */
@media(max-width:640px) {
    .section-wrap { padding: 40px 16px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .hero-search { gap: 8px; padding: 12px; }
    .search-field { min-width: 120px; }
}
