/**
 * Daymar 2026 - Main Stylesheet
 * Mobile-first, performance-optimized.
 */

/* ── CSS Variables ── */
:root {
    --blue: #0056A8;
    --blue-dark: #003d7a;
    --blue-light: #0096d9;
    --teal: #00B4A6;
    --green: #61CE70;
    --accent: #FFFFFF;
    --white: #FFFFFF;
    --accent-text: #0056A8;
    --gray-dark: #2D3436;
    --gray: #7A7A7A;
    --gray-light: #F5F7FA;
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --radius: 16px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    --font-main: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Pacifico', cursive;
    --container: 1280px;
    --header-h: 72px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-dark);
    background: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }

/* ── Layout ── */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}
@media (min-width: 768px) {
    .container { padding: 0 40px; }
}

.section {
    padding: 60px 0;
}
@media (min-width: 768px) {
    .section { padding: 80px 0; }
}
@media (min-width: 1024px) {
    .section { padding: 100px 0; }
}

.section-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}
@media (min-width: 768px) {
    .section-inner { padding: 0 40px; }
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--teal);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--gray);
    max-width: 600px;
    margin-bottom: 48px;
    line-height: 1.7;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    min-height: 44px;
}

.btn-primary {
    background: var(--accent);
    color: var(--accent-text);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.25);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.4);
    background: var(--gray-light);
}

.btn-blue {
    background: var(--blue);
    color: #fff;
}
.btn-blue:hover {
    background: var(--blue-dark);
}

.btn-teal {
    background: var(--teal);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 180, 166, 0.3);
}
.btn-teal:hover {
    background: #009e92;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 180, 166, 0.45);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
    background: #fff;
    color: var(--blue);
    border-color: #fff;
    transform: translateY(-3px);
}

.btn-sm {
    padding: 12px 28px;
    font-size: 13px;
}

.btn-cta {
    background: var(--accent);
    color: var(--accent-text);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 13px;
    text-transform: uppercase;
    white-space: nowrap;
}
@media (max-width: 480px) {
    .site-header .btn.btn-cta {
        padding: 7px 16px;
        font-size: 9px;
        letter-spacing: 0.5px;
        min-height: auto;
    }
}
@media (max-width: 359px) {
    .site-header .btn.btn-cta { display: none; }
    .site-header.scrolled .btn.btn-cta { display: inline-flex; }
}
.btn-cta::after { display: none !important; }
.btn-cta:hover { background: var(--gray-light); transform: translateY(-2px); }

/* ── Header ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(0, 30, 70, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}
@media (min-width: 768px) {
    .header-inner { padding: 0 40px; }
}

.site-logo img {
    height: 55px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
.site-header.scrolled .site-logo img { height: 42px; }
.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.main-nav { display: none; }
@media (min-width: 1024px) {
    .main-nav { display: flex; align-items: center; gap: 32px; }
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-list li { list-style: none; }
.nav-list a {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    transition: var(--transition);
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: var(--transition);
}
.nav-list a:hover::after { width: 100%; }
.nav-list a:hover { opacity: 0.8; }

/* ── Desktop Mega Menu ── */

.header-inner { position: relative; }
.nav-item { position: static; }
.nav-item-inner {
    display: flex;
    align-items: center;
    gap: 2px;
}

/* Toggle chevron */
.nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: rgba(255,255,255,0.5);
    transition: all 0.25s;
    cursor: pointer;
}
.nav-toggle:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
}
.nav-toggle svg {
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.nav-item.has-dropdown.open .nav-toggle {
    color: #fff;
    background: rgba(255,255,255,0.15);
}
.nav-item.has-dropdown.open .nav-toggle svg {
    transform: rotate(180deg);
}

/* Backdrop */
.mega-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,20,50,0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s;
}
.mega-backdrop.open {
    opacity: 1;
    visibility: visible;
}

/* ── Dropdown panel (shared base) ── */
.nav-dropdown {
    position: absolute;
    top: 100%;
    margin-top: 14px;
    background: rgba(245,247,250,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0,30,60,0.18), 0 0 0 1px rgba(0,0,0,0.04);
    padding: 28px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition:
        opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0.3s;
    z-index: 999;
    white-space: normal;
}
.nav-item.has-dropdown.open > .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Reset inherited nav-list a styles inside dropdown */
.nav-dropdown a {
    color: var(--gray-dark);
    font-size: inherit;
    font-weight: inherit;
    text-transform: none;
    letter-spacing: 0;
    text-shadow: none;
}
.nav-dropdown a::after { display: none !important; }
.nav-dropdown a:hover { opacity: 1; }

/* ── Mega panel — full viewport width, cards aligned to container ── */
.mega-panel {
    left: 50%;
    right: auto;
    width: 100vw;
    margin-left: -50vw;
    padding: 24px 0;
    overflow: hidden;
    border-radius: 0;
}
.mega-panel > .mega-grid-wrap,
.mega-panel > .mega-footer {
    max-width: var(--container);
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}
@media (min-width: 768px) {
    .mega-panel > .mega-grid-wrap,
    .mega-panel > .mega-footer {
        padding-left: 40px;
        padding-right: 40px;
    }
}

/* ── Grid — always 4 columns, wraps naturally ── */
.mega-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
}

/* ── Card — service-card style ── */
.mega-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    overflow: hidden;
    display: block;
    color: var(--gray-dark);
    text-decoration: none;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s;
}
.mega-card::after { display: none !important; }
.mega-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,56,168,0.12);
    opacity: 1 !important;
}

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

.mega-card-body {
    padding: 16px 18px 14px;
}
.mega-card-body h4 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--gray-dark);
    text-shadow: none;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.3;
}
.mega-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.mega-card-cta .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}
.mega-card:hover .mega-card-cta .arrow {
    transform: translateX(5px);
}

.mega-card.current {
    box-shadow: 0 0 0 2px var(--blue), 0 2px 12px rgba(0,0,0,0.06);
}

/* ── Footer links ── */
.mega-footer {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.06);
    display: flex;
    gap: 28px;
}
.mega-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--blue) !important;
    text-shadow: none !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    white-space: nowrap;
    transition: gap 0.25s;
}
.mega-footer-link::after { display: none !important; }
.mega-footer-link:hover {
    gap: 10px;
    opacity: 1 !important;
}
.mega-footer-link svg { flex-shrink: 0; }

/* ── List panel (Info) — compact centered dropdown ── */
.list-panel {
    left: 50%;
    right: auto;
    width: auto;
    min-width: 240px;
    transform: translateX(-50%) translateY(12px);
    background: #fff;
    border-radius: 16px;
    padding: 10px;
}
.nav-item.has-dropdown.open > .list-panel {
    transform: translateX(-50%) translateY(0);
}
.mega-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.mega-list-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-dark) !important;
    text-shadow: none !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    border-radius: 10px;
    transition: all 0.2s;
    white-space: nowrap;
}
.mega-list-link::after { display: none !important; }
.mega-list-link svg {
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.2s;
    flex-shrink: 0;
    color: var(--blue);
}
.mega-list-link:hover {
    background: var(--gray-light);
    color: var(--blue) !important;
    opacity: 1 !important;
}
.mega-list-link:hover svg {
    opacity: 1;
    transform: translateX(0);
}
.mega-list-link.current {
    color: var(--blue) !important;
    font-weight: 600;
    background: rgba(0,86,168,0.06);
}

/* ── Mobile Drawer Accordion ── */
.drawer-group {
    border-bottom: 1px solid #f0f0f0;
}
.drawer-group-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-dark);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color 0.15s;
}
.drawer-group-toggle:hover { color: var(--blue); }
.drawer-group.current > .drawer-group-toggle { color: var(--blue); }

.drawer-chevron {
    transition: transform 0.25s;
    flex-shrink: 0;
    opacity: 0.5;
}
.drawer-group-toggle[aria-expanded="true"] .drawer-chevron {
    transform: rotate(180deg);
    opacity: 1;
}

/* Accordion body — hidden by default */
.drawer-sub {
    display: none;
    padding: 0 24px 12px 24px;
    border-left: 3px solid var(--blue-light);
    margin-left: 24px;
}
.drawer-group-toggle[aria-expanded="true"] + .drawer-sub {
    display: block;
}

.drawer-sub-link {
    display: block;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-dark);
    border-radius: 6px;
    transition: background 0.15s, color 0.15s;
}
.drawer-sub-link:hover {
    background: var(--gray-light);
    color: var(--blue);
}
.drawer-sub-link.current {
    color: var(--blue);
    font-weight: 600;
}

/* Direct drawer links (no children) */
.drawer-link {
    display: block;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-dark);
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.15s;
}
.drawer-link:hover { color: var(--blue); }
.drawer-link-current { color: var(--blue); }

.header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Language Switcher */
.lang-switcher {
    position: relative;
    display: none;
    align-items: center;
}
@media (min-width: 1024px) {
    .lang-switcher { display: flex; }
}
.lang-switcher-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}
.lang-switcher-toggle:hover { color: #fff; background: rgba(255,255,255,0.1); }
.lang-switcher-toggle img { width: 20px; height: 14px; border-radius: 2px; }
.lang-switcher-arrow {
    transition: transform 0.2s;
}
.lang-switcher[data-open="true"] .lang-switcher-arrow {
    transform: rotate(180deg);
}
.lang-switcher-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    min-width: 120px;
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s;
    z-index: 100;
}
.lang-switcher[data-open="true"] .lang-switcher-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.lang-switcher-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-dark);
    text-decoration: none;
    transition: background 0.15s;
}
.lang-switcher-option:hover { background: var(--gray-light); }
.lang-switcher-option img { width: 20px; height: 14px; border-radius: 2px; }

