/* ============================================================
   CRUISING THE NILE — ctn-styles.css
   Complete theme stylesheet
   Brand: Navy #1A5276 · Gold #D4A017 · WA Green #25D366
   ============================================================ */

/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: #2C3E50; background: #fff; line-height: 1.7; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: #1A5276; text-decoration: none; }
a:hover { color: #D4A017; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
:focus-visible { outline: 2px solid #D4A017; outline-offset: 2px; }

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.25; color: #1A2C3A; }
h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
p { margin-bottom: 1rem; }

/* ── Layout ── */
.ctn-container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.ctn-section { padding: 3rem 0; }
.ctn-section-title { font-size: clamp(1.4rem, 3vw, 2rem); color: #1A5276; margin-bottom: 0.5rem; }
.ctn-section-subtitle { color: #6c757d; font-size: 0.95rem; margin-bottom: 2rem; }
.ctn-skip-link { position: absolute; top: -9999px; left: 0; }
.ctn-skip-link:focus { top: 0; z-index: 9999; background: #1A5276; color: #fff; padding: 0.5rem 1rem; }

/* ============================================================
   HEADER
   ============================================================ */
.ctn-header {
    position: sticky; top: 0; z-index: 900;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    transition: box-shadow 0.2s;
}
.ctn-header--scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.1); }
.ctn-header__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 1.5rem; }
.ctn-logo-link { display: flex; align-items: center; gap: 0.5rem; }
.ctn-logo-text { font-family: 'Playfair Display', serif; font-size: 1.1rem; line-height: 1.2; color: #1A5276; }
.ctn-logo-text strong { color: #D4A017; }
.ctn-header .custom-logo { height: 48px; width: auto; }
.ctn-header__nav { flex: 1; }
.ctn-nav-list { display: flex; align-items: center; gap: 0.25rem; }
.ctn-nav-list li { position: relative; }
.ctn-nav-list > li > a { display: block; padding: 0.5rem 0.75rem; font-size: 0.9rem; font-weight: 500; color: #2C3E50; border-radius: 6px; transition: color 0.15s, background 0.15s; }
.ctn-nav-list > li > a:hover { color: #1A5276; background: #EBF5FB; }
/* Dropdown */
.ctn-nav-list .sub-menu { display: none; position: absolute; top: 100%; left: 0; min-width: 220px; background: #fff; border: 1px solid rgba(0,0,0,0.1); border-radius: 8px; box-shadow: 0 8px 32px rgba(0,0,0,0.12); padding: 0.5rem 0; z-index: 100; }
.ctn-nav-list li:hover > .sub-menu { display: block; }
.ctn-nav-list .sub-menu a { display: block; padding: 0.5rem 1rem; font-size: 0.875rem; color: #2C3E50; }
.ctn-nav-list .sub-menu a:hover { background: #EBF5FB; color: #1A5276; }
.ctn-header__wa { display: flex; align-items: center; gap: 0.4rem; font-size: 0.875rem; font-weight: 600; color: #1A8A40; padding: 0.5rem 1rem; border: 1px solid #1A8A40; border-radius: 24px; white-space: nowrap; transition: background 0.15s; }
.ctn-header__wa:hover { background: #1A8A40; color: #fff; }
.ctn-header__hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; background: none; border: none; }
.ctn-header__hamburger span { display: block; width: 22px; height: 2px; background: #2C3E50; border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }
.ctn-header__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ctn-header__hamburger.is-open span:nth-child(2) { opacity: 0; }
.ctn-header__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.ctn-mobile-nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 800; }
.ctn-mobile-nav-overlay.is-open { display: block; }
.ctn-mobile-nav__inner { position: absolute; top: 0; right: 0; width: min(320px, 90vw); height: 100%; background: #fff; padding: 5rem 1.5rem 2rem; overflow-y: auto; }
.ctn-mobile-nav-list li { border-bottom: 1px solid #f0f0f0; }
.ctn-mobile-nav-list a { display: block; padding: 0.875rem 0; font-size: 1rem; color: #2C3E50; }
.ctn-mobile-nav-list .sub-menu { padding-left: 1rem; }
.ctn-mobile-nav-list .sub-menu a { font-size: 0.9rem; color: #6c757d; padding: 0.5rem 0; }
.ctn-btn-wa--mobile { display: block; margin-top: 1.5rem; text-align: center; padding: 0.875rem; background: #25D366; color: #fff; border-radius: 8px; font-weight: 600; }

/* ============================================================
   HERO
   ============================================================ */
.ctn-hero { position: relative; min-height: 520px; display: flex; align-items: flex-end; overflow: hidden; }
.ctn-hero__image { position: absolute; inset: 0; z-index: 0; }
.ctn-hero__image img, .ctn-hero__image .ctn-img { width: 100%; height: 100%; object-fit: cover; }
.ctn-hero__overlay { position: relative; z-index: 1; width: 100%; padding: 4rem 0 2.5rem; background: linear-gradient(to top, rgba(10,25,40,0.88) 0%, rgba(10,25,40,0.55) 50%, rgba(10,25,40,0.2) 100%); }
.ctn-hero--dahabiya .ctn-hero__overlay, .ctn-hero--brand .ctn-hero__overlay { background: linear-gradient(to top, rgba(10,25,40,0.92) 0%, rgba(10,25,40,0.5) 60%, transparent 100%); }
.ctn-hero__badge { display: inline-block; padding: 0.3rem 0.875rem; border-radius: 20px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.75rem; }
.ctn-hero__badge--standard { background: rgba(108,117,125,0.85); color: #fff; }
.ctn-hero__badge--deluxe   { background: rgba(26,82,118,0.9); color: #fff; }
.ctn-hero__badge--luxury   { background: rgba(212,160,23,0.95); color: #1A2C3A; }
.ctn-hero__badge--dahabiya { background: rgba(39,174,96,0.9); color: #fff; }
.ctn-hero__badge--brand    { background: rgba(142,68,173,0.9); color: #fff; }
.ctn-hero__title { color: #fff; font-size: clamp(1.75rem, 4.5vw, 3rem); margin-bottom: 0.75rem; text-shadow: 0 2px 12px rgba(0,0,0,0.4); }
.ctn-hero__meta { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; margin-bottom: 1.5rem; }
.ctn-meta-item { color: rgba(255,255,255,0.9); font-size: 0.9rem; display: flex; align-items: center; gap: 0.35rem; }
.ctn-meta-item.ctn-price-from { font-size: 1rem; }
.ctn-meta-item.ctn-price-from strong { color: #D4A017; }
.ctn-meta-item.ctn-rating { color: #FFD700; }
.ctn-breadcrumb { margin-bottom: 1rem; font-size: 0.82rem; }
.ctn-breadcrumb a { color: rgba(255,255,255,0.7); }
.ctn-breadcrumb a:hover { color: #fff; }
.ctn-breadcrumb span { color: rgba(255,255,255,0.5); }
.ctn-breadcrumb a + a::before, .ctn-breadcrumb span::before { content: ' / '; color: rgba(255,255,255,0.4); }

/* ============================================================
   BUTTONS
   ============================================================ */
.ctn-btn-wa { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.8rem 1.5rem; border-radius: 8px; font-weight: 600; font-size: 0.95rem; transition: background 0.15s, transform 0.1s; border: none; }
.ctn-btn-wa--hero { background: #25D366; color: #fff; }
.ctn-btn-wa--hero:hover { background: #1EBE5A; color: #fff; transform: translateY(-1px); }
.ctn-btn-wa--card { display: block; text-align: center; background: #25D366; color: #fff; margin-top: 1rem; border-radius: 8px; padding: 0.75rem; font-weight: 600; }
.ctn-btn-wa--card:hover { background: #1EBE5A; color: #fff; }
.ctn-btn-wa--sidebar { display: block; text-align: center; background: #25D366; color: #fff; padding: 0.875rem; border-radius: 8px; font-weight: 600; width: 100%; }
.ctn-btn-wa--sidebar:hover { background: #1EBE5A; color: #fff; }
.ctn-btn-view { display: inline-block; color: #1A5276; font-weight: 600; font-size: 0.9rem; }
.ctn-btn-view:hover { color: #D4A017; }
.ctn-btn-read-more { display: inline-block; color: #1A5276; font-weight: 600; font-size: 0.9rem; }
.ctn-wa-float { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 800; background: #25D366; color: #fff; display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.25rem; border-radius: 50px; box-shadow: 0 4px 20px rgba(37,211,102,0.45); font-weight: 600; font-size: 0.9rem; transition: transform 0.15s, box-shadow 0.15s; }
.ctn-wa-float:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(37,211,102,0.55); color: #fff; }

/* ============================================================
   SINGLE CRUISE PAGE LAYOUT
   ============================================================ */
.ctn-single-layout { display: grid; grid-template-columns: 1fr 320px; gap: 2.5rem; padding-top: 2.5rem; padding-bottom: 3rem; align-items: start; }
.ctn-single-main { min-width: 0; }

/* Highlights */
.ctn-highlights__list { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 0.5rem; }
.ctn-highlights__item { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.9rem; padding: 0.5rem 0; }
.ctn-highlights__item svg { flex-shrink: 0; color: #1A8A40; margin-top: 3px; }

/* Description */
.ctn-description h2 { margin-top: 1.5rem; }
.ctn-description p { color: #444; }

/* ============================================================
   PRICING MODULE
   ============================================================ */
.ctn-pricing { border-top: 1px solid #E8EDF2; }
.ctn-pricing__controls { display: flex; flex-wrap: wrap; gap: 0.75rem 2rem; margin-bottom: 1.5rem; }
.ctn-pricing__seasons, .ctn-pricing__durations { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.ctn-btn-season, .ctn-btn-duration {
    padding: 0.5rem 1rem; border-radius: 6px; font-size: 0.875rem; font-weight: 500;
    border: 1.5px solid #D1D8E0; background: #fff; color: #555;
    transition: all 0.15s;
}
.ctn-btn-season { min-width: 80px; display: flex; flex-direction: column; align-items: center; gap: 0.15rem; }
.ctn-season-dates { font-size: 0.72rem; font-weight: 400; color: #888; }
.ctn-btn-season--active, .ctn-btn-duration--active { border-color: #1A5276; background: #EBF5FB; color: #1A5276; font-weight: 600; }
.ctn-btn-season--active .ctn-season-dates { color: #1A5276; }
.ctn-btn-season:hover:not(.ctn-btn-season--active), .ctn-btn-duration:hover:not(.ctn-btn-duration--active) { border-color: #1A5276; color: #1A5276; }

/* Cabin cards grid */
.ctn-pricing__cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.25rem; margin-bottom: 1rem; }
.ctn-pricing__cards--2col { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.ctn-cabin-card {
    background: #fff; border: 1.5px solid #E0E8F0; border-radius: 12px;
    padding: 1.25rem; position: relative; transition: box-shadow 0.15s, border-color 0.15s;
}
.ctn-cabin-card:hover { box-shadow: 0 4px 24px rgba(26,82,118,0.12); border-color: #B8CCE0; }
.ctn-cabin-card--popular { border: 2px solid #1A5276; box-shadow: 0 4px 20px rgba(26,82,118,0.15); }
.ctn-cabin-card__badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: #1A5276; color: #fff; font-size: 0.75rem; font-weight: 600;
    padding: 3px 14px; border-radius: 20px; white-space: nowrap; letter-spacing: 0.04em;
}
.ctn-cabin-card__header { margin-bottom: 0.875rem; padding-top: 0.5rem; }
.ctn-cabin-card__title { font-size: 1rem; font-family: 'Inter', sans-serif; font-weight: 600; color: #1A2C3A; margin-bottom: 0.2rem; }
.ctn-cabin-card__deck { font-size: 0.8rem; color: #888; }
.ctn-cabin-card__price-wrap { margin-bottom: 0.75rem; }
.ctn-cabin-price { display: block; font-size: 2rem; font-weight: 700; color: #1A5276; line-height: 1.1; }
.ctn-cabin-price-unit { font-size: 0.78rem; color: #888; }
.ctn-cabin-card__desc { font-size: 0.85rem; color: #666; margin-bottom: 0.75rem; line-height: 1.5; }
.ctn-cabin-card__specs { font-size: 0.82rem; color: #666; border-top: 1px solid #F0F4F8; padding-top: 0.75rem; margin-bottom: 0.75rem; }
.ctn-cabin-card__specs li { padding: 0.2rem 0; display: flex; align-items: center; gap: 0.4rem; }
.ctn-cabin-card__specs li::before { content: '·'; color: #D4A017; font-weight: bold; }
.ctn-cabin-card__solo-supplement { font-size: 0.78rem; color: #888; margin-top: 0.4rem; }
.ctn-charter-option { display: block; margin-bottom: 0.5rem; }
.ctn-pricing__note { font-size: 0.85rem; color: #6c757d; background: #F8FAFC; border-radius: 6px; padding: 0.75rem 1rem; border-left: 3px solid #D4A017; }
.ctn-pricing__payment-note { font-size: 0.85rem; color: #555; margin-top: 0.75rem; }

/* ============================================================
   INCLUSIONS
   ============================================================ */
.ctn-inclusions { border-top: 1px solid #E8EDF2; }
.ctn-inclusions__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.ctn-inclusions__heading { font-size: 1rem; font-family: 'Inter', sans-serif; font-weight: 600; margin-bottom: 0.75rem; }
.ctn-inclusions__heading--yes { color: #1A8A40; }
.ctn-inclusions__heading--no  { color: #B03A2E; }
.ctn-inclusions__list { font-size: 0.9rem; }
.ctn-inclusions__list li { padding: 0.35rem 0; display: flex; align-items: flex-start; gap: 0.5rem; border-bottom: 1px solid #F5F5F5; }
.ctn-inclusions__list--yes li::before { content: '✓'; color: #1A8A40; font-weight: bold; flex-shrink: 0; }
.ctn-inclusions__list--no  li::before { content: '✗'; color: #B03A2E; font-weight: bold; flex-shrink: 0; }

/* ============================================================
   ITINERARY ACCORDION
   ============================================================ */
.ctn-itinerary { border-top: 1px solid #E8EDF2; }
.ctn-itin-duration-tabs { display: flex; gap: 0.5rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.ctn-itin-tab { padding: 0.5rem 1rem; border-radius: 6px; font-size: 0.875rem; border: 1.5px solid #D1D8E0; background: #fff; color: #555; font-weight: 500; }
.ctn-itin-tab--active { border-color: #1A5276; background: #EBF5FB; color: #1A5276; font-weight: 600; }
.ctn-itin__list { display: flex; flex-direction: column; gap: 0.5rem; }
.ctn-itin__day { border: 1px solid #E0E8F0; border-radius: 8px; overflow: hidden; }
.ctn-itin__day[hidden] { display: none; }
.ctn-itin__day-header {
    display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem;
    cursor: pointer; list-style: none; background: #F8FAFC; user-select: none;
}
.ctn-itin__day-header:hover { background: #EBF5FB; }
.ctn-itin__day[open] > .ctn-itin__day-header { background: #EBF5FB; border-bottom: 1px solid #D4E6F1; }
.ctn-itin__day-number { background: #1A5276; color: #fff; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; flex-shrink: 0; }
.ctn-itin__day-title { font-weight: 600; color: #1A2C3A; font-size: 0.95rem; flex: 1; }
.ctn-itin__day-location { font-size: 0.8rem; color: #888; white-space: nowrap; }
.ctn-itin__day-body { padding: 1.25rem; background: #fff; }
.ctn-itin__description p { font-size: 0.9rem; color: #555; }
.ctn-itin__sites, .ctn-itin__meals, .ctn-itin__accommodation { font-size: 0.85rem; color: #666; margin-top: 0.5rem; }
.ctn-itin__sites strong, .ctn-itin__meals strong, .ctn-itin__accommodation strong { color: #1A5276; }

/* ============================================================
   SIDEBAR BOOKING CARD
   ============================================================ */
.ctn-single-sidebar { position: sticky; top: 88px; }
.ctn-booking-card { background: #fff; border: 1.5px solid #E0E8F0; border-radius: 12px; padding: 1.5rem; box-shadow: 0 2px 16px rgba(0,0,0,0.08); }
.ctn-booking-card__heading { font-size: 0.9rem; color: #888; margin-bottom: 0.25rem; }
.ctn-booking-card__from { font-size: 0.85rem; color: #888; margin-bottom: 0; }
.ctn-booking-card__price { font-size: 2.25rem; font-weight: 700; color: #1A5276; line-height: 1; margin-bottom: 0; }
.ctn-booking-card__unit { font-size: 0.8rem; color: #888; margin-bottom: 1rem; }
.ctn-booking-card__info { border-top: 1px solid #F0F4F8; border-bottom: 1px solid #F0F4F8; padding: 0.75rem 0; margin-bottom: 1rem; }
.ctn-booking-card__info li { font-size: 0.85rem; color: #555; padding: 0.25rem 0; display: flex; align-items: center; gap: 0.4rem; }
.ctn-booking-card__info li::before { content: '—'; color: #D4A017; font-weight: bold; }
.ctn-booking-card__guarantee { font-size: 0.78rem; color: #888; text-align: center; margin-top: 0.75rem; }
.ctn-booking-card__specs { display: grid; grid-template-columns: 1fr 1fr; gap: 0.35rem; margin-top: 1rem; padding-top: 0.75rem; border-top: 1px solid #F0F4F8; font-size: 0.8rem; color: #666; text-align: center; }
.ctn-booking-card__specs div { background: #F8FAFC; border-radius: 4px; padding: 0.4rem; }
.ctn-booking-card__specs strong { color: #1A5276; display: block; font-size: 1.1rem; }

/* ============================================================
   CRUISE ARCHIVE
   ============================================================ */
.ctn-archive-hero { background: linear-gradient(135deg, #1A3A55 0%, #1A5276 100%); padding: 3rem 0; }
.ctn-archive-hero__title { color: #fff; font-size: clamp(1.5rem, 4vw, 2.5rem); margin-bottom: 0.5rem; }
.ctn-archive-hero__subtitle { color: rgba(255,255,255,0.8); font-size: 1rem; }
.ctn-archive-body { padding: 2rem 0 3rem; }
.ctn-filter-bar { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }
.ctn-filter-btn { padding: 0.45rem 1rem; border-radius: 20px; font-size: 0.875rem; font-weight: 500; border: 1.5px solid #D1D8E0; background: #fff; color: #555; transition: all 0.15s; }
.ctn-filter-btn--active { background: #1A5276; color: #fff; border-color: #1A5276; }
.ctn-filter-btn:hover:not(.ctn-filter-btn--active) { border-color: #1A5276; color: #1A5276; }
.ctn-archive-count { font-size: 0.875rem; color: #888; margin-bottom: 1.5rem; }
.ctn-cruises-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.ctn-cruise-card { background: #fff; border: 1px solid #E8EDF2; border-radius: 12px; overflow: hidden; transition: box-shadow 0.15s, transform 0.15s; }
.ctn-cruise-card:hover { box-shadow: 0 6px 28px rgba(0,0,0,0.1); transform: translateY(-3px); }
.ctn-cruise-card__image { position: relative; overflow: hidden; aspect-ratio: 16/10; }
.ctn-cruise-card__image a { display: block; height: 100%; }
.ctn-cruise-card__image .ctn-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.ctn-cruise-card:hover .ctn-cruise-card__image .ctn-img { transform: scale(1.04); }
.ctn-cruise-card__class { position: absolute; top: 0.75rem; left: 0.75rem; padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
.ctn-cruise-card__class--standard { background: rgba(108,117,125,0.85); color: #fff; }
.ctn-cruise-card__class--deluxe   { background: rgba(26,82,118,0.9);  color: #fff; }
.ctn-cruise-card__class--luxury   { background: rgba(212,160,23,0.95); color: #1A2C3A; }
.ctn-cruise-card__body { padding: 1.1rem; }
.ctn-cruise-card__title { font-size: 1.05rem; margin-bottom: 0.4rem; }
.ctn-cruise-card__title a { color: #1A2C3A; }
.ctn-cruise-card__title a:hover { color: #1A5276; }
.ctn-cruise-card__meta { display: flex; flex-wrap: wrap; gap: 0.25rem 0.75rem; font-size: 0.8rem; color: #888; margin-bottom: 0.6rem; }
.ctn-cruise-card__meta .ctn-rating { color: #DAA520; }
.ctn-cruise-card__excerpt { font-size: 0.875rem; color: #666; margin-bottom: 0.75rem; }
.ctn-cruise-card__footer { display: flex; align-items: center; justify-content: space-between; padding-top: 0.75rem; border-top: 1px solid #F0F4F8; }
.ctn-cruise-card__price { font-size: 1rem; font-weight: 700; color: #1A5276; }

/* Brand page */
.ctn-brand-overview { border-bottom: 1px solid #E8EDF2; padding-bottom: 2rem; }
.ctn-brand-desc { font-size: 1rem; color: #444; line-height: 1.8; }
.ctn-features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.25rem; margin-top: 1.25rem; }
.ctn-feature-card { background: #F8FAFC; border-radius: 8px; padding: 1.25rem; border-left: 3px solid #1A5276; }
.ctn-feature-card__title { font-size: 0.95rem; font-family: 'Inter', sans-serif; font-weight: 600; color: #1A5276; margin-bottom: 0.35rem; }
.ctn-feature-card__desc { font-size: 0.85rem; color: #666; margin-bottom: 0; }
.ctn-count { font-size: 1rem; color: #888; font-family: 'Inter', sans-serif; font-weight: 400; }
.ctn-no-results { color: #888; }
.ctn-no-results a { color: #1A5276; }

/* ============================================================
   POSTS & PAGES
   ============================================================ */
.ctn-post-layout { display: grid; grid-template-columns: 1fr 300px; gap: 2.5rem; padding: 2.5rem 0; }
.ctn-post-main { min-width: 0; }
.ctn-post-header { margin-bottom: 2rem; }
.ctn-post-meta { font-size: 0.85rem; color: #888; margin-bottom: 0.5rem; }
.ctn-post-title { font-size: clamp(1.5rem, 3.5vw, 2.25rem); margin-bottom: 0; }
.ctn-post-content p, .ctn-post-content li { color: #444; font-size: 1rem; }
.ctn-post-content h2 { margin: 2rem 0 0.75rem; font-size: 1.4rem; }
.ctn-post-content h3 { margin: 1.5rem 0 0.5rem; font-size: 1.1rem; }
.ctn-post-content img { border-radius: 8px; margin: 1.5rem 0; }
.ctn-posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.ctn-post-card { background: #fff; border: 1px solid #E8EDF2; border-radius: 12px; overflow: hidden; }
.ctn-post-card__image { aspect-ratio: 16/10; overflow: hidden; }
.ctn-post-card__image .ctn-img { width: 100%; height: 100%; object-fit: cover; }
.ctn-post-card__body { padding: 1.1rem; }
.ctn-post-card__meta { font-size: 0.8rem; color: #888; margin-bottom: 0.35rem; }
.ctn-post-card__title { font-size: 1.05rem; margin-bottom: 0.5rem; }
.ctn-post-card__excerpt { font-size: 0.875rem; color: #666; margin-bottom: 0.75rem; }
.ctn-page-layout { padding: 2.5rem 0 3rem; max-width: 820px; }
.ctn-page-title { margin-bottom: 1.5rem; }
.ctn-page-body p { color: #444; }

/* ============================================================
   FOOTER
   ============================================================ */
.ctn-footer { background: #0D1F2D; color: rgba(255,255,255,0.7); }
.ctn-footer__top { padding: 3.5rem 0 2rem; }
.ctn-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; }
.ctn-footer__col--brand .ctn-footer-logo-text { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: #fff; line-height: 1.2; }
.ctn-footer__col--brand .ctn-footer-logo-text strong { color: #D4A017; }
.ctn-footer .custom-logo { height: 48px; width: auto; filter: brightness(0) invert(1); }
.ctn-footer__tagline { font-size: 0.875rem; color: rgba(255,255,255,0.55); margin-top: 0.75rem; line-height: 1.6; }
.ctn-footer__wa-link { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1rem; color: #25D366; font-size: 0.9rem; font-weight: 600; }
.ctn-footer__wa-link:hover { color: #1EBE5A; }
.ctn-footer__col-title { font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.ctn-footer__links li { margin-bottom: 0.5rem; }
.ctn-footer__links a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color 0.15s; }
.ctn-footer__links a:hover { color: #D4A017; }
.ctn-footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.25rem 0; }
.ctn-footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; }
.ctn-footer__copy, .ctn-footer__credit { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-bottom: 0; }
.ctn-footer__credit a { color: rgba(255,255,255,0.5); }
.ctn-footer__credit a:hover { color: #D4A017; }

/* ============================================================
   PAGINATION
   ============================================================ */
.ctn-pagination { margin-top: 2.5rem; display: flex; justify-content: center; }
.ctn-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 6px; font-size: 0.9rem; color: #555; border: 1px solid #E0E8F0; margin: 0 3px; transition: all 0.15s; }
.ctn-pagination .page-numbers:hover { background: #EBF5FB; border-color: #1A5276; color: #1A5276; }
.ctn-pagination .page-numbers.current { background: #1A5276; color: #fff; border-color: #1A5276; }
.ctn-pagination .prev, .ctn-pagination .next { width: auto; padding: 0 1rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .ctn-single-layout { grid-template-columns: 1fr; }
    .ctn-single-sidebar { position: static; }
    .ctn-footer__grid { grid-template-columns: 1fr 1fr; }
    .ctn-post-layout { grid-template-columns: 1fr; }
    .ctn-post-sidebar { display: none; }
}
@media (max-width: 768px) {
    .ctn-header__nav { display: none; }
    .ctn-header__wa span { display: none; }
    .ctn-header__hamburger { display: flex; }
    .ctn-hero { min-height: 380px; }
    .ctn-hero__overlay { padding: 3rem 0 2rem; }
    .ctn-inclusions__grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .ctn-pricing__cards { grid-template-columns: 1fr; }
    .ctn-footer__grid { grid-template-columns: 1fr; gap: 1.75rem; }
    .ctn-footer__bottom-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
    .ctn-wa-float span { display: none; }
    .ctn-wa-float { padding: 0.875rem; border-radius: 50%; }
    .ctn-cruises-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .ctn-pricing__controls { flex-direction: column; gap: 0.75rem; }
    .ctn-highlights__list { grid-template-columns: 1fr; }
    .ctn-booking-card__specs { grid-template-columns: 1fr 1fr 1fr; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.ctn-rating { display: inline-flex; align-items: center; gap: 0.2rem; }
.ctn-no-results { padding: 2rem; text-align: center; color: #888; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
/* ============================================================
   ctn-additions.css
   Append to assets/css/ctn-styles.css
   Phase 5 additions: homepage · country pages · taxonomy · extras
   ============================================================ */

/* ── Homepage Hero ── */
.ctn-hp-hero { position:relative; min-height:100vh; min-height:100svh; display:flex; align-items:center; overflow:hidden; }
.ctn-hp-hero__bg { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; }
.ctn-hp-hero__overlay { position:relative; z-index:1; width:100%; padding:6rem 0 4rem; background:linear-gradient(135deg, rgba(10,25,40,0.82) 0%, rgba(10,25,40,0.55) 100%); }
.ctn-hp-hero__content { max-width:680px; }
.ctn-hp-hero__eyebrow { color:#D4A017; font-size:.85rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; margin-bottom:.75rem; }
.ctn-hp-hero__title { color:#fff; font-size:clamp(2rem,5vw,3.5rem); line-height:1.15; margin-bottom:1rem; text-shadow:0 2px 16px rgba(0,0,0,.35); }
.ctn-hp-hero__subtitle { color:rgba(255,255,255,.85); font-size:1.1rem; line-height:1.7; margin-bottom:2rem; }
.ctn-hp-hero__subtitle strong { color:#D4A017; }
.ctn-hp-hero__ctas { display:flex; flex-wrap:wrap; gap:.875rem; }
.ctn-hp-btn-primary { display:inline-flex; align-items:center; gap:.5rem; padding:.875rem 1.75rem; background:#1A5276; color:#fff; border-radius:8px; font-weight:600; font-size:1rem; transition:background .15s,transform .1s; }
.ctn-hp-btn-primary:hover { background:#15405E; color:#fff; transform:translateY(-1px); }
.ctn-hp-btn-wa { display:inline-flex; align-items:center; gap:.5rem; padding:.875rem 1.75rem; background:#25D366; color:#fff; border-radius:8px; font-weight:600; font-size:1rem; transition:background .15s; }
.ctn-hp-btn-wa:hover { background:#1EBE5A; color:#fff; }
.ctn-hp-btn-outline { display:inline-flex; align-items:center; gap:.5rem; padding:.75rem 1.5rem; border:1.5px solid #1A5276; color:#1A5276; border-radius:8px; font-weight:600; font-size:.95rem; transition:all .15s; }
.ctn-hp-btn-outline:hover { background:#1A5276; color:#fff; }
.ctn-hp-btn-outline--light { border-color:rgba(255,255,255,.5); color:#fff; }
.ctn-hp-btn-outline--light:hover { background:rgba(255,255,255,.15); color:#fff; }
.ctn-hp-btn-wa--lg { padding:1rem 2.25rem; font-size:1.05rem; }

/* ── Stats strip ── */
.ctn-hp-stats { background:#1A3A55; padding:1.25rem 0; }
.ctn-hp-stats__inner { display:flex; flex-wrap:wrap; justify-content:space-around; gap:.75rem; }
.ctn-hp-stat { text-align:center; padding:.25rem .75rem; }
.ctn-hp-stat__number { display:block; font-family:'Playfair Display',serif; font-size:1.75rem; color:#fff; line-height:1.1; }
.ctn-hp-stat__number span { font-size:1.1rem; color:#D4A017; }
.ctn-hp-stat__label { display:block; font-size:.78rem; color:rgba(255,255,255,.6); text-transform:uppercase; letter-spacing:.07em; margin-top:.2rem; }

/* ── Section shared ── */
.ctn-hp-section { padding:4rem 0; }
.ctn-hp-section__header { text-align:center; margin-bottom:2.5rem; }
.ctn-hp-section__title { color:#1A5276; margin-bottom:.5rem; }
.ctn-hp-section__sub { color:#6c757d; font-size:.95rem; }

/* ── Cruise classes ── */
.ctn-hp-classes__grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.ctn-class-card { display:block; background:#fff; border:1.5px solid #E0E8F0; border-radius:12px; padding:2rem 1.5rem; text-align:center; transition:box-shadow .15s,transform .15s,border-color .15s; }
.ctn-class-card:hover { box-shadow:0 8px 32px rgba(26,82,118,.14); transform:translateY(-4px); border-color:#B8CCE0; }
.ctn-class-card--featured { border:2px solid #1A5276; box-shadow:0 4px 20px rgba(26,82,118,.15); position:relative; }
.ctn-class-card__badge { position:absolute; top:-13px; left:50%; transform:translateX(-50%); background:#1A5276; color:#fff; font-size:.72rem; font-weight:600; padding:3px 14px; border-radius:20px; white-space:nowrap; }
.ctn-class-card__icon { width:56px; height:56px; margin:0 auto 1rem; border-radius:50%; display:flex; align-items:center; justify-content:center; }
.ctn-class-card--standard .ctn-class-card__icon { background:#EBF5FB; color:#1A5276; }
.ctn-class-card--deluxe   .ctn-class-card__icon { background:#EBF5FB; color:#1A5276; }
.ctn-class-card--luxury   .ctn-class-card__icon { background:#FDF3D7; color:#D4A017; }
.ctn-class-card__title { font-size:1.2rem; color:#1A2C3A; margin-bottom:.5rem; font-family:'Playfair Display',serif; }
.ctn-class-card__desc { font-size:.875rem; color:#666; line-height:1.6; margin-bottom:.875rem; }
.ctn-class-card__price { font-size:1rem; color:#555; margin-bottom:.875rem; }
.ctn-class-card__price strong { color:#1A5276; font-size:1.3rem; }
.ctn-class-card__price span { font-size:.8rem; color:#888; }
.ctn-class-card__cta { display:inline-block; font-size:.875rem; font-weight:600; color:#1A5276; }
.ctn-class-card:hover .ctn-class-card__cta { color:#D4A017; }

/* ── Brands strip ── */
.ctn-hp-brands { background:#F8FAFC; padding:1.5rem 0; border-top:1px solid #E8EDF2; border-bottom:1px solid #E8EDF2; }
.ctn-hp-brands__label { font-size:.78rem; color:#888; text-align:center; margin-bottom:1rem; text-transform:uppercase; letter-spacing:.08em; }
.ctn-hp-brands__list { display:flex; flex-wrap:wrap; justify-content:center; gap:.625rem; }
.ctn-hp-brand-pill { padding:.45rem 1.1rem; border-radius:20px; border:1.5px solid #D1D8E0; background:#fff; color:#555; font-size:.875rem; font-weight:500; transition:all .15s; }
.ctn-hp-brand-pill:hover { border-color:#1A5276; color:#1A5276; background:#EBF5FB; }

/* ── Why us ── */
.ctn-hp-why { background:#F8FAFC; }
.ctn-hp-why__grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; }
.ctn-why-card { background:#fff; border:1px solid #E8EDF2; border-radius:10px; padding:1.5rem; text-align:center; }
.ctn-why-card__icon { width:56px; height:56px; border-radius:50%; background:#EBF5FB; display:flex; align-items:center; justify-content:center; margin:0 auto 1rem; color:#1A5276; }
.ctn-why-card__title { font-size:1rem; font-family:'Inter',sans-serif; font-weight:600; color:#1A2C3A; margin-bottom:.5rem; }
.ctn-why-card__desc { font-size:.85rem; color:#666; line-height:1.6; }

/* ── Dahabiya teaser ── */
.ctn-hp-dahabiya { background:linear-gradient(135deg,#F0F7F4 0%,#E8F4EF 100%); }
.ctn-hp-dahabiya__inner { display:grid; grid-template-columns:1fr 1fr; gap:3rem; align-items:center; }
.ctn-hp-dahabiya__image { border-radius:16px; overflow:hidden; aspect-ratio:4/3; }
.ctn-hp-dahabiya__image .ctn-img { width:100%; height:100%; object-fit:cover; }
.ctn-hp-dahabiya__eyebrow { display:block; font-size:.82rem; font-weight:600; color:#27AE60; text-transform:uppercase; letter-spacing:.08em; margin-bottom:.5rem; }
.ctn-hp-dahabiya__desc { color:#444; margin:1rem 0; line-height:1.7; }
.ctn-hp-dahabiya__features { margin:1rem 0 1.25rem; }
.ctn-hp-dahabiya__features li { font-size:.9rem; color:#555; padding:.2rem 0; display:flex; align-items:center; gap:.4rem; }
.ctn-hp-dahabiya__features li::before { content:'✓'; color:#27AE60; font-weight:bold; }
.ctn-hp-dahabiya__price { font-size:1.1rem; color:#444; margin-bottom:1.25rem; }
.ctn-hp-dahabiya__price strong { color:#1A5276; font-size:1.5rem; }
.ctn-hp-dahabiya__ctas { display:flex; gap:.75rem; flex-wrap:wrap; }

/* ── Itinerary quick links ── */
.ctn-hp-itineraries { background:#fff; padding:3.5rem 0; }
.ctn-hp-itin-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem; }
.ctn-hp-itin-card { display:block; background:#F8FAFC; border:1.5px solid #E0E8F0; border-radius:10px; padding:1.5rem; transition:box-shadow .15s,border-color .15s; }
.ctn-hp-itin-card:hover { box-shadow:0 4px 20px rgba(26,82,118,.1); border-color:#1A5276; }
.ctn-hp-itin-card__days { display:inline-block; background:#EBF5FB; color:#1A5276; font-size:.75rem; font-weight:600; padding:3px 10px; border-radius:12px; margin-bottom:.75rem; }
.ctn-hp-itin-card__title { font-size:1.05rem; color:#1A2C3A; margin-bottom:.4rem; }
.ctn-hp-itin-card__desc { font-size:.84rem; color:#888; line-height:1.5; margin-bottom:.75rem; }
.ctn-hp-itin-card__link { font-size:.875rem; font-weight:600; color:#1A5276; }

/* ── View all / final CTA ── */
.ctn-hp-view-all { text-align:center; margin-top:2rem; }
.ctn-hp-final-cta { background:linear-gradient(135deg,#0D2137 0%,#1A3A55 100%); padding:5rem 0; text-align:center; }
.ctn-hp-final-cta__inner { max-width:600px; margin:0 auto; }
.ctn-hp-final-cta__title { color:#fff; font-size:clamp(1.75rem,3.5vw,2.5rem); margin-bottom:1rem; }
.ctn-hp-final-cta__sub { color:rgba(255,255,255,.75); font-size:1rem; margin-bottom:2rem; line-height:1.7; }
.ctn-hp-final-cta__actions { display:flex; justify-content:center; gap:1rem; flex-wrap:wrap; margin-bottom:1rem; }
.ctn-hp-final-cta__note { font-size:.82rem; color:rgba(255,255,255,.45); }

/* ── Country landing pages ── */
.ctn-country-hero { background:linear-gradient(135deg,#1A3A55 0%,#0D2137 100%); padding:4rem 0 3rem; }
.ctn-country-hero__title { color:#fff; font-size:clamp(1.75rem,4vw,2.75rem); margin-bottom:1rem; }
.ctn-country-hero__lead { color:rgba(255,255,255,.82); font-size:1rem; max-width:700px; line-height:1.75; margin-bottom:1.5rem; }
.ctn-country-hero__stats { display:flex; flex-wrap:wrap; gap:.5rem 1.5rem; margin-bottom:1.75rem; }
.ctn-country-hero__stats span { color:rgba(255,255,255,.7); font-size:.875rem; }
.ctn-breadcrumb--light a { color:rgba(255,255,255,.6); }
.ctn-breadcrumb--light a:hover { color:#fff; }
.ctn-breadcrumb--light span { color:rgba(255,255,255,.4); }
.ctn-country-body { padding:2.5rem 0; }
.ctn-country-practical__grid { display:grid; grid-template-columns:1fr 1fr; gap:1.25rem; }
.ctn-practical-card { background:#F8FAFC; border-radius:8px; padding:1.25rem; border-left:3px solid #1A5276; }
.ctn-practical-card h3 { font-size:.95rem; font-family:'Inter',sans-serif; font-weight:600; color:#1A5276; margin-bottom:.5rem; }
.ctn-practical-card p { font-size:.875rem; color:#555; line-height:1.65; margin-bottom:0; }
.ctn-reviews-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem; }
.ctn-review-card { background:#fff; border:1px solid #E8EDF2; border-radius:10px; padding:1.25rem; }
.ctn-review-card__stars { color:#DAA520; font-size:1rem; margin-bottom:.5rem; }
.ctn-review-card__text { font-size:.875rem; color:#444; line-height:1.65; font-style:italic; margin-bottom:.75rem; }
.ctn-review-card__author { font-size:.78rem; color:#888; font-style:normal; }
.ctn-faq-list { display:flex; flex-direction:column; gap:.5rem; }
.ctn-faq-item { border:1px solid #E0E8F0; border-radius:8px; overflow:hidden; }
.ctn-faq-item__question { padding:1rem 1.25rem; cursor:pointer; font-weight:600; font-size:.95rem; color:#1A2C3A; list-style:none; background:#F8FAFC; }
.ctn-faq-item__question:hover { background:#EBF5FB; color:#1A5276; }
.ctn-faq-item[open] .ctn-faq-item__question { background:#EBF5FB; color:#1A5276; border-bottom:1px solid #D4E6F1; }
.ctn-faq-item__answer { padding:1rem 1.25rem; font-size:.9rem; color:#555; line-height:1.7; background:#fff; }
.ctn-country-cta { background:linear-gradient(135deg,#1A3A55 0%,#0D2137 100%); border-radius:12px; }
.ctn-country-cta__inner { padding:3rem; text-align:center; }
.ctn-country-cta h2 { color:#fff; margin-bottom:.75rem; }
.ctn-country-cta p { color:rgba(255,255,255,.75); margin-bottom:1.5rem; }
.ctn-dahabiya-intro { background:#EAF7F0; border-left:4px solid #27AE60; border-radius:0 8px 8px 0; padding:1rem 1.25rem; margin-bottom:2rem; font-size:.9rem; color:#2C3E50; }

/* ── Responsive additions ── */
@media (max-width:1024px) {
    .ctn-hp-hero { min-height:70vh; }
    .ctn-hp-classes__grid { grid-template-columns:1fr 1fr; }
    .ctn-hp-why__grid { grid-template-columns:1fr 1fr; }
    .ctn-hp-dahabiya__inner { grid-template-columns:1fr; }
    .ctn-hp-itin-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width:768px) {
    .ctn-hp-stats__inner { gap:.5rem; }
    .ctn-hp-stat__number { font-size:1.4rem; }
    .ctn-hp-classes__grid { grid-template-columns:1fr; }
    .ctn-hp-why__grid { grid-template-columns:1fr; }
    .ctn-hp-itin-grid { grid-template-columns:1fr; }
    .ctn-reviews-grid { grid-template-columns:1fr; }
    .ctn-country-practical__grid { grid-template-columns:1fr; }
    .ctn-hp-brands__list { gap:.4rem; }
}
/* ============================================================
   ctn-additions.css
   Append to assets/css/ctn-styles.css
   Phase 5 additions: homepage · country pages · taxonomy · extras
   ============================================================ */

/* ── Homepage Hero ── */
.ctn-hp-hero { position:relative; min-height:100vh; min-height:100svh; display:flex; align-items:center; overflow:hidden; }
.ctn-hp-hero__bg { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; }
.ctn-hp-hero__overlay { position:relative; z-index:1; width:100%; padding:6rem 0 4rem; background:linear-gradient(135deg, rgba(10,25,40,0.82) 0%, rgba(10,25,40,0.55) 100%); }
.ctn-hp-hero__content { max-width:680px; }
.ctn-hp-hero__eyebrow { color:#D4A017; font-size:.85rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; margin-bottom:.75rem; }
.ctn-hp-hero__title { color:#fff; font-size:clamp(2rem,5vw,3.5rem); line-height:1.15; margin-bottom:1rem; text-shadow:0 2px 16px rgba(0,0,0,.35); }
.ctn-hp-hero__subtitle { color:rgba(255,255,255,.85); font-size:1.1rem; line-height:1.7; margin-bottom:2rem; }
.ctn-hp-hero__subtitle strong { color:#D4A017; }
.ctn-hp-hero__ctas { display:flex; flex-wrap:wrap; gap:.875rem; }
.ctn-hp-btn-primary { display:inline-flex; align-items:center; gap:.5rem; padding:.875rem 1.75rem; background:#1A5276; color:#fff; border-radius:8px; font-weight:600; font-size:1rem; transition:background .15s,transform .1s; }
.ctn-hp-btn-primary:hover { background:#15405E; color:#fff; transform:translateY(-1px); }
.ctn-hp-btn-wa { display:inline-flex; align-items:center; gap:.5rem; padding:.875rem 1.75rem; background:#25D366; color:#fff; border-radius:8px; font-weight:600; font-size:1rem; transition:background .15s; }
.ctn-hp-btn-wa:hover { background:#1EBE5A; color:#fff; }
.ctn-hp-btn-outline { display:inline-flex; align-items:center; gap:.5rem; padding:.75rem 1.5rem; border:1.5px solid #1A5276; color:#1A5276; border-radius:8px; font-weight:600; font-size:.95rem; transition:all .15s; }
.ctn-hp-btn-outline:hover { background:#1A5276; color:#fff; }
.ctn-hp-btn-outline--light { border-color:rgba(255,255,255,.5); color:#fff; }
.ctn-hp-btn-outline--light:hover { background:rgba(255,255,255,.15); color:#fff; }
.ctn-hp-btn-wa--lg { padding:1rem 2.25rem; font-size:1.05rem; }

/* ── Stats strip ── */
.ctn-hp-stats { background:#1A3A55; padding:1.25rem 0; }
.ctn-hp-stats__inner { display:flex; flex-wrap:wrap; justify-content:space-around; gap:.75rem; }
.ctn-hp-stat { text-align:center; padding:.25rem .75rem; }
.ctn-hp-stat__number { display:block; font-family:'Playfair Display',serif; font-size:1.75rem; color:#fff; line-height:1.1; }
.ctn-hp-stat__number span { font-size:1.1rem; color:#D4A017; }
.ctn-hp-stat__label { display:block; font-size:.78rem; color:rgba(255,255,255,.6); text-transform:uppercase; letter-spacing:.07em; margin-top:.2rem; }

/* ── Section shared ── */
.ctn-hp-section { padding:4rem 0; }
.ctn-hp-section__header { text-align:center; margin-bottom:2.5rem; }
.ctn-hp-section__title { color:#1A5276; margin-bottom:.5rem; }
.ctn-hp-section__sub { color:#6c757d; font-size:.95rem; }

/* ── Cruise classes ── */
.ctn-hp-classes__grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.ctn-class-card { display:block; background:#fff; border:1.5px solid #E0E8F0; border-radius:12px; padding:2rem 1.5rem; text-align:center; transition:box-shadow .15s,transform .15s,border-color .15s; }
.ctn-class-card:hover { box-shadow:0 8px 32px rgba(26,82,118,.14); transform:translateY(-4px); border-color:#B8CCE0; }
.ctn-class-card--featured { border:2px solid #1A5276; box-shadow:0 4px 20px rgba(26,82,118,.15); position:relative; }
.ctn-class-card__badge { position:absolute; top:-13px; left:50%; transform:translateX(-50%); background:#1A5276; color:#fff; font-size:.72rem; font-weight:600; padding:3px 14px; border-radius:20px; white-space:nowrap; }
.ctn-class-card__icon { width:56px; height:56px; margin:0 auto 1rem; border-radius:50%; display:flex; align-items:center; justify-content:center; }
.ctn-class-card--standard .ctn-class-card__icon { background:#EBF5FB; color:#1A5276; }
.ctn-class-card--deluxe   .ctn-class-card__icon { background:#EBF5FB; color:#1A5276; }
.ctn-class-card--luxury   .ctn-class-card__icon { background:#FDF3D7; color:#D4A017; }
.ctn-class-card__title { font-size:1.2rem; color:#1A2C3A; margin-bottom:.5rem; font-family:'Playfair Display',serif; }
.ctn-class-card__desc { font-size:.875rem; color:#666; line-height:1.6; margin-bottom:.875rem; }
.ctn-class-card__price { font-size:1rem; color:#555; margin-bottom:.875rem; }
.ctn-class-card__price strong { color:#1A5276; font-size:1.3rem; }
.ctn-class-card__price span { font-size:.8rem; color:#888; }
.ctn-class-card__cta { display:inline-block; font-size:.875rem; font-weight:600; color:#1A5276; }
.ctn-class-card:hover .ctn-class-card__cta { color:#D4A017; }

/* ── Brands strip ── */
.ctn-hp-brands { background:#F8FAFC; padding:1.5rem 0; border-top:1px solid #E8EDF2; border-bottom:1px solid #E8EDF2; }
.ctn-hp-brands__label { font-size:.78rem; color:#888; text-align:center; margin-bottom:1rem; text-transform:uppercase; letter-spacing:.08em; }
.ctn-hp-brands__list { display:flex; flex-wrap:wrap; justify-content:center; gap:.625rem; }
.ctn-hp-brand-pill { padding:.45rem 1.1rem; border-radius:20px; border:1.5px solid #D1D8E0; background:#fff; color:#555; font-size:.875rem; font-weight:500; transition:all .15s; }
.ctn-hp-brand-pill:hover { border-color:#1A5276; color:#1A5276; background:#EBF5FB; }

/* ── Why us ── */
.ctn-hp-why { background:#F8FAFC; }
.ctn-hp-why__grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; }
.ctn-why-card { background:#fff; border:1px solid #E8EDF2; border-radius:10px; padding:1.5rem; text-align:center; }
.ctn-why-card__icon { width:56px; height:56px; border-radius:50%; background:#EBF5FB; display:flex; align-items:center; justify-content:center; margin:0 auto 1rem; color:#1A5276; }
.ctn-why-card__title { font-size:1rem; font-family:'Inter',sans-serif; font-weight:600; color:#1A2C3A; margin-bottom:.5rem; }
.ctn-why-card__desc { font-size:.85rem; color:#666; line-height:1.6; }

/* ── Dahabiya teaser ── */
.ctn-hp-dahabiya { background:linear-gradient(135deg,#F0F7F4 0%,#E8F4EF 100%); }
.ctn-hp-dahabiya__inner { display:grid; grid-template-columns:1fr 1fr; gap:3rem; align-items:center; }
.ctn-hp-dahabiya__image { border-radius:16px; overflow:hidden; aspect-ratio:4/3; }
.ctn-hp-dahabiya__image .ctn-img { width:100%; height:100%; object-fit:cover; }
.ctn-hp-dahabiya__eyebrow { display:block; font-size:.82rem; font-weight:600; color:#27AE60; text-transform:uppercase; letter-spacing:.08em; margin-bottom:.5rem; }
.ctn-hp-dahabiya__desc { color:#444; margin:1rem 0; line-height:1.7; }
.ctn-hp-dahabiya__features { margin:1rem 0 1.25rem; }
.ctn-hp-dahabiya__features li { font-size:.9rem; color:#555; padding:.2rem 0; display:flex; align-items:center; gap:.4rem; }
.ctn-hp-dahabiya__features li::before { content:'✓'; color:#27AE60; font-weight:bold; }
.ctn-hp-dahabiya__price { font-size:1.1rem; color:#444; margin-bottom:1.25rem; }
.ctn-hp-dahabiya__price strong { color:#1A5276; font-size:1.5rem; }
.ctn-hp-dahabiya__ctas { display:flex; gap:.75rem; flex-wrap:wrap; }

/* ── Itinerary quick links ── */
.ctn-hp-itineraries { background:#fff; padding:3.5rem 0; }
.ctn-hp-itin-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem; }
.ctn-hp-itin-card { display:block; background:#F8FAFC; border:1.5px solid #E0E8F0; border-radius:10px; padding:1.5rem; transition:box-shadow .15s,border-color .15s; }
.ctn-hp-itin-card:hover { box-shadow:0 4px 20px rgba(26,82,118,.1); border-color:#1A5276; }
.ctn-hp-itin-card__days { display:inline-block; background:#EBF5FB; color:#1A5276; font-size:.75rem; font-weight:600; padding:3px 10px; border-radius:12px; margin-bottom:.75rem; }
.ctn-hp-itin-card__title { font-size:1.05rem; color:#1A2C3A; margin-bottom:.4rem; }
.ctn-hp-itin-card__desc { font-size:.84rem; color:#888; line-height:1.5; margin-bottom:.75rem; }
.ctn-hp-itin-card__link { font-size:.875rem; font-weight:600; color:#1A5276; }

/* ── View all / final CTA ── */
.ctn-hp-view-all { text-align:center; margin-top:2rem; }
.ctn-hp-final-cta { background:linear-gradient(135deg,#0D2137 0%,#1A3A55 100%); padding:5rem 0; text-align:center; }
.ctn-hp-final-cta__inner { max-width:600px; margin:0 auto; }
.ctn-hp-final-cta__title { color:#fff; font-size:clamp(1.75rem,3.5vw,2.5rem); margin-bottom:1rem; }
.ctn-hp-final-cta__sub { color:rgba(255,255,255,.75); font-size:1rem; margin-bottom:2rem; line-height:1.7; }
.ctn-hp-final-cta__actions { display:flex; justify-content:center; gap:1rem; flex-wrap:wrap; margin-bottom:1rem; }
.ctn-hp-final-cta__note { font-size:.82rem; color:rgba(255,255,255,.45); }

/* ── Country landing pages ── */
.ctn-country-hero { background:linear-gradient(135deg,#1A3A55 0%,#0D2137 100%); padding:4rem 0 3rem; }
.ctn-country-hero__title { color:#fff; font-size:clamp(1.75rem,4vw,2.75rem); margin-bottom:1rem; }
.ctn-country-hero__lead { color:rgba(255,255,255,.82); font-size:1rem; max-width:700px; line-height:1.75; margin-bottom:1.5rem; }
.ctn-country-hero__stats { display:flex; flex-wrap:wrap; gap:.5rem 1.5rem; margin-bottom:1.75rem; }
.ctn-country-hero__stats span { color:rgba(255,255,255,.7); font-size:.875rem; }
.ctn-breadcrumb--light a { color:rgba(255,255,255,.6); }
.ctn-breadcrumb--light a:hover { color:#fff; }
.ctn-breadcrumb--light span { color:rgba(255,255,255,.4); }
.ctn-country-body { padding:2.5rem 0; }
.ctn-country-practical__grid { display:grid; grid-template-columns:1fr 1fr; gap:1.25rem; }
.ctn-practical-card { background:#F8FAFC; border-radius:8px; padding:1.25rem; border-left:3px solid #1A5276; }
.ctn-practical-card h3 { font-size:.95rem; font-family:'Inter',sans-serif; font-weight:600; color:#1A5276; margin-bottom:.5rem; }
.ctn-practical-card p { font-size:.875rem; color:#555; line-height:1.65; margin-bottom:0; }
.ctn-reviews-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem; }
.ctn-review-card { background:#fff; border:1px solid #E8EDF2; border-radius:10px; padding:1.25rem; }
.ctn-review-card__stars { color:#DAA520; font-size:1rem; margin-bottom:.5rem; }
.ctn-review-card__text { font-size:.875rem; color:#444; line-height:1.65; font-style:italic; margin-bottom:.75rem; }
.ctn-review-card__author { font-size:.78rem; color:#888; font-style:normal; }
.ctn-faq-list { display:flex; flex-direction:column; gap:.5rem; }
.ctn-faq-item { border:1px solid #E0E8F0; border-radius:8px; overflow:hidden; }
.ctn-faq-item__question { padding:1rem 1.25rem; cursor:pointer; font-weight:600; font-size:.95rem; color:#1A2C3A; list-style:none; background:#F8FAFC; }
.ctn-faq-item__question:hover { background:#EBF5FB; color:#1A5276; }
.ctn-faq-item[open] .ctn-faq-item__question { background:#EBF5FB; color:#1A5276; border-bottom:1px solid #D4E6F1; }
.ctn-faq-item__answer { padding:1rem 1.25rem; font-size:.9rem; color:#555; line-height:1.7; background:#fff; }
.ctn-country-cta { background:linear-gradient(135deg,#1A3A55 0%,#0D2137 100%); border-radius:12px; }
.ctn-country-cta__inner { padding:3rem; text-align:center; }
.ctn-country-cta h2 { color:#fff; margin-bottom:.75rem; }
.ctn-country-cta p { color:rgba(255,255,255,.75); margin-bottom:1.5rem; }
.ctn-dahabiya-intro { background:#EAF7F0; border-left:4px solid #27AE60; border-radius:0 8px 8px 0; padding:1rem 1.25rem; margin-bottom:2rem; font-size:.9rem; color:#2C3E50; }

/* ── Responsive additions ── */
@media (max-width:1024px) {
    .ctn-hp-hero { min-height:70vh; }
    .ctn-hp-classes__grid { grid-template-columns:1fr 1fr; }
    .ctn-hp-why__grid { grid-template-columns:1fr 1fr; }
    .ctn-hp-dahabiya__inner { grid-template-columns:1fr; }
    .ctn-hp-itin-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width:768px) {
    .ctn-hp-stats__inner { gap:.5rem; }
    .ctn-hp-stat__number { font-size:1.4rem; }
    .ctn-hp-classes__grid { grid-template-columns:1fr; }
    .ctn-hp-why__grid { grid-template-columns:1fr; }
    .ctn-hp-itin-grid { grid-template-columns:1fr; }
    .ctn-reviews-grid { grid-template-columns:1fr; }
    .ctn-country-practical__grid { grid-template-columns:1fr; }
    .ctn-hp-brands__list { gap:.4rem; }
}
