/* ================================
   Root Variables & Reset
   ================================ */
:root {
    --primary: #e53935;
    --primary-dark: #c62828;
    --primary-light: #ff5252;
    --bg: #fff;
    --bg-alt: #f8f9fa;
    --bg-card: #fff;
    --text: #1a1a2e;
    --text-light: #6c757d;
    --border: #dee2e6;
    --radius: 12px;
    --shadow: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    --font-heading: 'Archivo Black', sans-serif;
    --header-height: 72px;
}
*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: hidden; }
body { margin: 0; font-family: var(--font-primary); color: var(--text); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; padding: 0; margin: 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-fluid { width: 100%; }

/* ================================
   Typography
   ================================ */
.ph-title { font-family: var(--font-heading); }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-primary); margin: 0; }

/* ================================
   Header (ph-*)
   ================================ */
.ph-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: var(--header-height);
    transition: background 0.3s, box-shadow 0.3s;
    background: #fff;
    box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}
.ph-header-transparent {
    background: transparent;
    box-shadow: none;
}
.ph-header-transparent.ph-header-scrolled {
    background: rgba(255,255,255,0.97);
    box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}
.ph-header-transparent.ph-header-scrolled .ph-logo-text { color: var(--text); }
.ph-header-transparent.ph-header-scrolled .ph-nav-item > a { color: var(--text); }
.ph-header-transparent.ph-header-scrolled .ph-nav-item > a:hover { color: var(--primary); }
.ph-header-transparent.ph-header-scrolled .ph-icon-btn { color: var(--text); }
.ph-header-transparent.ph-header-scrolled .ph-icon-btn:hover { background: #f0f0f0; }
.ph-header-transparent.ph-header-scrolled .ph-hamburger span { background: var(--text); }
.ph-header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 100%;
}
.ph-logo a { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.ph-logo-icon { font-size: 24px; }
.ph-logo-text { font-size: 16px; font-weight: 800; color: #fff; letter-spacing: -0.3px; }
.ph-header-transparent .ph-logo-text { color: #fff; }
.ph-header:not(.ph-header-transparent) .ph-logo-text { color: var(--text); }

.ph-nav { height: 100%; }
.ph-nav-list { display: flex; height: 100%; gap: 0; }
.ph-nav-item { height: 100%; display: flex; align-items: center; position: relative; }
.ph-nav-item > a {
    display: flex; align-items: center; height: 100%;
    padding: 0 18px; font-size: 13px; font-weight: 600;
    letter-spacing: 0.5px; color: rgba(255,255,255,0.8);
    text-decoration: none; transition: color 0.3s;
    text-transform: uppercase;
}
.ph-nav-item > a:hover { color: #fff; }
.ph-header:not(.ph-header-transparent) .ph-nav-item > a { color: var(--text); }
.ph-header:not(.ph-header-transparent) .ph-nav-item > a:hover { color: var(--primary); }

/* Dropdown */
.ph-dropdown-menu {
    display: none; position: absolute; top: 100%; left: 0;
    background: #fff; border-radius: 12px; box-shadow: var(--shadow-lg);
    padding: 20px; min-width: 480px; z-index: 100;
}
.ph-dropdown:hover .ph-dropdown-menu { display: block; }
.ph-dd-container { max-width: 100%; }
.ph-dd-grid { display: grid; gap: 12px; }
.ph-dd-cols-3 { grid-template-columns: repeat(3, 1fr); }
.ph-dd-item {
    display: flex; flex-direction: column; align-items: center;
    padding: 12px; border-radius: 8px; text-decoration: none;
    transition: background 0.2s; text-align: center; gap: 6px;
}
.ph-dd-item:hover { background: #f8f9fa; }
.ph-dd-thumb { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }
.ph-dd-label { font-size: 13px; font-weight: 600; color: var(--text); }
.ph-dd-count { font-size: 11px; color: var(--text-light); }
.ph-dd-view-all { margin-top: 12px; text-align: center; }
.ph-dd-view-all a { font-size: 13px; color: var(--primary); font-weight: 600; }

/* Header right */
.ph-header-right { display: flex; align-items: center; gap: 8px; }
.ph-icon-btn {
    background: none; border: none; cursor: pointer;
    width: 36px; height: 36px; display: flex; align-items: center;
    justify-content: center; border-radius: 50%;
    color: rgba(255,255,255,0.8); transition: all 0.2s;
}
.ph-icon-btn:hover { background: rgba(255,255,255,0.12); color: #fff; }
.ph-header:not(.ph-header-transparent) .ph-icon-btn { color: var(--text); }
.ph-header:not(.ph-header-transparent) .ph-icon-btn:hover { background: #f0f0f0; }

.ph-hamburger { display: none; flex-direction: column; gap: 4px; cursor: pointer; background: none; border: none; padding: 8px; }
.ph-hamburger span { display: block; width: 20px; height: 2px; background: rgba(255,255,255,0.8); border-radius: 2px; transition: all 0.3s; }
.ph-header:not(.ph-header-transparent) .ph-hamburger span { background: var(--text); }

/* Mobile menu */
.ph-mobile-menu {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: #fff; z-index: 2000; padding: 20px; overflow-y: auto;
}
.ph-mobile-menu.open { display: block; }
.ph-mobile-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.ph-mobile-close { background: none; border: none; font-size: 32px; cursor: pointer; color: var(--text); padding: 0; line-height: 1; }
.ph-mobile-list li { border-bottom: 1px solid var(--border); }
.ph-mobile-list a { display: block; padding: 14px 0; font-size: 15px; font-weight: 500; color: var(--text); text-decoration: none; }

/* Search modal */
.ph-search-modal {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.92); z-index: 3000; align-items: center; justify-content: center;
}
.ph-search-modal.active { display: flex; }
.ph-search-close {
    position: absolute; top: 20px; right: 20px;
    background: none; border: none; font-size: 40px; color: #fff; cursor: pointer;
}
.ph-search-inner { width: 100%; max-width: 600px; padding: 20px; }
.ph-search-input-wrap { display: flex; border-bottom: 2px solid rgba(255,255,255,0.3); }
.ph-search-input-wrap input {
    flex: 1; background: none; border: none; outline: none;
    font-size: 24px; color: #fff; padding: 16px 0; font-family: var(--font-primary);
}
.ph-search-input-wrap button {
    background: none; border: none; color: var(--primary); font-size: 16px;
    font-weight: 700; cursor: pointer; text-transform: uppercase; letter-spacing: 1px;
}
.ph-search-trending { margin-top: 24px; }
.ph-search-trending h5 { color: rgba(255,255,255,0.5); font-size: 12px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; }
.ph-search-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.ph-search-tags a {
    padding: 6px 16px; border-radius: 50px; border: 1px solid rgba(255,255,255,0.2);
    font-size: 13px; color: rgba(255,255,255,0.7); text-decoration: none; transition: all 0.2s;
}
.ph-search-tags a:hover { border-color: var(--primary); color: #fff; }

/* ================================
   Hero Slider (ph-hero)
   ================================ */
.ph-hero {
    position: relative; width: 100%; height: 100vh; min-height: 680px;
    overflow: hidden; background: #1a1a2e;
}
.ph-slides-wrapper { position: relative; width: 100%; height: 100%; }
.ph-slide {
    position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease;
    display: flex; align-items: center; justify-content: center;
}
.ph-slide.active { opacity: 1; z-index: 1; }
.ph-slide-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transform: scale(1.05); transition: transform 0.8s ease;
}
.ph-slide.active .ph-slide-bg { transform: scale(1); }
.ph-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}
.ph-content {
    position: relative; z-index: 2; text-align: center; color: #fff;
    max-width: 800px; padding-bottom: 140px;
}
.ph-subtitle {
    display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; padding: 8px 18px; border-radius: 50px;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 16px;
}
.ph-title {
    font-size: clamp(36px, 6vw, 72px); font-weight: 900; line-height: 1.1;
    margin-bottom: 16px; letter-spacing: -1px;
}
.ph-desc { font-size: 17px; color: rgba(255,255,255,0.75); line-height: 1.6; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.ph-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.ph-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; border-radius: 50px; font-size: 14px;
    font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    transition: all 0.3s; text-decoration: none;
}
.ph-btn-primary { background: var(--primary); color: #fff; box-shadow: 0 6px 24px rgba(229,57,53,0.35); }
.ph-btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(229,57,53,0.45); }
.ph-btn-outline-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); }
.ph-btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* Arrows */
.ph-arrow {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
    background: rgba(255,255,255,0.12); border: none; width: 52px; height: 52px;
    border-radius: 50%; font-size: 28px; color: #fff; cursor: pointer;
    transition: all 0.3s; display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(4px);
}
.ph-arrow:hover { background: rgba(255,255,255,0.22); transform: translateY(-50%) scale(1.1); }
.ph-arrow-prev { left: 20px; }
.ph-arrow-next { right: 20px; }

/* Dots */
.ph-dots {
    position: absolute; bottom: 120px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 8px; z-index: 10;
}
.ph-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.4); cursor: pointer; transition: all 0.3s;
}
.ph-dot.active { background: #fff; width: 24px; border-radius: 4px; }

/* Side buttons */
.ph-side-btn { position: fixed; top: 50%; transform: translateY(-50%); z-index: 100; }
.ph-side-left { left: 0; }
.ph-side-right { right: 0; }
.ph-rotated-btn {
    display: flex; align-items: center; gap: 8px;
    padding: 12px 8px; background: rgba(229,57,53,0.85);
    color: #fff; text-decoration: none; text-transform: uppercase;
    transition: all 0.3s; writing-mode: vertical-rl; text-orientation: mixed;
    font-size: 11px; font-weight: 700; letter-spacing: 2px;
    border-radius: 0 6px 6px 0;
}
.ph-side-right .ph-rotated-btn { border-radius: 6px 0 0 6px; }
.ph-rotated-btn:hover { background: #e53935; color: #fff; }
.ph-rotated-btn svg { width: 14px; height: 14px; transform: rotate(90deg); flex-shrink: 0; }

/* Categories tabs */
.ph-categories {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 10;
    padding: 16px 0; background: linear-gradient(transparent, rgba(0,0,0,0.6));
}
.ph-categories-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 4px; }
.ph-cat {
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7); padding: 8px 18px; border-radius: 50px;
    font-size: 12px; font-weight: 600; cursor: pointer; transition: all 0.25s;
    text-transform: uppercase; letter-spacing: 0.5px; font-family: var(--font-primary);
}
.ph-cat:hover { background: rgba(255,255,255,0.15); color: #fff; }
.ph-cat.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.ph-cat-sep { color: rgba(255,255,255,0.2); font-size: 14px; }

/* ================================
   FD Hero (fd-hero)
   ================================ */
.fd-hero {
    position: relative; width: 100%; height: 80vh; min-height: 560px;
    overflow: hidden; background: #1a1a2e;
}
.fd-track { display: flex; width: 100%; height: 100%; transition: transform 0.6s ease; }
.fd-slide { min-width: 100%; height: 100%; position: relative; }
.fd-slide-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fd-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    pointer-events: none;
}
.fd-content {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    text-align: center; z-index: 2; width: 100%; padding: 0 20px;
}
.fd-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 110px; font-weight: 900; color: #fff;
    letter-spacing: 16px; text-transform: uppercase; line-height: 1; margin-bottom: 8px;
}
.fd-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 20px; font-weight: 400; color: rgba(255,255,255,0.7);
    letter-spacing: 6px; text-transform: uppercase;
}
.fd-bottom {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
    padding: 0 40px 40px; display: flex; flex-direction: column; align-items: center;
}
.fd-bottom-row { display: flex; align-items: center; gap: 20px; margin-bottom: 16px; }
.fd-arrow {
    background: rgba(255,255,255,0.12); border: none; width: 40px; height: 40px;
    border-radius: 50%; cursor: pointer; display: flex; align-items: center;
    justify-content: center; transition: all 0.2s; color: #fff;
}
.fd-arrow:hover { background: rgba(255,255,255,0.25); }
.fd-arrow svg { display: block; }
.fd-loc-display { min-width: 180px; text-align: center; }
.fd-loc-label {
    display: none; font-size: 20px; font-weight: 700; color: #fff;
    font-family: 'Montserrat', sans-serif;
}
.fd-loc-label.active { display: inline; }
.fd-cta-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 16px 48px; border-radius: 50px;
    background: var(--primary); color: #fff; font-size: 14px;
    font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
    text-decoration: none; transition: all 0.3s;
    box-shadow: 0 6px 24px rgba(229,57,53,0.3);
    font-family: 'Poppins', sans-serif;
}
.fd-cta-btn:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(229,57,53,0.4); }

/* ================================
   Destinations Grid (dest-grid-*)
   ================================ */
.dest-grid-section {
    padding: 100px 0; background: #f4f6f8; width: 100%; overflow: hidden;
}
.dest-grid-section .container-fluid { max-width: 100%; padding: 0 100px; }
.dest-grid-heading { text-align: center; margin-bottom: 56px; }
.dest-grid-heading .dest-label {
    display: inline-block; font-size: 14px; font-weight: 800;
    letter-spacing: 4px; color: var(--primary); text-transform: uppercase;
    margin-bottom: 8px; font-family: 'Poppins', sans-serif;
}
.dest-grid-heading h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(36px, 5vw, 56px); font-weight: 900;
    color: var(--text); margin-bottom: 12px;
    text-transform: uppercase; letter-spacing: 6px;
}
.dest-grid-heading p { font-size: 15px; color: var(--text-light); max-width: 600px; margin: 0 auto; line-height: 1.5; }
.dest-grid-rows { display: flex; flex-direction: column; gap: 24px; }
.dest-grid-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dest-card {
    position: relative; display: flex; align-items: flex-end;
    min-height: 500px; border-radius: 16px; overflow: hidden;
    background-size: cover; background-position: center; text-decoration: none;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.dest-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.18); }
.dest-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.75) 100%);
    pointer-events: none;
}
.dest-card-content { position: relative; z-index: 1; padding: 32px 24px; width: 100%; }
.dest-card-title {
    display: block; font-size: 22px; font-weight: 700; color: #fff;
    margin-bottom: 6px; font-family: 'Montserrat', sans-serif;
}
.dest-card-badge {
    display: inline-block; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.1); padding: 4px 14px; border-radius: 50px;
    backdrop-filter: blur(4px);
}
.dest-grid-cta { text-align: center; margin-top: 48px; }

/* ================================
   Attractions Section (attr-*)
   ================================ */
.attr-section {
    position: relative; background-size: cover; background-repeat: no-repeat;
    background-position: center; background-color: #1a1a2e;
    font-family: 'Poppins', sans-serif; padding: 80px 0 100px;
    overflow: hidden;
}
.attr-section::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(8,8,25,0.75);
    z-index: 1; pointer-events: none;
}
.attr-section .container-fluid { max-width: 100%; padding: 0 100px; }
.attr-section > .container-fluid { position: relative; z-index: 2; }
.attr-heading { text-align: center; margin-bottom: 50px; }
.attr-heading h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(36px, 8vw, 120px); font-weight: 900;
    margin: 0 0 12px; text-transform: uppercase;
    letter-spacing: 10px; line-height: 1.1;
    background: linear-gradient(180deg, #66b2e2 0%, #4a90c4 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.attr-heading h3 {
    font-size: clamp(16px, 2.5vw, 24px); font-weight: 400; color: rgba(255,255,255,0.6);
    text-transform: uppercase; letter-spacing: 8px; margin: 0; font-family: 'Poppins', sans-serif;
}
.attr-track {
    display: flex; gap: 16px; overflow-x: auto; padding: 8px 0;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    max-width: 100%;
    scrollbar-width: none; -ms-overflow-style: none;
}
.attr-track::-webkit-scrollbar { display: none; }
.attr-card { flex: 0 0 calc(25% - 13px); min-width: 220px; scroll-snap-align: start; }
.attr-card > a {
    display: block; position: relative; width: 100%;
    height: 60vh; min-height: 340px; max-height: 600px;
    border-radius: 20px; overflow: hidden; text-decoration: none;
}
.attr-card-img-wrap { width: 100%; height: 100%; position: relative; }
.attr-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.attr-card > a:hover .attr-card-img-wrap img { transform: scale(1.08); }
.attr-card-content {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 24px; transition: background 0.3s;
}
.attr-card > a:hover .attr-card-content { background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.8) 100%); }
.attr-card-content { align-items: center; }
.attr-card-label { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 10px; text-align: center; }
.attr-card-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    font-size: 13px; font-weight: 800; color: #fff;
    text-transform: uppercase; letter-spacing: 1px; opacity: 0;
    transform: translateY(8px); transition: all 0.3s;
    background: var(--primary); padding: 10px 28px; border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.4); min-width: 140px;
}
.attr-card > a:hover .attr-card-btn { opacity: 1; transform: translateY(0); }
.attr-card-btn:hover { background: var(--primary-dark); border-color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(229,57,53,0.4); }
.attr-bottom {
    display: flex; align-items: center; justify-content: center;
    gap: 16px; padding-top: 24px;
}
.attr-arrow {
    background: var(--primary); border: none; width: 40px; height: 40px;
    border-radius: 50%; cursor: pointer; display: flex; align-items: center;
    justify-content: center; transition: all 0.2s; color: #fff;
    box-shadow: 0 6px 20px rgba(229,57,53,0.35);
}
.attr-arrow:hover { background: var(--primary-dark); transform: scale(1.1); }
.attr-arrow svg { display: block; }
.attr-cta {
    display: inline-flex; align-items: center;
    padding: 16px 52px; border-radius: 50px;
    font-size: 15px; font-weight: 800; font-family: 'Poppins', sans-serif;
    background: var(--primary); color: #fff; border: none; cursor: pointer;
    transition: all 0.3s ease; text-decoration: none;
    letter-spacing: 2px; text-transform: uppercase; white-space: nowrap;
    box-shadow: 0 6px 24px rgba(229,57,53,0.3);
}
.attr-cta:hover {
    background: var(--primary-dark); transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(229,57,53,0.4); color: #fff;
}

