/*
Theme Name: Digiheave Travel
Theme URI: https://travel.digiheave.com
Author: Digiheave
Author URI: https://digiheave.com
Description: Japan-focused B2B travel theme for Digiheave Travel.
Version: 3.1.0
Requires at least: 6.0
Tested up to: 6.9.1
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: digiheave-travel
Tags: travel, business, one-page, custom-logo, custom-menu, featured-images
*/

:root {
    --dh-navy: #141728;
    --dh-navy-light: #1E2145;
    --dh-teal: #C85A7C;
    --dh-teal-light: #E08DA3;
    --dh-teal-glow: rgba(200,90,124,.12);
    --dh-gold: #C9A76E;
    --dh-white: #FFF;
    --dh-off-white: #FBF7F1;
    --dh-gray-50: #F5F0EA;
    --dh-gray-100: #E8E0D6;
    --dh-gray-200: #D1C7BB;
    --dh-gray-300: #A09689;
    --dh-gray-400: #7A6E62;
    --dh-gray-500: #5C5047;
    --dh-gray-600: #3D3530;
    --dh-font-display: 'Playfair Display', Georgia, serif;
    --dh-font-heading: 'Inter', system-ui, sans-serif;
    --dh-font-body: 'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--dh-font-body); color: #1A202E; background: #fff; line-height: 1.75; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
a { color: var(--dh-teal); text-decoration: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--dh-font-heading); font-weight: 700; line-height: 1.2; color: var(--dh-navy); }

.dh-container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1.25rem,4vw,2.5rem); }
.dh-container--wide { max-width: 1380px; }
.dh-container--narrow { max-width: 820px; }
.dh-section {
    padding: clamp(2.5rem, 6vw, 2rem) 0;
}
@media(max-width:480px) { .dh-section { padding: 2rem 0; } .dh-section-header { margin-bottom: 1.5rem; } .dh-section-label { font-size: .72rem; } }
.dh-section--gray { background: var(--dh-off-white); }
.dh-section--navy { background: var(--dh-navy); color: #fff; }

/* Packages page: intro + tab row are two adjacent sections — avoid double .dh-section vertical padding */
.page-packages .dh-section--packages-intro {
    padding-top: clamp(1.75rem, 4vw, 2.75rem);
    padding-bottom: clamp(0.35rem, 1.2vw, 0.85rem);
}
.page-packages .dh-section--packages-intro p:last-child { margin-bottom: 0; }
.page-packages .dh-section--packages-main {
    padding-top: clamp(0.85rem, 2vw, 1.35rem);
}

.dh-grid { display: grid; gap: clamp(1rem,2vw,2rem); }
.dh-grid--2 { grid-template-columns: repeat(2,1fr); }
.dh-grid--3 { grid-template-columns: repeat(3,1fr); }
.dh-grid--4 { grid-template-columns: repeat(4,1fr); }
@media(max-width:900px) { .dh-grid--4 { grid-template-columns: repeat(2,1fr); } }
@media(max-width:768px) { .dh-grid--3 { grid-template-columns: repeat(2,1fr); } .dh-grid { gap: 1rem; } }
@media(max-width:640px) { .dh-grid--2,.dh-grid--3,.dh-grid--4 { grid-template-columns: 1fr; } }
@media(max-width:360px) { .dh-container { padding-left: 1rem; padding-right: 1rem; } }

.dh-section-header { max-width: 680px; margin-bottom: clamp(2rem,4vw,3.5rem); }
.dh-section-header--center { text-align: center; margin-left: auto; margin-right: auto; }
.dh-section-label { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--dh-font-heading); font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--dh-teal); margin-bottom: .8rem; }
.dh-section-label::before { content: ''; width: 24px; height: 2px; background: currentColor; }

.dh-btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; font-family: var(--dh-font-heading); font-size: .9rem; font-weight: 600; padding: .85rem 2rem; border-radius: 8px; border: 2px solid transparent; cursor: pointer; transition: transform .25s, box-shadow .25s, background .25s, border-color .25s; text-decoration: none; min-height: 48px; }
.dh-btn svg { width: 18px; height: 18px; }
.dh-btn--primary { background: var(--dh-teal); color: #fff; border-color: var(--dh-teal); }
.dh-btn--primary:hover { background: #b04d6a; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(200,90,124,.35); color: #fff; }
.dh-btn--primary:active { transform: translateY(0); }
.dh-btn--outline { background: transparent; color: #000000; border-color: rgb(85 0 0 / 23%); }
.dh-btn--outline:hover { background: var(--dh-teal-glow); border-color: var(--dh-teal); color: var(--dh-teal); }
/* Outline on dark backgrounds (hero, banners) */
.dh-btn--outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.5); }
.dh-btn--outline-light:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; color: #fff; }
.dh-btn--ghost { background: transparent; color: var(--dh-teal); border-color: var(--dh-teal); }
.dh-btn--ghost:hover { background: var(--dh-teal-glow); }
.dh-btn--sm { padding: .6rem 1.4rem; font-size: .82rem; min-height: 42px; }
.dh-btn--md { padding: .75rem 1.75rem; font-size: .9rem; min-height: 46px; }
.dh-btn--lg { padding: 1rem 2.5rem; font-size: 1rem; min-height: 52px; }
@media(max-width:480px) { .dh-btn { padding: .75rem 1.5rem; font-size: .88rem; min-height: 48px; } .dh-btn--lg { padding: .9rem 1.75rem; } }

/* Home page partner CTA strip */
.home-partner-strip {
    text-align: center;
    max-width: min(1100px, 94vw);
    width: 100%;
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 3rem) clamp(1.25rem, 4vw, 2.5rem);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(20,23,40,.06);
    border: 1px solid rgba(20,23,40,.08);
}
.home-partner-strip__label {
    display: inline-block;
    font-family: var(--dh-font-heading);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--dh-teal);
    margin-bottom: .5rem;
}
.home-partner-strip__title {
    font-family: var(--dh-font-display);
    font-size: clamp(1.35rem, 3vw, 1.65rem);
    font-weight: 400;
    color: var(--dh-navy);
    margin: 0 0 .6rem;
    line-height: 1.25;
}
.home-partner-strip__text {
    font-size: 1rem;
    color: var(--dh-navy);
    line-height: 1.6;
    margin: 0 0 1.5rem;
}
.home-partner-strip__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
}
.home-partner-strip__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.home-partner-strip__risk { width: 100%; max-width: 100%; margin: 0 auto; }
.home-partner-strip__risk:not(:empty) {
    padding-top: 1.1rem;
    margin-top: .15rem;
    border-top: 1px solid var(--dh-gray-100);
}
.home-partner-strip__risk:empty { display: none; }
/* Risk lines: one row on wide viewports (matches bottom banner / how-it-works) */
.home-partner-strip__risk .dh-cta-risk {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 0.75rem 1.25rem;
    max-width: 100%;
    width: 100%;
    margin: 0.35rem auto 0;
    padding: 0;
}
.home-partner-strip__risk .dh-cta-risk li {
    flex: 1 1 200px;
    min-width: min(160px, 100%);
    max-width: 340px;
    margin: 0;
    padding: 0 0.35rem;
    text-indent: 0;
    text-align: center;
    line-height: 1.35;
    font-size: clamp(0.65rem, 1.35vw, 0.78rem);
    font-weight: 500;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 0.35rem;
}
.home-partner-strip__risk .dh-cta-risk li::before {
    content: "✓";
    flex-shrink: 0;
    margin-top: 0.12em;
    font-weight: 700;
    color: var(--dh-teal);
}
@media (min-width: 900px) {
    .home-partner-strip__risk .dh-cta-risk {
        flex-wrap: nowrap;
        gap: 1rem 1.75rem;
    }
    .home-partner-strip__risk .dh-cta-risk li {
        flex: 1 1 0;
        min-width: 0;
        max-width: none;
    }
}
@media (max-width: 480px) {
    .home-partner-strip__buttons { flex-direction: column; }
    .home-partner-strip__buttons .dh-btn { width: 100%; justify-content: center; }
}