/* Drawer Language Links */
.drawer-lang {
    display: flex;
    gap: 12px;
    padding: 16px 24px;
    border-top: 1px solid #eee;
}
.drawer-lang-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray);
    text-decoration: none;
    border: 1px solid #eee;
    transition: var(--transition);
}
.drawer-lang-link.active {
    color: var(--blue);
    border-color: var(--blue);
    background: rgba(0,86,168,0.05);
    font-weight: 600;
}
.drawer-lang-link img { width: 20px; height: 14px; border-radius: 2px; }

.nav-social {
    display: none;
    align-items: center;
    gap: 6px;
    padding-left: 20px;
    border-left: 1px solid rgba(255,255,255,0.2);
}
@media (min-width: 1024px) {
    .nav-social { display: flex; }
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}
.social-icon:hover {
    color: #fff;
    background: rgba(255,255,255,0.12);
}

/* Hamburger */
.menu-toggle {
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    z-index: 1002;
    padding: 8px;
}
@media (min-width: 1024px) {
    .menu-toggle { display: none; }
}
.hamburger-line {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: var(--transition);
    border-radius: 2px;
}
.menu-toggle.active .hamburger-line:nth-child(1) { transform: rotate(45deg) translate(5.5px, 5.5px); }
.menu-toggle.active .hamburger-line:nth-child(2) { opacity: 0; transform: translateX(10px); }
.menu-toggle.active .hamburger-line:nth-child(3) { transform: rotate(-45deg) translate(5.5px, -5.5px); }

/* ── Mobile Drawer ── */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.mobile-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100%;
    background: #fff;
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }

.drawer-header {
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
}
.drawer-header img { height: 36px; }

.drawer-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-light);
    font-size: 20px;
    color: var(--gray-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.drawer-close:hover { background: #e0e0e0; }

.drawer-nav {
    flex: 1;
    padding: 16px 0;
}
.drawer-nav a {
    display: block;
    padding: 15px 28px;
    color: var(--gray-dark);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: var(--transition);
}
.drawer-nav a:hover {
    background: var(--gray-light);
    color: var(--blue);
}

.drawer-divider {
    height: 1px;
    background: #eee;
    margin: 8px 28px;
}

.drawer-cta {
    padding: 20px 28px;
    border-top: 1px solid #eee;
}
.drawer-cta .btn { width: 100%; justify-content: center; }

.drawer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 0 28px 24px;
}
.drawer-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 20px;
    transition: var(--transition);
}
.drawer-social a:hover {
    background: var(--blue);
    color: #fff;
}

/* ── Hero Slider ── */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease, transform 8s ease;
    transform: scale(1.08);
}
.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 56, 120, 0.7) 0%, rgba(0, 86, 168, 0.4) 40%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}
@media (min-width: 768px) {
    .hero-content { padding: 0 40px; }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.2);
}
.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--teal);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 72px);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 2px 4px 20px rgba(0,0,0,0.3);
    font-weight: 400;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 22px);
    color: rgba(255,255,255,0.9);
    font-weight: 300;
    max-width: 560px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}
.hero-indicator {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition);
}
.hero-indicator.active {
    background: #fff;
    width: 60px;
}

.scroll-hint {
    position: absolute;
    bottom: 40px;
    right: 40px;
    color: rgba(255,255,255,0.6);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
}
@media (min-width: 1024px) {
    .scroll-hint { display: flex; }
}
.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 12px;
    position: relative;
}
.mouse::after {
    content: '';
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,0.6);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDown 2s infinite;
}
@keyframes scrollDown {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ── Booking Bar ── */
.booking-bar {
    position: relative;
    z-index: 20;
    margin-top: -44px;
    padding: 0 16px;
}
@media (min-width: 768px) {
    .booking-bar { margin-top: -70px; padding: 0 40px; }
}

.booking-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .booking-bar-inner { grid-template-columns: repeat(3, 1fr); }
}

.booking-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    transition: var(--transition);
    position: relative;
    cursor: pointer;
    color: var(--gray-dark);
    text-decoration: none;
}
@media (min-width: 768px) {
    .booking-card { padding: 36px 32px; }
}

.booking-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 15%;
    bottom: 0;
    width: 70%;
    height: 1px;
    background: #edf0f3;
}
@media (min-width: 768px) {
    .booking-card:not(:last-child)::after {
        bottom: auto;
        top: 22%;
        right: 0;
        left: auto;
        width: 1px;
        height: 56%;
    }
}

.booking-card:hover {
    background: var(--blue);
    color: #fff;
}
.booking-card:hover .booking-icon { background: rgba(255,255,255,0.15); color: #fff; }
.booking-card:hover .booking-label { color: rgba(255,255,255,0.7); }
.booking-card:hover .booking-arrow { background: rgba(255,255,255,0.15); color: #fff; }

.booking-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(0, 86, 168, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--blue);
    transition: var(--transition);
    flex-shrink: 0;
}
.booking-icon.bc-blue-light { background: rgba(0, 150, 217, 0.08); color: var(--blue-light); }
.booking-icon.bc-teal { background: rgba(0, 180, 166, 0.08); color: var(--teal); }

.booking-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.booking-title { font-size: 16px; font-weight: 700; letter-spacing: 0.2px; }
.booking-label { font-size: 13px; color: var(--gray); transition: var(--transition); }

.booking-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--blue);
    transition: var(--transition);
    flex-shrink: 0;
}

/* ── Services Section ── */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
}
@media (min-width: 768px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}
@media (min-width: 1024px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    display: block;
    color: var(--gray-dark);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}
@media (min-width: 768px) {
    .service-card-img { height: 240px; }
}
.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.08); }

.service-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--blue);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card-body {
    padding: 24px;
}
@media (min-width: 768px) {
    .service-card-body { padding: 28px; }
}
.service-card-body h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}
.service-card-body p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}
.service-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.service-card-cta .arrow {
    transition: transform 0.3s ease;
}
.service-card:hover .service-card-cta .arrow { transform: translateX(6px); }

/* ── Destinations Interactive Map ── */
.dest-map-section {
    margin-bottom: 48px;
}
.dest-map-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 6px;
}
.dest-map-subtitle {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 24px;
}
#dest-map {
    width: 100%;
    height: 350px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}
@media (min-width: 768px) {
    #dest-map { height: 450px; }
}
@media (min-width: 1024px) {
    #dest-map { height: 520px; }
}

/* ── Route stop markers ── */
.dmap-pin-wrap {
    background: none !important;
    border: none !important;
}
.dmap-stop {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
    transition: transform 0.2s;
}
.dmap-stop:hover {
    transform: scale(1.1);
}
.dmap-stop-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
    flex-shrink: 0;
}
.dmap-stop-porto .dmap-stop-circle {
    background: var(--gray-dark);
    font-size: 16px;
}
.dmap-stop-name {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.7), 0 0 12px rgba(0,0,0,0.4);
    white-space: nowrap;
    letter-spacing: 0.3px;
}

/* Popup styling */
.dmap-popup-wrap .leaflet-popup-content-wrapper {
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    padding: 0;
    overflow: hidden;
}
.dmap-popup-wrap .leaflet-popup-content {
    margin: 0;
    min-width: 220px;
}
.dmap-popup-wrap .leaflet-popup-tip {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.dmap-popup {
    display: flex;
    flex-direction: column;
}
.dmap-popup-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}
.dmap-popup-body {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.dmap-popup-num {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--blue);
}
.dmap-popup-body strong {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-dark);
}
.dmap-popup-meta {
    font-size: 12px;
    color: var(--gray);
}
.dmap-popup-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
    text-decoration: none;
    margin-top: 4px;
}
.dmap-popup-link:hover {
    text-decoration: underline;
}
.dmap-popup-link span {
    transition: transform 0.2s;
}
.dmap-popup-link:hover span {
    transform: translateX(3px);
}
.dmap-popup-porto {
    padding: 14px 16px;
}
.dmap-popup-porto strong {
    font-size: 15px;
    color: var(--gray-dark);
}
.dmap-popup-porto p {
    font-size: 12px;
    color: var(--gray);
    margin: 4px 0 0;
}

/* ── Destinations Section ── */
.section-destinations {
    background: var(--gray-light);
}
.dest-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 48px;
}
@media (min-width: 768px) {
    .dest-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (min-width: 1024px) {
    .dest-grid { grid-template-columns: repeat(4, 1fr); }
}

.dest-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 280px;
    display: block;
}
@media (min-width: 768px) {
    .dest-card { height: 360px; }
}
.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.dest-card:hover img { transform: scale(1.1); }

.dest-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,56,120,0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    transition: background 0.6s ease;
}
.dest-card:hover .dest-card-overlay {
    background: linear-gradient(180deg, rgba(0,56,120,0.2) 0%, rgba(0,56,120,0.9) 100%);
}
.dest-card h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}
.dest-desc {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s ease;
}
.dest-card:hover .dest-desc {
    transform: translateY(0);
    opacity: 1;
}