/* ================================
   Celebration Archive Page
   ================================ */
.celebration-page { }
.celebration-hero { padding: 120px 0 80px; background: linear-gradient(135deg, #1a1a3e 0%, #2d2d5e 50%, #e53935 100%); text-align: center; position: relative; overflow: hidden; }
.celebration-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.05) 0%, transparent 50%), radial-gradient(circle at 70% 50%, rgba(229,57,53,0.15) 0%, transparent 50%); pointer-events: none; }
.celebration-hero-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; padding: 0 20px; }
.celebration-label { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 4px; color: rgba(255,255,255,0.6); text-transform: uppercase; margin-bottom: 12px; }
.celebration-hero-content h1 { font-size: clamp(36px, 6vw, 60px); font-weight: 900; color: #fff; margin: 0 0 16px; font-family: 'Playfair Display', serif; }
.celebration-hero-content p { font-size: 16px; color: rgba(255,255,255,0.75); margin: 0; line-height: 1.6; }
.celeb-pagination { text-align: center; margin-top: 40px; }
.celeb-pagination .page-numbers { display: inline-block; padding: 8px 16px; margin: 0 4px; border-radius: 8px; font-size: 14px; font-weight: 600; color: #495057; background: #f8f9fa; text-decoration: none; transition: all 0.3s; }
.celeb-pagination .page-numbers:hover { background: #e9ecef; }
.celeb-pagination .page-numbers.current { background: var(--primary); color: #fff; }
.celeb-none { text-align: center; font-size: 16px; color: #6c757d; padding: 60px 0; }

/* ================================
   Celebration Section
   ================================ */
.celebration-section {
    padding: 100px 0; background: #fff; overflow: hidden;
}
.celebration-section .container-fluid { max-width: 100%; padding: 0 100px; }
.celebration-heading { text-align: center; margin-bottom: 40px; }
.celebration-heading h3 {
    font-size: clamp(16px, 2.5vw, 28px); font-weight: 300;
    color: #888; margin: 0 0 6px; font-family: 'Montserrat', sans-serif;
    letter-spacing: 6px; text-transform: uppercase;
}
.celebration-heading h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(42px, 8vw, 110px); font-weight: 900;
    margin: 0; text-transform: uppercase; letter-spacing: 16px;
    background: linear-gradient(180deg, #2d2d5e 0%, #1a1a3e 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; line-height: 1;
}

/* Celebration Filter */
.celebration-filter { margin-bottom: 40px; }
.celeb-filter-row { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 16px; }
.celeb-tabs { display: flex; gap: 4px; background: #f0f0f0; border-radius: 50px; padding: 4px; }
.celeb-tab {
    padding: 10px 24px; border-radius: 50px; border: none;
    font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.2s;
    background: transparent; color: #666; font-family: 'Montserrat', sans-serif;
}
.celeb-tab.active { background: var(--primary); color: #fff; box-shadow: 0 4px 12px rgba(229,57,53,0.3); }
.celeb-filter-btns { display: flex; gap: 8px; }
.celeb-filter-btn {
    padding: 10px 20px; border-radius: 50px; border: 1px solid var(--border);
    background: #fff; font-size: 13px; font-weight: 500; cursor: pointer;
    transition: all 0.2s; display: flex; align-items: center; gap: 6px; font-family: 'Montserrat', sans-serif;
}
.celeb-filter-btn:hover { border-color: var(--primary); }
.celeb-icon { display: inline-block; width: 0; height: 0; border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 5px solid #666; margin-left: 4px; }

/* Panels */
.celeb-filter-panels { position: relative; margin-top: 12px; }
.celeb-panel {
    display: none; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    background: #fff; border: 1px solid var(--border); border-radius: 12px;
    box-shadow: var(--shadow-lg); padding: 20px; z-index: 20;
    width: auto; min-width: 280px; max-width: 90vw;
}
.celeb-panel.open { display: block; }
.celeb-panel-close {
    position: absolute; top: 12px; right: 12px;
    background: none; border: none; font-size: 24px; cursor: pointer; color: #999;
}
.celeb-panel-body { display: flex; flex-wrap: wrap; gap: 8px; max-height: 200px; overflow-y: auto; }
.celeb-check-label { display: flex; align-items: center; gap: 6px; cursor: pointer; }
.celeb-check-label span { font-size: 13px; color: var(--text); }
.celeb-check { accent-color: var(--primary); }
.celeb-panel-actions { display: flex; gap: 8px; margin-top: 16px; padding-top: 12px; border-top: 1px solid var(--border); }
.celeb-panel-apply, .celeb-panel-clear {
    padding: 8px 20px; border-radius: 50px; font-size: 12px; font-weight: 600;
    cursor: pointer; font-family: 'Montserrat', sans-serif;
}
.celeb-panel-apply { background: var(--primary); color: #fff; border: none; }
.celeb-panel-clear { background: #f0f0f0; color: #666; border: none; }

/* Celebration Grid */
.celeb-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.celeb-card {
    position: relative; display: block; min-height: 280px;
    border-radius: 16px; overflow: hidden; text-decoration: none;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.celeb-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.15); }
.celeb-card-img { width: 100%; height: 100%; position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.5s ease; }
.celeb-card:hover .celeb-card-img { transform: scale(1.08); }
.celeb-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.7) 100%);
    pointer-events: none;
}
.celeb-card-body { position: relative; z-index: 1; padding: 24px; display: flex; align-items: flex-end; min-height: 280px; }
.celeb-card-body h3 { font-size: 16px; font-weight: 700; color: #fff; margin: 0; }
.celeb-bottom { text-align: center; margin-top: 40px; }

/* ================================
   Itineraries Section (inc-*)
   ================================ */
.inc-itineraries-section { padding: 80px 0; overflow: hidden; }
.inc-itineraries-section .container-fluid { max-width: 100%; padding: 0 100px; }
.inc-heading-center { text-align: center; margin-bottom: 40px; }
.inc-heading-center h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(16px, 2.5vw, 28px); font-weight: 300;
    color: #888; margin: 0 0 4px; letter-spacing: 6px; text-transform: uppercase;
}
.inc-heading-center h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 4vw, 48px); font-weight: 900;
    color: var(--text); margin: 0; letter-spacing: 2px; text-transform: uppercase;
}

.inc-itinerary-filters {
    display: flex; gap: 12px; margin-bottom: 32px;
    flex-wrap: wrap; justify-content: center;
}
.inc-itinerary-filters select {
    padding: 10px 18px; border: 1px solid var(--border);
    border-radius: 50px; font-size: 13px; font-family: 'Montserrat', sans-serif;
    outline: none; background: var(--bg); color: var(--text); cursor: pointer;
}
.inc-itinerary-filters select:focus { border-color: var(--primary); }
.inc-itinerary-filters .inc-btn {
    font-size: 13px; padding: 10px 20px;
}
.inc-itinerary-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

/* Cards */
.inc-card {
    background: var(--bg-card); border-radius: var(--radius);
    overflow: hidden; transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border);
}
.inc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.inc-card > a { text-decoration: none; color: inherit; display: block; }
.inc-card-img { position: relative; overflow: hidden; }
.inc-card-img img { width: 100%; height: 240px; object-fit: cover; display: block; transition: transform 0.4s ease; }
.inc-card:hover .inc-card-img img { transform: scale(1.05); }
.inc-rating-badge {
    position: absolute; top: 12px; left: 12px;
    background: rgba(0,0,0,0.7); color: #f59e0b; padding: 4px 12px;
    border-radius: 50px; font-size: 12px; font-weight: 700;
}
.inc-price-badge {
    position: absolute; top: 12px; right: 12px;
    background: rgba(229,57,53,0.9); color: #fff; padding: 4px 12px;
    border-radius: 50px; font-size: 12px; font-weight: 700;
}
.inc-card-body { padding: 20px; }
.inc-diary-cat {
    display: inline-block; font-size: 11px; font-weight: 700;
    color: var(--primary); text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 6px;
}
.inc-card-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.inc-location { font-size: 13px; color: var(--text-light); margin: 0 0 8px; display: flex; align-items: center; gap: 4px; }
.inc-excerpt { font-size: 13px; color: #666; line-height: 1.5; margin: 0; }
.inc-view-all {
    display: inline-block; margin-top: 12px; font-weight: 600;
    font-size: 14px; color: var(--primary); text-align: center;
}
.inc-view-all:hover { color: var(--primary-dark); }

/* Buttons */
.inc-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; border-radius: 50px; font-size: 14px;
    font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    transition: all 0.3s; text-decoration: none; font-family: 'Montserrat', sans-serif;
    border: none; cursor: pointer;
}
.inc-btn-primary { background: var(--primary); color: #fff; }
.inc-btn-primary:hover { background: var(--primary-dark); }

/* ================================
   Agent Profile - Redesign
   ================================ */

/* Hero / Cover */
.apr-hero {
    position: relative;
    padding: calc(var(--header-height) + 60px) 0 0;
    overflow: hidden;
}
.apr-hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d5e 40%, #e53935 100%);
    height: 340px;
    z-index: 0;
}
.apr-hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.06) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(229,57,53,0.15) 0%, transparent 50%);
    pointer-events: none;
}
.apr-hero-inner {
    position: relative; z-index: 1;
    display: flex; align-items: flex-end; gap: 32px;
    padding: 40px 0 32px;
}

/* Avatar */
.apr-avatar-frame {
    position: relative; flex-shrink: 0;
}
.apr-avatar {
    width: 140px; height: 140px;
    border-radius: 50%; object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    display: block;
}
.apr-avatar-edit {
    position: absolute; bottom: 4px; right: 4px;
    width: 34px; height: 34px;
    border-radius: 50%; border: 2px solid #fff;
    background: var(--primary); color: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.apr-avatar-edit:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

/* Hero Info */
.apr-hero-info { flex: 1; min-width: 0; }
.apr-name {
    font-size: 32px; font-weight: 900; color: #fff;
    margin: 0 0 2px; line-height: 1.2;
}
.apr-handle {
    font-size: 15px; color: rgba(255,255,255,0.6);
    font-weight: 500; display: inline-block; margin-bottom: 8px;
}
.apr-bio {
    font-size: 15px; color: rgba(255,255,255,0.8);
    line-height: 1.6; margin: 0 0 12px; max-width: 560px;
}
.apr-hero-meta {
    display: flex; gap: 20px; flex-wrap: wrap;
}
.apr-meta-item {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; color: rgba(255,255,255,0.65);
}
.apr-meta-item svg { flex-shrink: 0; opacity: 0.7; }

/* Stats */
.apr-stats {
    position: relative; z-index: 1;
    margin-top: -16px; padding-bottom: 40px;
}
.apr-stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.apr-stat-card {
    background: #fff; border-radius: var(--radius);
    padding: 24px 16px; text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid var(--border);
    transition: transform 0.25s, box-shadow 0.25s;
}
.apr-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.apr-stat-num {
    display: block; font-size: 28px; font-weight: 900;
    color: var(--primary); line-height: 1.2; margin-bottom: 4px;
}
.apr-stat-label {
    display: block; font-size: 13px; color: var(--text-light);
    font-weight: 500;
}

/* Edit Section */
.apr-edit-section {
    padding-bottom: 40px;
}
.apr-edit-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius); padding: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.apr-edit-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 24px;
}
.apr-edit-header h2 {
    font-size: 20px; font-weight: 800; margin: 0;
}
.apr-edit-close {
    background: none; border: none; font-size: 28px;
    color: var(--text-light); cursor: pointer;
    line-height: 1; padding: 0 4px;
}
.apr-edit-close:hover { color: var(--text); }
.apr-edit-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
    margin-bottom: 0;
}
.apr-edit-field {
    margin-bottom: 20px;
}
.apr-edit-field label {
    display: block; font-size: 13px; font-weight: 600;
    color: var(--text); margin-bottom: 6px;
}
.apr-edit-field input[type="text"],
.apr-edit-field textarea {
    width: 100%; padding: 12px 16px;
    border: 1px solid var(--border); border-radius: 8px;
    font-size: 14px; font-family: var(--font-primary);
    outline: none; box-sizing: border-box; transition: border-color 0.2s;
}
.apr-edit-field input:focus,
.apr-edit-field textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(229,57,53,0.08);
}
.apr-edit-actions {
    display: flex; align-items: center; gap: 12px;
}
.apr-upload-row {
    display: flex; gap: 16px; flex-wrap: wrap;
}

/* Content */
.apr-content {
    padding: 0 0 80px;
}
.apr-section {
    margin-bottom: 48px;
}
.apr-section-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 24px; flex-wrap: wrap; gap: 12px;
}
.apr-section-head h2 {
    font-size: 22px; font-weight: 800; margin: 0;
}
.apr-view-all {
    font-size: 14px; font-weight: 600; color: var(--primary);
    text-decoration: none; transition: color 0.2s;
}
.apr-view-all:hover { color: var(--primary-dark); }

/* Card Grid */
.apr-card-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.apr-card {
    display: block; text-decoration: none; color: inherit;
    background: #fff; border-radius: var(--radius);
    overflow: hidden; border: 1px solid var(--border);
    transition: transform 0.25s, box-shadow 0.25s;
}
.apr-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.apr-card-img {
    position: relative; overflow: hidden;
}
.apr-card-img img {
    width: 100%; height: 200px; object-fit: cover;
    display: block; transition: transform 0.35s;
}
.apr-card:hover .apr-card-img img { transform: scale(1.05); }
.apr-price-tag {
    position: absolute; top: 12px; right: 12px;
    background: rgba(229,57,53,0.92); color: #fff;
    padding: 4px 12px; border-radius: 50px;
    font-size: 12px; font-weight: 700;
}
.apr-card-body {
    padding: 16px 20px 20px;
}
.apr-card-date {
    display: block; font-size: 12px; color: var(--text-light);
    margin-bottom: 6px;
}
.apr-card-body h3 {
    font-size: 16px; font-weight: 700; color: var(--text);
    margin: 0 0 6px; line-height: 1.3;
}
.apr-card-body p {
    font-size: 13px; color: #666;
    line-height: 1.5; margin: 0;
}

/* Empty state */
.apr-empty {
    text-align: center; padding: 48px 20px;
    background: var(--bg-alt); border-radius: var(--radius);
    border: 1px dashed var(--border);
}
.apr-empty svg { color: var(--text-light); margin-bottom: 12px; }
.apr-empty p { font-size: 15px; color: var(--text-light); margin: 0; }

/* ================================
   Advertising Banners (ab-*)
   ================================ */
.ab-wrap {
    position: relative; width: 100%; height: 190px;
    border-radius: 30px; overflow: hidden; background: #1a1a2e;
}
.ab-link {
    display: block; width: 100%; height: 100%;
    position: relative; text-decoration: none; color: #fff;
}
.ab-media {
    position: absolute; inset: 0; width: 100%; height: 100%;
    transition: transform 0.5s ease;
}
.ab-link:hover .ab-media { transform: scale(1.05); }
.ab-media .ab-img, .ab-media .ab-video {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.ab-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.65) 100%);
    z-index: 1; pointer-events: none;
}
.ab-content {
    position: relative; z-index: 2;
    display: flex; align-items: center; justify-content: space-between;
    height: 100%; padding: 0 40px; gap: 20px;
}
.ab-badge {
    flex-shrink: 0; font-size: 10px; font-weight: 800;
    letter-spacing: 2px; text-transform: uppercase; color: #ffd54f;
    background: rgba(255,213,79,0.12); padding: 4px 12px;
    border-radius: 20px; border: 1px solid rgba(255,213,79,0.25);
}
.ab-text { flex: 1; text-align: center; min-width: 0; }
.ab-headline {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px; font-weight: 700; color: #fff;
    margin: 0 0 4px; line-height: 1.2;
}
.ab-subheadline {
    font-family: 'Poppins', sans-serif;
    font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.8);
    margin: 0; line-height: 1.4;
}
.ab-cta {
    flex-shrink: 0; display: inline-block;
    padding: 10px 28px; border-radius: 50px;
    background: var(--primary); color: #fff;
    font-size: 13px; font-weight: 700; font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px; text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 0 rgba(229,57,53,0); white-space: nowrap;
}
.ab-link:hover .ab-cta {
    background: var(--primary-light);
    box-shadow: 0 0 20px rgba(229,57,53,0.5);
    transform: translateY(-1px);
}