/* Testimonials carousel (homepage + partner) */
.testimonial-carousel {
    position: relative;
    margin-top: clamp(1.5rem, 3vw, 2rem);
}
.testimonial-carousel__viewport {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    outline: none;
}
.testimonial-carousel__viewport:focus-visible {
    box-shadow: 0 0 0 3px rgba(200, 90, 124, 0.35);
    border-radius: 12px;
}
.testimonial-carousel__viewport::-webkit-scrollbar {
    display: none;
}
.testimonial-carousel__slide {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-width: 0;
    box-sizing: border-box;
    padding: 0 clamp(0.25rem, 1.5vw, 0.75rem);
}
.testimonial-carousel__slide-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2.5vw, 1.5rem);
    align-items: stretch;
    width: 100%;
}
@media (max-width: 900px) {
    .testimonial-carousel__slide-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 560px) {
    .testimonial-carousel__slide-grid {
        grid-template-columns: 1fr;
    }
}
.testimonial-carousel--single .testimonial-carousel__controls {
    display: none;
}
.testimonial-carousel__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.75rem, 2vw, 1.25rem);
    margin-top: 1.5rem;
    flex-wrap: wrap;
}
.testimonial-carousel__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 2px solid var(--dh-teal);
    background: #fff;
    color: var(--dh-teal);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}
.testimonial-carousel__arrow span {
    display: block;
    margin-top: -2px;
}
.testimonial-carousel__arrow:hover {
    background: var(--dh-teal-glow);
    color: var(--dh-navy);
    border-color: var(--dh-teal);
}
.testimonial-carousel__arrow:focus-visible {
    outline: 2px solid var(--dh-teal);
    outline-offset: 2px;
}
.testimonial-carousel__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    flex-wrap: wrap;
    min-height: 12px;
}
.testimonial-carousel__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--dh-gray-200);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}
.testimonial-carousel__dot:hover {
    background: var(--dh-gray-300);
}
.testimonial-carousel__dot.is-active {
    background: var(--dh-teal);
    transform: scale(1.25);
}
.testimonial-carousel__dot:focus-visible {
    outline: 2px solid var(--dh-teal);
    outline-offset: 2px;
}
.home-testimonials .testimonial-carousel__slide-grid .testimonial-card {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}
.page-partner .testimonial-carousel__slide-grid .testimonial-card {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}
.home-testimonials .testimonial-card {
    margin: 0;
    padding: clamp(1.35rem, 3vw, 1.75rem);
    background: #fff;
    border: 1px solid var(--dh-gray-100);
    border-radius: clamp(14px, 2.5vw, 18px);
    box-shadow: 0 4px 24px rgba(20, 23, 40, 0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}
.home-testimonials .testimonial-card::before {
    content: '“';
    font-family: var(--dh-font-display);
    font-size: 2.75rem;
    line-height: 1;
    color: rgba(200, 90, 124, 0.35);
    position: absolute;
    top: 0.85rem;
    left: 1.1rem;
    pointer-events: none;
}
.home-testimonials .testimonial-card__quote {
    font-size: 0.94rem;
    line-height: 1.75;
    color: var(--dh-gray-500);
    margin: 0 0 1.25rem;
    padding-top: 0.25rem;
    flex: 1 1 auto;
}
.home-testimonials .testimonial-card__cite {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1rem;
    border-top: 1px solid var(--dh-gray-100);
    margin-top: auto;
}
.home-testimonials .testimonial-card__avatar {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--dh-gray-100);
    background: var(--dh-gray-50);
    box-shadow: 0 2px 8px rgba(20, 23, 40, 0.06);
}
.home-testimonials .testimonial-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.home-testimonials .testimonial-card__who {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}
.home-testimonials .testimonial-card__author {
    font-family: var(--dh-font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--dh-navy);
}
.home-testimonials .testimonial-card__role {
    font-size: 0.82rem;
    color: var(--dh-gray-400);
    line-height: 1.4;
}

.skip-link { position: absolute; top: -100%; left: 1rem; padding: .8rem 1.5rem; background: var(--dh-teal); color: #fff; border-radius: 8px; z-index: 10000; font-weight: 600; }
.skip-link:focus { top: 1rem; }
#main-content { scroll-margin-top: 80px; }
@media(max-width:768px) { #main-content { scroll-margin-top: 70px; } }

/* HEADER */
.site-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: clamp(0.6rem, 2vw, 1rem) 0; transition: background .3s, padding .3s; padding-left: env(safe-area-inset-left); padding-right: env(safe-area-inset-right); }
.site-header.scrolled { background: rgba(11,24,41,.96); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: .5rem 0; }
.header-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1380px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2.5rem); }
@media(max-width:480px) { .site-header { padding-top: .5rem; padding-bottom: .5rem; } .site-logo__mark { width: 36px; height: 36px; } .site-logo__text { font-size: 1rem; } }
.site-logo { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.site-logo__mark { width: 42px; height: 42px; }
.site-logo__text { font-family: var(--dh-font-heading); font-size: 1.2rem; font-weight: 700; color: #fff; line-height: 1.1; }
.site-logo__text span { display: block; font-size: .6rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--dh-teal-light); margin-top: 2px; }
.main-nav { display: flex; align-items: center; }
.main-nav .menu { display: flex; list-style: none; gap: 0; }
.main-nav .menu { align-items: stretch; }
.main-nav .menu > li { position: relative; display: flex; align-items: center; }
.main-nav .menu a,
.main-nav .menu .menu-item__label { font-family: var(--dh-font-heading); font-size: .85rem; font-weight: 500; color: rgba(255,255,255,.7); padding: .5rem 1rem; transition: color .2s; display: block; text-decoration: none; cursor: pointer; }
.main-nav .menu a:hover,
.main-nav .menu .menu-item__label:hover { color: #fff; }
.main-nav .menu .menu-item__label { background: none; border: none; }
.main-nav .menu .submenu { list-style: none; position: absolute; top: 100%; left: 0; min-width: 180px; background: var(--dh-navy); padding: .5rem 0; margin: 0; box-shadow: 0 8px 24px rgba(0,0,0,.25); border-radius: 0 0 8px 8px; opacity: 0; visibility: hidden; transform: translateY(4px); transition: opacity .2s, visibility .2s, transform .2s; z-index: 50; }
.main-nav .menu .menu-item--has-children:hover .submenu,
.main-nav .menu .menu-item--has-children:focus-within .submenu,
.main-nav .menu .menu-item--has-children .submenu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.main-nav .menu .submenu a { padding: .6rem 1.25rem; white-space: nowrap; border-radius: 0; }
.main-nav .menu .menu-item__arrow { font-size: .65em; opacity: .8; margin-left: .2rem; }
.header-cta { display: flex; gap: .7rem; margin-left: 1rem; }
.mobile-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 10px; min-width: 44px; min-height: 44px; transition: transform .25s; }
.mobile-toggle span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s, opacity .3s; }
.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media(max-width:1024px) {
    .mobile-toggle { display: flex; }
    .main-nav .menu { position: fixed; top: 0; right: -100%; width: min(300px, 85vw); max-width: 100%; height: 100vh; background: var(--dh-navy); flex-direction: column; padding: 5rem 1.5rem 2rem; transition: right .35s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: -8px 0 32px rgba(0,0,0,.2); }
    .main-nav .menu.open,
    .main-nav.active .menu { right: 0; }
    .main-nav .menu a,
    .main-nav .menu .menu-item__label { padding: .85rem 0; font-size: 1rem; display: block; min-height: 44px; }
    .main-nav .menu .menu-item--has-children { flex-direction: column; align-items: stretch; }
    .main-nav .menu .submenu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; padding-left: 1rem; margin-top: 0; max-height: 0; overflow: hidden; transition: max-height .25s ease; }
    .main-nav .menu .menu-item--has-children.submenu-open .submenu { max-height: 300px; }
    .main-nav .menu .submenu a { padding: .5rem 0 .5rem 0; min-height: 44px; }
    .header-cta { display: none; }
}