/* ── Features / Why Daymar ── */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 48px;
}
@media (min-width: 768px) {
    .features-grid { gap: 30px; }
}
@media (min-width: 1024px) {
    .features-grid { grid-template-columns: repeat(4, 1fr); }
}

.feature-item {
    text-align: center;
    padding: 24px 16px;
    border-radius: var(--radius);
    transition: var(--transition);
}
@media (min-width: 768px) {
    .feature-item { padding: 36px 24px; }
}
.feature-item:hover {
    background: #fff;
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(0, 86, 168, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--blue);
}
.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}
.feature-item p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
}

/* ── Experience Section ── */
.section-experience {
    background: var(--blue);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.section-experience::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    pointer-events: none;
}
.section-experience .section-tag { color: var(--blue-light); }
.section-experience .section-title { color: #fff; }
.section-experience .section-subtitle { color: rgba(255,255,255,0.7); }

.exp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
@media (min-width: 1024px) {
    .exp-grid { grid-template-columns: 1fr 1fr; gap: 60px; }
}

.exp-text .btn-outline {
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}
.exp-text .btn-outline:hover {
    background: #fff;
    color: var(--blue);
    border-color: #fff;
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.stat-item .stat-value {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #fff;
}
.stat-item .stat-label {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.exp-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.exp-images .img-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    height: 200px;
}
.exp-images .img-wrapper:first-child {
    grid-column: 1 / -1;
    height: 220px;
}
@media (min-width: 768px) {
    .exp-images .img-wrapper:first-child { height: 260px; }
}
.exp-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.exp-images .img-wrapper:hover img { transform: scale(1.05); }

/* ── CTA Banner ── */
.section-cta {
    background: #fff;
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid #eee;
}
@media (min-width: 768px) {
    .section-cta { padding: 80px 40px; }
}
.section-cta h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--gray-dark);
    margin-bottom: 16px;
}
.section-cta p {
    font-size: 17px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 36px;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ── Footer ── */
/* ── Footer CTA strip ── */
.footer-cta {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    padding: 48px 20px;
    color: #fff;
}
@media (min-width: 768px) {
    .footer-cta { padding: 56px 40px; }
}
.footer-cta-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
}
@media (min-width: 768px) {
    .footer-cta-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}
.footer-cta-text h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 800;
    margin-bottom: 6px;
}
.footer-cta-text p {
    font-size: 15px;
    opacity: 0.8;
}
.footer-cta-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* ── Footer ── */
.site-footer {
    background: var(--gray-dark);
    color: rgba(255,255,255,0.55);
    padding: 56px 20px 28px;
}
@media (min-width: 768px) {
    .site-footer { padding: 72px 40px 32px; }
}

.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 40px;
}
@media (min-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (min-width: 1024px) {
    .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; }
}

/* Brand column */
.footer-brand img {
    height: 53px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}
.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    transition: all 0.25s;
}
.footer-social a:hover {
    background: var(--blue-light);
    color: #fff;
    transform: translateY(-2px);
}

/* Column headings */
.footer-col h3,
.footer-col .footer-heading {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

/* Nav links */
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: #fff;
    font-size: 14px;
    transition: color 0.2s;
}
.footer-links a:hover { color: #fff; text-decoration: underline; }

/* Contact list */
.footer-contact-list {
    list-style: none;
}
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.5;
}
.footer-contact-list ion-icon {
    font-size: 17px;
    color: var(--blue-light);
    margin-top: 2px;
    flex-shrink: 0;
}
.footer-contact-list a {
    color: #fff;
    transition: color 0.2s;
}
.footer-contact-list a:hover { color: #fff; text-decoration: underline; }

/* Bottom bar */
.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 12px;
    text-align: center;
}
@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}
.footer-bottom-links {
    display: flex;
    gap: 16px;
}
.footer-bottom-links a {
    color: #fff;
    font-size: 12px;
    transition: color 0.2s;
}
.footer-bottom-links a:hover { color: #fff; text-decoration: underline; }

/* ── WooCommerce ── */
.wc-main {
    padding: 2rem 0;
    min-height: 60vh;
}

/* ── Blog / Content ── */
.entry-header { margin-bottom: 2rem; }
.entry-title { font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 800; }
.entry-meta { color: var(--gray); font-size: 0.9rem; margin-top: 0.5rem; }
.entry-content { font-size: 1rem; line-height: 1.8; }
.entry-content h2, .entry-content h3 { margin-top: 2rem; margin-bottom: 1rem; }
.entry-thumbnail { margin-bottom: 2rem; border-radius: var(--radius); overflow: hidden; }

/* ==============================================================
   LISTING PAGES — Shared (services, destinations, blog)
   ============================================================== */
.listing-main {
    padding: 48px 0 0;
}
.listing-intro {
    max-width: 720px;
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 48px;
}
.listing-section {
    margin-bottom: 56px;
}
.listing-section-head {
    margin-bottom: 32px;
}
.listing-section-head h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin: 8px 0 6px;
}
.listing-section-head p {
    color: var(--gray);
    font-size: 15px;
    max-width: 560px;
}

/* ── Listing grids ── */
.listing-grid {
    display: grid;
    gap: 24px;
}
.listing-grid--2 {
    grid-template-columns: 1fr;
}
.listing-grid--3 {
    grid-template-columns: 1fr;
}
@media (min-width: 640px) {
    .listing-grid--2 { grid-template-columns: repeat(2, 1fr); }
    .listing-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .listing-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

/* ── Listing card (wide — for services child pages) ── */
.listing-card {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,.06);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}
.listing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,.12);
}
.listing-card-img {
    height: 220px;
    overflow: hidden;
    display: block;
}
.listing-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.listing-card:hover .listing-card-img img { transform: scale(1.06); }
.listing-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.listing-card-cat {
    font-size: 12px;
    color: var(--blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 6px;
}
.listing-card-cat a { color: var(--blue); }
.listing-card-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
}
.listing-card-title a { color: var(--gray-dark); }
.listing-card-title a:hover { color: var(--blue); }
.listing-card-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}
.listing-card-link {
    color: var(--blue);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
}
.listing-card-link span {
    transition: transform .2s;
}
.listing-card:hover .listing-card-link span { transform: translateX(4px); }

/* ── Product card extras ── */
.listing-card--product .listing-card-img { height: 200px; }
.listing-card-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--blue);
    margin: 4px 0 16px;
}
.listing-card-price del { color: var(--gray); font-size: 15px; }
.listing-card-price ins { text-decoration: none; }
.listing-card-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}
.listing-card-actions .btn { flex: 1; text-align: center; padding: 10px 16px; font-size: 12px; letter-spacing: 1px; }
.listing-card-actions .btn-outline { color: var(--blue); border-color: var(--blue); }
.listing-card-actions .btn-outline:hover { background: var(--blue); color: #fff; border-color: var(--blue); transform: none; }

/* ── Service category layout (3/4 + 1/4) ── */
.svc-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
}
@media (min-width: 1024px) {
    .svc-layout {
        grid-template-columns: 1fr 340px;
        gap: 48px;
    }
}
.svc-content-text { margin-top: 32px; }
.svc-content-text p { color: var(--gray-dark); line-height: 1.8; }
.svc-sidebar-desc { font-size: 14px; color: var(--gray); line-height: 1.6; margin: 0 0 16px; }

/* ── Service category product grid (mega-card style) ── */
.svc-products-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 1024px) {
    .svc-products-grid { grid-template-columns: repeat(2, 1fr); }
}
.svc-product-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--blue);
    margin: 4px 0 8px;
}
.svc-product-price del { color: var(--gray); font-size: 13px; }
.svc-product-price ins { text-decoration: none; }

/* ── Listing CTA (new — glass card style) ── */
.lcta {
    margin: 64px 0 80px;
}
.lcta-inner {
    position: relative;
    background: var(--gray-light);
    border: 1px solid #e8ecf2;
    border-radius: 24px;
    padding: 56px 40px;
    text-align: center;
    overflow: hidden;
}
.lcta-inner::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--blue);
    opacity: .06;
}
.lcta-inner::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--teal);
    opacity: .06;
}
.lcta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
    color: var(--blue);
    margin-bottom: 20px;
}
.lcta-title {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}
.lcta-desc {
    font-size: 15px;
    color: var(--gray);
    max-width: 480px;
    margin: 0 auto 28px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}
.lcta-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.lcta-btn-outline {
    color: var(--gray-dark) !important;
    border-color: #d0d5dd !important;
}
.lcta-btn-outline:hover {
    border-color: var(--blue) !important;
    color: var(--blue) !important;
}
@media (max-width: 640px) {
    .lcta-inner { padding: 40px 24px; }
    .lcta-buttons { flex-direction: column; align-items: center; }
    .lcta-buttons .btn { width: 100%; max-width: 280px; }
}

.listing-empty {
    text-align: center;
    padding: 80px 20px;
}
.listing-empty svg { margin-bottom: 16px; }
.listing-empty h2 { margin-bottom: 8px; }
.listing-empty p { color: var(--gray); margin-bottom: 24px; }

/* ==============================================================
   DESTINATIONS LISTING (template-destinations.php) — Masonry-style
   Scoped under .listing-main to avoid overriding homepage .dest-grid
   ============================================================== */