.site-banner-placement { background: #f8f9fa; }
.site-banner-front_hero, .site-banner-front_dest, .site-banner-front_itin,
.site-banner-front_attr, .site-banner-front_celeb, .site-banner-front_grid { padding: 24px 0; }

.site-banner-sidebar { padding: 0; background: none; margin-top: 20px; }
.site-banner-sidebar .ab-wrap { height: 160px; border-radius: 16px; }
.site-banner-sidebar .ab-content { padding: 0 20px; flex-direction: column; justify-content: center; gap: 8px; }
.site-banner-sidebar .ab-badge { display: none; }
.site-banner-sidebar .ab-headline { font-size: 16px; }
.site-banner-sidebar .ab-subheadline { font-size: 12px; }
.site-banner-sidebar .ab-cta { font-size: 11px; padding: 6px 18px; }

/* ================================
   Explorer Counter
   ================================ */
.explorer-counter {
    padding: 80px 0;
    background: #0c175e;
    text-align: center; position: relative; overflow: hidden;
}
.explorer-counter-bg {
    position: absolute; inset: 0;
    background-image: url('../images/explorer-bg.jpg');
    background-size: cover; background-position: center;
    transform: scaleX(-1);
    opacity: 0.3;
    pointer-events: none;
}
.explorer-counter::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(12,23,94,0.5) 0%, rgba(26,43,110,0.5) 100%);
    z-index: 1; pointer-events: none;
}
.explorer-counter .container { position: relative; z-index: 2; }
.explorer-inner { max-width: 600px; margin: 0 auto; }
.explorer-number {
    font-size: clamp(48px, 10vw, 96px); font-weight: 900;
    font-family: 'Montserrat', sans-serif; color: #fff;
    margin-bottom: 12px; letter-spacing: -2px;
}
.explorer-text {
    font-size: clamp(14px, 3vw, 20px); color: rgba(255,255,255,0.5);
    font-weight: 300; letter-spacing: 4px; text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

/* ================================
   Footer (inc-footer)
   ================================ */
.inc-footer {
    position: relative; background: #0a0a1a; color: rgba(255,255,255,0.7); padding: 80px 0 0;
    font-family: 'Poppins', sans-serif; overflow: hidden;
}
.inc-footer-bg {
    position: absolute; inset: 0;
    background-image: url('../images/footer-bg.jpg');
    background-size: cover; background-position: center;
    transform: scaleX(-1);
    opacity: 0.12;
    pointer-events: none;
}
.inc-footer .container { position: relative; z-index: 1; }
.inc-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.inc-footer-col h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; font-family: 'Montserrat', sans-serif; }
.inc-footer-col p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.5); margin-top: 16px; }
.inc-footer-col ul li { margin-bottom: 10px; }
.inc-footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.inc-footer-col ul li a:hover { color: var(--primary); }
.inc-footer-social { display: flex; gap: 12px; margin-top: 20px; }
.inc-footer-social a {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.06); display: flex; align-items: center;
    justify-content: center; color: rgba(255,255,255,0.5);
    transition: all 0.2s; text-decoration: none;
}
.inc-footer-social a:hover { background: var(--primary); color: #fff; }
.inc-footer-apps { margin-top: 20px; }
.inc-footer-apps p { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.inc-app-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.inc-app-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 16px; border-radius: 8px; background: rgba(255,255,255,0.06);
    font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.6);
    text-decoration: none; transition: all 0.2s;
}
.inc-app-badge:hover { background: rgba(255,255,255,0.1); color: #fff; }
.inc-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 24px 0; text-align: center;
}
.inc-footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); margin: 0; }
.inc-footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.inc-footer-bottom a:hover { color: var(--primary); }

/* ================================
   Main Content Wrapper
   ================================ */
.ph-main { display: block; overflow-x: hidden; }
body:not(.home) .ph-header { background: #fff; box-shadow: 0 1px 6px rgba(0,0,0,0.08); }
body:not(.home) .ph-header .ph-logo-text { color: var(--text); }
body:not(.home) .ph-header .ph-nav-item > a { color: var(--text); }
body:not(.home) .ph-header .ph-icon-btn { color: var(--text); }
body:not(.home) .ph-header .ph-hamburger span { background: var(--text); }

/* ================================
   Destination Archive (dest-*)
   ================================ */
body.dest-page { font-family: 'Montserrat', 'Poppins', sans-serif; }
.dest-main { display: block; overflow-x: hidden; }

/* dest-header icons */
.dest-icon-btn {
    background: none; border: none; cursor: pointer;
    width: 36px; height: 36px; display: flex; align-items: center;
    justify-content: center; border-radius: 50%;
    color: rgba(255,255,255,0.8); transition: all 0.2s;
}
.dest-icon-btn:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* dest search modal */
.dest-search-modal {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.92); z-index: 3000; align-items: center; justify-content: center;
}
.dest-search-modal.active { display: flex; }
.dest-search-close {
    position: absolute; top: 20px; right: 20px;
    background: none; border: none; font-size: 40px; color: #fff; cursor: pointer; line-height: 1;
}
.dest-search-inner { width: 100%; max-width: 600px; padding: 20px; }
.dest-search-input-wrap { display: flex; border-bottom: 2px solid rgba(255,255,255,0.3); }
.dest-search-input-wrap input {
    flex: 1; background: none; border: none; outline: none;
    font-size: 24px; color: #fff; padding: 16px 0; font-family: var(--font-primary);
}
.dest-search-input-wrap button {
    background: none; border: none; color: var(--primary); font-size: 16px;
    font-weight: 700; cursor: pointer; text-transform: uppercase; letter-spacing: 1px;
}

/* dest slides - match template classes */
.dest-slides-track { display: flex; width: 100%; height: 100%; }
.dest-slide { position: relative; min-width: 100%; height: 100%; }
.dest-slide-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dest-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    pointer-events: none; z-index: 1;
}