/* HERO */
.hero { position: relative; min-height: 100vh; min-height: 100dvh; display: flex; align-items: center; background: var(--dh-navy); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .25; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(145deg,rgba(11,24,41,.94),rgba(11,24,41,.7) 45%,rgba(200,90,124,.08)); }
.hero__content { position: relative; z-index: 5; max-width: 700px; padding-top: clamp(2rem,6vw,4rem); padding-bottom: 2rem; }
.hero__badge { display: inline-flex; align-items: center; gap: .5rem; background: rgba(200,90,124,.15); border: 1px solid rgba(200,90,124,.3); border-radius: 50px; padding: .4rem 1.2rem; font-family: var(--dh-font-heading); font-size: .74rem; font-weight: 600; color: var(--dh-teal-light); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1.5rem; animation: heroFadeUp .7s ease-out .1s both; }
.hero__title { font-family: var(--dh-font-display); font-size: clamp(2rem,5.5vw,4.4rem); font-weight: 400; color: #fff; line-height: 1.08; margin-bottom: 1.2rem; animation: heroFadeUp .7s ease-out .2s both; }
.hero__title em { font-style: normal; color: var(--dh-teal-light); }
.hero__description { font-size: clamp(0.95rem, 2.2vw, 1.1rem); color: var(--dh-gray-200); margin-bottom: 2rem; max-width: 560px; line-height: 1.8; animation: heroFadeUp .7s ease-out .35s both; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; animation: heroFadeUp .7s ease-out .5s both; }
.hero__stats { display: flex; gap: clamp(1.5rem, 4vw, 3rem); margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.08); flex-wrap: wrap; animation: heroFadeUp .8s ease-out .65s both; }
.hero__stat-value { font-family: var(--dh-font-heading); font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 700; color: #fff; }
.hero__stat-label { font-size: clamp(0.75rem, 1.8vw, .82rem); color: var(--dh-gray-300); }
.hero__float { position: absolute; right: 6%; bottom: 12%; z-index: 5; display: flex; flex-direction: column; gap: 1rem; }
.hero__float-card { background: rgba(255,255,255,.05); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; padding: .9rem 1.3rem; color: #fff; font-size: .84rem; display: flex; align-items: center; gap: .7rem; transition: transform .3s, box-shadow .3s; }
.hero__float-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,.2); }
.hero__float-card .icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
@keyframes heroFadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@media(max-width:768px) {
  .hero__float { display: none; }
  .hero__stats { gap: 1.5rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .dh-btn { width: 100%; justify-content: center; }
}
@media(max-width:480px) {
  .hero { min-height: 100svh; padding-top: env(safe-area-inset-top, 0); }
  .hero__content { padding-top: 4rem; }
  .hero__title { font-size: 1.85rem; }
  .hero__stats { gap: 1.25rem; }
  .hero__stat-value { font-size: 1.35rem; }
}

/* TICKER */
.ticker { overflow: hidden; white-space: nowrap; background: var(--dh-teal); padding: .65rem 0; }
.ticker--navy { background: var(--dh-navy); }
.ticker--gold { background: linear-gradient(90deg,var(--dh-gold),#DBBF8A,var(--dh-gold)); }
.ticker__track { display: inline-flex; animation: ticker 35s linear infinite; gap: 2rem; }
.ticker__item { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--dh-font-heading); font-size: clamp(0.72rem, 1.8vw, .82rem); font-weight: 600; color: #fff; flex-shrink: 0; }
.ticker--gold .ticker__item { color: var(--dh-navy); }
.ticker__dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; opacity: .5; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@media (prefers-reduced-motion: reduce) { .ticker__track { animation: none; } }
@media(max-width:480px) { .ticker__track { gap: 1.5rem; } }

/* TRUST BAR */
.trust-bar { background: var(--dh-navy-light); border-bottom: 1px solid rgba(255,255,255,.06); padding: 1rem 0; }
.trust-bar__inner { display: flex; align-items: center; justify-content: center; gap: clamp(1rem, 4vw, 2.5rem); flex-wrap: wrap; padding: 0 1rem; }
.trust-bar__item { font-family: var(--dh-font-heading); font-size: clamp(0.7rem, 1.8vw, .78rem); font-weight: 500; color: var(--dh-gray-300); display: flex; align-items: center; gap: .5rem; }
.trust-bar__item strong { color: #fff; }
.trust-bar__item--proof { white-space: nowrap; }
.trust-bar__item--indian { max-width: 280px; text-align: center; line-height: 1.35; }
.trust-bar__item--badge strong { color: var(--dh-gold); }
@media(max-width:480px) { .trust-bar__inner { gap: .75rem; } .trust-bar__item { font-size: .72rem; } }

/* Indian outbound traveler trust (Admin → Pages → homepage) */
.hero__float-card--indian .hero__float-card__line { font-size: .78rem; font-weight: 600; line-height: 1.35; display: block; max-width: 220px; }
.hero__float-card--indian { align-items: flex-start; }
.dh-trust-banner { background: linear-gradient(135deg, rgba(201,167,110,.18) 0%, rgba(200,90,124,.12) 100%); border-top: 1px solid rgba(201,167,110,.25); border-bottom: 1px solid rgba(200,90,124,.15); padding: clamp(0.85rem, 2.5vw, 1.25rem) 0; }
.dh-trust-banner__text { margin: 0; text-align: center; font-family: var(--dh-font-heading); font-size: clamp(0.88rem, 2vw, 1rem); font-weight: 600; color: var(--dh-navy); max-width: 900px; margin-left: auto; margin-right: auto; line-height: 1.45; }
.package-card__indian-trust { display: flex; flex-direction: column; gap: .45rem; margin-top: .65rem; padding-top: .65rem; border-top: 1px dashed var(--dh-gray-100); }
.package-card__indian-badge { font-size: .68rem; font-weight: 700; color: var(--dh-navy); background: linear-gradient(135deg, rgba(201,167,110,.2), rgba(200,90,124,.12)); padding: .35rem .65rem; border-radius: 8px; line-height: 1.3; }
.package-card__indian-lang { font-size: .74rem; font-weight: 600; color: var(--dh-teal); line-height: 1.35; }
/* Services page: CMS intro paragraph */
.page-services .services-page-lead.dh-section {
    padding: clamp(1.5rem, 4vw, 2.75rem) 0;
}
.page-services .services-page-lead + .dh-section {
    padding-top: clamp(1.5rem, 4vw, 3rem);
}
.services-page-lead__intro {
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: var(--dh-gray-400);
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    line-height: 1.55;
}
.services-page-lead__intro p {
    margin: 0;
}
.services-page-lead__intro p + p {
    margin-top: 0.75rem;
}

/* Urgency banners & risk reversal (homepage — Admin → Pages → homepage) */
.dh-urgency-banner { padding: clamp(0.75rem, 2vw, 1rem) 0; border-bottom: 1px solid rgba(20,23,40,.06); }
.dh-urgency-banner--sakura { background: linear-gradient(90deg, rgba(255, 183, 197, .35), rgba(255, 218, 225, .5), rgba(255, 183, 197, .35)); border-bottom-color: rgba(200, 90, 124, .2); }
.dh-urgency-banner--season { background: linear-gradient(135deg, rgba(180, 210, 238, .35), rgba(230, 240, 250, .6)); border-bottom: 1px solid rgba(30, 33, 69, .08); }
.dh-urgency-banner__text { margin: 0; text-align: center; font-family: var(--dh-font-heading); font-size: clamp(0.82rem, 1.9vw, 0.95rem); font-weight: 700; color: var(--dh-navy); max-width: 960px; margin-left: auto; margin-right: auto; line-height: 1.45; }
.package-card__slots { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: .45rem .65rem; font-family: var(--dh-font-heading); font-size: .68rem; font-weight: 700; color: #fff; text-align: center; background: linear-gradient(transparent, rgba(20,23,40,.88)); line-height: 1.25; }
.dh-cta-wrap { display: flex; flex-direction: column; align-items: flex-start; gap: .5rem; }
.dh-cta-wrap--block { width: 100%; align-items: stretch; }
.dh-cta-wrap--block .dh-cta-risk { align-self: center; max-width: 100%; }
.dh-cta-wrap--center { align-items: center; text-align: center; margin-left: auto; margin-right: auto; }
.dh-cta-risk { list-style: none; margin: 0; padding: 0; font-size: .68rem; font-weight: 500; color: var(--dh-gray-400); line-height: 1.45; max-width: 260px; }
.dh-cta-risk li { margin: 0; padding-left: 1em; text-indent: -0.6em; }
.dh-cta-risk li::before { content: "✓ "; color: var(--dh-teal); font-weight: 700; }
.dh-cta-risk--on-dark { color: rgba(255, 255, 255, .72); }
.dh-cta-risk--on-dark li::before { color: var(--dh-teal-light); }
.inquiry-form__reply-urgency { display: flex; align-items: center; gap: .5rem; margin: 0 0 1.25rem; padding: .65rem 1rem; background: var(--dh-teal-glow); border: 1px solid rgba(200, 90, 124, .2); border-radius: 12px; font-family: var(--dh-font-heading); font-size: .88rem; font-weight: 700; color: var(--dh-navy); }
.inquiry-form__reply-urgency-icon { font-size: 1.15rem; line-height: 1; flex-shrink: 0; }

/* PROOF BAR (HOME) */
.proof-bar-section { padding: 1.1rem 0 1.4rem; background: linear-gradient(180deg,#f7f6f3 0%, #fff 100%); }
.proof-bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .65rem;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(20,23,40,.09);
    border-radius: 16px;
    padding: .65rem;
    box-shadow: 0 12px 28px rgba(12,18,32,.08);
}
.proof-bar__item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: .7rem .85rem .7rem 1.5rem;
    border-radius: 10px;
    background: linear-gradient(135deg,#ffffff 0%, #faf8f5 100%);
    border: 1px solid var(--dh-gray-100);
    font-family: var(--dh-font-heading);
    font-size: .84rem;
    font-weight: 700;
    color: var(--dh-navy);
    text-align: center;
    line-height: 1.3;
}
.proof-bar__item::before {
    content: '';
    position: absolute;
    left: .7rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--dh-teal);
    box-shadow: 0 0 0 3px rgba(200,90,124,.12);
}
@media (max-width: 980px) {
    .proof-bar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
    .proof-bar-section { padding: .8rem 0 1rem; }
    .proof-bar { grid-template-columns: 1fr; gap: .5rem; padding: .55rem; }
    .proof-bar__item { min-height: 46px; font-size: .8rem; justify-content: flex-start; text-align: left; }
}

/* PROMO BANNER */
.promo-banner { background: linear-gradient(135deg,#152238,var(--dh-navy)); padding: 1.5rem 0; text-align: center; }
.promo-banner__inner { display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.promo-banner__text { font-family: var(--dh-font-heading); font-size: .92rem; color: #fff; }
.promo-banner__text strong { color: var(--dh-teal-light); }
.promo-banner__cta { font-family: var(--dh-font-heading); font-size: .82rem; font-weight: 600; color: var(--dh-navy); background: var(--dh-teal-light); padding: .45rem 1.2rem; border-radius: 50px; }

/* DESTINATION CARDS */
.destination-card { position: relative; border-radius: clamp(14px, 4vw, 22px); overflow: hidden; aspect-ratio: 3/4; }
.destination-card__img { position: absolute; inset: 0; }
.destination-card__img img { width: 100%; height: 100%; object-fit: cover; }
.destination-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(11,24,41,.9),transparent 55%); }
.destination-card__content { position: absolute; bottom: 0; left: 0; right: 0; padding: clamp(1rem, 3vw, 1.8rem); z-index: 2; }
.destination-card__tag { display: inline-block; background: var(--dh-teal); color: #fff; font-family: var(--dh-font-heading); font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: .25rem .7rem; border-radius: 50px; margin-bottom: .6rem; }
.destination-card h3 { font-family: var(--dh-font-display); font-size: clamp(1.2rem, 3vw, 1.5rem); color: #fff; margin-bottom: .2rem; }
.destination-card p { font-size: clamp(0.75rem, 1.8vw, .82rem); color: rgba(255,255,255,.7); margin: 0; }
@media(max-width:480px) { .destination-card__content { padding: 1rem; } }

/* SERVICE CARDS */
.service-card { background: #fff; border: 1px solid var(--dh-gray-100); border-radius: 14px; padding: 2rem; transition: all .3s; }
.service-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,.1); transform: translateY(-4px); }
.service-card__icon { width: 50px; height: 50px; border-radius: 8px; background: var(--dh-teal-glow); display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; font-size: 1.4rem; }
.service-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.service-card p { font-size: .88rem; color: var(--dh-gray-400); }

/* PROCESS */
.process-step { text-align: center; padding: 0 1rem; }
.process-step__number { width: 54px; height: 54px; border-radius: 50%; background: var(--dh-teal); color: #fff; font-family: var(--dh-font-heading); font-size: 1rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.process-step h4 { font-size: 1rem; margin-bottom: .4rem; }
.process-step p { font-size: .86rem; color: var(--dh-gray-400); }

/* PACKAGE CARDS */
.package-card { background: #fff; border-radius: clamp(14px, 4vw, 22px); overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,.04); border: 1px solid var(--dh-gray-100); transition: transform .35s ease, box-shadow .35s ease; }
.package-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,.1); transform: translateY(-6px); }
.package-card__img { position: relative; padding-bottom: 62.5%; overflow: hidden; background: var(--dh-gray-100); }
.package-card__img > img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.package-card__badge { position: absolute; top: .9rem; left: .9rem; z-index: 3; background: var(--dh-teal); color: #fff; font-family: var(--dh-font-heading); font-size: .7rem; font-weight: 600; padding: .25rem .7rem; border-radius: 50px; }
.package-card__body { padding: clamp(1rem, 2.5vw, 1.5rem); }
.package-card__highlight { font-size: .72rem; }
@media(max-width:480px) { .package-card__body { padding: 1.1rem; } .package-card__title { font-size: 1.05rem; } .package-card__highlights { gap: .25rem; } }
.package-card__duration { font-family: var(--dh-font-heading); font-size: .75rem; font-weight: 600; color: var(--dh-teal); text-transform: uppercase; letter-spacing: .05em; margin-bottom: .3rem; }
.package-card__title { font-size: 1.15rem; margin-bottom: .3rem; }
.package-card__price { font-family: var(--dh-font-heading); font-size: .92rem; font-weight: 700; color: var(--dh-navy); margin-bottom: .4rem; }
.package-card__highlights { display: flex; flex-wrap: wrap; gap: .3rem; margin: .8rem 0; }
.package-card__highlight { font-size: .72rem; background: var(--dh-gray-50); color: var(--dh-gray-500); padding: .2rem .6rem; border-radius: 50px; }
.package-card__footer { padding-top: .8rem; border-top: 1px solid var(--dh-gray-100); }

/* TESTIMONIALS (partner page) */
.page-partner .testimonial-card { background: #fff; border-radius: 14px; padding: 2rem; box-shadow: 0 1px 4px rgba(0,0,0,.04); border: 1px solid var(--dh-gray-100); }
.page-partner .testimonial-card__stars { color: var(--dh-gold); margin-bottom: .8rem; }
.page-partner .testimonial-card__text { font-size: .96rem; line-height: 1.8; color: var(--dh-gray-600); margin-bottom: 1.2rem; font-style: italic; }
.page-partner .testimonial-card__author { display: flex; align-items: center; gap: .8rem; }
.page-partner .testimonial-card__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--dh-gray-100); display: flex; align-items: center; justify-content: center; font-family: var(--dh-font-heading); font-weight: 700; color: var(--dh-teal); font-size: .88rem; flex-shrink: 0; }
.page-partner .testimonial-card__avatar--photo { padding: 0; overflow: hidden; }
.page-partner .testimonial-card__avatar--photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.page-partner .testimonial-card__name { font-family: var(--dh-font-heading); font-weight: 700; font-size: .88rem; color: var(--dh-navy); }
.page-partner .testimonial-card__role { font-size: .78rem; color: var(--dh-gray-400); }

/* FAQ */
.faq { border: 1px solid var(--dh-gray-100); border-radius: 14px; overflow: hidden; margin-bottom: .6rem; transition: box-shadow .25s; }
.faq:hover { box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.faq summary { list-style: none; padding: 1.2rem 1.5rem; font-family: var(--dh-font-heading); font-size: 1rem; font-weight: 600; color: var(--dh-navy); cursor: pointer; display: flex; align-items: center; justify-content: space-between; min-height: 48px; transition: background .2s; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1.3rem; color: var(--dh-teal); transition: transform .3s ease; flex-shrink: 0; margin-left: .5rem; }
.faq[open] summary::after { transform: rotate(45deg); }
.faq[open] summary { background: var(--dh-gray-50); }
.faq__answer { padding: 0 1.5rem 1.3rem; font-size: .92rem; line-height: 1.8; color: var(--dh-gray-500); animation: faqOpen .3s ease-out; }
@keyframes faqOpen { from { opacity: 0; } to { opacity: 1; } }
@media(max-width:480px) { .faq summary { padding: 1rem 1.25rem; font-size: .94rem; } .faq__answer { padding: 0 1.25rem 1rem; font-size: .88rem; } }

/* PARTNER CTA */
.partner-cta { border-radius: clamp(14px, 4vw, 22px); padding: clamp(1.75rem, 5vw, 4rem); background: var(--dh-navy); position: relative; overflow: hidden; background-size: cover; background-position: center; }
.partner-cta__content { position: relative; z-index: 2; max-width: 600px; }
.partner-cta h2 { font-family: var(--dh-font-display); color: #fff; font-size: clamp(1.4rem, 3.2vw, 2.5rem); margin-bottom: 0.75rem; line-height: 1.2; }
.partner-cta p { color: var(--dh-gray-200); margin-bottom: 1.5rem; font-size: clamp(0.9rem, 1.8vw, 1rem); }
.partner-cta .dh-btn { flex: 1; min-width: 140px; }
@media(max-width:480px) { .partner-cta { padding: 1.5rem; } .partner-cta h2 { font-size: 1.3rem; } .partner-cta p { margin-bottom: 1.25rem; } .partner-cta .dh-btn { width: 100%; } }

/* INQUIRY */
.inquiry-form { background: #fff; border-radius: 22px; padding: 2.5rem; box-shadow: 0 16px 48px rgba(0,0,0,.1); border: 1px solid var(--dh-gray-100); }
.inquiry-form__title { font-size: 1.3rem; margin-bottom: .3rem; }
.inquiry-form__subtitle { font-size: .88rem; color: var(--dh-gray-400); margin-bottom: .75rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-family: var(--dh-font-heading); font-size: .8rem; font-weight: 600; color: var(--dh-gray-600); margin-bottom: .3rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: .7rem 1rem; border: 1.5px solid var(--dh-gray-200); border-radius: 8px; font-family: var(--dh-font-body); font-size: .9rem; }
.form-group input[type="date"] { min-height: 2.85rem; color: var(--dh-navy); }
.form-group__hint { display: block; margin-top: .35rem; font-size: .78rem; color: var(--dh-gray-400); line-height: 1.35; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--dh-teal); outline: none; box-shadow: 0 0 0 3px var(--dh-teal-glow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.inquiry-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media(max-width:900px) { .inquiry-layout { grid-template-columns: 1fr; } }
@media(max-width:640px) { .form-row { grid-template-columns: 1fr; } .inquiry-form { padding: 1.5rem; } .inquiry-form__title { font-size: 1.15rem; } }

/* FOOTER */
.site-footer { background: var(--dh-navy); color: var(--dh-gray-300); padding: clamp(3rem,6vw,5rem) 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3,1fr); gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.06); }
@media(max-width:768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-heading { font-family: var(--dh-font-heading); font-size: .82rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { font-size: .86rem; color: var(--dh-gray-300); }
.footer-links a:hover { color: var(--dh-teal-light); }
.footer-social { display: flex; gap: .6rem; margin-top: 1rem; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: var(--dh-gray-300); }
.footer-social a:hover { background: var(--dh-teal); border-color: var(--dh-teal); color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; padding: 1.4rem 0; font-size: .8rem; color: var(--dh-gray-400); flex-wrap: wrap; gap: 0.5rem; }
@media(max-width:640px) { .footer-bottom { flex-direction: column; gap: .4rem; text-align: center; } }
@media(max-width:480px) { .footer-grid { gap: 2rem; padding-bottom: 2rem; } .footer-heading { font-size: .78rem; margin-bottom: .75rem; } .footer-links a { font-size: .82rem; } }

/* WHATSAPP FAB */
.whatsapp-fab { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999; width: 54px; height: 54px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 18px rgba(37,211,102,.35); color: #fff; }

.animate-on-scroll { opacity: 0; transform: translateY(28px); transition: opacity .55s ease-out, transform .55s ease-out; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
/* Stagger children in grids for a polished reveal */
.dh-grid--3 .animate-on-scroll.visible:nth-child(1), .dh-grid--4 .animate-on-scroll.visible:nth-child(1) { transition-delay: 0s; }
.dh-grid--3 .animate-on-scroll.visible:nth-child(2), .dh-grid--4 .animate-on-scroll.visible:nth-child(2) { transition-delay: .06s; }
.dh-grid--3 .animate-on-scroll.visible:nth-child(3), .dh-grid--4 .animate-on-scroll.visible:nth-child(3) { transition-delay: .12s; }
.dh-grid--3 .animate-on-scroll.visible:nth-child(4), .dh-grid--4 .animate-on-scroll.visible:nth-child(4) { transition-delay: .18s; }
.dh-grid--3 .animate-on-scroll.visible:nth-child(5), .dh-grid--4 .animate-on-scroll.visible:nth-child(5) { transition-delay: .24s; }
.dh-grid--3 .animate-on-scroll.visible:nth-child(6), .dh-grid--4 .animate-on-scroll.visible:nth-child(6) { transition-delay: .3s; }
.dh-grid--4 .animate-on-scroll.visible:nth-child(7) { transition-delay: .36s; }
.dh-grid--4 .animate-on-scroll.visible:nth-child(8) { transition-delay: .42s; }
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }

/* Breadcrumb (inner pages) */
/* Reserve space for fixed header so hero content never overlaps logo/nav */
.page-hero {
    position: relative;
    background: var(--dh-navy) url('https://images.unsplash.com/photo-1492571350019-22de08371fd3?w=1600&h=600&fit=crop') center / cover no-repeat;
    padding-top: calc(72px + clamp(1.5rem, 4vw, 2.5rem));
    padding-bottom: clamp(2rem, 5vw, 2.5rem);
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(11,24,41,.88) 0%, rgba(11,24,41,.75) 50%, rgba(200,90,124,.12) 100%);
    pointer-events: none;
}
.page-hero .dh-container { position: relative; z-index: 2; padding-top: 0.5rem; }
.breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: .35rem; font-family: var(--dh-font-heading); font-size: .78rem; margin-bottom: 1rem; }
.breadcrumb a { color: var(--dh-gray-300); }
.breadcrumb a:hover { color: var(--dh-teal-light); }
.breadcrumb span:not(.current) { color: var(--dh-gray-400); }
.breadcrumb .current { color: #fff; font-weight: 600; }
.page-hero h1 { font-family: var(--dh-font-display); font-size: clamp(1.85rem, 4.5vw, 2.75rem); font-weight: 400; color: #fff; margin: 0; line-height: 1.15; letter-spacing: -0.02em; }
.page-hero .page-hero__sub { color: var(--dh-gray-300); font-size: clamp(0.9rem, 1.8vw, 1rem); margin-top: .6rem; max-width: 560px; line-height: 1.6; }
@media (max-width: 768px) { .page-hero { padding-top: calc(64px + 1.25rem); padding-bottom: 1.75rem; } .page-hero .dh-container { padding-top: 0.25rem; } }
@media (max-width: 480px) { .page-hero { padding-top: calc(56px + 1rem); } }

.page-inner-title { font-size: clamp(1.25rem, 2.5vw, 1.5rem); text-align: center; margin-bottom: 0.35rem; }
.page-inner-sub { text-align: center; font-size: .88rem; color: var(--dh-gray-400); margin-bottom: 1.5rem; }

/* Active nav link on internal pages */
.page-destinations .main-nav a[href="destinations.html"],
.page-transfers .main-nav a[href="transfers.html"],
.page-packages .main-nav a[href="packages.html"],
.page-services .main-nav a[href="services.html"],
.page-partner .main-nav a[href="partner.html"],
.page-contact .main-nav a[href="contact.html"],
.page-terms .main-nav a[href="terms.html"] { color: #fff !important; font-weight: 600; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--dh-teal); display: inline-block; animation: dotPulse 2s ease-in-out infinite; }
@keyframes dotPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .7; transform: scale(1.15); } }

/* ============================================
   TRANSFER CARDS
   ============================================ */
.transfer-card { background: #fff; border: 1px solid var(--dh-gray-100); border-radius: clamp(14px, 4vw, 22px); overflow: hidden; transition: transform .35s ease, box-shadow .35s ease; }
.transfer-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,.1); transform: translateY(-4px); }
.transfer-card__img { position: relative; padding-bottom: 55%; overflow: hidden; }
.transfer-card__img img { position: absolute; top: 0; left: 0; width: 100%;  object-fit: cover; display: block; }
.transfer-card__img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 50%, rgba(20,23,40,.4)); }
.transfer-card__header { padding: .7rem 1.2rem; background: var(--dh-navy); display: flex; align-items: center; gap: .5rem; }
.transfer-card__point { font-family: var(--dh-font-heading); font-size: clamp(0.76rem, 1.8vw, .8rem); font-weight: 700; color: #fff; white-space: nowrap; }
.transfer-card__body { padding: 1rem clamp(1rem, 2vw, 1.5rem) 1.5rem; }
@media(max-width:480px) { .transfer-card__body { padding: .9rem 1rem 1.2rem; } }
.transfer-card__arrow { width: 36px; height: 1px; background: var(--dh-teal); position: relative; }
.transfer-card__arrow::after { content: ''; position: absolute; right: -1px; top: -3px; border: 3px solid transparent; border-left: 5px solid var(--dh-teal); }
.vehicle-row { display: flex; align-items: center; justify-content: space-between; padding: .6rem .8rem; border-radius: 8px; background: var(--dh-gray-50); margin-bottom: .4rem; }
.vehicle-row:hover { background: var(--dh-teal-glow); }
.vehicle-row__name { font-family: var(--dh-font-heading); font-weight: 600; font-size: .86rem; color: var(--dh-navy); }
.vehicle-row__cap { font-size: .72rem; color: var(--dh-gray-400); }
.quote-link { font-family: var(--dh-font-heading); font-size: .82rem; font-weight: 600; color: var(--dh-teal); white-space: nowrap; }
.route-card { background: #fff; border: 1px solid var(--dh-gray-100); border-radius: 18px; padding: 1.8rem; }
.route-card__head { display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem; }
.route-card__code { width: 52px; height: 52px; border-radius: 12px; background: var(--dh-navy); display: flex; align-items: center; justify-content: center; font-family: var(--dh-font-heading); font-weight: 800; color: #fff; font-size: 1rem; flex-shrink: 0; }
.route-card__title { font-family: var(--dh-font-heading); font-weight: 700; font-size: 1.05rem; color: var(--dh-navy); }
.route-card__sub { font-size: .8rem; color: var(--dh-gray-400); }
.route-card__list { list-style: none; padding: 0; margin: 0 0 1rem; display: flex; flex-direction: column; gap: .3rem; font-size: .82rem; color: var(--dh-gray-500); }
.feat-tag { display: inline-flex; align-items: center; gap: .2rem; font-size: .72rem; color: var(--dh-gray-500); background: var(--dh-gray-50); padding: .2rem .5rem; border-radius: 50px; }
.transfer-feats { display: flex; flex-wrap: wrap; gap: .3rem; margin-top: .8rem; padding-top: .8rem; border-top: 1px solid var(--dh-gray-100); }

/* ============================================
   BENEFIT CARDS
   ============================================ */
.benefit-card { background: #fff; border: 1px solid var(--dh-gray-100); border-radius: 14px; padding: 2rem; text-align: center; transition: all .3s; }
.benefit-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,.1); transform: translateY(-4px); border-color: var(--dh-teal); }
.benefit-card__icon { font-size: 2rem; margin-bottom: .8rem; }
.benefit-card h4 { font-size: 1rem; margin-bottom: .4rem; }
.benefit-card p { font-size: .86rem; color: var(--dh-gray-400); }

/* ============================================
   T&C SECTION
   ============================================ */
.tc-section { max-width: 820px; margin: 0 auto; }
.tc-section h3 { font-size: 1.1rem; margin: 1.5rem 0 .5rem; color: var(--dh-navy); }
.tc-section p, .tc-section li { font-size: .9rem; color: var(--dh-gray-500); line-height: 1.8; }
.tc-section ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.tc-section li { margin-bottom: .3rem; }

/* Individual destination city pages (Admin → Pages, slug destination-*) */
.page-destination-city .page-body--destination {
    max-width: 820px;
    margin: 0 auto;
}
.page-destination-city .page-body--destination h2 {
    font-family: var(--dh-font-heading);
    font-size: clamp(1.05rem, 2.2vw, 1.2rem);
    margin: 1.75rem 0 0.65rem;
    color: var(--dh-navy);
}
.page-destination-city .page-body--destination h2:first-child { margin-top: 0; }
.page-destination-city .page-body--destination p,
.page-destination-city .page-body--destination li {
    font-size: 0.92rem;
    color: var(--dh-gray-500);
    line-height: 1.75;
}
.page-destination-city .page-body--destination ul {
    padding-left: 1.35rem;
    margin: 0 0 1rem;
}
.page-destination-city .page-body--destination li { margin-bottom: 0.35rem; }

/* ============================================
   COMPARE BANNER
   ============================================ */
.cmp-banner { background: var(--dh-navy); border-radius: clamp(14px, 4vw, 22px); padding: clamp(1.5rem, 4vw, 2.5rem); display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-top: 2rem; }
.cmp-banner h3 { font-family: var(--dh-font-heading); font-size: clamp(1.1rem, 2.5vw, 1.3rem); color: #fff; margin-bottom: .3rem; }
.cmp-banner p { font-size: clamp(0.82rem, 1.8vw, .88rem); color: var(--dh-gray-300); margin: 0; }
.cmp-stats { display: flex; gap: clamp(1.25rem, 3vw, 2.5rem); flex-wrap: wrap; }
.cmp-stat strong { display: block; font-family: var(--dh-font-heading); font-size: clamp(1.25rem, 3vw, 1.5rem); font-weight: 700; color: var(--dh-teal-light); }
.cmp-stat span { font-size: clamp(0.7rem, 1.6vw, .76rem); color: var(--dh-gray-300); }
@media(max-width:768px) { .cmp-banner { flex-direction: column; text-align: center; } .cmp-stats { justify-content: center; } }
@media(max-width:480px) { .cmp-banner { padding: 1.25rem; margin-top: 1.5rem; } .cmp-stats { gap: 1rem; } }

/* ============================================
   SECTION BANNER
   ============================================ */
.section-banner { position: relative; height: clamp(180px, 28vw, 300px); min-height: 160px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.section-banner--cta-wide {
    height: auto;
    min-height: clamp(240px, 38vw, 360px);
    padding: clamp(1.75rem, 4vw, 2.75rem) 0;
}
.section-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.section-banner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(11,24,41,.88),rgba(200,90,124,.2)); }
.section-banner__content { position: relative; z-index: 2; text-align: center; max-width: 700px; padding: clamp(0.75rem, 2vw, 1.5rem); }
.section-banner--cta-wide .section-banner__content { max-width: min(1100px, 94vw); }
.section-banner h2 { font-family: var(--dh-font-display); color: #fff; font-size: clamp(1.25rem, 3.2vw, 2.4rem); margin-bottom: .35rem; line-height: 1.25; }
.section-banner p { color: var(--dh-gray-200); font-size: clamp(0.85rem, 1.8vw, 1rem); margin: 0; }
@media(max-width:480px) { .section-banner { min-height: 140px; } .section-banner h2 { font-size: 1.15rem; } .section-banner p { font-size: .8rem; } }

/* Bottom CTA + How it works: two buttons row; risk lines in one row (homepage) */
.dh-cta-wrap--banner,
.dh-cta-wrap--how-banner {
    width: 100%;
    max-width: min(1100px, 100%);
    align-items: center;
    margin-inline: auto;
}
.dh-how-cta__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: 100%;
    margin-bottom: 0.35rem;
}
@media (max-width: 520px) {
    .dh-how-cta__buttons { flex-direction: column; }
    .dh-how-cta__buttons .dh-btn { width: 100%; max-width: 22rem; justify-content: center; }
}
.dh-cta-wrap--banner .dh-cta-risk,
.dh-cta-wrap--how-banner .dh-cta-risk {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 0.75rem 1.25rem;
    max-width: 100%;
    width: 100%;
    margin: 0.85rem 0 0;
    padding: 0;
}
.dh-cta-wrap--banner .dh-cta-risk li,
.dh-cta-wrap--how-banner .dh-cta-risk li {
    flex: 1 1 200px;
    min-width: min(160px, 100%);
    max-width: 340px;
    margin: 0;
    padding: 0 0.35rem;
    text-indent: 0;
    text-align: center;
    line-height: 1.35;
    font-size: clamp(0.65rem, 1.35vw, 0.78rem);
    font-weight: 500;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 0.35rem;
}
.dh-cta-wrap--banner .dh-cta-risk li::before,
.dh-cta-wrap--how-banner .dh-cta-risk li::before {
    content: "✓";
    flex-shrink: 0;
    margin-top: 0.12em;
    font-weight: 700;
}
.dh-cta-wrap--banner .dh-cta-risk li::before { color: var(--dh-teal-light); }
.dh-cta-wrap--how-banner .dh-cta-risk li::before { color: var(--dh-teal); }
@media (min-width: 900px) {
    .dh-cta-wrap--banner .dh-cta-risk,
    .dh-cta-wrap--how-banner .dh-cta-risk {
        flex-wrap: nowrap;
        gap: 1rem 1.75rem;
    }
    .dh-cta-wrap--banner .dh-cta-risk li,
    .dh-cta-wrap--how-banner .dh-cta-risk li {
        flex: 1 1 0;
        min-width: 0;
        max-width: none;
    }
}

/* ============================================
   SEASON TABS
   ============================================ */
.season-tabs { display: flex; justify-content: center; gap: .5rem; margin-bottom: 2rem; flex-wrap: wrap; padding: 0 .5rem; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.season-tabs::-webkit-scrollbar { display: none; }
.season-tab { padding: .6rem 1.2rem; border-radius: 50px; border: 2px solid var(--dh-gray-200); font-family: var(--dh-font-heading); font-size: .8rem; font-weight: 600; color: var(--dh-gray-500); cursor: pointer; transition: background .2s, color .2s, border-color .2s, transform .2s; background: transparent; outline: none; -webkit-appearance: none; flex-shrink: 0; min-height: 44px; }
.season-tab:hover, .season-tab.active { background: var(--dh-teal); color: #fff; border-color: var(--dh-teal); }
.season-tab:active { transform: scale(0.98); }
@media(max-width:480px) { .season-tabs { justify-content: flex-start; margin-bottom: 1.5rem; } .season-tab { padding: .5rem 1rem; font-size: .76rem; } }

/* ============================================
   ITINERARY TIMELINE
   ============================================ */
.itin-day { display: flex; gap: 1.25rem; margin-bottom: 1.5rem; }
.itin-marker { display: flex; flex-direction: column; align-items: center; width: 36px; flex-shrink: 0; }
.itin-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--dh-teal); border: 3px solid var(--dh-teal-glow); }
.itin-line { width: 2px; flex: 1; background: var(--dh-gray-200); margin-top: 4px; }
.itin-content h4 { font-size: clamp(0.88rem, 2vw, .92rem); color: var(--dh-teal); margin-bottom: .2rem; }
.itin-content p { font-size: .86rem; color: var(--dh-gray-500); margin: 0; }
@media(max-width:480px) { .itin-day { gap: 1rem; margin-bottom: 1.25rem; } .itin-marker { width: 32px; } .itin-dot { width: 12px; height: 12px; border-width: 2px; } .itin-content h4 { font-size: .85rem; } .itin-content p { font-size: .82rem; } }

/* ============================================
   TRAVEL QUOTE POPUP
   ============================================ */
.quote-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.quote-modal.is-open {
    opacity: 1;
    visibility: visible;
}
.quote-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 23, 40, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
}
.quote-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 560px;
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 24px 64px rgba(20, 23, 40, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.05);
    transform: scale(0.96) translateY(12px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.quote-modal.is-open .quote-modal__dialog {
    transform: scale(1) translateY(0);
}
.quote-modal__inner {
    padding: clamp(1.75rem, 4vw, 2.5rem);
    border-top: 4px solid var(--dh-teal);
}
.quote-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dh-gray-50);
    border: none;
    border-radius: 12px;
    color: var(--dh-gray-500);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.quote-modal__close:hover {
    background: var(--dh-gray-100);
    color: var(--dh-navy);
}
.quote-modal__header {
    margin-bottom: 1.5rem;
    padding-right: 3rem;
}
.quote-modal__label {
    display: inline-block;
    font-family: var(--dh-font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dh-teal);
    margin-bottom: 0.35rem;
}
.quote-modal__title {
    font-family: var(--dh-font-display);
    font-size: clamp(1.4rem, 3.2vw, 1.75rem);
    font-weight: 500;
    color: var(--dh-navy);
    margin: 0 0 0.4rem;
    line-height: 1.2;
}
.quote-modal__sub {
    font-size: 0.9rem;
    color: var(--dh-gray-500);
    margin: 0;
    line-height: 1.5;
}
.quote-modal__form .quote-modal__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
.quote-modal__field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.quote-modal__field--full {
    margin-bottom: 1rem;
}
.quote-modal__form label {
    font-family: var(--dh-font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--dh-navy);
}
.quote-modal__form input,
.quote-modal__form select,
.quote-modal__form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--dh-gray-200);
    border-radius: 10px;
    font-family: var(--dh-font-body);
    font-size: 0.9rem;
    color: var(--dh-navy);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.quote-modal__form input:focus,
.quote-modal__form select:focus,
.quote-modal__form textarea:focus {
    outline: none;
    border-color: var(--dh-teal);
    box-shadow: 0 0 0 3px var(--dh-teal-glow);
}
.quote-modal__form input::placeholder,
.quote-modal__form textarea::placeholder {
    color: var(--dh-gray-300);
}
.quote-modal__actions {
    margin-top: 0.5rem;
}
.quote-modal__submit {
    width: 100%;
    justify-content: center;
}
.quote-modal__response {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}
.quote-modal__response.success {
    background: rgba(0, 160, 120, 0.1);
    color: #0d7a5a;
}
.quote-modal__response.error {
    background: rgba(200, 60, 60, 0.08);
    color: #b91c1c;
}
@media (max-width: 540px) {
    .quote-modal__form .quote-modal__row {
        grid-template-columns: 1fr;
    }
    .quote-modal__inner {
        padding: 1.5rem;
    }
    .quote-modal__close {
        top: 0.75rem;
        right: 0.75rem;
        width: 40px;
        height: 40px;
    }
    .quote-modal__header {
        padding-right: 2.5rem;
    }
}

.terms-consent-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(15, 27, 45, 0.12);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 34px rgba(15, 27, 45, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transform: translateY(30px) scale(0.96);
    pointer-events: none;
    transition: opacity 0.45s ease, transform 0.52s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease;
}
.terms-consent-banner.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    animation: termsBannerIntro 0.62s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 18px 40px rgba(15, 27, 45, 0.24), 0 0 0 1px rgba(20, 184, 166, 0.16) inset;
}
.terms-consent-banner.is-hiding {
    opacity: 0;
    transform: translateY(22px) scale(0.97);
    pointer-events: none;
}
.terms-consent-banner__text {
    margin: 0;
    font-size: 0.86rem;
    color: var(--dh-navy);
    line-height: 1.45;
}
.terms-consent-banner__text a {
    color: var(--dh-teal-dark);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.terms-consent-banner.is-visible .dh-btn {
    animation: termsBtnPulse 1.05s ease-out 0.2s 1;
}

@keyframes termsBannerIntro {
    0% {
        opacity: 0;
        transform: translateY(34px) scale(0.94);
    }
    60% {
        opacity: 1;
        transform: translateY(-3px) scale(1.01);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes termsBtnPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.35);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(20, 184, 166, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(20, 184, 166, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .terms-consent-banner,
    .terms-consent-banner.is-visible,
    .terms-consent-banner.is-visible .dh-btn,
    .terms-consent-banner.is-hiding {
        animation: none !important;
        transition: none !important;
    }
}
@media (max-width: 700px) {
    .terms-consent-banner {
        flex-direction: column;
        align-items: stretch;
    }
    .terms-consent-banner .dh-btn {
        width: 100%;
        justify-content: center;
    }
}

.whatsapp-chat-float {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 1100;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: #25D366;
    color: #fff;
    border-radius: 999px;
    padding: 0.7rem 0.95rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.86rem;
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.32);
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}
.whatsapp-chat-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(37, 211, 102, 0.4);
    color: #fff;
}
.whatsapp-chat-float__icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 700px) {
    .whatsapp-chat-float {
        right: 0.75rem;
        bottom: 0.75rem;
        padding: 0.62rem 0.8rem;
    }
    .whatsapp-chat-float__label {
        display: none;
    }
}

/* ============================================
   BLOG (archive + single post)
   ============================================ */
.page-hero--blog {
    background-image: url('https://images.unsplash.com/photo-1493976040374-85c8e12f0c0e?w=1600&h=600&fit=crop');
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.25rem, 3vw, 2rem);
}
@media (max-width: 1024px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .blog-grid { grid-template-columns: 1fr; }
}
.blog-card {
    background: #fff;
    border-radius: clamp(14px, 3vw, 18px);
    overflow: hidden;
    border: 1px solid var(--dh-gray-100);
    box-shadow: 0 4px 20px rgba(20, 23, 40, 0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.blog-card:hover {
    box-shadow: 0 12px 40px rgba(20, 23, 40, 0.1);
    transform: translateY(-3px);
}
.blog-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}
.blog-card__img {
    position: relative;
    padding-bottom: 56%;
    overflow: hidden;
    background: var(--dh-gray-50);
}
.blog-card__img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-card__placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200, 90, 124, 0.15), rgba(11, 24, 41, 0.08));
}
.blog-card__body {
    padding: 1.15rem clamp(1rem, 2vw, 1.35rem) 1.35rem;
    text-align: left;
}
.blog-card__date {
    font-family: var(--dh-font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--dh-teal);
    display: block;
    margin-bottom: 0.4rem;
}
.blog-card__title {
    font-family: var(--dh-font-heading);
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: 700;
    color: var(--dh-navy);
    margin: 0 0 0.5rem;
    line-height: 1.35;
}
.blog-card__excerpt {
    font-size: 0.88rem;
    color: var(--dh-gray-500);
    line-height: 1.55;
    margin: 0 0 0.65rem;
}
.blog-card__more {
    font-family: var(--dh-font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dh-teal);
}
.blog-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--dh-gray-100);
}
.blog-pagination__status {
    font-size: 0.86rem;
    color: var(--dh-gray-400);
}

.blog-post-hero {
    position: relative;
    padding-top: calc(72px + clamp(1.5rem, 4vw, 2.5rem));
    padding-bottom: clamp(2rem, 5vw, 3rem);
    background: var(--dh-navy) center / cover no-repeat;
    overflow: hidden;
}
.blog-post-hero--has-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(11, 24, 41, 0.88) 0%, rgba(11, 24, 41, 0.72) 50%, rgba(200, 90, 124, 0.15) 100%);
    pointer-events: none;
}
.blog-post-hero--has-image {
    background-image: var(--blog-hero-img);
}
.blog-post-hero__inner {
    position: relative;
    z-index: 2;
}
.blog-post-breadcrumb a,
.blog-post-breadcrumb span:not(.current) {
    color: var(--dh-gray-300);
}
.blog-post-breadcrumb a:hover {
    color: var(--dh-teal-light);
}
.blog-post-breadcrumb .current {
    color: #fff;
}
.blog-post__date {
    display: block;
    font-family: var(--dh-font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--dh-teal-light);
    margin-bottom: 0.5rem;
}
.blog-post__title {
    font-family: var(--dh-font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    color: #fff;
    margin: 0 0 0.5rem;
    line-height: 1.15;
    max-width: min(1100px, 94vw);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.blog-post__byline {
    font-size: 0.92rem;
    color: var(--dh-gray-300);
    margin: 0;
    text-align: center;
}

/* Single post: main + recent sidebar (cream section continues through “All articles”) */
.dh-section--blog-post {
    padding-bottom: clamp(2.5rem, 6vw, 4rem);
}
.blog-post-layout {
    display: grid;
    gap: clamp(1.75rem, 3vw, 2.75rem);
    align-items: start;
}
@media (min-width: 1024px) {
    .blog-post-layout:has(.blog-post-sidebar) {
        grid-template-columns: minmax(0, 1fr) min(300px, 30vw);
    }
    .blog-post-sidebar {
        position: sticky;
        top: calc(72px + 1.25rem);
    }
}
.blog-post-layout__back {
    margin: 2rem 0 0;
}
.blog-post-layout:has(.blog-post-sidebar) .blog-post-layout__main .blog-post-body {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}
.blog-post-sidebar {
    background: var(--dh-white);
    border: 1px solid var(--dh-gray-100);
    border-radius: 16px;
    padding: 1.15rem 1.2rem 1.25rem;
    box-shadow: 0 4px 24px rgba(20, 23, 40, 0.05);
}
.blog-post-sidebar__heading {
    font-family: var(--dh-font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dh-teal);
    margin: 0 0 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--dh-gray-100);
}
.blog-post-sidebar__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.blog-post-sidebar__link {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
    padding: 0.45rem;
    margin: -0.45rem;
    border-radius: 10px;
    transition: background 0.2s ease;
}
.blog-post-sidebar__link:hover {
    background: var(--dh-teal-glow);
}
.blog-post-sidebar__thumb {
    flex-shrink: 0;
    width: 72px;
    height: 54px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--dh-gray-50);
}
.blog-post-sidebar__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-post-sidebar__thumb--empty {
    background: linear-gradient(135deg, rgba(200, 90, 124, 0.12), rgba(11, 24, 41, 0.06));
}
.blog-post-sidebar__text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}
.blog-post-sidebar__date {
    font-family: var(--dh-font-heading);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--dh-gray-400);
}
.blog-post-sidebar__title {
    font-family: var(--dh-font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--dh-navy);
}

.blog-post-body {
    max-width: min(960px, 94vw);
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}
.blog-post-body table {
    width: 100%;
    border-collapse: collapse;
}
@media (min-width: 900px) {
    .blog-post-body {
        max-width: min(1020px, 92vw);
    }
}
.blog-post-body h2 {
    font-family: var(--dh-font-heading);
    font-size: clamp(1.1rem, 2.2vw, 1.25rem);
    color: var(--dh-navy);
    margin: 1.75rem 0 0.65rem;
}
.blog-post-body h2:first-child {
    margin-top: 0;
}
.blog-post-body p,
.blog-post-body li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--dh-gray-500);
}
.blog-post-body ul {
    padding-left: 1.35rem;
    margin: 0 0 1rem;
}
.admin-quill-wrap .ql-container {
    min-height: 220px;
    font-size: 0.95rem;
}