.listing-main .dest-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 0;
    margin-bottom: 20px;
}
@media (min-width: 640px) {
    .listing-main .dest-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .listing-main .dest-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .listing-main .dest-card--featured {
        grid-row: span 1;
    }
    .listing-main .dest-card--featured:first-child {
        grid-column: span 2;
    }
}
.listing-main .dest-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 280px;
    height: auto;
    display: flex;
    text-decoration: none;
    color: #fff;
}
.listing-main .dest-card--featured { min-height: 360px; }
@media (min-width: 768px) {
    .listing-main .dest-card { min-height: 320px; }
    .listing-main .dest-card--featured { min-height: 400px; }
}
.dest-card-img {
    position: absolute;
    inset: 0;
}
.dest-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s;
}
.dest-card:hover .dest-card-img img { transform: scale(1.06); }
.listing-main .dest-card-overlay {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    padding: 28px;
    background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.1) 60%, transparent 100%);
    gap: 16px;
}
.dest-card-content { flex: 1; }
.dest-card-title {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.2;
}
.dest-card--featured .dest-card-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
}
.dest-card-desc {
    font-size: 14px;
    opacity: .85;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
}
.dest-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.dest-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 500;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(4px);
    padding: 4px 10px;
    border-radius: 50px;
}
.dest-card-arrow {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.dest-card:hover .dest-card-arrow { background: var(--blue); }

/* ==============================================================
   BLOG HERO POST (featured / first post)
   ============================================================== */
.blog-hero {
    display: flex;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 320px;
    margin-bottom: 48px;
    text-decoration: none;
    color: #fff;
}
@media (min-width: 768px) {
    .blog-hero { min-height: 420px; }
}
.blog-hero-img {
    position: absolute;
    inset: 0;
}
.blog-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s;
}
.blog-hero:hover .blog-hero-img img { transform: scale(1.04); }
.blog-hero-overlay {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 32px;
    background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.15) 55%, transparent 100%);
}
@media (min-width: 768px) {
    .blog-hero-overlay { padding: 40px; }
}
.blog-hero-content { flex: 1; max-width: 640px; }
.blog-hero-cats {
    display: flex;
    gap: 6px;
    margin-bottom: 14px;
}
.listing-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--blue);
    color: #fff;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.blog-hero-title {
    font-size: clamp(1.4rem, 3.5vw, 2.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
}
.blog-hero-excerpt {
    font-size: 15px;
    opacity: .85;
    line-height: 1.6;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-hero-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    opacity: .7;
}
.dot-sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
    opacity: .5;
}
.blog-hero-arrow {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    align-self: flex-end;
}
.blog-hero:hover .blog-hero-arrow { background: var(--blue); }

/* ==============================================================
   POST CARDS — Grid (blog archive, related)
   ============================================================== */
.posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 640px) {
    .posts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .posts-grid { grid-template-columns: repeat(3, 1fr); }
}

.post-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,.06);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,.12);
}
.post-card-image {
    display: block;
    height: 210px;
    overflow: hidden;
}
.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s;
}
.post-card:hover .post-card-image img { transform: scale(1.05); }
.post-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.post-card-cat {
    font-size: 11px;
    font-weight: 600;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 8px;
}
.post-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.35;
}
.post-card-title a { color: var(--gray-dark); }
.post-card-title a:hover { color: var(--blue); }
.post-card-excerpt {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}
.post-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
    font-size: 12px;
    color: var(--gray);
}
.post-card-date {
    font-weight: 500;
}
.post-card-read {
    font-weight: 500;
}

/* ── Pagination ── */
.nav-links {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 48px;
}
.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-dark);
    background: var(--gray-light);
    transition: var(--transition);
}
.page-numbers:hover { background: var(--blue); color: #fff; }
.page-numbers.current { background: var(--blue); color: #fff; }
.page-numbers.dots { background: none; }

/* ── Error 404 ── */
.error-404 {
    padding: 120px 0 80px;
    text-align: center;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.error-404 h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.error-404 p { color: var(--gray); margin-bottom: 2rem; }

/* ── Utilities ── */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ===== BOOKING MODAL ===== */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.modal-backdrop.open {
    opacity: 1;
    pointer-events: all;
}

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

.modal-backdrop.open .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--gray-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--gray);
    transition: var(--transition);
    z-index: 10;
}

.modal-close:hover { background: #e0e0e0; color: var(--gray-dark); }

.modal-header {
    padding: 36px 36px 0;
    text-align: center;
}

.modal-header h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--gray-dark);
    margin-bottom: 4px;
}

.modal-header p {
    font-size: 14px;
    color: var(--gray);
}

/* Stepper progress */
.stepper-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 28px 36px 0;
}

.step-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--gray);
    transition: var(--transition);
    flex-shrink: 0;
    position: relative;
}

.step-dot.active {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 86, 168, 0.3);
}

.step-dot.done {
    background: var(--green);
    color: var(--white);
}

.step-line {
    height: 3px;
    width: 60px;
    background: var(--gray-light);
    transition: var(--transition);
    flex-shrink: 0;
}

.step-line.done { background: var(--green); }

.step-labels {
    display: flex;
    justify-content: space-between;
    padding: 8px 20px 0;
    max-width: 420px;
    margin: 0 auto;
}

.step-label {
    font-size: 11px;
    color: var(--gray);
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 80px;
}

.step-label.active { color: var(--blue); }

/* Step content */
.modal-body {
    padding: 28px 36px 36px;
}

.step-content {
    display: none;
    animation: stepFadeIn 0.35s ease;
}

.step-content.active { display: block; }

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

/* Step 1: Service selection */
.service-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border: 2px solid #eee;
    border-radius: 14px;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 12px;
}

.service-option:hover { border-color: var(--blue-light); background: rgba(0,86,168,0.02); }

.service-option.selected {
    border-color: var(--blue);
    background: rgba(0, 86, 168, 0.04);
    box-shadow: 0 4px 15px rgba(0, 86, 168, 0.1);
}

.service-option-radio {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #ccc;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-option.selected .service-option-radio {
    border-color: var(--blue);
}

.service-option.selected .service-option-radio::after {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--blue);
}

.service-option-img {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-option-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-option-info { flex: 1; }

.service-option-info h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 2px;
}

.service-option-info span {
    font-size: 12px;
    color: var(--gray);
}

.service-option-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--blue);
    flex-shrink: 0;
    text-align: right;
    line-height: 1.2;
}

.service-option-price .price-from {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-category-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
    margin: 20px 0 10px;
    padding-left: 4px;
}

.service-category-label:first-child { margin-top: 0; }

/* Step 2: Calendar */
.calendar-wrapper {
    background: var(--gray-light);
    border-radius: 14px;
    padding: 24px;
}

.calendar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.calendar-nav h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-dark);
}

.calendar-nav button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--white);
    cursor: pointer;
    font-size: 18px;
    color: var(--gray-dark);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-nav button:hover { background: var(--blue); color: var(--white); }

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar-day-header {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--gray);
    text-transform: uppercase;
    padding: 8px 0;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: var(--gray-dark);
}

.calendar-day:hover:not(.disabled):not(.empty) {
    background: rgba(0, 86, 168, 0.1);
}

.calendar-day.selected {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 86, 168, 0.3);
}

.calendar-day.today {
    border: 2px solid var(--blue);
}

.calendar-day.disabled {
    color: #ccc;
    cursor: not-allowed;
    text-decoration: line-through;
}

.calendar-day.empty {
    cursor: default;
}

.calendar-loading {
    text-align: center;
    padding: 40px;
    color: var(--gray);
    font-size: 14px;
}

.calendar-loading .spinner {
    width: 32px;
    height: 32px;
    border: 3px solid var(--gray-light);
    border-top-color: var(--blue);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 12px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Step 3: People */
.people-selector {
    text-align: center;
    padding: 20px 0;
}

.people-selector h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--gray-dark);
}

.people-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.people-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid #eee;
    background: var(--white);
    cursor: pointer;
    font-size: 24px;
    color: var(--gray-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.people-btn:hover { border-color: var(--blue); color: var(--blue); }

.people-btn:disabled { opacity: 0.3; cursor: not-allowed; }

.people-count {
    font-size: 48px;
    font-weight: 800;
    color: var(--blue);
    min-width: 80px;
}

.people-label {
    font-size: 13px;
    color: var(--gray);
    margin-top: 8px;
}

.people-note {
    font-size: 12px;
    color: var(--gray);
    margin-top: 16px;
    background: var(--gray-light);
    padding: 12px 16px;
    border-radius: 10px;
}

/* Step 4: Confirm */
.confirm-card {
    background: var(--gray-light);
    border-radius: 14px;
    padding: 28px;
}

.confirm-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.confirm-row:last-child { border-bottom: none; }

.confirm-row .label {
    font-size: 13px;
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.confirm-row .value {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-dark);
}

.confirm-price-total {
    text-align: center;
    margin-top: 24px;
    padding: 20px;
    background: var(--white);
    border-radius: 14px;
    border: 2px solid var(--blue);
}

.confirm-price-total .price-label {
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.confirm-price-total .price-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--blue);
    margin-top: 4px;
}

