/**
 * Frontend Hotel Styling - Direktori Hotel Haramain
 * Disesuaikan secara presisi dengan mockup Desktop & Mobile
 */

:root {
    --dhh-primary: #064e3b;          /* Emerald Haramain Dark Green */
    --dhh-primary-hover: #047857;    /* Emerald Hover */
    --dhh-primary-light: #ecfdf5;    /* Emerald Subtle Light */
    --dhh-dark: #0f172a;             /* Dark Slate Text */
    --dhh-muted: #64748b;            /* Muted Slate */
    --dhh-border: #e2e8f0;           /* Soft Border */
    --dhh-bg-card: #ffffff;          /* White Card */
    --dhh-bg-subtle: #f8fafc;        /* Subtle Off-white */
    --dhh-nusuk-bg: #fbf9f5;         /* Sand/Beige Nusuk Card */
    --dhh-nusuk-border: #e9e4d9;     /* Sand Border */
    --dhh-radius-sm: 8px;
    --dhh-radius-md: 12px;
    --dhh-radius-lg: 16px;
    --dhh-radius-xl: 20px;
    --dhh-shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --dhh-shadow-md: 0 4px 12px rgba(0,0,0,0.08);
}

/* Universal Box Sizing & Containment for Plugin */
.dhh-hotel-page-wrap,
.dhh-hotel-page-wrap *,
.dhh-hotel-page-wrap *::before,
.dhh-hotel-page-wrap *::after,
.dhh-single-container,
.dhh-single-container *,
.dhh-single-container *::before,
.dhh-single-container *::after {
    box-sizing: border-box;
}

.dhh-hotel-page-wrap {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

/* Base Wrapper */
.dhh-single-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 20px 60px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--dhh-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Breadcrumb Navigation */
.dhh-breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.dhh-breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
    color: var(--dhh-muted);
    min-width: 0;
}

.dhh-breadcrumb-list a {
    color: var(--dhh-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.dhh-breadcrumb-list a:hover {
    color: var(--dhh-primary);
}

.dhh-bc-sep {
    color: #cbd5e1;
}

.dhh-bc-current {
    color: var(--dhh-dark);
    font-weight: 500;
    word-break: break-word;
}

.dhh-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--dhh-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.dhh-back-link:hover {
    color: var(--dhh-primary);
}

/* ==========================================================================
   GALERI FOTO (DESKTOP 1+6 GRID & MOBILE)
   ========================================================================== */

.dhh-gallery-container {
    margin-bottom: 32px;
    border-radius: var(--dhh-radius-xl);
    overflow: hidden;
    position: relative;
}

/* Desktop Gallery */
.dhh-gallery-desktop {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    height: 440px;
}

.dhh-gallery-main {
    position: relative;
    height: 100%;
    border-radius: var(--dhh-radius-lg) 0 0 var(--dhh-radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.dhh-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.dhh-gallery-main:hover img {
    transform: scale(1.02);
}

/* Button See all photos */
.dhh-btn-see-photos {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #0f172a;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transition: all 0.2s ease;
    z-index: 5;
}

.dhh-btn-see-photos:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
}

/* Grid 6 Thumbs (3 Kolom x 2 Baris) */
.dhh-gallery-grid-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
    height: 100%;
}

.dhh-grid-thumb-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.dhh-grid-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.dhh-grid-thumb-item:hover img {
    transform: scale(1.04);
    filter: brightness(0.95);
}

/* Mobile Gallery (Hidden on Desktop) */
.dhh-gallery-mobile {
    display: none;
}

/* Lightbox Modal */
.dhh-lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dhh-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
}

.dhh-lightbox-content {
    position: relative;
    z-index: 10;
    width: 90%;
    max-width: 1000px;
    height: 88%;
    display: flex;
    flex-direction: column;
}

.dhh-lightbox-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    padding: 12px 0;
    font-size: 15px;
    font-weight: 500;
}

.dhh-lightbox-close {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
}