.dest-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: #000; height: 68px; font-family: 'Poppins', sans-serif;
}
.dest-nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    max-width: 1400px; margin: 0 auto; padding: 0 24px; height: 100%;
}
.dest-nav-left { display: flex; align-items: center; }
.dest-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.dest-logo-icon { font-size: 24px; }
.dest-logo-text { font-size: 18px; font-weight: 800; color: #fff; letter-spacing: -0.3px; }
.dest-nav-center { height: 100%; }
.dest-nav-list { display: flex; list-style: none; height: 100%; gap: 0; margin: 0; padding: 0; }
.dest-nav-item { height: 100%; display: flex; align-items: center; }
.dest-nav-item a {
    display: flex; align-items: center; height: 100%;
    padding: 0 20px; font-size: 13px; font-weight: 600;
    letter-spacing: 0.5px; color: rgba(255,255,255,0.75);
    text-decoration: none; transition: color 0.3s; position: relative; text-transform: uppercase;
}
.dest-nav-item a::after {
    content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 0; height: 3px; background: var(--primary); transition: width 0.3s;
}
.dest-nav-item a:hover { color: #fff; }
.dest-nav-item a:hover::after { width: 60%; }
.dest-nav-item a.dest-active { color: #fff; }
.dest-nav-item a.dest-active::after { width: 60%; }
.dest-nav-right { display: flex; align-items: center; gap: 8px; }
.dest-hamburger { display: none; flex-direction: column; gap: 4px; cursor: pointer; background: none; border: none; padding: 8px; }
.dest-hamburger span { display: block; width: 20px; height: 2px; background: rgba(255,255,255,0.8); border-radius: 2px; }
.dest-hero {
    position: relative; width: 100%; height: 80vh; min-height: 560px;
    overflow: hidden; background: #1a1a2e;
}
.dest-hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s; }
.dest-hero-slide.active { opacity: 1; }
.dest-hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.dest-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
}
.dest-hero-content {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    text-align: center; z-index: 2; width: 100%; padding: 0 20px;
}
.dest-hero-heading {
    font-size: 76px; font-weight: 900; color: #fff;
    letter-spacing: 14px; text-transform: uppercase; line-height: 1; margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}
.dest-hero-subtitle {
    font-size: 18px; font-weight: 400; color: rgba(255,255,255,0.7);
    letter-spacing: 6px; text-transform: uppercase; font-family: 'Poppins', sans-serif;
}
.dest-bottom {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 0 40px 36px;
}
.dest-bottom-row { display: flex; align-items: center; gap: 20px; justify-content: center; }
.dest-nav-arrow {
    background: rgba(255,255,255,0.12); border: none; width: 40px; height: 40px;
    border-radius: 50%; cursor: pointer; display: flex; align-items: center;
    justify-content: center; transition: all 0.2s; color: #fff;
}
.dest-nav-arrow:hover { background: rgba(255,255,255,0.25); }
.dest-nav-arrow svg { display: block; }
.dest-loc-display { min-width: 180px; text-align: center; }
.dest-loc-label { display: none; font-size: 18px; font-weight: 700; color: #fff; }
.dest-loc-label.active { display: inline; }
.dest-cta-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 40px; border-radius: 50px; background: var(--primary);
    color: #fff; font-size: 14px; font-weight: 800; letter-spacing: 2px;
    text-transform: uppercase; text-decoration: none; transition: all 0.3s;
    box-shadow: 0 6px 24px rgba(229,57,53,0.3); font-family: 'Poppins', sans-serif;
    margin: 0 auto; display: table; margin-top: 16px;
}
.dest-cta-btn:hover { background: var(--primary-dark); transform: translateY(-2px); }
.dest-mobile-menu {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: #000; z-index: 2000; padding: 24px; overflow-y: auto;
}
.dest-mobile-menu.open { display: block; }
.dest-mobile-list li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.dest-mobile-list a { display: block; padding: 16px 0; font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.7); text-decoration: none; }
.dest-mobile-list a:hover { color: #fff; }
.dest-content-area { padding: 60px 24px; max-width: 1400px; margin: 0 auto; }
.dest-content-area .container { padding-bottom: 20px; }
.dest-content-area .pagination,
.dest-content-area .navigation.pagination {
    margin-top: 40px; text-align: center;
}
.dest-content-area .nav-links {
    display: inline-flex; gap: 6px; align-items: center;
}
.dest-content-area .page-numbers {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 38px; height: 38px; padding: 0 12px;
    border: 1px solid var(--border); border-radius: 50px;
    font-size: 13px; font-weight: 600; color: var(--text);
    text-decoration: none; transition: all 0.2s;
}
.dest-content-area .page-numbers:hover { border-color: var(--primary); color: var(--primary); }
.dest-content-area .page-numbers.current { background: var(--primary); border-color: var(--primary); color: #fff; }
.dest-content-area .page-numbers.prev,
.dest-content-area .page-numbers.next { font-size: 16px; }
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dest-cat-filters, .dest-filter-bar { display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; justify-content: center; }
.dest-filter-btn {
    padding: 10px 22px; border-radius: 50px; border: 1px solid var(--border);
    background: #fff; font-size: 13px; font-weight: 600; cursor: pointer;
    transition: all 0.2s; font-family: 'Montserrat', sans-serif; color: var(--text);
}
.dest-filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.dest-filter-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.dest-loading { opacity: 0.5; pointer-events: none; transition: opacity 0.3s; }

/* ================================
   Tour Package Single (tp-*)
   ================================ */
.tp-single { background: #fff; padding-top: 72px; }
.tp-breadcrumb { padding: 14px 0 6px; font-size: 13px; color: #6c757d; border-bottom: 1px solid #f0f0f0; margin-bottom: 0; }
.tp-breadcrumb ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; }
.tp-breadcrumb li { display: inline; }
.tp-breadcrumb li + li::before { content: "/"; margin: 0 8px; color: #adb5bd; }
.tp-breadcrumb a { color: #1a73e8; text-decoration: none; }
.tp-breadcrumb a:hover { text-decoration: underline; }
.tp-breadcrumb .active { color: #495057; }
.tp-middot { color: #adb5bd; font-size: 16px; line-height: 1; }

.tp-gallery-wrap { width: 100%; }
.tp-gallery { position: relative; width: 100%; max-height: 520px; overflow: hidden; background: #1a1a2e; }
.tp-gallery-track { display: flex; transition: transform 0.5s ease; }
.tp-gallery-slide { min-width: 100%; }
.tp-gallery-slide img { width: 100%; height: 520px; object-fit: cover; display: block; }
.tp-gallery-count { position: absolute; top: 16px; right: 16px; background: rgba(0,0,0,0.6); color: #fff; padding: 4px 14px; border-radius: 20px; font-size: 13px; z-index: 5; }
.tp-gal-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.85); border: none; width: 44px; height: 44px; border-radius: 50%; font-size: 28px; cursor: pointer; z-index: 5; line-height: 44px; text-align: center; color: #333; transition: all 0.2s; box-shadow: 0 2px 8px rgba(0,0,0,0.12); }
.tp-gal-arrow:hover { background: #fff; box-shadow: 0 4px 16px rgba(0,0,0,0.18); }
.tp-gal-prev { left: 20px; }
.tp-gal-next { right: 20px; }
.tp-gallery-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 5; }
.tp-gal-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.45); cursor: pointer; transition: all 0.2s; }
.tp-gal-dot.active { background: #fff; transform: scale(1.2); }

.hg-thumbs { display: flex; gap: 8px; padding: 12px 0; overflow-x: auto; flex-wrap: nowrap; }
.hg-thumb { width: 100px; height: 70px; object-fit: cover; border-radius: 6px; cursor: pointer; opacity: 0.6; transition: all 0.2s; flex-shrink: 0; border: 2px solid transparent; }
.hg-thumb:hover { opacity: 0.85; }
.hg-thumb.active { opacity: 1; border-color: var(--primary); }

.tp-content-wrap { padding-top: 32px; padding-bottom: 60px; }
.tp-layout { display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start; }
.tp-header { margin-bottom: 28px; }
.tp-title { font-family: 'Montserrat', sans-serif; font-size: 28px; font-weight: 700; color: #1a1a2e; margin-bottom: 10px; line-height: 1.2; }
.tp-header-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.tp-stars { color: #f59e0b; font-size: 15px; letter-spacing: 2px; }
.tp-rate-num { font-size: 14px; font-weight: 700; color: #1a1a2e; }
.tp-reviews { font-size: 13px; color: #6c757d; margin-left: 4px; }
.tp-address { font-size: 13px; color: #6c757d; }
.tp-header-actions { display: flex; align-items: center; gap: 16px; margin-top: 12px; }
.tp-share { position: relative; }
.tp-share-icon { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: #6c757d; cursor: pointer; padding: 4px 12px; border: 1px solid #dee2e6; border-radius: 6px; transition: all 0.2s; }
.tp-share-icon:hover { border-color: #adb5bd; color: #1a1a2e; }
.tp-share-dropdown { display: none; position: absolute; top: 100%; left: 0; z-index: 100; background: #fff; border: 1px solid #dee2e6; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); padding: 6px 0; min-width: 140px; margin-top: 4px; }
.tp-share-dropdown.open { display: block; }
.tp-share-dropdown a { display: block; padding: 8px 16px; font-size: 13px; color: #333; text-decoration: none; transition: background 0.15s; }
.tp-share-dropdown a:hover { background: #f8f9fa; }

.tp-features { background: #f8f9fa; border-radius: 12px; padding: 20px; margin-bottom: 28px; }
.tp-features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tp-feature-item { display: flex; align-items: center; gap: 12px; }
.tp-feat-icon { flex-shrink: 0; width: 42px; height: 42px; background: #fff; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--primary); }
.tp-feat-info { min-width: 0; }
.tp-feat-label { display: block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: #6c757d; margin-bottom: 2px; }
.tp-feat-value { display: block; font-size: 14px; font-weight: 600; color: #1a1a2e; }
.tp-section { margin-bottom: 36px; }
.tp-section-title { font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 700; color: #1a1a2e; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid #f0f0f0; }
.tp-desc { font-size: 14px; line-height: 1.8; color: #495057; }
.tp-desc p { margin-bottom: 12px; }
.tp-highlights { list-style: none; padding: 0; margin: 0; }
.tp-highlights li { display: flex; align-items: flex-start; gap: 10px; padding: 10px 0; border-bottom: 1px solid #f0f0f0; font-size: 14px; color: #495057; line-height: 1.5; }
.tp-highlights li svg { flex-shrink: 0; margin-top: 3px; }
.tp-inexclude { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.tp-include h3, .tp-exclude h3 { display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 700; margin-bottom: 12px; font-family: 'Montserrat', sans-serif; }
.tp-include h3 { color: #2e7d32; }
.tp-exclude h3 { color: #c62828; }
.tp-include ul, .tp-exclude ul { list-style: none; padding: 0; margin: 0; }
.tp-include li, .tp-exclude li { display: flex; align-items: flex-start; gap: 8px; padding: 8px 0; border-bottom: 1px solid #f0f0f0; font-size: 13px; color: #495057; line-height: 1.5; }
.tp-include li svg, .tp-exclude li svg { flex-shrink: 0; margin-top: 3px; }
.tp-attrs { display: flex; flex-wrap: wrap; gap: 10px; }
.tp-attr-tag { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; background: #f8f9fa; border: 1px solid #e9ecef; border-radius: 8px; font-size: 14px; font-weight: 500; color: #495057; }

.tp-accordion { border: 1px solid #e9ecef; border-radius: 12px; overflow: hidden; }
.tp-acc-item { border-bottom: 1px solid #e9ecef; }
.tp-acc-item:last-child { border-bottom: none; }
.tp-acc-header { display: flex; align-items: center; gap: 12px; width: 100%; padding: 16px 20px; background: #fff; border: none; font-size: 14px; font-weight: 600; color: #1a1a2e; cursor: pointer; text-align: left; transition: background 0.2s; font-family: 'Montserrat', sans-serif; }
.tp-acc-header:hover { background: #f8f9fa; }
.tp-acc-header.active { background: #f8f9fa; }
.tp-acc-day { background: var(--primary); color: #fff; padding: 3px 12px; border-radius: 4px; font-size: 12px; font-weight: 600; flex-shrink: 0; }
.tp-acc-arrow { margin-left: auto; flex-shrink: 0; transition: transform 0.25s; }
.tp-acc-header.active .tp-acc-arrow { transform: rotate(180deg); }
.tp-acc-q-icon { flex-shrink: 0; color: var(--primary); }
.tp-acc-body { display: none; padding: 0 20px 20px; font-size: 14px; line-height: 1.7; color: #495057; }
.tp-acc-body.open { display: block; }
.tp-acc-content { font-size: 14px; line-height: 1.7; color: #495057; }

/* Sidebar */
.tp-sidebar-sticky { position: sticky; top: 100px; }
.tp-card { background: linear-gradient(135deg, #1a1a2e 0%, #2d2d5e 100%); border-radius: 16px; padding: 28px; color: #fff; margin-bottom: 24px; }
.tp-card-price { margin-bottom: 0; }
.tp-price-box { background: linear-gradient(135deg, #1a1a2e 0%, #2d2d5e 100%); border-radius: 16px; padding: 28px; color: #fff; margin-bottom: 24px; }
.tp-price-label { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.tp-price-value { font-size: 32px; font-weight: 900; font-family: 'Montserrat', sans-serif; }
.tp-price-currency { font-size: 16px; font-weight: 400; color: rgba(255,255,255,0.6); }
.tp-price-per { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.tp-book-btn { display: block; width: 100%; padding: 14px; border-radius: 50px; background: var(--primary); color: #fff; font-size: 14px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; border: none; cursor: pointer; transition: all 0.2s; text-align: center; text-decoration: none; font-family: 'Montserrat', sans-serif; }
.tp-book-btn:hover { background: var(--primary-dark); transform: translateY(-1px); }
.tp-card-form { margin-top: 20px; }
.tp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.tp-form-group { margin-bottom: 16px; }
.tp-form-group label { display: block; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.6); margin-bottom: 6px; }
.tp-input { width: 100%; padding: 10px 14px; border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; background: rgba(255,255,255,0.08); color: #fff; font-size: 14px; font-family: 'Montserrat', sans-serif; outline: none; transition: border-color 0.2s; box-sizing: border-box; }
.tp-input:focus { border-color: var(--primary); }
.tp-input option { background: #1a1a2e; color: #fff; }
textarea.tp-input { resize: vertical; min-height: 60px; }
.tp-form-msg { padding: 12px 16px; margin: 16px; border-radius: 8px; text-align: center; font-weight: 600; font-size: 14px; }
.tp-card-info { background: #f8f9fa; border-radius: 12px; padding: 20px; }
.tp-card-info h3 { font-size: 15px; font-weight: 700; font-family: 'Montserrat', sans-serif; margin-bottom: 16px; color: #1a1a2e; }
.tp-info-list { list-style: none; padding: 0; margin: 0; }
.tp-info-list li { padding: 10px 0; border-bottom: 1px solid #eee; font-size: 13px; color: #495057; line-height: 1.5; }
.tp-info-list li:last-child { border-bottom: none; }
.tp-info-list li strong { color: #1a1a2e; font-weight: 600; }
.tp-quick-info { background: #f8f9fa; border-radius: 12px; padding: 20px; }
.tp-qinfo-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid #eee; }
.tp-qinfo-item:last-child { border-bottom: none; }
.tp-qinfo-icon { flex-shrink: 0; color: var(--primary); }
.tp-qinfo-label { display: block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: #6c757d; margin-bottom: 2px; }
.tp-qinfo-value { font-size: 13px; font-weight: 600; color: #1a1a2e; }

/* ================================
   Review Section (tp-review-*)
   ================================ */
.tp-review-section { margin-top: 40px; padding: 32px; background: #fafafa; border-radius: 16px; border: 1px solid #eee; }
.tp-review-title { font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 700; color: #1a1a2e; margin-bottom: 24px; }
.tp-review-summary { display: flex; gap: 32px; align-items: flex-start; background: #fff; padding: 24px; border-radius: 12px; margin-bottom: 24px; box-shadow: 0 1px 4px rgba(0,0,0,0.04); }
.tp-review-stats { text-align: center; min-width: 160px; }
.tp-review-stars-big { display: flex; gap: 4px; justify-content: center; margin-bottom: 8px; }
.tp-star-filled { fill: #f59e0b; stroke: #f59e0b; }
.tp-review-score { font-size: 42px; font-weight: 900; color: #1a1a2e; line-height: 1; font-family: 'Montserrat', sans-serif; display: block; }
.tp-review-label { font-size: 11px; font-weight: 700; color: #6c757d; letter-spacing: 2px; display: block; margin-top: 4px; }
.tp-review-count { font-size: 12px; color: #adb5bd; display: block; margin-top: 4px; }
.tp-review-criteria { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; min-width: 200px; }
.tp-criterion { display: flex; align-items: center; gap: 8px; }
.tp-criterion-label { font-size: 12px; color: #495057; min-width: 90px; font-weight: 500; }
.tp-criterion-stars { display: flex; gap: 3px; }
.tp-reviews-list { margin-bottom: 24px; }
.tp-review-item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid #eee; }
.tp-review-item:last-child { border-bottom: none; }
.tp-review-avatar { width: 40px; height: 40px; border-radius: 50%; background: #e9ecef; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; color: #6c757d; flex-shrink: 0; overflow: hidden; }
.tp-review-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.tp-review-body { flex: 1; }
.tp-review-meta { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.tp-review-author { font-size: 14px; font-weight: 700; color: #1a1a2e; }
.tp-review-date { font-size: 11px; color: #adb5bd; }
.tp-review-item-stars { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 6px; }
.tp-criterion-mini { display: inline-flex; align-items: center; gap: 4px; background: #f8f9fa; padding: 4px 8px; border-radius: 6px; }
.tp-criterion-mini-label { font-size: 10px; color: #6c757d; font-weight: 500; }
.tp-criterion-mini-stars { display: flex; gap: 2px; }
.tp-review-text { font-size: 13px; line-height: 1.6; color: #495057; }
.tp-review-form { background: #fff; padding: 24px; border-radius: 12px; box-shadow: 0 1px 4px rgba(0,0,0,0.04); }
.tp-review-form-title { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 700; color: #1a1a2e; margin-bottom: 16px; }
.tp-review-login-msg { font-size: 14px; color: #6c757d; text-align: center; padding: 20px; }
.tp-review-login-msg a { color: var(--primary); font-weight: 600; }
.tp-feedback-ratings { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.tp-fb-criterion { display: flex; flex-direction: column; gap: 4px; }
.tp-fb-label { font-size: 13px; font-weight: 600; color: #495057; }
.tp-fb-stars { display: flex; gap: 4px; flex-direction: row-reverse; justify-content: flex-end; }
.tp-fb-stars .tp-star-input { display: none; }
.tp-fb-stars .tp-star-label { cursor: pointer; display: flex; color: #ddd; transition: color 0.15s; }
.tp-fb-stars .tp-star-filled-svg { color: #f59e0b; }
.tp-fb-stars .tp-star-label:hover,
.tp-fb-stars .tp-star-label:hover ~ .tp-star-label { color: #f59e0b; }
.tp-fb-stars .tp-star-input:checked ~ .tp-star-label { color: #f59e0b; }
.tp-fb-field { margin-bottom: 16px; }
.tp-fb-textarea { width: 100%; padding: 12px 16px; border: 1px solid #e9ecef; border-radius: 8px; font-size: 14px; font-family: inherit; resize: vertical; transition: border-color 0.2s; }
.tp-fb-textarea:focus { outline: none; border-color: var(--primary); }
.tp-fb-actions { display: flex; gap: 12px; }
.tp-btn-inquiry, .tp-review-submit { padding: 12px 28px; border-radius: 50px; background: var(--primary); color: #fff; font-size: 14px; font-weight: 700; border: none; cursor: pointer; transition: all 0.2s; font-family: 'Montserrat', sans-serif; }
.tp-btn-inquiry:hover, .tp-review-submit:hover { background: var(--primary-dark); }

/* ================================
   Inner Pages - Page Header
   ================================ */
.inc-page-header { background: #f8f9fa; padding: 40px 0; text-align: center; margin-top: var(--header-height); }
.inc-page-header-sm { padding: 24px 0; }
.inc-page-header h1 { font-size: 36px; font-weight: 800; margin-bottom: 8px; font-family: var(--font-primary); }
.inc-page-header p { font-size: 15px; color: var(--text-light); }
.inc-content-area { padding: 60px 0; }

.inc-breadcrumbs { font-size: 13px; color: var(--text-light); margin-bottom: 16px; }
.inc-breadcrumbs a { color: var(--text-light); text-decoration: none; }
.inc-breadcrumbs a:hover { color: var(--primary); }
.inc-breadcrumbs span { color: var(--text); }

/* ================================
   Inner Pages - Archive Grids
   ================================ */
.inc-grid { display: grid; gap: 24px; }
.inc-hotels-grid, .inc-stories-grid, .inc-destinations-grid { grid-template-columns: repeat(3, 1fr); }
.inc-destinations-grid { display: grid; gap: 24px; grid-template-columns: repeat(3, 1fr); }
.inc-cat-filters { display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; justify-content: center; }
.inc-filter-btn { padding: 10px 22px; border-radius: 50px; border: 1px solid var(--border); background: #fff; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.2s; font-family: 'Montserrat', sans-serif; color: var(--text); text-decoration: none; }
.inc-filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.inc-filter-btn.active, .inc-filter-btn.current { background: var(--primary); color: #fff; border-color: var(--primary); }
.inc-meta { font-size: 12px; color: var(--text-light); }
.inc-nothing { text-align: center; padding: 40px 20px; color: var(--text-light); font-size: 15px; }
.inc-nothing-cta { text-align: center; margin-top: 24px; }

/* General WordPress pagination */
.navigation.pagination { margin-top: 40px; text-align: center; }
.nav-links { display: inline-flex; gap: 6px; align-items: center; flex-wrap: wrap; justify-content: center; }
.nav-links .page-numbers {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 38px; height: 38px; padding: 0 12px;
    border: 1px solid var(--border); border-radius: 50px;
    font-size: 13px; font-weight: 600; color: var(--text);
    text-decoration: none; transition: all 0.2s;
}
.nav-links .page-numbers:hover { border-color: var(--primary); color: var(--primary); }
.nav-links .page-numbers.current { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ================================
   Hotel Archive - Search / Filters
   ================================ */
.inc-hotel-filters { margin-bottom: 32px; }
.inc-search-form { display: flex; gap: 8px; max-width: 400px; }
.inc-search-form input[type="text"] { flex: 1; padding: 10px 14px; border: 1px solid var(--border); border-radius: 50px; font-size: 14px; outline: none; font-family: 'Montserrat', sans-serif; }
.inc-search-form input[type="text"]:focus { border-color: var(--primary); }
.inc-search-form button { background: var(--primary); color: #fff; border: none; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; font-size: 16px; }
.inc-search-count { font-size: 13px; color: #6c757d; margin-bottom: 24px; }
.inc-search-results { display: flex; flex-direction: column; gap: 16px; }
.inc-search-item { display: flex; gap: 20px; background: #fff; border: 1px solid #eee; border-radius: 12px; overflow: hidden; transition: box-shadow 0.2s, border-color 0.2s; }
.inc-search-item:hover { border-color: #e0e0e0; box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.inc-search-item-img { display: block; width: 220px; min-height: 180px; flex-shrink: 0; background-size: cover; background-position: center; background-color: #f8f9fa; text-decoration: none; }
.inc-search-item-placeholder { width: 100%; height: 100%; min-height: 180px; display: flex; align-items: center; justify-content: center; color: #ced4da; }
.inc-search-item-body { flex: 1; padding: 20px 20px 20px 0; display: flex; flex-direction: column; justify-content: center; }
.inc-search-item-type { display: inline-block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--primary); margin-bottom: 6px; }
.inc-search-item-body h3 { font-size: 18px; font-weight: 700; font-family: 'Montserrat', sans-serif; margin-bottom: 8px; }
.inc-search-item-body h3 a { color: #1a1a2e; text-decoration: none; transition: color 0.2s; }
.inc-search-item-body h3 a:hover { color: var(--primary); }
.inc-search-item-body p { font-size: 13px; line-height: 1.6; color: #495057; margin-bottom: 8px; }
.inc-search-item-body .inc-meta { font-size: 12px; color: #adb5bd; }
.inc-search-empty { text-align: center; padding: 60px 20px; }
.inc-search-empty svg { margin-bottom: 16px; color: #adb5bd; }
.inc-search-empty p { font-size: 15px; color: #6c757d; margin-bottom: 20px; }
.inc-search-pagination { margin-top: 40px; text-align: center; }
.inc-search-pagination .page-numbers { display: inline-flex; gap: 4px; }
.inc-search-pagination .page-numbers a,
.inc-search-pagination .page-numbers span { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 8px; font-size: 14px; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.inc-search-pagination .page-numbers a { background: #fff; border: 1px solid #eee; color: #495057; }
.inc-search-pagination .page-numbers a:hover { border-color: var(--primary); color: var(--primary); }
.inc-search-pagination .page-numbers .current { background: var(--primary); color: #fff; border: 1px solid var(--primary); }
.inc-search-pagination .page-numbers .dots { border: none; color: #adb5bd; }
.inc-stars { color: #f59e0b; font-size: 14px; letter-spacing: 2px; }
.inc-amenities { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px; }
.inc-amenity-tag { display: inline-flex; align-items: center; gap: 6px; padding: 6px 16px; background: #f8f9fa; border-radius: 50px; font-size: 13px; color: var(--text); cursor: pointer; }
.inc-amenity-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.inc-amenity-dot { font-size: 12px; color: var(--text-light); }

/* ================================
   Single Hotel - Layout
   ================================ */
.inc-single-layout { display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start; }
.inc-single-primary { min-width: 0; }
.inc-single-section { margin-bottom: 32px; }
.inc-single-section h2 { font-size: 22px; font-weight: 700; margin-bottom: 16px; border-bottom: 2px solid #f0f0f0; padding-bottom: 12px; font-family: var(--font-primary); }
.inc-content { font-size: 15px; line-height: 1.7; color: #495057; }
.inc-amenities-list { display: flex; flex-wrap: wrap; gap: 8px; }
.inc-single-sidebar { position: sticky; top: 100px; }
.inc-sidebar-card { background: #f8f9fa; border-radius: 12px; padding: 24px; margin-bottom: 20px; }
.inc-sidebar-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; font-family: var(--font-primary); }
.inc-hotel-price { font-size: 24px; font-weight: 900; color: var(--primary); }
.inc-hotel-price small { font-size: 14px; font-weight: 400; color: var(--text-light); }
.inc-info-list { list-style: none; padding: 0; margin: 12px 0 0; }
.inc-info-list li { padding: 8px 0; border-bottom: 1px solid #eee; font-size: 13px; color: var(--text); }
.inc-info-list li:last-child { border-bottom: none; }
.inc-info-list a { color: var(--primary); }
.inc-enquiry-form { display: flex; flex-direction: column; gap: 10px; }
.inc-enquiry-form input, .inc-enquiry-form textarea { width: 100%; padding: 10px 14px; border: 1px solid var(--border); border-radius: 8px; font-size: 14px; font-family: 'Montserrat', sans-serif; outline: none; box-sizing: border-box; }
.inc-enquiry-form input:focus, .inc-enquiry-form textarea:focus { border-color: var(--primary); }
.inc-form-row { display: flex; gap: 8px; }
.inc-form-row input { flex: 1; }
.inc-btn-block { width: 100%; justify-content: center; }
.inc-auth-section { padding: 60px 0; min-height: calc(100vh - var(--header-height) - 300px); display: flex; align-items: center; }
.inc-auth-form { max-width: 440px; margin: 0 auto; background: #fff; border: 1px solid #eee; border-radius: 16px; padding: 40px; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.inc-form { display: flex; flex-direction: column; gap: 0; }
.inc-form-group { margin-bottom: 20px; }
.inc-form-group label { display: block; font-size: 13px; font-weight: 600; color: #1a1a2e; margin-bottom: 6px; font-family: 'Montserrat', sans-serif; }
.inc-form-group input[type="text"],
.inc-form-group input[type="email"],
.inc-form-group input[type="password"] { width: 100%; padding: 12px 16px; border: 1px solid #e9ecef; border-radius: 8px; font-size: 14px; font-family: 'Montserrat', sans-serif; outline: none; transition: border-color 0.2s; box-sizing: border-box; background: #fff; color: #1a1a2e; }
.inc-form-group input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(229,57,53,0.08); }
.inc-form-group input::placeholder { color: #adb5bd; }
.inc-form-checkbox { display: flex; align-items: center; }
.inc-form-checkbox label { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 400; color: #495057; cursor: pointer; margin-bottom: 0; }
.inc-form-checkbox input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--primary); }
.inc-auth-response { margin-top: 4px; font-size: 13px; padding: 10px 14px; border-radius: 8px; display: none; }
.inc-auth-response.error { display: block; background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.inc-auth-response.success { display: block; background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }
.inc-auth-alt { text-align: center; margin-top: 20px; font-size: 13px; color: #6c757d; }
.inc-auth-alt a { color: var(--primary); font-weight: 600; text-decoration: none; }
.inc-auth-alt a:hover { text-decoration: underline; }
.inc-enquiry-response { margin-top: 12px; }
.inc-card.hotel-card .inc-card-img img { height: 220px; }
.inc-card.hotel-card .inc-amenities { padding: 0 20px 20px; }

/* ================================
   Celebration Detail (celeb-detail-*)
   ================================ */
.celeb-detail-hero { position: relative; height: 60vh; min-height: 400px; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; }
.celeb-detail-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.3), rgba(0,0,0,0.6)); }
.celeb-detail-hero-content { position: relative; z-index: 2; text-align: center; color: #fff; padding: 0 20px; }
.celeb-detail-badge { display: inline-block; padding: 6px 18px; border-radius: 50px; background: var(--primary); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.celeb-detail-hero-content h1 { font-size: 48px; font-weight: 900; margin-bottom: 8px; }
.celeb-detail-meta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.celeb-detail-meta span { font-size: 14px; color: rgba(255,255,255,0.7); }
.celeb-detail-body { padding: 60px 0; }
.celeb-detail-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; }
.celeb-detail-primary, .celeb-detail-main { min-width: 0; }
.celeb-detail-content { font-size: 16px; line-height: 1.8; color: #495057; }
.celeb-detail-main h2 { font-size: 22px; font-weight: 700; margin-bottom: 16px; }
.celeb-detail-main p { margin-bottom: 16px; line-height: 1.7; color: #495057; }
.celeb-detail-sidebar { position: sticky; top: 100px; }
.celeb-detail-card, .celeb-detail-info-card { background: #f8f9fa; border-radius: 12px; padding: 24px; margin-bottom: 20px; }
.celeb-detail-card h3, .celeb-detail-info-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 16px; font-family: var(--font-primary); }
.celeb-detail-info-list { list-style: none; padding: 0; margin: 0; }
.celeb-detail-info-list li { padding: 8px 0; border-bottom: 1px solid #eee; font-size: 14px; }
.celeb-detail-info-card ul { list-style: none; padding: 0; margin: 0; }
.celeb-detail-info-card ul li { padding: 8px 0; border-bottom: 1px solid #eee; font-size: 14px; }
.celeb-detail-back-btn, .celeb-detail-back { color: var(--primary); font-weight: 600; text-decoration: none; }
.celeb-detail-back-btn { display: inline-block; margin-top: 16px; }
.celeb-detail-back { display: block; text-align: center; margin-top: 16px; }
.celeb-detail-related { padding: 60px 0; background: #f8f9fa; }
.celeb-detail-related h2 { text-align: center; font-size: 28px; font-weight: 800; margin-bottom: 32px; font-family: var(--font-primary); }
.celeb-detail-related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.celeb-detail-related-card { display: block; text-decoration: none; border-radius: 12px; overflow: hidden; }
.celeb-related-card-img { height: 280px; background-size: cover; background-position: center; position: relative; }
.celeb-related-card-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.7)); display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; }
.celeb-related-badge { display: inline-block; padding: 4px 12px; border-radius: 50px; background: var(--primary); font-size: 11px; font-weight: 700; color: #fff; margin-bottom: 8px; align-self: flex-start; }
.celeb-related-card-overlay h3 { font-size: 16px; font-weight: 700; color: #fff; margin: 0; }

/* ================================
   Celebration Page V2 (clb-*) — Festivals & Events
   ================================ */
.clb-page { overflow-x: hidden; }
.clb-hero { position: relative; min-height: 90vh; display: flex; align-items: center; justify-content: center; background-size: cover; background-position: center; background-attachment: fixed; }
.clb-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.75) 100%); }
.clb-hero-particles { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,0.12) 1px, transparent 1px); background-size: 40px 40px; pointer-events: none; }
.clb-hero-content { position: relative; z-index: 2; text-align: center; color: #fff; padding: 100px 20px 60px; max-width: 900px; }
.clb-hero-badges { display: flex; gap: 10px; justify-content: center; margin-bottom: 20px; }
.clb-badge { display: inline-block; padding: 7px 22px; border-radius: 50px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: #fff; }
.clb-hero-title { font-size: clamp(42px, 8vw, 80px); font-weight: 900; margin: 0 0 24px; font-family: 'Playfair Display', serif; line-height: 1.1; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.clb-hero-meta { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.clb-meta-item { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,0.85); font-weight: 500; padding: 6px 16px; background: rgba(255,255,255,0.1); border-radius: 30px; backdrop-filter: blur(4px); }
.clb-hero-scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.6); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; z-index: 2; animation: clb-bounce 2s infinite; }
@keyframes clb-bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* Info Strip */
.clb-info-strip { padding: 0; }
.clb-info-strip-inner { display: flex; justify-content: center; gap: 0; flex-wrap: wrap; }
.clb-info-item { padding: 18px 32px; text-align: center; border-right: 1px solid rgba(255,255,255,0.2); color: #fff; }
.clb-info-item:last-child { border-right: none; }
.clb-info-label { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; opacity: 0.75; margin-bottom: 4px; }
.clb-info-value { display: block; font-size: 15px; font-weight: 700; }

/* Section Shared */
.clb-section-header { text-align: center; margin-bottom: 48px; }
.clb-section-label { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 8px; }
.clb-section-header h2 { font-size: clamp(30px, 5vw, 44px); font-weight: 900; margin: 0 0 12px; font-family: 'Playfair Display', serif; color: #1a1a2e; }
.clb-section-header p { font-size: 16px; color: #6c757d; margin: 0; }

/* About */
.clb-about { padding: 80px 0; background: #fff; }
.clb-about-layout { display: grid; grid-template-columns: 1fr 280px; gap: 48px; align-items: start; }
.clb-about-text { font-size: 16px; line-height: 1.8; color: #495057; }
.clb-about-text .clb-content { margin-bottom: 20px; }
.clb-about-text p { margin-bottom: 16px; }
.clb-about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.clb-stat-card { border-radius: 16px; padding: 24px 16px; text-align: center; }
.clb-stat-number { display: block; font-size: 32px; font-weight: 900; font-family: 'Playfair Display', serif; margin-bottom: 4px; }
.clb-stat-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: #6c757d; }

/* Highlights */
.clb-highlights { padding: 80px 0; }
.clb-highlights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.clb-highlight-card { background: #fff; border-radius: 16px; padding: 32px 24px; text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: transform 0.3s, box-shadow 0.3s; }
.clb-highlight-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.clb-highlight-icon { width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; border: 3px solid; }
.clb-highlight-card h3 { font-size: 18px; font-weight: 700; margin: 0 0 10px; color: #1a1a2e; }
.clb-highlight-card p { font-size: 14px; color: #6c757d; line-height: 1.6; margin: 0; }

/* Timeline */
.clb-schedule { padding: 80px 0; background: #fff; }
.clb-timeline { position: relative; max-width: 800px; margin: 0 auto; padding: 20px 0; }
.clb-timeline-line { position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%); width: 3px; border-radius: 3px; }
.clb-timeline-item { position: relative; width: 50%; padding: 0 40px 40px; }
.clb-timeline-left { left: 0; text-align: right; }
.clb-timeline-right { left: 50%; text-align: left; }
.clb-timeline-dot { position: absolute; top: 4px; width: 16px; height: 16px; border-radius: 50%; z-index: 2; }
.clb-timeline-left .clb-timeline-dot { right: -8px; }
.clb-timeline-right .clb-timeline-dot { left: -8px; }
.clb-timeline-card { background: #f8f9fa; border-radius: 12px; padding: 20px 24px; display: inline-block; text-align: left; }
.clb-timeline-time { display: inline-block; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.clb-timeline-card h4 { font-size: 17px; font-weight: 700; margin: 0 0 6px; color: #1a1a2e; }
.clb-timeline-card p { font-size: 13px; color: #6c757d; margin: 0; line-height: 1.5; }

/* Gallery */
.clb-gallery { padding: 80px 0; }
.clb-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 8px; padding: 0 20px; max-width: 1300px; margin: 0 auto; }
.clb-gallery-item { position: relative; overflow: hidden; border-radius: 8px; cursor: pointer; }
.clb-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.clb-gallery-item:hover img { transform: scale(1.08); }
.clb-gallery-featured { grid-column: span 2; grid-row: span 2; }
.clb-gallery-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.clb-gallery-item:hover .clb-gallery-overlay { opacity: 1; }
.clb-gallery-icon { color: #fff; font-size: 32px; }

/* CTA */
.clb-cta { padding: 80px 0; text-align: center; }
.clb-cta-content { max-width: 600px; margin: 0 auto; color: #fff; }
.clb-cta-content h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 900; margin: 0 0 16px; font-family: 'Playfair Display', serif; }
.clb-cta-content p { font-size: 16px; opacity: 0.85; margin-bottom: 32px; line-height: 1.6; }
.clb-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.clb-btn { display: inline-flex; align-items: center; padding: 14px 32px; border-radius: 50px; font-size: 14px; font-weight: 700; text-decoration: none; transition: all 0.3s; cursor: pointer; border: 2px solid transparent; }
.clb-btn-light { background: #fff; color: #1a1a2e; }
.clb-btn-light:hover { background: transparent; color: #fff; border-color: #fff; }
.clb-btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.clb-btn-outline-light:hover { background: #fff; color: #1a1a2e; border-color: #fff; }

/* Related */
.clb-related { padding: 80px 0; background: #f8f9fa; }
.clb-related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.clb-related-card { display: block; text-decoration: none; border-radius: 16px; overflow: hidden; background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.06); transition: transform 0.3s, box-shadow 0.3s; }
.clb-related-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
.clb-related-img { height: 200px; background-size: cover; background-position: center; position: relative; }
.clb-related-img-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5)); }
.clb-related-badge { position: absolute; top: 12px; left: 12px; padding: 4px 14px; border-radius: 50px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: #fff; z-index: 2; }
.clb-related-body { padding: 16px 18px 18px; }
.clb-related-month { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.clb-related-body h3 { font-size: 16px; font-weight: 700; color: #1a1a2e; margin: 0 0 8px; font-family: var(--font-primary); }
.clb-related-cat { display: inline-block; padding: 3px 10px; border-radius: 50px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }

/* ================================
   Story Single (inc-story-*)
   ================================ */
.inc-reading-progress { position: fixed; top: 72px; left: 0; height: 3px; background: var(--primary); z-index: 999; width: 0; transition: width 0.1s; }
.inc-story-single { background: #fff; }
.inc-story-hero { position: relative; height: 70vh; min-height: 480px; background-size: cover; background-position: center; display: flex; align-items: flex-end; }
.inc-story-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.65) 100%); }
.inc-story-hero-content { position: relative; z-index: 2; width: 100%; padding-bottom: 60px; box-sizing: border-box; }
.inc-story-hero-breadcrumbs { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 12px; }
.inc-story-hero-breadcrumbs a { color: rgba(255,255,255,0.6); text-decoration: none; }
.inc-story-hero-breadcrumbs a:hover { color: #fff; }
.inc-bc-sep { margin: 0 8px; }
.inc-story-hero-badge { display: inline-block; padding: 6px 18px; border-radius: 50px; background: var(--primary); font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.inc-story-hero-content h1 { font-size: 42px; font-weight: 900; color: #fff; margin-bottom: 16px; max-width: 700px; }
.inc-story-hero-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; color: rgba(255,255,255,0.7); font-size: 14px; }
.inc-story-hero-author { display: flex; align-items: center; gap: 8px; }
.inc-story-author-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
.inc-story-author-name { font-weight: 600; color: #fff; }
.inc-meta-divider { color: rgba(255,255,255,0.3); }
.inc-story-scroll-indicator { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 2; text-align: center; color: rgba(255,255,255,0.5); font-size: 11px; text-transform: uppercase; letter-spacing: 2px; }
.inc-scroll-arrow { width: 16px; height: 16px; border-right: 2px solid rgba(255,255,255,0.5); border-bottom: 2px solid rgba(255,255,255,0.5); transform: rotate(45deg); margin: 4px auto; animation: inc-scroll-bounce 2s infinite; }
@keyframes inc-scroll-bounce { 0%,100%{transform:rotate(45deg) translate(0,0);opacity:1} 50%{transform:rotate(45deg) translate(4px,4px);opacity:.5} }
.inc-story-body { padding: 60px 0; }
.inc-story-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; }
.inc-story-main { min-width: 0; }
.inc-story-content { font-size: 16px; line-height: 1.9; color: #333; }
.inc-story-content p { margin-bottom: 20px; }
.inc-story-content p:first-child::first-letter { font-size: 56px; font-weight: 900; float: left; line-height: 1; margin-right: 8px; color: var(--primary); }
.inc-story-location-card { display: flex; gap: 16px; background: #f0f7ff; border-radius: 12px; padding: 20px; margin: 24px 0; }
.inc-loc-icon { font-size: 32px; flex-shrink: 0; }
.inc-loc-body h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.inc-loc-body p { font-size: 14px; color: #495057; margin: 0; }
.inc-story-gallery-section { margin: 40px 0; }
.inc-story-gallery-section h2 { font-size: 22px; font-weight: 700; margin-bottom: 16px; }
.inc-story-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.inc-story-gallery-grid .inc-gallery-item { display: block; overflow: hidden; border-radius: 8px; position: relative; }
.inc-story-gallery-grid .inc-gallery-item img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.3s; }
.inc-story-gallery-grid .inc-gallery-item:hover img { transform: scale(1.05); }
.inc-gallery-span-2 { grid-column: span 2; grid-row: span 2; }
.inc-gallery-tall { grid-row: span 2; }
.inc-story-gallery-grid .inc-gallery-item-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.3); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; pointer-events: none; }
.inc-story-gallery-grid .inc-gallery-item:hover .inc-gallery-item-overlay { opacity: 1; }
.inc-story-gallery-grid .inc-gallery-item-overlay span { color: #fff; font-size: 24px; }
.inc-story-author-card { display: flex; gap: 20px; background: #f8f9fa; border-radius: 12px; padding: 24px; margin: 40px 0; }
.inc-sac-avatar { flex-shrink: 0; }
.inc-sac-avatar img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }
.inc-sac-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.inc-sac-body p { font-size: 14px; color: #495057; margin-bottom: 12px; }
.inc-btn-sm { padding: 8px 18px; font-size: 12px; }
.inc-btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.inc-btn-outline:hover { background: var(--primary); color: #fff; }

/* ================================
   Agent Dashboard - Redesign
   ================================ */

/* Shared utilities */
.dash-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 20px; border-radius: 50px;
    font-size: 13px; font-weight: 700; font-family: var(--font-primary);
    text-decoration: none; border: none; cursor: pointer;
    transition: all 0.25s; white-space: nowrap;
}
.dash-btn-primary {
    background: var(--primary); color: #fff;
    box-shadow: 0 4px 14px rgba(229,57,53,0.3);
}
.dash-btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(229,57,53,0.4); }
.dash-btn-outline {
    background: transparent; color: var(--text);
    border: 1.5px solid var(--border);
}
.dash-btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.dash-btn-ghost {
    background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.15); backdrop-filter: blur(4px);
}
.dash-btn-ghost:hover { background: rgba(255,255,255,0.2); color: #fff; }

/* Hero */
.dash-hero {
    position: relative; padding: calc(var(--header-height) + 40px) 0 0;
    overflow: hidden;
}
.dash-hero-bg {
    position: absolute; inset: 0; height: 280px; z-index: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d5e 50%, #e53935 100%);
}
.dash-hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(229,57,53,0.12) 0%, transparent 50%);
    pointer-events: none;
}
.dash-hero-inner {
    position: relative; z-index: 1;
    display: flex; align-items: center; justify-content: space-between;
    padding: 32px 0; gap: 20px; flex-wrap: wrap;
}
.dash-hero-left {
    display: flex; align-items: center; gap: 20px;
}
.dash-avatar {
    width: 56px; height: 56px; border-radius: 50%; object-fit: cover;
    border: 3px solid rgba(255,255,255,0.3); flex-shrink: 0;
}
.dash-hero-text h1 {
    font-size: 24px; font-weight: 800; color: #fff;
    margin: 0 0 2px; line-height: 1.2;
}
.dash-hero-text p {
    font-size: 14px; color: rgba(255,255,255,0.6); margin: 0;
}
.dash-hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Stats */
.dash-stats-wrap {
    position: relative; z-index: 1; padding: 0 0 24px;
    margin-top: -20px;
}
.dash-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 20px; }
.dash-stat-card {
    display: flex; align-items: center; gap: 16px;
    background: #fff; border-radius: var(--radius); padding: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: transform 0.25s, box-shadow 0.25s;
}
.dash-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.dash-stat-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.dash-stat-num { display: block; font-size: 24px; font-weight: 900; color: var(--text); line-height: 1.2; }
.dash-stat-label { display: block; font-size: 12px; color: var(--text-light); font-weight: 500; }

/* Quick actions */
.dash-quick-actions {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.dash-qa-card {
    display: flex; align-items: center; gap: 14px;
    padding: 18px 20px; border-radius: var(--radius);
    background: #fff; border: 1px solid var(--border);
    text-decoration: none; color: inherit;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.25s;
}
.dash-qa-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-color: var(--primary);
}
.dash-qa-card.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(229,57,53,0.15);
}
.dash-qa-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.dash-qa-label { flex: 1; font-size: 15px; font-weight: 700; color: var(--text); }
.dash-qa-arrow { font-size: 18px; color: var(--text-light); transition: transform 0.25s; }
.dash-qa-card:hover .dash-qa-arrow { transform: translateX(4px); color: var(--primary); }

/* Tabs */
.dash-tabs {
    display: flex; gap: 4px; margin-bottom: 24px;
    background: var(--bg-alt); border-radius: 12px; padding: 4px;
    overflow-x: auto;
}
.dash-tab {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 18px; border-radius: 10px;
    font-size: 13px; font-weight: 600; color: var(--text-light);
    text-decoration: none; transition: all 0.2s; white-space: nowrap;
}
.dash-tab:hover { color: var(--text); background: rgba(0,0,0,0.03); }
.dash-tab.active {
    background: #fff; color: var(--primary);
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.dash-tab svg { flex-shrink: 0; }

/* Panel */
.dash-main { padding: 0 0 80px; }
.dash-panel {
    background: #fff; border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 24px;
}
.dash-panel-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 20px; flex-wrap: wrap; gap: 12px;
}
.dash-panel-header h2 { font-size: 20px; font-weight: 800; margin: 0; }

/* Table */
.dash-table-wrap { overflow-x: auto; margin: 0 -24px; padding: 0 24px; }
.dash-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.dash-table th {
    text-align: left; padding: 12px 16px;
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.8px; color: var(--text-light);
    border-bottom: 2px solid var(--border);
    background: var(--bg-alt); white-space: nowrap;
}
.dash-table td { padding: 14px 16px; border-bottom: 1px solid #f0f0f0; vertical-align: middle; }
.dash-table tbody tr:last-child td { border-bottom: none; }
.dash-table tbody tr:hover td { background: #fafafa; }
.dash-title-cell a { color: var(--text); text-decoration: none; font-weight: 600; }
.dash-title-cell a:hover { color: var(--primary); }
.dash-date-cell { color: var(--text-light); font-size: 13px; white-space: nowrap; }
.dash-price-cell { font-weight: 700; color: var(--primary); white-space: nowrap; }
.dash-actions-cell { white-space: nowrap; }
.dash-action-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 34px; height: 34px; border-radius: 8px;
    border: none; background: transparent; color: var(--text-light);
    cursor: pointer; transition: all 0.2s; text-decoration: none;
}
.dash-action-btn:hover { background: var(--bg-alt); color: var(--text); }
.dash-action-danger:hover { background: #fef2f2; color: #dc2626; }

/* Badges */
.dash-badge {
    display: inline-block; padding: 4px 12px; border-radius: 50px;
    font-size: 11px; font-weight: 700; text-transform: capitalize;
    letter-spacing: 0.3px;
}
.dash-badge-publish { background: #d4edda; color: #155724; }
.dash-badge-draft { background: #f8d7da; color: #721c24; }
.dash-badge-pending { background: #fff3cd; color: #856404; }
.dash-badge-trash { background: #f1f1f1; color: #6c757d; }

/* Empty */
.dash-empty {
    text-align: center; padding: 60px 20px;
}
.dash-empty svg { color: var(--text-light); margin-bottom: 16px; }
.dash-empty p { font-size: 15px; color: var(--text-light); margin-bottom: 20px; }

/* Form card */
.dash-form-card {
    max-width: 840px;
}
.dash-form { display: flex; flex-direction: column; gap: 0; }
.dash-form-group { margin-bottom: 20px; }
.dash-form-group label {
    display: block; font-size: 13px; font-weight: 600;
    color: var(--text); margin-bottom: 6px;
}
.dash-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 0; }
.dash-form select,
.dash-form input[type="text"],
.dash-form input[type="number"],
.dash-form input[type="date"],
.dash-form input[type="email"],
.dash-form input[type="url"],
.dash-form textarea {
    width: 100%; padding: 12px 16px;
    border: 1px solid var(--border); border-radius: 8px;
    font-size: 14px; font-family: var(--font-primary);
    outline: none; background: var(--bg); color: var(--text);
    box-sizing: border-box; transition: border-color 0.2s;
}
.dash-form select:focus,
.dash-form input:focus,
.dash-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(229,57,53,0.08);
}
.dash-form-actions {
    display: flex; align-items: center; gap: 12px;
}
.dash-form-msg { display: inline-block; font-size: 13px; font-weight: 500; }
.dash-form-msg.success { color: #28a745; }
.dash-form-msg.error { color: #dc3545; }

.dash-upload-btn { margin-bottom: 8px; }
.dash-upload-preview { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.dash-upload-preview img { width: 100px; height: 80px; object-fit: cover; border-radius: 8px; border: 1px solid var(--border); }

@media (max-width: 576px) { .dash-form-row { grid-template-columns: 1fr; gap: 0; } }

.inc-story-sidebar { position: sticky; top: 100px; }
.inc-ss-card { background: #f8f9fa; border-radius: 12px; padding: 20px; margin-bottom: 16px; }
.inc-ss-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--text); font-family: var(--font-primary); }
.inc-ss-list { list-style: none; padding: 0; margin: 0; }
.inc-ss-list li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #eee; font-size: 13px; }
.inc-ss-list li:last-child { border-bottom: none; }
.inc-ss-stars { color: #f59e0b; }
.inc-ss-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.inc-ss-tag { padding: 4px 12px; border-radius: 50px; background: #fff; border: 1px solid var(--border); font-size: 12px; color: var(--text); text-decoration: none; }
.inc-ss-tag:hover { border-color: var(--primary); color: var(--primary); }
.inc-ss-share-icons { display: flex; gap: 8px; }
.inc-share-btn { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-light); transition: all 0.2s; text-decoration: none; }
.inc-share-btn:hover { color: #fff; }
.inc-share-fb:hover { background: #1877f2; }
.inc-share-tw:hover { background: #000; }
.inc-share-pin:hover { background: #e60023; }
.inc-share-email:hover { background: #666; }

/* ================================
   Related Stories
   ================================ */
.inc-related-stories { padding: 60px 0; background: #f8f9fa; }
.inc-section-header { text-align: center; margin-bottom: 40px; }
.inc-section-header h2 { font-size: 28px; font-weight: 800; font-family: var(--font-primary); }
.inc-section-header p { font-size: 15px; color: var(--text-light); }

/* ================================
   Gallery Page (inc-gallery-*)
   ================================ */
.inc-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.inc-gallery-item { display: block; position: relative; overflow: hidden; border-radius: 8px; }
.inc-gallery-item img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.3s; }
.inc-gallery-item:hover img { transform: scale(1.05); }
.inc-gallery-item-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.3); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; pointer-events: none; }
.inc-gallery-item:hover .inc-gallery-item-overlay { opacity: 1; }
.inc-gallery-item-overlay span { color: #fff; font-size: 28px; }
.inc-lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 5000; align-items: center; justify-content: center; }
.inc-lightbox.active { display: flex; }
.inc-lightbox-close { position: absolute; top: 20px; right: 30px; font-size: 40px; color: #fff; cursor: pointer; z-index: 10; line-height: 1; }
.inc-lightbox-prev, .inc-lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); font-size: 48px; color: #fff; cursor: pointer; z-index: 10; padding: 10px; user-select: none; }
.inc-lightbox-prev { left: 20px; }
.inc-lightbox-next { right: 20px; }
.inc-lightbox-content { max-width: 90vw; max-height: 80vh; }
.inc-lightbox-content img { max-width: 100%; max-height: 80vh; object-fit: contain; }
.inc-lightbox-caption { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.7); font-size: 14px; }

/* ================================
   Why Choose Us (wc-*)
   ================================ */
.wc-section { padding: 80px 0; background: #f8faff; background-image: url('../images/abstract-flow.svg'); background-size: cover; background-position: center; }
.wc-heading { text-align: center; margin-bottom: 56px; }
.wc-label {
    display: inline-block; font-size: 14px; font-weight: 800;
    letter-spacing: 4px; color: var(--primary); text-transform: uppercase;
    margin-bottom: 8px; font-family: 'Poppins', sans-serif;
}
.wc-heading h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(32px, 5vw, 48px); font-weight: 900;
    color: var(--text); text-transform: uppercase; letter-spacing: 4px;
    margin: 0;
}
.wc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.wc-item { text-align: center; padding: 32px 20px; border-radius: 16px; transition: all 0.3s; }
.wc-item:hover { background: #f8f9fa; transform: translateY(-4px); }
.wc-icon {
    width: 64px; height: 64px; margin: 0 auto 20px;
    background: rgba(229,57,53,0.08); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); transition: all 0.3s;
}
.wc-item:hover .wc-icon { background: var(--primary); color: #fff; }
.wc-item-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px; font-weight: 700; color: var(--text);
    margin-bottom: 10px;
}
.wc-item-desc { font-size: 14px; color: var(--text-light); line-height: 1.6; margin: 0; }

/* ================================
   FAQ Section (faq-*)
   ================================ */
.faq-section { padding: 80px 0; background: #f8f9fa; background-image: url('../images/faq-bg.svg'); background-size: cover; background-position: center; }
.faq-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.faq-label {
    display: inline-block; font-size: 14px; font-weight: 800;
    letter-spacing: 4px; color: var(--primary); text-transform: uppercase;
    margin-bottom: 8px; font-family: 'Poppins', sans-serif;
}
.faq-heading h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 4vw, 40px); font-weight: 900;
    color: var(--text); margin: 0 0 12px; letter-spacing: 2px;
}
.faq-heading p { font-size: 15px; color: var(--text-light); line-height: 1.6; margin: 0 0 32px; max-width: 500px; }
.faq-accordion { display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: #fff; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); }
.faq-question {
    display: flex; align-items: center; gap: 12px; width: 100%;
    padding: 18px 20px; background: #fff; border: none;
    font-size: 14px; font-weight: 600; color: var(--text);
    cursor: pointer; text-align: left; transition: background 0.2s;
    font-family: 'Montserrat', sans-serif;
}
.faq-question:hover { background: #f8f9fa; }
.faq-question span { flex: 1; }
.faq-arrow { flex-shrink: 0; transition: transform 0.25s; color: var(--primary); }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 20px 18px; font-size: 14px; line-height: 1.7; color: #495057; }
.faq-item.open .faq-answer { display: block; }
.faq-image {
    border-radius: 16px; overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d5e 100%);
    min-height: 400px; display: flex; align-items: center; justify-content: center;
}
.faq-image img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; }

/* ================================
   Google Reviews (gr-*)
   ================================ */
.gr-section { padding: 80px 0; background: #fff; overflow: hidden; }
.gr-heading { text-align: center; margin-bottom: 48px; }
.gr-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 18px; border-radius: 50px;
    background: #f0f0f0; font-size: 13px; font-weight: 700;
    color: var(--text); margin-bottom: 12px;
}
.gr-rating { display: flex; align-items: center; gap: 12px; justify-content: center; flex-wrap: wrap; }
.gr-score { font-size: 42px; font-weight: 900; color: var(--text); font-family: 'Montserrat', sans-serif; }
.gr-stars { display: flex; gap: 2px; }
.gr-total { font-size: 14px; color: var(--text-light); }
.gr-track {
    display: flex; gap: 20px; overflow-x: auto; padding: 8px 4px 16px;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.gr-track::-webkit-scrollbar { display: none; }
.gr-card {
    flex: 0 0 calc(33.333% - 14px); min-width: 280px; scroll-snap-align: start;
    background: #f8f9fa; border-radius: 16px; padding: 24px;
    border: 1px solid var(--border); transition: all 0.3s;
}
.gr-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.gr-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.gr-avatar {
    width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
    background: var(--primary); color: #fff; display: flex;
    align-items: center; justify-content: center;
    font-size: 14px; font-weight: 700;
}
.gr-user { flex: 1; display: flex; flex-direction: column; }
.gr-name { font-size: 14px; font-weight: 700; color: var(--text); }
.gr-date { font-size: 11px; color: var(--text-light); }
.gr-google-icon { flex-shrink: 0; }
.gr-card-stars { display: flex; gap: 2px; margin-bottom: 10px; }
.gr-text { font-size: 13px; line-height: 1.6; color: #495057; margin: 0; }

/* ================================
   Ad Banners - Mobile (ab-*)
   ================================ */
@media (max-width: 768px) {
    .ab-wrap { height: 160px; border-radius: 20px; }
    .ab-content { padding: 0 20px; flex-wrap: wrap; gap: 10px; }
    .ab-badge { font-size: 8px; padding: 2px 8px; }
    .ab-headline { font-size: 16px; }
    .ab-subheadline { font-size: 12px; }
    .ab-cta { font-size: 11px; padding: 6px 16px; }
}

/* ================================
   Responsive - Front Page Sections
   ================================ */
@media (max-width: 1400px) {
    .attr-card > a { height: 50vh; min-height: 300px; max-height: 560px; }
    .attr-section .container-fluid { padding: 0 32px; }
    .inc-itineraries-section .container-fluid { padding: 0 32px; }
    .celebration-section .container-fluid { padding: 0 32px; }
    .dest-grid-section .container-fluid { padding: 0 32px; }
    .attr-section { padding: 30px 0 50px; }
    .attr-bottom { gap: 10px; padding-top: 14px; }
    .attr-arrow { width: 32px; height: 32px; }
    .attr-arrow svg { width: 16px; height: 16px; }
    .attr-cta { padding: 10px 24px; font-size: 12px; letter-spacing: 1px; }
}

@media (max-width: 1200px) {
    .inc-itinerary-grid { grid-template-columns: repeat(2, 1fr); }
    .ph-title { font-size: 46px; }
    .ph-nav-item > a { padding: 0 14px; font-size: 12px; }
    .fd-heading { font-size: 90px; letter-spacing: 12px; }
    .dest-hero-heading { font-size: 60px; letter-spacing: 10px; }
    .dest-nav-item a { padding: 0 14px; font-size: 12px; }
}

@media (max-width: 1024px) {
    .attr-section .container-fluid { padding: 0 24px; }
    .inc-itineraries-section .container-fluid { padding: 0 24px; }
    .celebration-section .container-fluid { padding: 0 24px; }
    .dest-grid-section .container-fluid { padding: 0 24px; }
    .dest-grid-row { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .ph-nav { display: none; }
    .ph-hamburger { display: flex; }
    .ph-hero { min-height: 600px; }
    .ph-title { font-size: 40px; }
    .ph-side-btn { display: none; }
    .fd-hero { height: 70vh; min-height: 520px; }
    .fd-heading { font-size: 72px; letter-spacing: 10px; }
    .fd-subtitle { font-size: 18px; letter-spacing: 4px; }
    .dest-hero { height: 70vh; min-height: 520px; }
    .dest-hero-content { padding-top: 100px; }
    .dest-hero-heading { font-size: 48px; letter-spacing: 8px; }
    .dest-hero-subtitle { font-size: 17px; letter-spacing: 4px; }
    .dest-nav-center { display: none; }
    .dest-hamburger { display: flex; }
    .dest-mobile-menu { width: 100%; }
    .celeb-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 768px) {
    .attr-section .container-fluid { padding: 0 16px; }
    .inc-itineraries-section .container-fluid { padding: 0 16px; }
    .celebration-section .container-fluid { padding: 0 16px; }
    .dest-grid-section .container-fluid { padding: 0 16px; }
    .inc-itinerary-grid { grid-template-columns: 1fr; }
    .inc-itineraries-section { padding: 60px 0; }
    .celebration-section { padding: 60px 0; }
    .dest-grid-section { padding: 60px 0; }
    .celeb-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .dest-grid-row { grid-template-columns: 1fr; gap: 16px; }
    .dest-card { min-height: 440px; }
    .ph-hero { height: 90vh; min-height: 520px; }
    .ph-title { font-size: 32px; line-height: 1.2; }
    .ph-subtitle { font-size: 12px; letter-spacing: 2px; padding: 6px 14px; }
    .ph-desc { font-size: 15px; }
    .ph-content { padding-bottom: 120px; }
    .ph-dots { bottom: 100px; }
    .ph-arrow { width: 40px; height: 40px; font-size: 22px; }
    .ph-arrow-prev { left: 12px; }
    .ph-arrow-next { right: 12px; }
    .ph-cat { font-size: 11px; padding: 6px 12px; }
    .ph-mobile-menu { width: 100%; }
    .fd-hero { height: 80vh; min-height: 480px; max-height: 700px; }
    .fd-heading { font-size: 52px; letter-spacing: 6px; }
    .fd-subtitle { font-size: 16px; letter-spacing: 3px; }
    .fd-bottom { padding: 0 20px 36px; }
    .fd-bottom-row { gap: 16px; margin-bottom: 14px; }
    .fd-arrow { width: 34px; height: 34px; }
    .fd-arrow svg { width: 18px; height: 18px; }
    .fd-loc-display { min-width: 140px; }
    .fd-loc-label { font-size: 17px; }
    .fd-cta-btn { padding: 12px 36px; font-size: 13px; }
    .dest-hero { height: 80vh; min-height: 480px; max-height: 700px; }
    .dest-hero-content { padding-top: 90px; }
    .dest-hero-heading { font-size: 36px; letter-spacing: 6px; }
    .dest-hero-subtitle { font-size: 15px; letter-spacing: 3px; }
    .dest-bottom { padding: 0 20px 36px; }
    .dest-bottom-row { gap: 16px; margin-bottom: 14px; }
    .dest-nav-arrow { width: 34px; height: 34px; }
    .dest-nav-arrow svg { width: 18px; height: 18px; }
    .dest-loc-display { min-width: 130px; }
    .dest-loc-label { font-size: 16px; }
    .dest-cta-btn { padding: 12px 34px; font-size: 13px; }
    .inc-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .attr-card { flex: 0 0 calc(33.33% - 11px); }
    .tp-layout { grid-template-columns: 1fr; gap: 32px; }
    .tp-features-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .tp-inexclude { grid-template-columns: 1fr; gap: 20px; }
    .tp-title { font-size: 22px; }
    .tp-gallery-slide img { height: 320px; }
    .tp-price-value { font-size: 24px; }
    .tp-sidebar-sticky { position: static; }
    .tp-gallery-count { top: 12px; right: 12px; font-size: 11px; padding: 3px 10px; }
    .tp-gal-arrow { width: 36px; height: 36px; font-size: 22px; line-height: 36px; }
    .tp-gal-prev { left: 12px; }
    .tp-gal-next { right: 12px; }
    .tp-gallery-dots { bottom: 12px; }
    .tp-gal-dot { width: 8px; height: 8px; }
    .tp-review-summary { flex-direction: column; gap: 20px; padding: 20px; }
    .tp-review-stats { min-width: auto; }
    .tp-review-criteria { grid-template-columns: 1fr; gap: 8px; }
    .tp-feedback-ratings { grid-template-columns: 1fr; gap: 8px; }
    .tp-review-item { flex-direction: column; gap: 10px; }
    .tp-review-form { padding: 20px; }
    .tp-review-item-stars { gap: 4px; }
    .tp-criterion-mini { padding: 3px 6px; }
}

@media (max-width: 640px) {
    .explorer-counter { padding: 60px 0; }
    .explorer-number { font-size: clamp(40px, 15vw, 64px); margin-bottom: 8px; }
    .explorer-text { font-size: clamp(13px, 4vw, 16px); letter-spacing: 2px; }
}

@media (max-width: 576px) {
    .tp-breadcrumb { display: none; }
}

/* ================================
   Inner Pages - Responsive
   ================================ */
@media (max-width: 1200px) {
    .inc-hotels-grid, .inc-stories-grid, .inc-destinations-grid { grid-template-columns: repeat(2, 1fr); }
    .celeb-detail-related-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .celeb-detail-hero-content h1 { font-size: 38px; }
    .inc-story-hero-content h1 { font-size: 36px; }
    .inc-story-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    .inc-single-layout { grid-template-columns: 1fr; }
    .inc-story-layout { grid-template-columns: 1fr; }
    .inc-story-sidebar { position: static; margin-top: 32px; }
    .celeb-detail-layout { grid-template-columns: 1fr; }
    .celeb-detail-sidebar { position: static; margin-top: 24px; }
    .celeb-detail-related-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .inc-gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .inc-page-header h1 { font-size: 30px; }
    .inc-hotels-grid, .inc-stories-grid, .inc-destinations-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 768px) {
    .inc-hotels-grid, .inc-stories-grid, .inc-destinations-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .inc-content-area { padding: 40px 0; }
    .inc-page-header { padding: 32px 0; }
    .inc-page-header h1 { font-size: 26px; }
    .inc-page-header p { font-size: 14px; }
    .inc-form-row { flex-direction: column; gap: 10px; }
    .inc-auth-form { padding: 32px 24px; }
    .inc-auth-section { padding: 40px 0; min-height: auto; }
    .inc-search-item { flex-direction: column; gap: 0; }
    .inc-search-item-img { width: 100%; min-height: 200px; }
    .inc-search-item-body { padding: 16px; }
    .inc-story-hero { height: 55vh; min-height: 380px; }
    .inc-story-hero-content h1 { font-size: 28px; }
    .inc-story-content p:first-child::first-letter { font-size: 40px; }
    .inc-story-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .inc-gallery-span-2 { grid-column: span 1; grid-row: span 1; }
    .inc-gallery-tall { grid-row: span 1; }
    .inc-story-author-card { flex-direction: column; text-align: center; align-items: center; }
    .celeb-detail-hero { height: 50vh; min-height: 360px; }
    .celeb-detail-hero-content h1 { font-size: 32px; }
    .celeb-detail-body { padding: 40px 0; }
    .celeb-detail-related-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .celeb-related-card-img { height: 220px; }
    .celeb-detail-related h2 { font-size: 24px; }
    .inc-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .inc-gallery-item img { height: 180px; }
    .inc-sidebar-card { padding: 20px; }
    .inc-single-section h2 { font-size: 20px; }
}

@media (max-width: 640px) {
    .inc-hotels-grid, .inc-stories-grid, .inc-destinations-grid { grid-template-columns: 1fr; gap: 16px; }
    .celeb-detail-related-grid { grid-template-columns: 1fr; gap: 12px; }
    .celeb-detail-hero { height: 45vh; min-height: 320px; }
    .celeb-detail-hero-content h1 { font-size: 26px; }
    .inc-story-hero { height: 45vh; min-height: 320px; }
    .inc-story-hero-content h1 { font-size: 24px; }
    .inc-story-gallery-grid { grid-template-columns: 1fr; }
    .inc-story-gallery-grid .inc-gallery-item img { height: 240px; }
    .inc-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .inc-gallery-item img { height: 160px; }
    .inc-page-header h1 { font-size: 22px; }
    .inc-page-header { padding: 24px 0; }
    .inc-content-area { padding: 32px 0; }
    .inc-search-form { max-width: 100%; }
    .inc-cat-filters { gap: 6px; }
    .inc-filter-btn { padding: 8px 16px; font-size: 12px; }
    .inc-amenity-filters { gap: 6px; }
    .inc-amenity-tag { padding: 4px 12px; font-size: 12px; }
}

@media (max-width: 480px) {
    .inc-gallery-grid { grid-template-columns: 1fr; }
    .inc-story-hero-content h1 { font-size: 22px; }
    .celeb-detail-hero-content h1 { font-size: 24px; }
    .inc-content-area { padding: 24px 0; }
}

@media (max-width: 480px) {
    .attr-section .container-fluid { padding: 0 8px; }
    .inc-itineraries-section .container-fluid { padding: 0 8px; }
    .celebration-section .container-fluid { padding: 0 8px; }
    .dest-grid-section .container-fluid { padding: 0 8px; }
    .inc-itinerary-filters { flex-direction: column; align-items: stretch; }
    .inc-itinerary-filters select { width: 100%; }
    .celeb-grid { grid-template-columns: 1fr; gap: 16px; }
    .attr-section { padding: 30px 0 50px; }
    .attr-bottom { flex-direction: column; gap: 10px; }
    .attr-arrow { display: none; }
    .attr-card { flex: 0 0 calc(50% - 8px); min-width: 160px; }
    .dest-grid-row { grid-template-columns: 1fr; gap: 16px; }
    .dest-card { min-height: 360px; }
    .dest-grid-heading h2 { font-size: 28px; letter-spacing: 4px; }
    .dest-grid-heading p { font-size: 13px; }
    .celebration-heading h2 { font-size: 42px; letter-spacing: 8px; }
    .celebration-heading h3 { font-size: 14px; letter-spacing: 4px; }
    .celeb-card { min-height: 260px; }
    .celeb-filter-row { flex-direction: column; gap: 16px; }
    .ph-hero { min-height: 480px; }
    .ph-title { font-size: 26px; }
    .ph-subtitle { font-size: 11px; }
    .ph-desc { font-size: 14px; }
    .ph-actions .ph-btn { width: 100%; justify-content: center; }
    .ph-arrow { width: 36px; height: 36px; font-size: 18px; }
    .ph-cat { font-size: 10px; padding: 4px 10px; }
    .ph-dots { gap: 6px; }
    .ph-dot { width: 6px; height: 6px; }
    .ph-dot.active { width: 20px; }
    .fd-hero { min-height: 400px; max-height: 580px; }
    .fd-heading { font-size: 38px; letter-spacing: 4px; }
    .fd-subtitle { font-size: 14px; letter-spacing: 2px; }
    .fd-bottom { padding: 0 16px 28px; }
    .fd-bottom-row { gap: 12px; margin-bottom: 12px; }
    .fd-arrow { width: 30px; height: 30px; }
    .fd-arrow svg { width: 16px; height: 16px; }
    .fd-loc-display { min-width: 100px; }
    .fd-loc-label { font-size: 14px; }
    .fd-cta-btn { padding: 10px 28px; font-size: 12px; }
    .dest-hero { min-height: 400px; max-height: 580px; }
    .dest-hero-content { padding-top: 80px; }
    .dest-hero-heading { font-size: 28px; letter-spacing: 4px; }
    .dest-hero-subtitle { font-size: 13px; letter-spacing: 2px; }
    .dest-bottom { padding: 0 16px 28px; }
    .dest-bottom-row { gap: 12px; margin-bottom: 12px; }
    .dest-nav-arrow { width: 30px; height: 30px; }
    .dest-nav-arrow svg { width: 16px; height: 16px; }
    .dest-loc-display { min-width: 100px; }
    .dest-loc-label { font-size: 14px; }
    .dest-cta-btn { padding: 10px 26px; font-size: 12px; }
    .dest-content-area { padding: 40px 16px; }
    .inc-footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .tp-features-grid { grid-template-columns: 1fr; }
    .tp-gallery-slide img { height: 240px; }
    .tp-title { font-size: 18px; }
    .tp-gal-arrow { width: 30px; height: 30px; font-size: 18px; line-height: 30px; }
    .tp-gal-prev { left: 8px; }
    .tp-gal-next { right: 8px; }
}

/* ================================
   Attraction / Gallery Detail (attr-detail-*)
   ================================ */
.attr-detail-hero { position: relative; height: 70vh; min-height: 420px; display: flex; align-items: center; justify-content: center; background-size: cover; background-position: center; }
.attr-detail-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%); }
.attr-detail-hero-content { position: relative; z-index: 2; text-align: center; color: #fff; max-width: 800px; padding: 0 20px; }
.attr-detail-badge { display: inline-block; padding: 6px 18px; border-radius: 20px; background: var(--primary); color: #fff; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.attr-detail-hero-content h1 { font-size: clamp(32px, 6vw, 56px); font-weight: 900; margin: 0 0 12px; font-family: var(--font-primary); }
.attr-detail-caption { font-size: 16px; color: rgba(255,255,255,0.8); margin: 0 0 20px; }
.attr-detail-breadcrumb { font-size: 13px; color: rgba(255,255,255,0.6); }
.attr-detail-breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; }
.attr-detail-breadcrumb a:hover { color: #fff; }
.attr-detail-breadcrumb span { margin: 0 6px; }

.attr-detail-info-strip { background: #fff; border-bottom: 1px solid #eee; padding: 16px 0; }
.attr-detail-strip-inner { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.attr-detail-strip-item { padding: 10px 24px; text-align: center; border-right: 1px solid #eee; }
.attr-detail-strip-item:last-child { border-right: none; }
.strip-label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 4px; }
.strip-value { display: block; font-size: 15px; font-weight: 600; color: var(--text); }

.attr-detail-body { padding: 40px 0 0; }
.attr-detail-layout { max-width: 900px; margin: 0 auto; }
.attr-detail-primary { width: 100%; }
.attr-detail-description { margin-bottom: 32px; }
.attr-detail-description h2, .attr-detail-tips h2 { font-size: 26px; font-weight: 800; font-family: var(--font-primary); margin: 0 0 16px; }
.attr-detail-content { font-size: 15px; line-height: 1.8; color: var(--text-light); }
.attr-detail-tips { background: #f8f9fa; border-radius: 12px; padding: 28px; margin-bottom: 40px; }

/* Photo Gallery */
.attr-detail-photos-section { padding: 48px 0 64px; background: #f8f9fa; }
.container-wide { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.attr-detail-photos-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.attr-detail-photos-header h2 { font-size: 26px; font-weight: 800; font-family: var(--font-primary); margin: 0; }
.attr-photo-count { font-size: 14px; color: var(--text-light); background: #e9ecef; padding: 4px 14px; border-radius: 20px; }
.attr-detail-photos-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.attr-detail-photo-item { display: block; position: relative; overflow: hidden; border-radius: 8px; cursor: pointer; }
.attr-detail-photo-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; display: block; }
.attr-detail-photo-item:hover img { transform: scale(1.05); }
.attr-detail-photo-item.photo-featured { grid-column: span 2; grid-row: span 2; }
.attr-detail-photo-item.photo-wide { grid-column: span 2; }
.attr-detail-photo-item.photo-tall { grid-row: span 2; }
.attr-photo-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.35); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.attr-detail-photo-item:hover .attr-photo-overlay { opacity: 1; }
.attr-photo-zoom { color: #fff; font-size: 28px; }

/* Related Attractions */
.attr-detail-related { padding: 60px 0; }
.attr-detail-related h2 { font-size: 26px; font-weight: 800; font-family: var(--font-primary); text-align: center; margin-bottom: 32px; }
.attr-detail-related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.attr-detail-related-card { display: block; border-radius: 12px; overflow: hidden; text-decoration: none; box-shadow: 0 2px 8px rgba(0,0,0,0.08); transition: transform 0.3s, box-shadow 0.3s; }
.attr-detail-related-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.attr-related-card-img { height: 220px; background-size: cover; background-position: center; position: relative; }
.attr-related-card-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.75) 100%); display: flex; align-items: flex-end; padding: 16px; }
.attr-related-card-overlay h3 { color: #fff; font-size: 16px; font-weight: 700; margin: 0; font-family: var(--font-primary); }

/* ================================
   404 / Error Page (inc-error-*)
   ================================ */
.inc-error-page { min-height: 70vh; display: flex; align-items: center; justify-content: center; padding: 80px 0; background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); }
.inc-error-content { text-align: center; max-width: 520px; margin: 0 auto; }
.inc-error-art { margin-bottom: 12px; }
.inc-error-art svg { display: inline-block; }
.inc-error-code { display: block; font-size: 120px; font-weight: 900; line-height: 1; color: var(--primary); font-family: var(--font-primary); margin-bottom: 8px; }
.inc-error-content h1 { font-size: 32px; font-weight: 800; margin: 0 0 12px; font-family: var(--font-primary); color: var(--text); }
.inc-error-content p { font-size: 16px; color: var(--text-light); margin-bottom: 28px; line-height: 1.7; }
.inc-error-actions { display: flex; gap: 12px; justify-content: center; margin-bottom: 32px; flex-wrap: wrap; }
.inc-error-content .inc-btn { display: inline-flex; align-items: center; padding: 14px 32px; border-radius: 8px; font-size: 15px; font-weight: 700; text-decoration: none; transition: all 0.3s; }
.inc-btn-primary { background: var(--primary); color: #fff; border: 2px solid var(--primary); }
.inc-btn-primary:hover { background: transparent; color: var(--primary); }
.inc-btn-outline { background: transparent; color: var(--text); border: 2px solid #dee2e6; }
.inc-btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.inc-error-content .search-form { display: flex; max-width: 380px; margin: 0 auto; }
.inc-error-content .search-form label { flex: 1; }
.inc-error-content .search-field { width: 100%; padding: 12px 16px; border: 2px solid #dee2e6; border-radius: 8px 0 0 8px; font-size: 14px; outline: none; transition: border-color 0.3s; }
.inc-error-content .search-field:focus { border-color: var(--primary); }
.inc-error-content .search-submit { padding: 12px 20px; background: var(--primary); color: #fff; border: 2px solid var(--primary); border-radius: 0 8px 8px 0; font-size: 14px; font-weight: 700; cursor: pointer; transition: all 0.3s; }
.inc-error-content .search-submit:hover { background: transparent; color: var(--primary); }

/* ================================
   New Sections - Responsive
   ================================ */
@media (max-width: 1024px) {
    .wc-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .faq-layout { grid-template-columns: 1fr; gap: 40px; }
    .faq-image { min-height: 300px; }
    .gr-card { flex: 0 0 calc(50% - 10px); }
}

@media (max-width: 768px) {
    .wc-section { padding: 60px 0; }
    .wc-grid { gap: 16px; }
    .wc-item { padding: 24px 16px; }
    .faq-section { padding: 60px 0; }
    .faq-image { min-height: 250px; }
    .faq-question { font-size: 13px; padding: 16px; }
    .gr-section { padding: 60px 0; }
    .gr-card { flex: 0 0 calc(50% - 10px); min-width: 240px; padding: 20px; }
    .gr-score { font-size: 34px; }
}

@media (max-width: 480px) {
    .wc-grid { grid-template-columns: 1fr; gap: 16px; }
    .wc-section { padding: 40px 0; }
    .wc-item { padding: 20px 16px; }
    .faq-section { padding: 40px 0; }
    .faq-image { display: none; }
    .faq-heading p { max-width: 100%; }
    .faq-question { font-size: 12px; padding: 14px; }
    .faq-answer { font-size: 13px; padding: 0 14px 14px; }
    .gr-section { padding: 40px 0; }
    .gr-card { flex: 0 0 calc(80% - 10px); min-width: 220px; }
    .gr-score { font-size: 28px; }
    .tp-card { padding: 20px; }
    .tp-form-row { grid-template-columns: 1fr; gap: 0; }
    .tp-input { font-size: 13px; padding: 8px 12px; }
}

/* ================================
   Booking.com-style Hotel Page
   ================================ */
.bkmk-wrap { background: #fff; min-height: 600px; }
.bkmk-breadcrumbs { background: #fff; padding: 20px 0 14px; border-bottom: 1px solid #e8e8e8; font-size: 13px; }
.bkmk-breadcrumbs a { color: #1a73e8; text-decoration: none; }
.bkmk-bc-sep { margin: 0 8px; color: #999; }
.bkmk-breadcrumbs span:last-child { color: #666; }

/* Photo Grid */
.bkmk-photo-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 4px; border-radius: 0 0 12px 12px; overflow: hidden; margin: 0 auto 24px; background: #fff; padding: 0; max-width: 1200px; width: 100%; box-sizing: border-box; }
.bkmk-photo-main { position: relative; overflow: hidden; cursor: pointer; }
.bkmk-photo-main img { width: 100%; height: 320px; object-fit: cover; display: block; transition: transform 0.3s; }
.bkmk-photo-main:hover img { transform: scale(1.02); }
.bkmk-photo-side { display: grid; grid-template-rows: repeat(3, 1fr); gap: 4px; }
.bkmk-photo-side-item { overflow: hidden; cursor: pointer; }
.bkmk-photo-side-item img { width: 100%; height: 104px; object-fit: cover; display: block; transition: transform 0.3s; }
.bkmk-photo-side-item:hover img { transform: scale(1.05); }
.bkmk-photo-count { position: absolute; bottom: 16px; right: 16px; background: rgba(0,0,0,0.7); color: #fff; padding: 6px 14px; border-radius: 6px; font-size: 12px; cursor: pointer; z-index: 2; }
.bkmk-photo-count:hover { background: rgba(0,0,0,0.85); }

/* Layout */
.bkmk-content-area { background: #f5f5f5; padding: 32px 0; }
.bkmk-layout { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; }
.bkmk-main { min-width: 0; }
.bkmk-sidebar { position: sticky; top: 100px; }
.bkmk-sidebar-inner { display: flex; flex-direction: column; gap: 16px; }

/* Header */
.bkmk-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; margin: 16px auto 0; background: #fff; padding: 28px 24px 16px; border-radius: 12px 12px 0 0; max-width: 1200px; width: 100%; box-sizing: border-box; }
.bkmk-header-left { flex: 1; }
.bkmk-title { font-size: 28px; font-weight: 800; margin: 0 0 8px; color: #1a1a2e; line-height: 1.2; }
.bkmk-header-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.bkmk-stars { color: #006ce4; font-size: 16px; letter-spacing: 2px; }
.bkmk-location { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; color: #666; }
.bkmk-location svg { flex-shrink: 0; }

/* Review Badge */
.bkmk-review-badge { flex-shrink: 0; }
.bkmk-review-score-wrap { display: flex; align-items: center; gap: 12px; }
.bkmk-review-score { background: #003580; color: #fff; font-size: 28px; font-weight: 800; width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; border-radius: 8px 8px 8px 0; }
.bkmk-review-text { display: flex; flex-direction: column; }
.bkmk-review-text strong { font-size: 14px; color: #1a1a2e; }
.bkmk-review-text span { font-size: 12px; color: #666; }

/* Recommended Banner */
.bkmk-recommended-banner { display: flex; align-items: center; gap: 8px; background: #e8f5e9; color: #2e7d32; padding: 12px 24px; border-radius: 8px; font-size: 13px; font-weight: 600; margin: 0 0 16px; }

/* Stats Bar */
.bkmk-stats-bar { display: flex; gap: 0; background: #fff; border-radius: 12px; overflow: hidden; margin-top: 16px; }
.bkmk-stat { flex: 1; padding: 20px 24px; text-align: center; border-right: 1px solid #eee; }
.bkmk-stat:last-child { border-right: none; }
.bkmk-stat-label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: #999; margin-bottom: 4px; }
.bkmk-stat-value { display: block; font-size: 16px; font-weight: 700; color: #1a1a2e; }
.bkmk-stat-value small { font-weight: 400; font-size: 13px; color: #666; }

/* Sections */
.bkmk-section { background: #fff; border-radius: 12px; padding: 28px; margin-top: 20px; }
.bkmk-section-title { font-size: 20px; font-weight: 700; color: #1a1a2e; margin: 0 0 20px; padding-bottom: 12px; border-bottom: 2px solid #f0f0f0; }
.bkmk-content { font-size: 15px; line-height: 1.7; color: #444; }

/* Rooms */
.bkmk-room-list { display: flex; flex-direction: column; gap: 12px; }
.bkmk-room-card { display: flex; justify-content: space-between; gap: 20px; padding: 20px; border: 1px solid #e8e8e8; border-radius: 10px; transition: box-shadow 0.2s; }
.bkmk-room-card:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.bkmk-room-info { flex: 1; }
.bkmk-room-name { font-size: 16px; font-weight: 700; color: #1a1a2e; margin: 0 0 8px; }
.bkmk-room-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 10px; }
.bkmk-room-meta span { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; color: #666; }
.bkmk-room-meta span svg { flex-shrink: 0; }
.bkmk-room-features { display: flex; flex-wrap: wrap; gap: 6px; }
.bkmk-room-feature { font-size: 12px; background: #f0f7ff; color: #1a73e8; padding: 3px 10px; border-radius: 4px; }
.bkmk-room-price-col { min-width: 120px; text-align: right; display: flex; flex-direction: column; justify-content: center; align-items: flex-end; }
.bkmk-room-price { font-size: 22px; font-weight: 800; color: #1a73e8; line-height: 1; }
.bkmk-room-price small { font-size: 14px; font-weight: 400; }
.bkmk-room-pernight { font-size: 12px; color: #999; margin: 2px 0 12px; }
.bkmk-book-btn { background: #003580; color: #fff; border: none; padding: 10px 24px; border-radius: 6px; font-size: 14px; font-weight: 700; cursor: pointer; transition: background 0.2s; font-family: 'Montserrat', sans-serif; }
.bkmk-book-btn:hover { background: #002266; }

/* Amenities */
.bkmk-amenities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; }
.bkmk-amenity-item { display: flex; align-items: center; gap: 10px; padding: 10px 14px; background: #f8f9fa; border-radius: 8px; font-size: 13px; color: #444; }
.bkmk-amenity-icon { width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #1a73e8; }

/* Reviews */
.bkmk-reviews-summary { display: flex; gap: 32px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid #eee; }
.bkmk-rs-left { text-align: center; min-width: 100px; }
.bkmk-rs-score { font-size: 48px; font-weight: 800; color: #003580; display: block; line-height: 1; }
.bkmk-rs-label { font-size: 16px; font-weight: 700; color: #1a1a2e; display: block; margin: 4px 0 2px; }
.bkmk-rs-count { font-size: 13px; color: #666; }
.bkmk-rs-right { flex: 1; display: flex; flex-direction: column; gap: 8px; justify-content: center; }
.bkmk-rs-category { display: flex; align-items: center; gap: 12px; }
.bkmk-rs-cat-label { font-size: 13px; color: #444; min-width: 100px; }
.bkmk-rs-cat-bar { flex: 1; height: 8px; background: #e8e8e8; border-radius: 4px; overflow: hidden; }
.bkmk-rs-cat-bar span { display: block; height: 100%; background: #003580; border-radius: 4px; }
.bkmk-rs-cat-score { font-size: 13px; font-weight: 700; color: #1a1a2e; min-width: 30px; text-align: right; }
.bkmk-review-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.bkmk-review-card { padding: 16px; border: 1px solid #e8e8e8; border-radius: 10px; }
.bkmk-rc-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.bkmk-rc-avatar { width: 40px; height: 40px; background: #003580; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800; flex-shrink: 0; }
.bkmk-rc-user { flex: 1; }
.bkmk-rc-user strong { display: block; font-size: 14px; color: #1a1a2e; }
.bkmk-rc-user span { font-size: 12px; color: #999; }
.bkmk-rc-score { background: #003580; color: #fff; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 6px 6px 6px 0; font-size: 14px; font-weight: 800; flex-shrink: 0; }
.bkmk-rc-text { font-size: 14px; line-height: 1.6; color: #555; margin: 0; }

/* Map */
.bkmk-map { margin-bottom: 12px; }
.bkmk-map iframe { width: 100%; border-radius: 10px; }
.bkmk-map-address { font-size: 14px; color: #666; margin: 0; display: flex; align-items: center; gap: 6px; }
.bkmk-map-address::before { content: '📍'; }

/* Sidebar */
.bkmk-sidebar-card { background: #fff; border-radius: 12px; padding: 24px; box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
.bkmk-sidebar-title { font-size: 18px; font-weight: 700; color: #1a1a2e; margin-bottom: 16px; }

/* Booking Form */
.bkmk-booking-form { display: flex; flex-direction: column; gap: 14px; }
.bkmk-bf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bkmk-bf-group { display: flex; flex-direction: column; gap: 4px; }
.bkmk-bf-group label { font-size: 12px; font-weight: 700; color: #555; text-transform: uppercase; letter-spacing: 0.5px; }
.bkmk-bf-group input,
.bkmk-bf-group select,
.bkmk-bf-group textarea { width: 100%; padding: 10px 12px; border: 1px solid #d9d9d9; border-radius: 6px; font-size: 14px; font-family: 'Montserrat', sans-serif; outline: none; box-sizing: border-box; transition: border-color 0.2s; }
.bkmk-bf-group input:focus,
.bkmk-bf-group select:focus,
.bkmk-bf-group textarea:focus { border-color: #1a73e8; box-shadow: 0 0 0 2px rgba(26,115,232,0.15); }
.bkmk-submit-btn { width: 100%; padding: 14px; background: #003580; color: #fff; border: none; border-radius: 6px; font-size: 16px; font-weight: 700; cursor: pointer; transition: background 0.2s; font-family: 'Montserrat', sans-serif; }
.bkmk-submit-btn:hover { background: #002266; }
.bkmk-bf-response { font-size: 13px; text-align: center; }
.bkmk-bf-note { font-size: 11px; color: #999; text-align: center; margin: 0; }

/* Info List */
.bkmk-info-list { list-style: none; padding: 0; margin: 0; }
.bkmk-info-list li { padding: 8px 0; border-bottom: 1px solid #f0f0f0; font-size: 13px; color: #444; }
.bkmk-info-list li:last-child { border-bottom: none; }
.bkmk-info-list a { color: #1a73e8; text-decoration: none; }

/* Price Card */
.bkmk-price-card { text-align: center; background: linear-gradient(135deg, #003580, #1a73e8); color: #fff; }
.bkmk-price-label { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; opacity: 0.8; }
.bkmk-price-value { font-size: 42px; font-weight: 900; line-height: 1; margin: 8px 0 2px; }
.bkmk-price-value small { font-size: 20px; font-weight: 400; opacity: 0.8; }
.bkmk-price-pernight { font-size: 13px; opacity: 0.7; }

/* Tabs Bar */
.bkmk-tabs-wrap { background: #fff; border-bottom: 1px solid #e8e8e8; position: sticky; top: 0; z-index: 100; }
.bkmk-tabs-wrap.bkmk-tabs-sticky { box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.bkmk-tabs { display: flex; gap: 0; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.bkmk-tabs::-webkit-scrollbar { display: none; }
.bkmk-tab { flex-shrink: 0; padding: 16px 20px; font-size: 13px; font-weight: 600; color: #666; text-decoration: none; border-bottom: 3px solid transparent; transition: all 0.2s; white-space: nowrap; }
.bkmk-tab:hover { color: #1a73e8; }
.bkmk-tab.active { color: #1a73e8; border-bottom-color: #1a73e8; }

/* House Rules */
.bkmk-house-rules { margin-top: 20px; padding-top: 20px; border-top: 1px solid #eee; }
.bkmk-house-rules h3 { font-size: 16px; font-weight: 700; color: #1a1a2e; margin: 0 0 12px; }
.bkmk-house-rules ul { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.bkmk-house-rules li { font-size: 13px; color: #555; padding: 6px 0; }
.bkmk-house-rules li strong { color: #1a1a2e; }

/* Legal Info */
.bkmk-legal-info { font-size: 13px; color: #888; line-height: 1.7; }
.bkmk-legal-info p { margin: 0 0 10px; }

/* Lightbox */
.bkmk-lightbox { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.92); z-index: 99999; justify-content: center; align-items: center; }
.bkmk-lightbox.active { display: flex; }
.bkmk-lb-img { max-width: 90%; max-height: 85vh; object-fit: contain; border-radius: 4px; cursor: default; }
.bkmk-lb-close { position: absolute; top: 20px; right: 30px; font-size: 40px; color: #fff; cursor: pointer; z-index: 10; line-height: 1; opacity: 0.7; transition: opacity 0.2s; }
.bkmk-lb-close:hover { opacity: 1; }
.bkmk-lb-arrow { position: absolute; top: 50%; transform: translateY(-50%); font-size: 50px; color: #fff; cursor: pointer; padding: 20px; user-select: none; opacity: 0.6; transition: opacity 0.2s; line-height: 1; z-index: 10; }
.bkmk-lb-arrow:hover { opacity: 1; }
.bkmk-lb-prev { left: 10px; }
.bkmk-lb-next { right: 10px; }
.bkmk-lb-counter { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: #fff; font-size: 14px; background: rgba(0,0,0,0.5); padding: 4px 16px; border-radius: 20px; }

/* Responsive */
@media (max-width: 991px) {
    .bkmk-tab { padding: 14px 14px; font-size: 12px; }
    .bkmk-house-rules ul { grid-template-columns: 1fr; }
    .bkmk-layout { grid-template-columns: 1fr; }
    .bkmk-sidebar { position: static; }
    .bkmk-photo-grid { grid-template-columns: 1fr; }
    .bkmk-photo-side { display: none; }
    .bkmk-photo-main img { height: 320px; }
    .bkmk-stats-bar { flex-direction: column; }
    .bkmk-stat { border-right: none; border-bottom: 1px solid #eee; }
    .bkmk-stat:last-child { border-bottom: none; }
    .bkmk-room-card { flex-direction: column; }
    .bkmk-room-price-col { align-items: flex-start; text-align: left; }
    .bkmk-reviews-summary { flex-direction: column; gap: 16px; }
    .bkmk-header { flex-direction: column; }
}
@media (max-width: 575px) {
    .bkmk-photo-main img { height: 240px; }
    .bkmk-title { font-size: 22px; }
    .bkmk-amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .bkmk-bf-row { grid-template-columns: 1fr; }
    .bkmk-review-cards { grid-template-columns: 1fr; }
}