.confirm-price-total .price-note {
    font-size: 12px;
    color: var(--gray);
    margin-top: 4px;
}

.availability-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 600;
}

.availability-status.available { color: var(--green); }
.availability-status.unavailable { color: #e74c3c; }
.availability-status.checking { color: var(--gray); }

.availability-status .status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: currentColor;
}

/* Modal buttons */
.modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}

.modal-actions .btn { flex: 1; justify-content: center; text-align: center; }

.btn-back {
    background: var(--gray-light);
    color: var(--gray-dark);
}

.btn-back:hover { background: #e0e0e0; }

.btn-next {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(0, 86, 168, 0.3);
}

.btn-next:hover:not(:disabled) {
    background: var(--blue-dark);
    transform: translateY(-2px);
}

.btn-next:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.btn-confirm {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(97, 206, 112, 0.3);
}

.btn-confirm:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(97, 206, 112, 0.4); }
.btn-confirm:disabled { opacity: 0.4; cursor: not-allowed; }

.btn-pay {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(0, 86, 168, 0.3);
}
.btn-pay:hover:not(:disabled) { background: var(--blue-dark); transform: translateY(-2px); }
.btn-pay:disabled { opacity: 0.4; cursor: not-allowed; }

/* Calendar no-availability message */
.calendar-no-avail {
    text-align: center;
    padding: 40px 20px;
    color: var(--gray);
}
.calendar-no-avail .icon { font-size: 48px; margin-bottom: 12px; }
.calendar-no-avail h3 { font-size: 16px; font-weight: 700; color: var(--gray-dark); margin-bottom: 8px; }
.calendar-no-avail p { font-size: 14px; line-height: 1.6; }

/* Calendar nav disabled */
.calendar-nav button:disabled { opacity: 0.3; cursor: not-allowed; pointer-events: none; }

/* Person types (adults/children) */
.person-type-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.person-type-row:last-child { border-bottom: none; }
.person-type-info { flex: 1; }
.person-type-info .type-name { font-size: 15px; font-weight: 700; color: var(--gray-dark); }
.person-type-info .type-price { font-size: 12px; color: var(--gray); margin-top: 2px; }
.person-type-controls { display: flex; align-items: center; gap: 16px; }
.person-type-controls .people-btn { width: 40px; height: 40px; font-size: 20px; }
.person-type-controls .type-count { font-size: 24px; font-weight: 800; color: var(--blue); min-width: 40px; text-align: center; }

/* Step 5: Checkout form */
.checkout-price-summary {
    background: var(--gray-light);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 20px;
}
.cps-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
}
.cps-label { font-size: 14px; color: var(--gray); }
.cps-value { font-size: 14px; font-weight: 600; color: var(--gray-dark); }
.cps-discount .cps-label { color: var(--green); }
.cps-discount .cps-value { color: var(--green); }
.cps-divider { height: 1px; background: #dde1e6; margin: 8px 0; }
.cps-total .cps-label { font-size: 16px; font-weight: 700; color: var(--gray-dark); }
.cps-total .cps-value { font-size: 20px; font-weight: 800; color: var(--blue); }
.cps-old-price { text-decoration: line-through; color: var(--gray); font-weight: 400; font-size: 14px; margin-right: 8px; }

.checkout-form { display: flex; flex-direction: column; gap: 16px; }
.checkout-row { display: flex; gap: 12px; }
.checkout-row > .form-group { flex: 1; }

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: var(--gray-dark);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 86, 168, 0.1);
}

.form-group input.error { border-color: #e74c3c; }

.form-group textarea { resize: vertical; min-height: 60px; }

.phone-input-row { display: flex; gap: 8px; }
.phone-input-row select {
    width: 110px;
    flex-shrink: 0;
    padding: 12px 8px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: var(--gray-dark);
    background: var(--white);
    outline: none;
    transition: var(--transition);
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%237A7A7A'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 24px;
}
.phone-input-row select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,86,168,0.1); }
.phone-input-row input { flex: 1; min-width: 0; }

.coupon-row { display: flex; gap: 8px; }
.coupon-row input { flex: 1; min-width: 0; }
.btn-coupon {
    flex-shrink: 0;
    padding: 12px 20px;
    background: var(--gray-light);
    border: 2px solid #eee;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-dark);
    cursor: pointer;
    transition: var(--transition);
}
.btn-coupon:hover { background: #e8ecf0; border-color: var(--blue-light); }
.btn-coupon:disabled { opacity: 0.6; cursor: not-allowed; }
.btn-coupon.applied { background: rgba(97,206,112,0.1); border-color: var(--green); color: var(--green); }

.coupon-feedback {
    font-size: 12px;
    margin-top: 6px;
    display: none;
}
.coupon-feedback.success { display: block; color: var(--green); }
.coupon-feedback.error { display: block; color: #e74c3c; }

.payment-methods { display: flex; flex-direction: column; gap: 10px; }

.payment-method {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border: 2px solid #eee;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.payment-method:hover { border-color: var(--blue-light); }
.payment-method.selected { border-color: var(--blue); background: rgba(0,86,168,0.03); }

.payment-method input[type="radio"] { display: none; }

.payment-radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #ccc;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.payment-method.selected .payment-radio {
    border-color: var(--blue);
}
.payment-method.selected .payment-radio::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--blue);
}

.payment-info { flex: 1; }
.payment-info .payment-name { font-size: 14px; font-weight: 700; color: var(--gray-dark); }
.payment-info .payment-desc { font-size: 12px; color: var(--gray); margin-top: 2px; }

.checkout-terms {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
}

.checkout-terms input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--blue);
}

.checkout-terms a { color: var(--blue); text-decoration: underline; }

/* Step 6: Confirmation */
.order-confirmed {
    text-align: center;
    padding: 20px 0;
}
.order-confirmed .check-icon {
    width: 72px;
    height: 72px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--white);
}
.order-confirmed h3 { font-size: 22px; font-weight: 800; color: var(--gray-dark); margin-bottom: 8px; }
.order-confirmed p { font-size: 14px; color: var(--gray); line-height: 1.6; }
.order-confirmed .order-number { font-size: 16px; font-weight: 700; color: var(--blue); margin: 16px 0; }

.checkout-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 13px;
    color: #dc2626;
    margin-top: 12px;
    display: none;
}

.checkout-loading {
    display: none;
    text-align: center;
    padding: 40px;
}
.checkout-loading .spinner { margin: 0 auto 12px; }
.checkout-loading p { font-size: 14px; color: var(--gray); }


/* Modal mobile responsive */
@media (max-width: 768px) {
    .modal { max-height: 95vh; border-radius: 16px; }
    .modal-header { padding: 28px 24px 0; }
    .modal-body { padding: 20px 24px 28px; }
    .stepper-progress { padding: 20px 24px 0; }
    .step-line { width: 36px; }
    .service-option { padding: 12px 14px; gap: 10px; }
    .service-option-img { width: 44px; height: 44px; }
    .service-option-price { font-size: 15px; }
    .modal-actions { flex-direction: column; }
    .people-count { font-size: 40px; }
    .checkout-row { flex-direction: column; gap: 16px; }
}

/* ══════════════════════════════════════════════
   PAGE HEADER - Clean header for inner pages
   ══════════════════════════════════════════════ */
.page-header {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    padding: calc(var(--header-h) + 40px) 0 40px;
    color: #fff;
}
@media (min-width: 768px) {
    .page-header { padding: calc(var(--header-h) + 60px) 0 60px; }
}
.page-header .breadcrumb { margin-bottom: 12px; }
.page-header .breadcrumb a,
.page-header .breadcrumb span { color: rgba(255,255,255,0.7); }
.page-header .breadcrumb a:hover { color: #fff; }
.page-header-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 0;
}
.page-header-subtitle {
    font-size: 17px;
    opacity: 0.85;
    max-width: 600px;
    line-height: 1.6;
    margin-top: 10px;
}
.page-header-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    font-size: 14px;
    opacity: 0.75;
}
.page-header-meta a { color: #fff; }
.page-header-meta .meta-sep { opacity: 0.4; }
.page-header-cat {
    font-size: 13px;
    opacity: 0.75;
    font-weight: 600;
    margin-top: 8px;
}
.page-header-cat a { color: #fff; text-decoration: underline; }
.page-header-cat a:hover { opacity: 1; }

/* ── Breadcrumb ── */
.breadcrumb {
    margin-bottom: 16px;
}
.breadcrumb-trail {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    font-size: 13px;
    font-weight: 500;
}
.breadcrumb-trail a {
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
}
.breadcrumb-trail a:hover { color: #fff; }
.breadcrumb-sep {
    margin: 0 8px;
    opacity: 0.5;
}
.breadcrumb-current {
    opacity: 0.9;
}

/* ── Post Meta (single.php hero) ── */
.post-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    opacity: 0.8;
    margin-top: 8px;
}
.post-meta a { color: #fff; text-decoration: underline; }
.meta-sep { opacity: 0.5; }

/* ══════════════════════════════════════════════
   PAGE CONTENT - Generic pages
   ══════════════════════════════════════════════ */
.page-main {
    padding: 48px 0 60px;
}
@media (min-width: 768px) {
    .page-main { padding: 64px 0 80px; }
}
@media (min-width: 1024px) {
    .page-main { padding: 80px 0 100px; }
}

/* Featured image — full width */
.page-featured {
    margin: 0;
}
.page-featured-img {
    display: block;
    width: 100%;
    height: 50vw;
    max-height: 500px;
    object-fit: cover;
}

/* Page CTA section */
.page-cta {
    background: var(--gray-light);
    padding: 60px 0;
    margin-top: 20px;
}
@media (min-width: 768px) {
    .page-cta { padding: 80px 0; }
}
.page-cta-inner {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}
.page-cta h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--gray-dark);
}

/* ==============================================================
   SINGLE POST — Magazine-style blog article
   ============================================================== */

/* ── Hero with featured image ── */
.single-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
@media (min-width: 768px) {
    .single-hero { min-height: 60vh; }
}
.single-hero-img {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.single-hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.single-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.15) 50%, rgba(0,0,0,.25) 100%);
}
.single-hero-content {
    position: relative;
    z-index: 1;
    padding-top: calc(var(--header-h) + 40px);
    padding-bottom: 48px;
    color: #fff;
}
.single-hero-content .breadcrumb { color: rgba(255,255,255,.7); }
.single-hero-content .breadcrumb a { color: rgba(255,255,255,.8); }
.single-hero-content .breadcrumb a:hover { color: #fff; }

/* Category badges */
.single-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}
.single-cat {
    display: inline-block;
    padding: 5px 14px;
    background: var(--blue);
    color: #fff;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: var(--transition);
}
.single-cat:hover { background: var(--blue-light); }
.page-header .single-cat { background: rgba(255,255,255,.2); }
.page-header .single-cat:hover { background: rgba(255,255,255,.3); }