.dhh-lightbox-stage {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.dhh-lightbox-image-holder {
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
}

.dhh-lightbox-active-img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.dhh-lightbox-caption {
    color: #cbd5e1;
    font-size: 13px;
    margin-top: 10px;
    text-align: center;
}

.dhh-lightbox-nav {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.dhh-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.dhh-lightbox-thumbnails {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 12px 0;
    justify-content: center;
}

.dhh-lb-thumb-btn {
    width: 60px;
    height: 44px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    background: none;
    opacity: 0.6;
    transition: opacity 0.2s, border-color 0.2s;
}

.dhh-lb-thumb-btn.active {
    opacity: 1;
    border-color: #10b981;
}

.dhh-lb-thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   LAYOUT UTAMA: KONTEN KIRI & SIDEBAR KANAN
   ========================================================================== */

.dhh-main-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 40px;
    align-items: start;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.dhh-content-column {
    min-width: 0;
    max-width: 100%;
    width: 100%;
}

/* Title & Star Rating */
.dhh-title-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 16px;
    margin-bottom: 8px;
    min-width: 0;
}

.dhh-hotel-title {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin: 0;
    letter-spacing: -0.01em;
    word-break: break-word;
    min-width: 0;
}

.dhh-star-badge {
    background: #064e3b;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.dhh-star-icon {
    color: #fbbf24;
}

/* Lokasi Subtitle */
.dhh-location-meta {
    margin-bottom: 20px;
    font-size: 14px;
    color: #475569;
    min-width: 0;
}

.dhh-loc-line-1 {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-weight: 500;
    color: #334155;
    word-break: break-word;
    min-width: 0;
}

.dhh-pin-icon {
    color: #059669;
    flex-shrink: 0;
}

.dhh-loc-line-2 {
    font-size: 13px;
    color: #64748b;
    margin-top: 2px;
}

/* Bagian Harga */
.dhh-price-section {
    margin-bottom: 16px;
}

.dhh-price-sublabel {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.dhh-price-figure {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.dhh-price-amount {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
}

.dhh-price-unit {
    font-size: 14px;
    color: #64748b;
}

/* Badges Row */
.dhh-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.dhh-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.dhh-badge-nusuk {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.dhh-badge-kelana,
.dhh-badge-safaraya {
    background: #f0fdf4;
    color: #15803d;
    border: 1px solid #bbf7d0;
}

.dhh-badge-check {
    color: #059669;
}

/* Peta Preview */
.dhh-map-preview-wrap {
    margin-bottom: 28px;
    border-radius: var(--dhh-radius-lg);
    overflow: hidden;
    border: 1px solid var(--dhh-border);
    box-shadow: var(--dhh-shadow-sm);
    background: #f8fafc;
}

.dhh-map-canvas {
    width: 100%;
    height: 220px;
    background: #e2e8f0;
}

.dhh-map-bottom-bar {
    padding: 10px 16px;
    background: #f1f5f9;
    border-top: 1px solid var(--dhh-border);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.dhh-btn-gmaps {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #047857;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.dhh-btn-gmaps:hover {
    color: #064e3b;
    text-decoration: underline;
}

/* Mobile Order Via (Hidden by default on Desktop) */
.dhh-mobile-order-via-wrapper {
    display: none;
    margin-bottom: 24px;
}

.dhh-mobile-nusuk-wrapper {
    display: none;
    margin-top: 32px;
}

.dhh-hotel-tabs-container {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

/* Tabs Pill Nav */
.dhh-tabs-pill-nav {
    display: inline-flex;
    background: #f1f5f9;
    padding: 5px;
    border-radius: 30px;
    margin-bottom: 24px;
    gap: 6px;
    border: 1px solid #e2e8f0;
    max-width: 100%;
}

.dhh-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.dhh-tab-btn .dhh-tab-icon {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    transition: transform 0.2s ease, color 0.2s ease;
}

.dhh-tab-btn:hover {
    color: #0f172a;
    background: rgba(255, 255, 255, 0.6);
}

.dhh-tab-btn:hover .dhh-tab-icon {
    transform: scale(1.1);
}

.dhh-tab-btn.active {
    background: #064e3b;
    color: #ffffff;
    box-shadow: 0 3px 8px rgba(6, 78, 59, 0.25);
}

.dhh-tab-btn.active .dhh-tab-icon {
    color: #34d399;
}

.dhh-tab-content-panel {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    animation: dhhFadeIn 0.3s ease;
}

@keyframes dhhFadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Tab 4: Info Kontak */
.dhh-contact-intro-text {
    font-size: 14px;
    color: #64748b;
    margin: 0 0 20px 0;
    line-height: 1.6;
}

.dhh-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 12px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.dhh-contact-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    min-width: 0;
    max-width: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.dhh-contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
    border-color: #cbd5e1;
}

.dhh-contact-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
}

.dhh-contact-icon-badge {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dhh-badge-phone {
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
}

.dhh-badge-wa {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.dhh-badge-email {
    background: #eff6ff;
    color: #2563eb;
    border: 1px solid #bfdbfe;
}

.dhh-contact-card-meta {
    flex: 1;
    min-width: 0;
}

.dhh-contact-type {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    margin-bottom: 4px;
}

.dhh-contact-val {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    word-break: break-word;
}

.dhh-contact-card-footer {
    margin-top: auto;
}

.dhh-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.dhh-btn-tel {
    background: #064e3b;
    color: #ffffff !important;
}

.dhh-btn-tel:hover {
    background: #047857;
    color: #ffffff !important;
}

.dhh-btn-wa {
    background: #16a34a;
    color: #ffffff !important;
}

.dhh-btn-wa:hover {
    background: #15803d;
    color: #ffffff !important;
}

.dhh-btn-email {
    background: #2563eb;
    color: #ffffff !important;
}

.dhh-btn-email:hover {
    background: #1d4ed8;
    color: #ffffff !important;
}

.dhh-overview-desc {
    font-size: 15px;
    color: #334155;
    margin-bottom: 24px;
    line-height: 1.7;
}

.dhh-section-heading {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 16px 0;
}

/* Highlights Box */
.dhh-highlights-box {
    margin-bottom: 28px;
}

.dhh-highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
}

.dhh-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #334155;
}

.dhh-hl-check {
    color: #059669;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Card Estimasi Jarak */
.dhh-distance-card {
    background: #fffdfa;
    border: 1px solid #f2e9db;
    border-radius: var(--dhh-radius-lg);
    padding: 24px;
    margin-bottom: 32px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.dhh-distance-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.dhh-distance-icon {
    color: #047857;
    display: flex;
    flex-shrink: 0;
}

.dhh-distance-title {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.dhh-distance-list {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.dhh-distance-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f5ede2;
    min-width: 0;
    width: 100%;
}

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

.dhh-distance-landmark-info {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-width: 0;
    word-break: break-word;
}

.dhh-distance-name {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    word-break: break-word;
}

.dhh-distance-direction {
    font-size: 12px;
    color: #94a3b8;
    word-break: break-word;
}

.dhh-distance-stat {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
    white-space: nowrap;
}

.dhh-distance-metric {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

.dhh-distance-transport {
    font-size: 12px;
    color: #64748b;
}

.dhh-distance-footer {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px dashed #e9decb;
}

.dhh-distance-footer p {
    font-size: 12px;
    color: #94a3b8;
    margin: 0;
    font-style: italic;
}

/* Fasilitas Tab */
.dhh-facilities-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}

.dhh-facility-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 13px;
    color: #334155;
}

.dhh-fac-check {
    color: #059669;
    font-weight: bold;
}

/* Kebijakan Tab */
.dhh-policy-times-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.dhh-policy-time-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.dhh-time-icon {
    font-size: 24px;
}

.dhh-policy-time-card strong {
    display: block;
    font-size: 14px;
    color: #0f172a;
}

.dhh-policy-time-card p {
    margin: 4px 0 0 0;
    font-size: 14px;
    color: #047857;
    font-weight: 600;
}

.dhh-policy-notes-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
}

/* ==========================================================================
   SIDEBAR (DESKTOP) & BAGIAN VERIFIKASI NUSUK
   ========================================================================== */

.dhh-sidebar-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Nusuk License Card */
.dhh-nusuk-license-card {
    background: var(--dhh-nusuk-bg);
    border: 1px solid var(--dhh-nusuk-border);
    border-radius: var(--dhh-radius-lg);
    padding: 24px 20px;
    box-shadow: var(--dhh-shadow-sm);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.dhh-nusuk-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.dhh-nusuk-number {
    font-size: clamp(22px, 6vw, 32px);
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 12px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    word-break: break-all;
}

.dhh-nusuk-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #334155;
    flex-wrap: wrap;
}

.dhh-status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
    flex-shrink: 0;
}

/* ORDER VIA SECTION */
.dhh-order-via-section {
    padding: 4px 0;
    width: 100%;
    max-width: 100%;
}

.dhh-order-title {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #0f172a;
    text-transform: uppercase;
    margin: 0 0 14px 0;
}

.dhh-partner-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 100%;
}

.dhh-partner-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.dhh-partner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
    border-color: #cbd5e1;
}

/* Agoda Branding */
.dhh-agoda-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.dhh-agoda-text {
    font-size: 26px;
    font-weight: 800;
    color: #1e293b;
    letter-spacing: -0.04em;
    line-height: 1;
}

.dhh-agoda-dots {
    display: flex;
    gap: 4px;
}

.dhh-agoda-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dhh-agoda-dots .red { background: #ef4444; }
.dhh-agoda-dots .yellow { background: #f59e0b; }
.dhh-agoda-dots .green { background: #10b981; }
.dhh-agoda-dots .purple { background: #8b5cf6; }
.dhh-agoda-dots .blue { background: #0ea5e9; }

/* Trip.com Branding */
.dhh-trip-brand {
    display: flex;
    align-items: center;
}

.dhh-trip-text {
    font-size: 24px;
    font-weight: 800;
    color: #2563eb;
    letter-spacing: -0.02em;
}

.dhh-trip-dot {
    color: #f59e0b;
}

/* WhatsApp Branding */
.dhh-partner-wa {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.dhh-wa-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #15803d;
    font-weight: 700;
    font-size: 15px;
}

/* Nusuk Verify Guide Card */
.dhh-nusuk-verify-guide-card {
    background: #fffdf7;
    border: 1px solid #f1e9d9;
    border-radius: var(--dhh-radius-lg);
    padding: 24px 20px;
    box-shadow: var(--dhh-shadow-sm);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.dhh-guide-title {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 16px 0;
    line-height: 1.4;
    word-break: break-word;
}

.dhh-guide-steps {
    margin: 0 0 18px 0;
    padding-left: 20px;
    color: #475569;
    font-size: 13px;
    line-height: 1.6;
    word-break: break-word;
}

.dhh-guide-steps li {
    margin-bottom: 10px;
}

.dhh-guide-steps li:last-child {
    margin-bottom: 0;
}

.dhh-guide-steps a {
    color: #047857;
    font-weight: 600;
    text-decoration: underline;
    word-break: break-all;
}

.dhh-guide-disclaimer {
    border-top: 1px solid #ede3d1;
    padding-top: 14px;
}

.dhh-guide-disclaimer p {
    margin: 0;
    font-size: 11px;
    color: #94a3b8;
    line-height: 1.5;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE SINKRONISASI DENGAN MOCKUP MOBILE)
   ========================================================================== */

@media (max-width: 992px) {
    .dhh-main-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
        width: 100%;
        max-width: 100%;
    }

    /* Di layar tablet/mobile, sidebar desktop disembunyikan */
    .dhh-sidebar-column {
        display: none;
    }

    /* Tampilkan Order Via dan Nusuk di dalam konten flow mobile sesuai mockup */
    .dhh-mobile-order-via-wrapper {
        display: block;
        width: 100%;
        max-width: 100%;
    }

    .dhh-mobile-nusuk-wrapper {
        display: block;
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .dhh-single-container {
        padding: 16px 14px 40px;
        width: 100%;
        max-width: 100%;
    }

    /* Breadcrumb Navigasi Mobile */
    .dhh-breadcrumb-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 14px;
    }

    .dhh-breadcrumb-list {
        font-size: 13px;
        line-height: 1.4;
        width: 100%;
    }

    .dhh-back-link {
        font-size: 13px;
    }

    /* Galeri Desktop disembunyikan, tampilkan Galeri Mobile Single Hero */
    .dhh-gallery-desktop {
        display: none;
    }

    .dhh-gallery-mobile {
        display: block;
        width: 100%;
        max-width: 100%;
    }

    .dhh-mobile-hero-img-wrap {
        position: relative;
        border-radius: var(--dhh-radius-lg);
        overflow: hidden;
        height: 260px;
        width: 100%;
        max-width: 100%;
    }

    .dhh-mobile-hero-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .dhh-hotel-title {
        font-size: clamp(20px, 5.5vw, 24px);
        line-height: 1.25;
    }

    .dhh-price-amount {
        font-size: 20px;
    }

    .dhh-highlights-grid {
        grid-template-columns: 1fr;
    }

    .dhh-facilities-card-grid {
        grid-template-columns: 1fr;
    }

    .dhh-facility-pill {
        min-width: 0;
        word-break: break-word;
    }

    .dhh-policy-times-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
    }

    .dhh-policy-time-card {
        min-width: 0;
        word-break: break-word;
    }

    .dhh-hotel-tabs-container {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .dhh-tabs-pill-nav {
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 4px;
        gap: 6px;
        border-radius: 12px;
        box-sizing: border-box;
    }

    .dhh-tabs-pill-nav::-webkit-scrollbar {
        display: none;
    }

    .dhh-tab-btn {
        flex: 0 0 auto;
        padding: 8px 12px;
        text-align: center;
        font-size: 13px;
        white-space: nowrap;
        border-radius: 8px;
    }

    .dhh-contact-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
        width: 100%;
    }

    .dhh-contact-card {
        padding: 16px 14px;
    }

    .dhh-partner-badges {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        width: 100%;
    }

    .dhh-partner-btn {
        flex: 1 1 calc(50% - 6px);
        min-width: 130px;
        padding: 10px 8px;
        box-sizing: border-box;
    }

    .dhh-partner-wa {
        flex: 1 1 100%;
    }

    .dhh-agoda-text {
        font-size: 18px;
    }

    .dhh-trip-text {
        font-size: 16px;
    }

    .dhh-distance-card {
        padding: 16px 14px;
        margin-bottom: 24px;
    }

    .dhh-distance-row {
        gap: 8px;
        padding: 10px 0;
    }

    .dhh-distance-name {
        font-size: 13px;
    }

    .dhh-distance-metric {
        font-size: 13px;
    }

    .dhh-nusuk-license-card,
    .dhh-nusuk-verify-guide-card {
        padding: 16px 14px;
    }
}

@media (max-width: 360px) {
    .dhh-single-container {
        padding: 12px 10px 32px;
    }

    .dhh-partner-btn {
        flex: 1 1 100%;
        min-width: 0;
        width: 100%;
    }

    .dhh-hotel-title {
        font-size: 19px;
    }

    .dhh-tab-btn {
        padding: 7px 10px;
        font-size: 12px;
        gap: 5px;
    }

    .dhh-distance-card,
    .dhh-nusuk-license-card,
    .dhh-nusuk-verify-guide-card {
        padding: 14px 10px;
    }
}