.single-hero-title {
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    max-width: 820px;
    margin-bottom: 12px;
}
.single-hero-excerpt {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.6;
    opacity: .85;
    max-width: 640px;
    margin-bottom: 16px;
}
.single-hero-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    opacity: .75;
    flex-wrap: wrap;
}
.single-hero-meta time,
.single-read-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.single-meta-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
    opacity: .5;
}

/* ── Single layout: share sidebar + article ── */
.single-main {
    padding: 48px 0 80px;
}
.single-layout {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 780px;
}
@media (min-width: 1024px) {
    .single-layout {
        grid-template-columns: 48px 1fr;
        gap: 32px;
        max-width: 860px;
    }
}

/* ── Sticky share sidebar (desktop) ── */
.single-share {
    display: none;
}
@media (min-width: 1024px) {
    .single-share {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        position: sticky;
        top: calc(var(--header-h) + 32px);
        height: fit-content;
    }
}
.single-share-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin-bottom: 4px;
}
.single-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-light);
    color: var(--gray-dark);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.single-share-btn:hover { transform: scale(1.1); }
.single-share-fb:hover { background: #1877F2; color: #fff; }
.single-share-wa:hover { background: #25D366; color: #fff; }
.single-share-x:hover { background: #000; color: #fff; }
.single-share-copy:hover { background: var(--blue); color: #fff; }
.single-share-copy.copied { background: var(--green); color: #fff; }

/* ── Mobile share strip ── */
.single-share-mobile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}
.single-share-mobile span {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: .5px;
}
.single-share-mobile a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-light);
    color: var(--gray-dark);
    transition: var(--transition);
}
.single-share-mobile a:hover { background: var(--blue); color: #fff; }
@media (min-width: 1024px) {
    .single-share-mobile { display: none; }
}

/* ── Article body ── */
.page-article,
.single-article {
    max-width: 780px;
}

.entry-content {
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    line-height: 1.85;
    color: var(--gray-dark);
}
.entry-content > *:first-child { margin-top: 0; }
.entry-content h2 {
    font-size: clamp(1.35rem, 2.5vw, 1.8rem);
    font-weight: 700;
    margin: 2.5rem 0 1rem;
    color: var(--gray-dark);
    letter-spacing: -.01em;
}
.entry-content h3 {
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    font-weight: 700;
    margin: 2rem 0 0.8rem;
}
.entry-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.5rem 0 0.5rem;
}
.entry-content p {
    margin-bottom: 1.3rem;
}
.entry-content ul,
.entry-content ol {
    margin: 0 0 1.3rem 1.5rem;
    list-style: disc;
}
.entry-content ol { list-style: decimal; }
.entry-content li {
    margin-bottom: 0.4rem;
    line-height: 1.75;
}
.entry-content a {
    color: var(--blue);
    text-decoration: underline;
    text-decoration-color: rgba(0,86,168,.3);
    text-underline-offset: 3px;
    transition: text-decoration-color .2s;
}
.entry-content a:hover {
    color: var(--blue-dark);
    text-decoration-color: var(--blue);
}
.entry-content img {
    border-radius: var(--radius);
    margin: 2rem 0;
    max-width: 100%;
    height: auto;
}
.entry-content blockquote {
    border-left: 4px solid var(--blue);
    margin: 2rem 0;
    padding: 1.2rem 1.5rem;
    background: var(--gray-light);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 1.1rem;
    font-style: italic;
    color: #555;
    line-height: 1.7;
}
.entry-content blockquote p:last-child { margin-bottom: 0; }
.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}
.entry-content th,
.entry-content td {
    padding: 10px 14px;
    border-bottom: 1px solid #eee;
    text-align: left;
}
.entry-content th {
    font-weight: 600;
    background: var(--gray-light);
}
/* Drop cap for first paragraph */
.entry-content > p:first-of-type::first-letter {
    float: left;
    font-size: 3.4em;
    line-height: .85;
    font-weight: 700;
    color: var(--blue);
    padding: 4px 10px 0 0;
}

/* ── Tags ── */
.entry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}
.entry-tags > svg { flex-shrink: 0; }
.tag-pill {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gray-light);
    color: var(--gray-dark);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
}
.tag-pill:hover {
    background: var(--blue);
    color: #fff;
}

/* ── Post CTA Banner ── */
.post-cta {
    margin-top: 3rem;
    padding: 48px 40px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    border-radius: 20px;
    color: #fff;
    text-align: center;
}
.post-cta h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 700;
    margin-bottom: 8px;
}
.post-cta p {
    font-size: 15px;
    opacity: 0.85;
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.post-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* ── Related Posts ── */
.related-posts {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #eee;
}
.related-posts h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 700;
    margin-bottom: 24px;
}
.related-posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 768px) {
    .related-posts-grid { grid-template-columns: repeat(3, 1fr); }
}
.related-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: var(--transition);
}
.related-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.related-card-img {
    height: 200px;
    overflow: hidden;
}
.related-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.related-card:hover .related-card-img img { transform: scale(1.05); }
.related-card-body {
    padding: 20px;
}
.related-card-body time {
    font-size: 12px;
    color: var(--gray);
    font-weight: 500;
}
.related-card-body h3 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 6px;
    line-height: 1.4;
    color: var(--gray-dark);
}

/* ══════════════════════════════════════════════
   FAQ PAGE
   ══════════════════════════════════════════════ */
.faq-main {
    padding: 48px 0 80px;
}
.faq-layout {
    display: flex;
    gap: 48px;
}
.faq-content {
    flex: 1;
    min-width: 0;
}
.faq-sidebar {
    width: 320px;
    flex-shrink: 0;
}
.faq-accordion {
    max-width: none;
}
.faq-item {
    border-bottom: 1px solid #eee;
}
.faq-item:first-child {
    border-top: 1px solid #eee;
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-dark);
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    gap: 16px;
    transition: color 0.2s;
}
.faq-question:hover { color: var(--blue); }
.faq-question span { flex: 1; }
.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s;
    color: var(--gray);
}
.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
    color: var(--blue);
}
.faq-answer {
    display: none;
    overflow: hidden;
}
.faq-answer-inner {
    padding: 0 0 20px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray);
}
.faq-answer-inner p { margin-bottom: 0.8rem; }
.faq-answer-inner p:last-child { margin-bottom: 0; }
.faq-answer-inner ul,
.faq-answer-inner ol {
    margin: 0 0 0.8rem 1.5rem;
    list-style: disc;
}
.faq-answer-inner ol { list-style: decimal; }
.faq-answer-inner li { margin-bottom: 0.3rem; }
.faq-answer-inner a { color: var(--blue); text-decoration: underline; }

/* FAQ CTA */
.faq-cta {
    margin-top: 4rem;
    padding: 40px;
    background: var(--gray-light);
    border-radius: var(--radius);
    text-align: center;
}
.faq-cta h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 700;
    margin-bottom: 8px;
}
.faq-cta p {
    color: var(--gray);
    margin-bottom: 20px;
}
.faq-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* FAQ Sidebar */
.faq-sidebar-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: var(--radius);
    padding: 28px 24px;
    margin-bottom: 24px;
}
.faq-sidebar-booking {
    text-align: center;
    background: linear-gradient(135deg, #f0f7ff 0%, #fff 100%);
    border-color: #dde8f4;
}
.faq-sidebar-icon {
    margin-bottom: 12px;
}
.faq-sidebar-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--gray-dark);
}
.faq-sidebar-booking p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}
.faq-sidebar-booking .btn {
    width: 100%;
    justify-content: center;
}
.faq-sidebar-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-size: 14px;
    font-weight: 500;
    color: #25D366;
    text-decoration: none;
    transition: opacity 0.2s;
}
.faq-sidebar-wa:hover { opacity: 0.8; }
.faq-sidebar-wa svg { flex-shrink: 0; }

/* Sidebar destination gallery */
.faq-sidebar-destinations h3 {
    margin-bottom: 16px;
}
.faq-sidebar-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.faq-sidebar-thumb {
    position: relative;
    display: block;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    text-decoration: none;
}
.faq-sidebar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.faq-sidebar-thumb:hover img {
    transform: scale(1.08);
}
.faq-sidebar-thumb-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 8px 8px;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
}
.faq-sidebar-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
    transition: gap 0.2s;
}
.faq-sidebar-more:hover { gap: 10px; }

/* FAQ responsive */
@media (max-width: 1023px) {
    .faq-layout {
        flex-direction: column;
    }
    .faq-sidebar {
        width: 100%;
    }
    .faq-sidebar-gallery {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 767px) {
    .faq-sidebar-gallery {
        grid-template-columns: 1fr 1fr;
    }
    .faq-sidebar-card {
        padding: 20px 16px;
    }
}

/* ══════════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════════ */

/* Quick Contact Strip */
.contact-strip {
    padding: 32px 0 0;
}
.contact-strip-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    background: var(--gray-light);
    border-radius: 16px;
    overflow: hidden;
}
@media (min-width: 600px) {
    .contact-strip-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .contact-strip-grid { grid-template-columns: repeat(4, 1fr); }
}
.contact-strip-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    text-decoration: none;
    color: var(--gray-dark);
    transition: var(--transition);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
@media (min-width: 600px) {
    .contact-strip-item { border-right: 1px solid rgba(0,0,0,0.05); }
    .contact-strip-item:nth-child(2n) { border-right: none; }
}
@media (min-width: 1024px) {
    .contact-strip-item { border-bottom: none; border-right: 1px solid rgba(0,0,0,0.05); padding: 24px 20px; }
    .contact-strip-item:last-child { border-right: none; }
}
.contact-strip-item:hover {
    background: var(--gray-light);
}
.contact-strip-item--wa:hover {
    background: rgba(37,211,102,0.06);
}
.contact-strip-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(0,86,168,0.07);
    color: var(--blue);
    flex-shrink: 0;
}
.contact-strip-item--wa .contact-strip-icon {
    background: rgba(37,211,102,0.10);
    color: #25D366;
}
.contact-strip-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--gray);
    margin-bottom: 2px;
}
.contact-strip-value {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-dark);
}
.contact-strip-item--wa .contact-strip-value { color: #25D366; }

/* Contact Main */
.contact-main {
    padding: 48px 0 80px;
}

/* Contact Grid (form + map) */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 56px;
}
@media (min-width: 900px) {
    .contact-grid { grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
}

/* Form Card */
.contact-form-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 32px 28px;
    overflow-wrap: break-word;
    min-width: 0;
}
@media (min-width: 768px) {
    .contact-form-card { padding: 40px 36px; }
}
.contact-form-card h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 800;
    margin-bottom: 6px;
    line-height: 1.2;
}
.contact-form-intro {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 28px;
}

/* Map side */
.contact-map-side {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 0;
}
.contact-map {
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    height: 300px;
    z-index: 0;
}
@media (min-width: 900px) {
    .contact-map { height: 380px; }
}

/* Leaflet custom SVG teardrop pin */
.map-pin-wrapper {
    background: none !important;
    border: none !important;
}
.map-pin {
    position: relative;
    width: 56px;
    height: 74px;
    filter: drop-shadow(0 4px 14px rgba(0,0,0,.3));
    animation: map-pin-bounce .5s cubic-bezier(.3,1.5,.6,1) both;
}
@keyframes map-pin-bounce {
    0%   { opacity: 0; transform: translateY(-40px) scale(.6); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
.map-pin-svg {
    display: block;
    width: 56px;
    height: 74px;
}
.map-pin-logo {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    pointer-events: none;
}
.map-pin-logo img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}
.map-pin-logo span {
    font-size: 20px;
    font-weight: 700;
    color: var(--blue);
}

/* Leaflet popup override */
.daymar-popup .leaflet-popup-content-wrapper {
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,.15);
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}
.daymar-popup .leaflet-popup-content {
    margin: 0;
    line-height: 1.5;
}
.daymar-popup .leaflet-popup-tip {
    box-shadow: none;
}
.map-popup {
    padding: 16px 20px;
    font-size: 14px;
    color: var(--gray-dark);
}
.map-popup strong {
    font-size: 16px;
    color: var(--blue);
    display: block;
    margin-bottom: 2px;
}
.map-popup a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
}
.map-popup a:hover {
    text-decoration: underline;
}
.contact-info-box {
    background: #fff;
    border: 1px solid #eee;
    border-top: none;
    border-radius: 0 0 20px 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-info-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-dark);
}
.contact-info-row svg {
    flex-shrink: 0;
    color: var(--blue);
    margin-top: 2px;
}
.contact-info-row strong {
    display: block;
    margin-bottom: 2px;
}
.contact-info-row a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 500;
}
.contact-info-row a:hover {
    color: var(--blue-dark);
    text-decoration: underline;
}

/* CF7 form styling */
.contact-form-card .wpcf7 p {
    margin-bottom: 20px;
}
.contact-form-card .wpcf7 label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--gray-dark);
}
.contact-form-card .wpcf7 input[type="text"],
.contact-form-card .wpcf7 input[type="email"],
.contact-form-card .wpcf7 input[type="tel"],
.contact-form-card .wpcf7 textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #ddd;
    border-radius: 10px;
    font-family: var(--font-main);
    font-size: 15px;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff;
    color: var(--gray-dark);
}
.contact-form-card .wpcf7 input::placeholder,
.contact-form-card .wpcf7 textarea::placeholder {
    color: #bbb;
}
.contact-form-card .wpcf7 input:focus,
.contact-form-card .wpcf7 textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0,86,168,0.10);
}
.contact-form-card .wpcf7 textarea {
    min-height: 110px;
    resize: vertical;
}
.contact-form-card .wpcf7 input[type="submit"] {
    width: 100%;
    padding: 16px 32px;
    border-radius: 12px;
    background: var(--blue);
    color: #fff;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.3px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.contact-form-card .wpcf7 input[type="submit"]:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,86,168,0.25);
}

/* WhatsApp CTA Banner */
.contact-wa-banner {
    margin-bottom: 48px;
}
.contact-wa-banner-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    padding: 36px 28px;
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    border-radius: 20px;
    color: #fff;
}
@media (min-width: 768px) {
    .contact-wa-banner-inner {
        flex-direction: row;
        text-align: left;
        padding: 32px 36px;
    }
}
.contact-wa-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    border-radius: 18px;
    flex-shrink: 0;
}
.contact-wa-text {
    flex: 1;
}
.contact-wa-text h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 4px;
}
.contact-wa-text p {
    font-size: 14px;
    opacity: 0.9;
}
.contact-wa-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #fff;
    color: #128C7E;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.btn-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    background: #f0fdf4;
}

/* Social Links */
.contact-social {
    text-align: center;
    padding: 40px 0 0;
}
.contact-social h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--gray-dark);
}
.contact-social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.contact-social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    border: 2px solid #eee;
    color: var(--gray-dark);
}
.contact-social-link:hover {
    transform: translateY(-2px);
}
.contact-social-link--fb:hover {
    background: rgba(24,119,242,0.06);
    border-color: #1877F2;
    color: #1877F2;
}
.contact-social-link--ig:hover {
    background: rgba(225,48,108,0.06);
    border-color: #E1306C;
    color: #E1306C;
}
.contact-social-link--x:hover {
    background: rgba(0,0,0,0.04);
    border-color: #333;
    color: #000;
}

/* ══════════════════════════════════════════════
   SINGLE PRODUCT PAGE — Hero layout
   ══════════════════════════════════════════════ */


/* Main content area */
.product-main {
    padding: 48px 0 0;
}

/* 2-column layout: content + sticky sidebar */
.product-layout-2col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
}
@media (min-width: 1024px) {
    .product-layout-2col {
        grid-template-columns: 1fr 340px;
        gap: 48px;
    }
}

/* Sidebar */
.product-sidebar {}
.product-sidebar-inner {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
@media (min-width: 1024px) {
    .product-sidebar-inner {
        position: sticky;
        top: calc(var(--header-h) + 24px);
    }
}
.product-sidebar-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--gray-dark);
}
.product-sidebar-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin: 16px 0;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.product-sidebar-price-label {
    font-size: 13px;
    color: var(--gray);
}
.product-sidebar-price-amount {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--blue);
}
.product-sidebar-price-note {
    font-size: 14px;
    color: var(--gray);
}
.product-sidebar-btn {
    width: 100%;
    justify-content: center;
    margin-top: 16px;
    margin-bottom: 10px;
    white-space: nowrap;
}
.product-sidebar-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #25D366;
    text-decoration: none;
    padding: 8px;
    transition: opacity 0.2s;
}
.product-sidebar-wa:hover { opacity: 0.8; }

/* Payment methods */
.product-sidebar-payments {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.product-sidebar-payments-label {
    display: block;
    font-size: 11px;
    color: var(--gray);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}
.product-sidebar-payments-icons {
    display: flex;
    gap: 10px;
    align-items: center;
}
.payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 28px;
    background: var(--gray-light);
    border-radius: 6px;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.payment-icon:hover { opacity: 1; }

/* ── Product Calendar ── */
.pcal-loading,
.pcal-loading-spinner {
    text-align: center;
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pcal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.pcal-month {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-dark);
}
.pcal-prev, .pcal-next {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.15s;
}
.pcal-prev:hover, .pcal-next:hover {
    background: var(--gray-light);
    color: var(--blue);
}

.pcal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 4px;
}
.pcal-day-name {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 0;
}

.pcal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}
.pcal-empty {
    padding: 6px;
}
.pcal-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: default;
    transition: all 0.15s;
}
.pcal-available {
    color: var(--gray-dark);
    background: rgba(97,206,112,0.1);
    cursor: pointer;
}
.pcal-available:hover {
    background: var(--green);
    color: #fff;
    transform: scale(1.1);
}
.pcal-unavailable {
    color: rgba(0,0,0,0.2);
    text-decoration: line-through;
}
.pcal-today {
    font-weight: 800;
    box-shadow: inset 0 0 0 2px var(--blue);
}

.pcal-legend {
    display: flex;
    gap: 16px;
    margin-top: 12px;
    padding-top: 8px;
    margin-bottom: 16px;
}
.pcal-legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--gray);
}
.pcal-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.pcal-dot-available { background: var(--green); }
.pcal-dot-unavailable { background: #ddd; }

/* Selected date */
.pcal-selected {
    background: var(--blue) !important;
    color: #fff !important;
    font-weight: 700;
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0,86,168,0.3);
    text-decoration: none !important;
}

/* Selection bar — appears after picking a date */
.pcal-selection {
    margin-top: 12px;
    padding: 12px 14px;
    background: rgba(0,86,168,0.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(0,86,168,0.12);
}
.pcal-selection-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.pcal-selection-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray);
}
.pcal-selection-date {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-dark);
}
.pcal-selection-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--blue);
    min-width: 60px;
    text-align: right;
}
.pcal-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid var(--gray-light);
    border-top-color: var(--blue);
    border-radius: 50%;
    animation: pcal-spin 0.6s linear infinite;
}
@keyframes pcal-spin {
    to { transform: rotate(360deg); }
}

/* Short description intro */
.product-desc-intro {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    max-width: 760px;
    margin-bottom: 36px;
}
.product-desc-intro p { margin-bottom: 0.8rem; }

/* Gallery strip — horizontal scroll of images */
.product-gallery-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
    margin-bottom: 40px;
}
.product-gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
}
.product-gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-gallery-item:hover img {
    transform: scale(1.05);
}
@media (min-width: 768px) {
    .product-gallery-item img { height: 280px; }
}

/* CTA section */
.product-cta-section {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* Product Details accordion */
.product-details {
    max-width: 760px;
    margin-bottom: 48px;
}
.product-details .faq-answer-inner ul {
    margin: 0 0 0.8rem 1.5rem;
    list-style: disc;
}
.product-details .faq-answer-inner li {
    margin-bottom: 0.3rem;
    font-size: 15px;
    color: var(--gray);
}
.product-details .faq-answer-inner a {
    color: var(--blue);
    text-decoration: underline;
}

/* Archive/blog styles merged into listing section above */

/* ══════════════════════════════════════════════
   404 PAGE
   ══════════════════════════════════════════════ */
.error-404 {
    padding: calc(var(--header-h) + 80px) 0 80px;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

/* ══════════════════════════════════════════════
   DESTINATION PAGE
   ══════════════════════════════════════════════ */
.dest-hero {
    position: relative;
    min-height: 50vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}
.dest-hero-overlay {
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    padding: calc(var(--header-h) + 40px) 0 64px;
}
.dest-hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
}
.dest-hero-excerpt {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    line-height: 1.6;
}
.dest-hero .breadcrumb { color: rgba(255,255,255,0.8); }
.dest-hero .breadcrumb a { color: rgba(255,255,255,0.8); }
.dest-hero .breadcrumb a:hover { color: #fff; }

/* Destination Info Box */
.dest-info-box {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 24px 28px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    border-radius: var(--radius);
    margin: -48px auto 40px;
    position: relative;
    z-index: 2;
    max-width: 800px;
    justify-content: center;
    box-shadow: 0 12px 32px rgba(0,56,168,0.25);
}
.dest-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    padding: 8px 16px;
    background: rgba(255,255,255,0.12);
    border-radius: 50px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.dest-info-item ion-icon {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
}

/* Destination Gallery */
.dest-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 48px;
}
@media (min-width: 768px) {
    .dest-gallery { grid-template-columns: repeat(3, 1fr); }
}
.dest-gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
}
.dest-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.dest-gallery-item:hover img {
    transform: scale(1.05);
}
.dest-gallery-item { position: relative; display: block; }
.dest-gallery-zoom {
    position: absolute; bottom: 10px; right: 10px;
    background: rgba(0,0,0,0.5); color: #fff;
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s;
    pointer-events: none;
}
.dest-gallery-item:hover .dest-gallery-zoom { opacity: 1; }

/* Lightbox */
.lightbox-overlay {
    position: fixed; inset: 0; z-index: 10000;
    background: rgba(0,0,0,0.92);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.25s;
    pointer-events: none;
}
.lightbox-overlay.active { opacity: 1; pointer-events: auto; }
.lightbox-img {
    max-width: 90vw; max-height: 85vh;
    object-fit: contain; border-radius: 6px;
    transition: opacity 0.2s;
    user-select: none; -webkit-user-drag: none;
}
.lightbox-img.loading { opacity: 0.3; }
.lightbox-close {
    position: absolute; top: 16px; right: 16px;
    background: none; border: none; color: #fff;
    cursor: pointer; padding: 8px; z-index: 2;
}
.lightbox-close svg { display: block; }
.lightbox-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.15); border: none; color: #fff;
    width: 48px; height: 48px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background 0.2s; z-index: 2;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-counter {
    position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,0.7); font-size: 14px;
    font-family: var(--font-primary);
}
.lightbox-caption {
    position: absolute; bottom: 44px; left: 50%; transform: translateX(-50%);
    color: #fff; font-size: 15px; text-align: center;
    max-width: 80vw; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    font-family: var(--font-primary);
}
@media (max-width: 767px) {
    .lightbox-nav { width: 40px; height: 40px; }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
    .dest-gallery-zoom { display: none; }
}

/* Destination Highlights */
.dest-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 48px;
}
@media (min-width: 768px) {
    .dest-highlights { grid-template-columns: 1fr 1fr; }
}
.dest-highlight-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--gray-light);
    border-radius: var(--radius);
}
.dest-highlight-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
}
.dest-highlight-item h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}
.dest-highlight-item p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.5;
}

/* Destination Content */
.dest-main {
    padding: 0 0 80px;
}
.dest-content {
    margin-bottom: 48px;
}
.dest-section {
    margin-bottom: 48px;
}
.dest-section h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 700;
    margin-bottom: 20px;
}
.dest-rich-content {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-dark);
}
.dest-rich-content p { margin-bottom: 16px; }
.dest-rich-content ul,
.dest-rich-content ol { margin-bottom: 16px; padding-left: 20px; }
.dest-rich-content li { margin-bottom: 8px; }

/* Destination CTA */
/* ── Destination CTA Premium ── */
.dest-cta-premium {
    text-align: center;
    padding: 48px 28px;
    margin-bottom: 48px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: #fff;
}
.dest-cta-premium-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
}
.dest-cta-premium-icon svg {
    stroke: #fff;
}
.dest-cta-premium h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 700;
    margin-bottom: 8px;
}
.dest-cta-premium p {
    font-size: 15px;
    opacity: 0.8;
    margin-bottom: 24px;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
.dest-cta-premium-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Destination FAQs */
.dest-faqs {
    margin-bottom: 48px;
}
.dest-faqs h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 700;
    margin-bottom: 24px;
}

/* (contact-orari removed — orari now in info-box) */

/* ══════════════════════════════════════════════
   WOOCOMMERCE OVERRIDES
   ══════════════════════════════════════════════ */
.wc-main {
    padding: calc(var(--header-h) + 40px) 0 80px;
    min-height: 60vh;
}

/* ══════════════════════════════════════════════
   RESPONSIVE - Inner pages
   ══════════════════════════════════════════════ */
@media (max-width: 768px) {
    .page-header { padding: calc(var(--header-h) + 24px) 0 28px; }
    .page-header-title { font-size: 1.5rem; }
    .post-cta { padding: 28px 20px; border-radius: 14px; }
    .single-hero { min-height: 45vh; }
    .single-hero-content { padding-bottom: 32px; }
    .contact-form-card { padding: 24px 20px; }
    .contact-wa-banner-inner { padding: 28px 20px; }
    .contact-map { height: 240px; }
    .product-cta-section { flex-direction: column; }
    .product-cta-section .btn { width: 100%; }
    .product-layout-2col { gap: 24px; }
    .dest-hero { min-height: 40vh; }
    .dest-info-box { margin-top: -20px; padding: 16px; }
    .dest-cta { border-radius: 16px; }
    .dest-gallery { grid-template-columns: 1fr 1fr; gap: 8px; }
}
