/*
Theme Name:  AllCruisesTravel
Theme URI:   https://allcruisestravel.com
Author:      AllCruisesTravel.com
Author URI:  https://allcruisestravel.com
Description: A high-performance, SEO-optimized WordPress theme built exclusively for AllCruisesTravel.com. Features cruise-specific page templates, built-in schema markup hooks, affiliate-ready layouts, AdSense-optimized content areas, and a full editorial design system.
Version:     1.34.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License:     Proprietary
License URI: https://allcruisestravel.com/license
Text Domain: allcruisestravel
Tags: cruise, travel, affiliate, adsense, seo, editorial, custom-post-types, schema
*/

/* =============================================
   CSS CUSTOM PROPERTIES
============================================= */
:root {
  /* Brand Colors */
  --act-navy:         #0A1628;
  --act-navy-mid:     #0D2040;
  --act-navy-dark:    #060E1A;
  --act-ocean:        #0077B6;
  --act-ocean-light:  #00B4D8;
  --act-sky:          #90E0EF;
  --act-sunset:       #F4A261;
  --act-coral:        #E76F51;
  --act-pearl:        #FAFAFA;
  --act-cloud:        #F0F4F8;
  --act-mist:         #E2EBF3;
  --act-ink:          #1A2332;
  --act-slate:        #4A5568;
  --act-silver:       #8A9BB0;
  --act-gold:         #D4AF37;
  --act-white:        #FFFFFF;
  --act-success:      #10B981;
  --act-warning:      #F59E0B;
  --act-danger:       #EF4444;

  /* Typography */
  --act-font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --act-font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --act-font-accent:  'Cormorant Garamond', Georgia, serif;
  --act-font-mono:    'JetBrains Mono', 'Fira Code', Consolas, monospace;

  /* Spacing Scale */
  --act-space-xs:  4px;
  --act-space-sm:  8px;
  --act-space-md:  16px;
  --act-space-lg:  24px;
  --act-space-xl:  32px;
  --act-space-2xl: 48px;
  --act-space-3xl: 64px;
  --act-space-4xl: 88px;
  --act-space-5xl: 120px;

  /* Border Radius */
  --act-radius-xs: 4px;
  --act-radius-sm: 6px;
  --act-radius-md: 12px;
  --act-radius-lg: 20px;
  --act-radius-xl: 32px;
  --act-radius-full: 9999px;

  /* Shadows */
  --act-shadow-xs:   0 1px 4px rgba(10,22,40,.06);
  --act-shadow-sm:   0 2px 8px rgba(10,22,40,.08);
  --act-shadow-md:   0 8px 32px rgba(10,22,40,.12);
  --act-shadow-lg:   0 20px 60px rgba(10,22,40,.18);
  --act-shadow-xl:   0 40px 80px rgba(10,22,40,.24);
  --act-shadow-glow: 0 0 40px rgba(0,119,182,.25);

  /* Transitions */
  --act-transition: all .22s cubic-bezier(.4,0,.2,1);
  --act-transition-slow: all .4s cubic-bezier(.4,0,.2,1);

  /* Layout */
  --act-container:      1200px;
  --act-container-wide: 1440px;
  --act-sidebar-width:  320px;
  --act-header-height:  72px;
  --act-topbar-height:  38px;
}

/* =============================================
   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: var(--act-font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--act-ink);
  background-color: var(--act-pearl);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video, svg { max-width: 100%; display: block; height: auto; }

a { color: var(--act-ocean); text-decoration: none; transition: var(--act-transition); }
a:hover { color: var(--act-ocean-light); }

button { font-family: var(--act-font-body); cursor: pointer; }

ul, ol { list-style: none; }

input, select, textarea {
  font-family: var(--act-font-body);
  font-size: 1rem;
}

/* =============================================
   LAYOUT UTILITIES
============================================= */
.act-container {
  max-width: var(--act-container);
  margin: 0 auto;
  padding: 0 var(--act-space-lg);
}

.act-container--wide {
  max-width: var(--act-container-wide);
  margin: 0 auto;
  padding: 0 var(--act-space-xl);
}

.act-container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--act-space-lg);
}

.act-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--act-space-lg);
}

.act-content-sidebar {
  display: grid;
  grid-template-columns: 1fr var(--act-sidebar-width);
  gap: var(--act-space-2xl);
  align-items: start;
}

/* =============================================
   TYPOGRAPHY SYSTEM
============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--act-font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--act-navy);
}

h1 { font-size: clamp(32px, 5vw, 56px); }
h2 { font-size: clamp(26px, 4vw, 42px); }
h3 { font-size: clamp(20px, 3vw, 28px); }
h4 { font-size: clamp(18px, 2.5vw, 22px); }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p { margin-bottom: var(--act-space-md); color: var(--act-slate); }
p:last-child { margin-bottom: 0; }

strong, b { font-weight: 700; color: var(--act-ink); }
em, i { font-style: italic; }

.act-section-label {
  display: inline-block;
  font-family: var(--act-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--act-ocean);
  margin-bottom: var(--act-space-sm);
}

.act-section-title {
  font-family: var(--act-font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--act-navy);
  line-height: 1.12;
}

.act-section-title em {
  font-style: italic;
  color: var(--act-ocean);
}

.act-section-subtitle {
  font-size: 17px;
  color: var(--act-slate);
  font-weight: 300;
  margin-top: var(--act-space-sm);
  max-width: 560px;
  line-height: 1.65;
}

/* =============================================
   BUTTONS
============================================= */
.act-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--act-space-sm);
  font-family: var(--act-font-body);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding: 14px 28px;
  border-radius: var(--act-radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--act-transition);
  text-decoration: none;
  white-space: nowrap;
}

.act-btn--primary {
  background: var(--act-ocean);
  color: var(--act-white);
  border-color: var(--act-ocean);
}
.act-btn--primary:hover {
  background: #005f91;
  border-color: #005f91;
  color: var(--act-white);
  transform: translateY(-2px);
  box-shadow: var(--act-shadow-glow);
}

.act-btn--secondary {
  background: var(--act-white);
  color: var(--act-navy);
  border-color: var(--act-mist);
}
.act-btn--secondary:hover {
  border-color: var(--act-ocean);
  color: var(--act-ocean);
  transform: translateY(-2px);
  box-shadow: var(--act-shadow-sm);
}

.act-btn--sunset {
  background: var(--act-sunset);
  color: var(--act-white);
  border-color: var(--act-sunset);
}
.act-btn--sunset:hover {
  background: #e08a45;
  border-color: #e08a45;
  color: var(--act-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244,162,97,.4);
}

.act-btn--ghost {
  background: transparent;
  color: var(--act-white);
  border-color: rgba(255,255,255,.4);
}
.act-btn--ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.8);
  color: var(--act-white);
}

.act-btn--sm { font-size: 13px; padding: 10px 20px; }
.act-btn--lg { font-size: 17px; padding: 18px 36px; }

/* =============================================
   BADGES & LABELS
============================================= */
.act-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: var(--act-radius-full);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .5px;
}

.act-badge--ocean  { background: rgba(0,119,182,.1);   color: var(--act-ocean); }
.act-badge--sunset { background: rgba(244,162,97,.15);  color: #c47a30; }
.act-badge--coral  { background: rgba(231,111,81,.1);   color: var(--act-coral); }
.act-badge--gold   { background: rgba(212,175,55,.15);  color: #9a7c1a; }
.act-badge--success { background: rgba(16,185,129,.1);  color: var(--act-success); }
.act-badge--navy   { background: var(--act-navy);       color: var(--act-white); }

/* =============================================
   STAR RATING
============================================= */
.act-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--act-gold);
  font-size: 14px;
}

.act-rating-text {
  font-size: 13px;
  color: var(--act-silver);
  margin-left: 6px;
  font-weight: 500;
}

/* =============================================
   TOP ADMIN BAR OFFSET
============================================= */
.admin-bar .act-site-topbar { top: 32px; }
.admin-bar .act-site-nav { top: calc(32px + var(--act-topbar-height)); }

/* =============================================
   SITE TOPBAR
============================================= */
.act-site-topbar {
  background: var(--act-navy);
  color: rgba(255,255,255,.7);
  font-size: 12.5px;
  font-weight: 400;
  padding: 0;
  height: var(--act-topbar-height);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1001;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.act-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.act-topbar-left,
.act-topbar-right {
  display: flex;
  align-items: center;
  gap: var(--act-space-lg);
}

.act-topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}

.act-topbar-link {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: var(--act-transition);
}
.act-topbar-link:hover { color: var(--act-sunset); }

.act-topbar-deal { color: var(--act-sunset); font-weight: 600; }

.act-topbar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,.15);
}

/* =============================================
   SITE NAVIGATION
============================================= */
.act-site-nav {
  background: var(--act-white);
  position: sticky;
  top: var(--act-topbar-height);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(10,22,40,.08);
  transition: box-shadow .3s;
}

.act-site-nav.is-scrolled {
  box-shadow: 0 4px 32px rgba(10,22,40,.14);
}

.act-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--act-header-height);
}

/* Logo */
.act-nav-logo {
  display: flex;
  align-items: center;
  gap: var(--act-space-sm);
  text-decoration: none;
  flex-shrink: 0;
}

.act-logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--act-ocean), var(--act-ocean-light));
  border-radius: var(--act-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: var(--act-transition);
}
.act-nav-logo:hover .act-logo-icon { transform: rotate(-5deg) scale(1.05); }

.act-logo-text { line-height: 1.1; }

.act-logo-name {
  font-family: var(--act-font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--act-navy);
  display: block;
  letter-spacing: -.3px;
}

.act-logo-tagline {
  font-size: 10px;
  color: var(--act-silver);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 500;
  display: block;
}

/* Primary Menu */
.act-primary-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.act-menu-item { position: relative; }

.act-menu-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--act-ink);
  border-radius: var(--act-radius-sm);
  text-decoration: none;
  transition: var(--act-transition);
  cursor: pointer;
  line-height: 1;
  white-space: nowrap;
}

.act-menu-link:hover,
.act-menu-link.current-menu-item {
  color: var(--act-ocean);
  background: rgba(0,119,182,.06);
}

.act-menu-link--deals {
  color: var(--act-coral);
  font-weight: 700;
}
.act-menu-link--deals:hover {
  color: var(--act-coral);
  background: rgba(231,111,81,.08);
}

.act-menu-arrow {
  font-size: 9px;
  opacity: .45;
  transition: transform .22s, opacity .22s;
  margin-left: 1px;
}
.act-menu-item:hover .act-menu-arrow {
  transform: rotate(180deg);
  opacity: .9;
}

/* Mega Menu Dropdown */
.act-mega-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--act-white);
  border-radius: var(--act-radius-lg);
  box-shadow: var(--act-shadow-lg);
  padding: 28px;
  min-width: 540px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s, visibility .22s, transform .22s;
  transform: translateX(-50%) translateY(8px);
  border: 1px solid var(--act-mist);
}

.act-menu-item:hover .act-mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.act-mega-header {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--act-silver);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--act-mist);
}

.act-mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.act-mega-grid--2col { grid-template-columns: repeat(2, 1fr); }

.act-mega-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: var(--act-radius-md);
  transition: background .18s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.act-mega-item:hover { background: var(--act-cloud); }

.act-mega-icon {
  width: 36px;
  height: 36px;
  background: var(--act-cloud);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.act-mega-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--act-ink);
  display: block;
  margin-bottom: 2px;
}

.act-mega-desc {
  font-size: 11.5px;
  color: var(--act-silver);
  line-height: 1.4;
  display: block;
}

/* Nav Actions */
.act-nav-actions {
  display: flex;
  align-items: center;
  gap: var(--act-space-sm);
  flex-shrink: 0;
}

.act-nav-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--act-cloud);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--act-slate);
  transition: var(--act-transition);
  flex-shrink: 0;
}
.act-nav-icon-btn:hover {
  background: var(--act-mist);
  color: var(--act-ocean);
}

/* Mobile hamburger */
.act-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.act-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--act-navy);
  border-radius: 2px;
  transition: var(--act-transition);
}

.act-menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.act-menu-toggle.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.act-menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Search overlay */
.act-search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,.92);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  opacity: 0;
  visibility: hidden;
  transition: var(--act-transition);
}

.act-search-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.act-search-overlay-inner {
  width: 100%;
  max-width: 640px;
  padding: 0 var(--act-space-lg);
}

.act-search-overlay-input {
  width: 100%;
  background: rgba(255,255,255,.08);
  border: 2px solid rgba(255,255,255,.2);
  border-radius: var(--act-radius-xl);
  color: var(--act-white);
  font-size: 24px;
  padding: 20px 28px;
  outline: none;
  font-family: var(--act-font-display);
}
.act-search-overlay-input::placeholder { color: rgba(255,255,255,.3); }
.act-search-overlay-input:focus { border-color: var(--act-ocean-light); }

.act-search-overlay-close {
  position: absolute;
  top: 32px;
  right: 32px;
  background: rgba(255,255,255,.1);
  border: none;
  color: var(--act-white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--act-transition);
}
.act-search-overlay-close:hover { background: rgba(255,255,255,.2); }

.act-search-overlay-hints {
  margin-top: var(--act-space-lg);
  display: flex;
  flex-wrap: wrap;
  gap: var(--act-space-sm);
}

.act-search-hint {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  padding: 6px 14px;
  border-radius: var(--act-radius-full);
  font-size: 13px;
  cursor: pointer;
  transition: var(--act-transition);
}
.act-search-hint:hover { background: rgba(0,119,182,.4); color: var(--act-white); }

/* =============================================
   PAGE HEADER (Inner pages)
============================================= */
.act-page-hero {
  background: linear-gradient(160deg, var(--act-navy) 0%, #0D3458 60%, #0A2040 100%);
  padding: var(--act-space-4xl) 0;
  position: relative;
  overflow: hidden;
}

.act-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,180,216,.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(0,119,182,.15) 0%, transparent 50%);
  pointer-events: none;
}

.act-page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), transparent);
}

.act-page-hero__inner { position: relative; z-index: 1; }

.act-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--act-space-sm);
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-bottom: var(--act-space-md);
  flex-wrap: wrap;
}

.act-breadcrumb a {
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: var(--act-transition);
}
.act-breadcrumb a:hover { color: var(--act-sunset); }

.act-breadcrumb__sep { color: rgba(255,255,255,.25); font-size: 11px; }
.act-breadcrumb__current { color: rgba(255,255,255,.7); }

.act-page-hero__title {
  font-family: var(--act-font-display);
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 700;
  color: var(--act-white);
  line-height: 1.1;
  margin-bottom: var(--act-space-md);
}

.act-page-hero__subtitle {
  font-size: 18px;
  color: rgba(255,255,255,.65);
  font-weight: 300;
  max-width: 600px;
  line-height: 1.6;
}

.act-page-hero__meta {
  display: flex;
  align-items: center;
  gap: var(--act-space-xl);
  margin-top: var(--act-space-xl);
  flex-wrap: wrap;
}

.act-page-hero__meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
}

/* =============================================
   TRUST BAR
============================================= */
.act-trust-bar {
  background: var(--act-white);
  border-bottom: 1px solid var(--act-mist);
  padding: 14px 0;
  overflow: hidden;
}

.act-trust-track {
  display: flex;
  align-items: center;
  gap: var(--act-space-4xl);
  width: max-content;
  animation: act-marquee 35s linear infinite;
}

.act-trust-track:hover { animation-play-state: paused; }

@keyframes act-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.act-trust-item {
  display: flex;
  align-items: center;
  gap: var(--act-space-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--act-slate);
  white-space: nowrap;
  opacity: .75;
}

/* =============================================
   HERO (HOMEPAGE)
============================================= */
.act-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--act-navy);
  overflow: hidden;
}

.act-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,180,216,.2) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(0,119,182,.15) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(244,162,97,.08) 0%, transparent 40%),
    linear-gradient(180deg, var(--act-navy) 0%, #0D3458 50%, var(--act-navy) 100%);
}

.act-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,22,40,.9) 0%,
    rgba(10,22,40,.5) 50%,
    rgba(10,22,40,.8) 100%
  );
  z-index: 1;
}

.act-hero__featured-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform 8s ease;
}

.act-hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}

.act-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: var(--act-space-5xl) 0 var(--act-space-4xl);
}

.act-hero__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--act-space-4xl);
  align-items: center;
}

.act-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--act-space-sm);
  background: rgba(0,180,216,.12);
  border: 1px solid rgba(0,180,216,.25);
  color: var(--act-sky);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--act-radius-full);
  margin-bottom: var(--act-space-lg);
  animation: act-fade-up .6s ease both;
}

.act-hero__title {
  font-family: var(--act-font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  color: var(--act-white);
  line-height: 1.06;
  margin-bottom: var(--act-space-lg);
  animation: act-fade-up .7s .1s ease both;
}

.act-hero__title em {
  font-style: italic;
  color: var(--act-sunset);
}

.act-hero__subtitle {
  font-size: 18px;
  color: rgba(255,255,255,.68);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: var(--act-space-2xl);
  max-width: 500px;
  animation: act-fade-up .7s .2s ease both;
}

.act-hero__ctas {
  display: flex;
  gap: var(--act-space-md);
  flex-wrap: wrap;
  margin-bottom: var(--act-space-3xl);
  animation: act-fade-up .7s .3s ease both;
}

.act-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--act-space-xl) var(--act-space-lg);
  padding-top: var(--act-space-xl);
  border-top: 1px solid rgba(255,255,255,.1);
  animation: act-fade-up .7s .4s ease both;
}

.act-hero__stat-num {
  font-family: var(--act-font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--act-white);
  line-height: 1;
  margin-bottom: 4px;
}

.act-hero__stat-label {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* Hero Search Card */
.act-hero__search-card {
  background: rgba(255,255,255,.97);
  border-radius: var(--act-radius-xl);
  padding: 36px 32px;
  box-shadow: 0 40px 80px rgba(0,0,0,.4);
  animation: act-fade-up .8s .2s ease both;
}

.act-search-card-title {
  font-family: var(--act-font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--act-navy);
  margin-bottom: 4px;
}

.act-search-card-sub {
  font-size: 13px;
  color: var(--act-silver);
  margin-bottom: var(--act-space-lg);
}

.act-search-tabs {
  display: flex;
  gap: 4px;
  background: var(--act-cloud);
  padding: 4px;
  border-radius: var(--act-radius-md);
  margin-bottom: var(--act-space-md);
}

.act-search-tab {
  flex: 1;
  padding: 9px 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--act-slate);
  background: transparent;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  transition: var(--act-transition);
  text-align: center;
  line-height: 1;
}
.act-search-tab.is-active,
.act-search-tab:hover {
  background: var(--act-white);
  color: var(--act-ocean);
  box-shadow: var(--act-shadow-sm);
}

.act-search-field { margin-bottom: var(--act-space-sm); }

.act-search-field label {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--act-silver);
  margin-bottom: 6px;
}

.act-search-field select,
.act-search-field input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--act-mist);
  border-radius: var(--act-radius-md);
  font-size: 14px;
  color: var(--act-ink);
  background: var(--act-white);
  appearance: none;
  transition: border-color .2s;
  outline: none;
}

.act-search-field select:focus,
.act-search-field input:focus {
  border-color: var(--act-ocean);
}

.act-search-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--act-space-sm);
}

.act-search-submit {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--act-ocean), var(--act-ocean-light));
  color: var(--act-white);
  border: none;
  border-radius: var(--act-radius-md);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 6px;
  transition: var(--act-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--act-space-sm);
}
.act-search-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--act-shadow-glow);
}

.act-search-popular {
  margin-top: var(--act-space-md);
  font-size: 12px;
  color: var(--act-silver);
}

.act-search-tag {
  display: inline-block;
  background: var(--act-cloud);
  color: var(--act-slate);
  padding: 4px 11px;
  border-radius: var(--act-radius-full);
  font-size: 12px;
  margin: 3px 2px;
  cursor: pointer;
  transition: var(--act-transition);
  font-weight: 500;
}
.act-search-tag:hover {
  background: rgba(0,119,182,.1);
  color: var(--act-ocean);
}

/* =============================================
   SECTION WRAPPER
============================================= */
.act-section { padding: var(--act-space-4xl) 0; }
.act-section--sm  { padding: var(--act-space-3xl) 0; }
.act-section--lg  { padding: var(--act-space-5xl) 0; }
.act-section--dark  { background: var(--act-navy); }
.act-section--cloud { background: var(--act-cloud); }
.act-section--white { background: var(--act-white); }

.act-section-header { margin-bottom: var(--act-space-3xl); }
.act-section-header--center { text-align: center; }
.act-section-header--center .act-section-subtitle { margin-left: auto; margin-right: auto; }

.act-section-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--act-space-md);
  margin-bottom: var(--act-space-2xl);
}

/* =============================================
   DESTINATION GRID
============================================= */
.act-destinations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: var(--act-space-sm);
}

.act-dest-card {
  position: relative;
  border-radius: var(--act-radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform .3s ease;
  text-decoration: none;
}

.act-dest-card:hover { transform: scale(1.02); }

.act-dest-card--featured { grid-column: span 2; grid-row: span 2; }
.act-dest-card--wide    { grid-column: span 2; }

.act-dest-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
}
.act-dest-card:hover .act-dest-card__bg { transform: scale(1.07); }

.act-dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,.92) 0%, rgba(10,22,40,.2) 55%, transparent 100%);
  transition: opacity .3s;
}
.act-dest-card:hover .act-dest-card__overlay { opacity: .6; }

.act-dest-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--act-space-lg) var(--act-space-lg) var(--act-space-md);
  z-index: 2;
}

.act-dest-card__region {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--act-sunset);
  margin-bottom: 4px;
  display: block;
}

.act-dest-card__name {
  font-family: var(--act-font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--act-white);
  line-height: 1.2;
  margin-bottom: 6px;
  display: block;
}
.act-dest-card--featured .act-dest-card__name { font-size: 30px; }

.act-dest-card__meta {
  display: flex;
  align-items: center;
  gap: var(--act-space-sm);
  font-size: 12px;
  color: rgba(255,255,255,.6);
  flex-wrap: wrap;
}

.act-dest-card__count {
  background: rgba(255,255,255,.15);
  padding: 2px 9px;
  border-radius: var(--act-radius-full);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
}

.act-dest-card__arrow {
  position: absolute;
  top: var(--act-space-md);
  right: var(--act-space-md);
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--act-transition);
  z-index: 3;
  color: var(--act-white);
  font-size: 14px;
  backdrop-filter: blur(4px);
}
.act-dest-card:hover .act-dest-card__arrow { opacity: 1; }

/* =============================================
   CRUISE LINE CARDS
============================================= */
.act-cruise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--act-space-md);
}

.act-cruise-card {
  background: var(--act-white);
  border: 2px solid var(--act-mist);
  border-radius: var(--act-radius-lg);
  padding: var(--act-space-xl) var(--act-space-lg);
  cursor: pointer;
  transition: var(--act-transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
}

.act-cruise-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--act-ocean), var(--act-ocean-light));
  opacity: 0;
  transition: opacity .25s;
}

.act-cruise-card:hover {
  border-color: rgba(0,119,182,.25);
  transform: translateY(-5px);
  box-shadow: var(--act-shadow-md);
}
.act-cruise-card:hover::before { opacity: 1; }

.act-cruise-card__logo {
  width: 54px;
  height: 54px;
  border-radius: var(--act-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: var(--act-space-md);
}

.act-cruise-card__name {
  font-family: var(--act-font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--act-navy);
  margin-bottom: 6px;
  display: block;
}

.act-cruise-card__tagline {
  font-size: 13px;
  color: var(--act-slate);
  line-height: 1.5;
  margin-bottom: var(--act-space-md);
  display: block;
}

.act-cruise-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--act-space-md);
  border-top: 1px solid var(--act-mist);
  margin-top: auto;
}

.act-cruise-card__stars { color: var(--act-gold); font-size: 13px; }
.act-cruise-card__ships { font-size: 12px; color: var(--act-silver); font-weight: 500; }

.act-cruise-card__price {
  font-size: 12px;
  color: var(--act-slate);
  margin-top: var(--act-space-sm);
}
.act-cruise-card__price strong {
  color: var(--act-ocean);
  font-size: 16px;
  font-family: var(--act-font-display);
}

/* =============================================
   DEAL CARDS
============================================= */
.act-deals-filters {
  display: flex;
  gap: var(--act-space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--act-space-xl);
}

.act-filter-pill {
  padding: 8px 18px;
  border-radius: var(--act-radius-full);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--act-mist);
  background: var(--act-white);
  color: var(--act-slate);
  transition: var(--act-transition);
  line-height: 1;
}
.act-filter-pill.is-active {
  background: var(--act-navy);
  border-color: var(--act-navy);
  color: var(--act-white);
}
.act-filter-pill:hover:not(.is-active) {
  border-color: var(--act-ocean);
  color: var(--act-ocean);
}

.act-deals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--act-space-lg);
}

.act-deal-card {
  background: var(--act-white);
  border-radius: var(--act-radius-lg);
  overflow: hidden;
  box-shadow: var(--act-shadow-sm);
  border: 1px solid var(--act-mist);
  transition: var(--act-transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.act-deal-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--act-shadow-md);
}

.act-deal-card__image {
  height: 165px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.act-deal-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.act-deal-card:hover .act-deal-card__img { transform: scale(1.07); }

.act-deal-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--act-coral);
  color: var(--act-white);
  font-size: 10.5px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--act-radius-full);
  letter-spacing: .5px;
}

.act-deal-card__save {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,.92);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: var(--act-transition);
  backdrop-filter: blur(4px);
}
.act-deal-card__save:hover { background: var(--act-white); transform: scale(1.1); }

.act-deal-card__body {
  padding: var(--act-space-lg);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.act-deal-card__line-info {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.act-deal-card__line-name {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--act-ocean);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.act-deal-card__dot {
  width: 3px; height: 3px;
  background: var(--act-silver);
  border-radius: 50%;
}

.act-deal-card__ship-name {
  font-size: 11.5px;
  color: var(--act-silver);
}

.act-deal-card__destination {
  font-family: var(--act-font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--act-navy);
  margin-bottom: var(--act-space-sm);
  line-height: 1.2;
}

.act-deal-card__details {
  display: flex;
  gap: var(--act-space-md);
  margin-bottom: var(--act-space-md);
  flex-wrap: wrap;
}

.act-deal-card__detail {
  font-size: 12.5px;
  color: var(--act-slate);
  display: flex;
  align-items: center;
  gap: 4px;
}

.act-deal-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--act-space-md);
  border-top: 1px solid var(--act-mist);
  margin-top: auto;
}

.act-deal-card__was {
  font-size: 12px;
  color: var(--act-silver);
  text-decoration: line-through;
}

.act-deal-card__price {
  font-family: var(--act-font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--act-navy);
  line-height: 1;
}

.act-deal-card__per {
  font-size: 11px;
  color: var(--act-silver);
  display: block;
}

.act-deal-card__cta {
  background: var(--act-ocean);
  color: var(--act-white);
  padding: 10px 18px;
  border-radius: var(--act-radius-full);
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--act-transition);
  text-decoration: none;
}
.act-deal-card__cta:hover { background: #005f91; transform: translateY(-1px); color: var(--act-white); }

/* =============================================
   BLOG ARTICLE CARDS
============================================= */
.act-blog-grid--featured {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: var(--act-space-lg);
}

.act-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--act-space-lg);
}

.act-blog-grid--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--act-space-lg);
}

.act-article-card {
  background: var(--act-white);
  border-radius: var(--act-radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--act-transition);
  border: 1px solid var(--act-mist);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.act-article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--act-shadow-md);
  color: inherit;
}

.act-article-card__image {
  height: 220px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.act-article-card--sm .act-article-card__image { height: 165px; }

.act-article-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.act-article-card:hover .act-article-card__img { transform: scale(1.06); }

.act-article-card__cat {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--act-ocean);
  color: var(--act-white);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--act-radius-full);
}

.act-article-card__body {
  padding: var(--act-space-lg);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.act-article-card__title {
  font-family: var(--act-font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--act-navy);
  line-height: 1.3;
  margin-bottom: var(--act-space-sm);
  transition: color .2s;
}
.act-article-card--sm .act-article-card__title { font-size: 16px; }
.act-article-card:hover .act-article-card__title { color: var(--act-ocean); }

.act-article-card__excerpt {
  font-size: 14px;
  color: var(--act-slate);
  line-height: 1.6;
  margin-bottom: var(--act-space-md);
}

.act-article-card__meta {
  display: flex;
  align-items: center;
  gap: var(--act-space-md);
  font-size: 12px;
  color: var(--act-silver);
  font-weight: 500;
  margin-top: auto;
  flex-wrap: wrap;
}

/* =============================================
   COMPARE STRIP
============================================= */
.act-compare-strip {
  background: linear-gradient(135deg, var(--act-ocean), var(--act-ocean-light));
  padding: var(--act-space-2xl) 0;
}

.act-compare-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--act-space-xl);
  flex-wrap: wrap;
}

.act-compare-strip__title {
  font-family: var(--act-font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--act-white);
  margin-bottom: 4px;
}

.act-compare-strip__sub {
  font-size: 15px;
  color: rgba(255,255,255,.75);
}

.act-compare-tool {
  display: flex;
  align-items: center;
  gap: var(--act-space-sm);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--act-radius-lg);
  padding: var(--act-space-md) var(--act-space-lg);
  flex-wrap: wrap;
  gap: var(--act-space-md);
}

.act-compare-select {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--act-white);
  padding: 10px 16px;
  border-radius: var(--act-radius-md);
  font-family: var(--act-font-body);
  font-size: 14px;
  min-width: 170px;
  appearance: none;
  cursor: pointer;
  outline: none;
}
.act-compare-select option { background: var(--act-navy); }

.act-compare-vs {
  font-family: var(--act-font-display);
  font-size: 18px;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  font-style: italic;
}

.act-compare-btn {
  background: var(--act-white);
  color: var(--act-ocean);
  padding: 12px 24px;
  border-radius: var(--act-radius-full);
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--act-transition);
}
.act-compare-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }

/* =============================================
   NEWSLETTER
============================================= */
.act-newsletter {
  background: linear-gradient(135deg, var(--act-navy) 0%, #0D3458 60%, var(--act-navy-dark) 100%);
  position: relative;
  overflow: hidden;
  padding: var(--act-space-5xl) 0;
}

.act-newsletter__glow-1 {
  position: absolute;
  top: -30%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,180,216,.12) 0%, transparent 70%);
  pointer-events: none;
}

.act-newsletter__glow-2 {
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244,162,97,.08) 0%, transparent 70%);
  pointer-events: none;
}

.act-newsletter__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--act-space-4xl);
  align-items: center;
}

.act-newsletter__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--act-sunset);
  margin-bottom: var(--act-space-md);
  display: block;
}

.act-newsletter__title {
  font-family: var(--act-font-display);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--act-white);
  line-height: 1.12;
  margin-bottom: var(--act-space-md);
}

.act-newsletter__desc {
  font-size: 16px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-bottom: var(--act-space-xl);
}

.act-newsletter__perks {
  display: flex;
  flex-direction: column;
  gap: var(--act-space-sm);
}

.act-newsletter__perk {
  display: flex;
  align-items: center;
  gap: var(--act-space-sm);
  font-size: 14px;
  color: rgba(255,255,255,.72);
}

.act-newsletter__perk-check {
  width: 22px;
  height: 22px;
  background: rgba(0,180,216,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  color: var(--act-sky);
}

/* Newsletter Form Card */
.act-nl-form-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--act-radius-xl);
  padding: var(--act-space-3xl) var(--act-space-2xl);
  backdrop-filter: blur(20px);
}

.act-nl-form-title {
  font-family: var(--act-font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--act-white);
  margin-bottom: 4px;
}

.act-nl-form-sub {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  margin-bottom: var(--act-space-xl);
}

.act-nl-field { margin-bottom: var(--act-space-md); }

.act-nl-field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 6px;
}

.act-nl-field input,
.act-nl-field select {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--act-radius-md);
  color: var(--act-white);
  font-size: 14px;
  transition: border-color .2s;
  outline: none;
}

.act-nl-field input::placeholder { color: rgba(255,255,255,.28); }

.act-nl-field input:focus,
.act-nl-field select:focus { border-color: var(--act-ocean-light); }

.act-nl-field select option { background: var(--act-navy); color: var(--act-white); }

.act-nl-submit {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--act-sunset), var(--act-coral));
  color: var(--act-white);
  border: none;
  border-radius: var(--act-radius-md);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: var(--act-space-sm);
  transition: var(--act-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--act-space-sm);
}
.act-nl-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(244,162,97,.4);
}

.act-nl-privacy {
  text-align: center;
  font-size: 11.5px;
  color: rgba(255,255,255,.3);
  margin-top: var(--act-space-sm);
}

/* =============================================
   SIDEBAR
============================================= */
.act-sidebar { display: flex; flex-direction: column; gap: var(--act-space-xl); }

.act-widget {
  background: var(--act-white);
  border-radius: var(--act-radius-lg);
  overflow: hidden;
  border: 1px solid var(--act-mist);
}

.act-widget--dark {
  background: var(--act-navy);
  border-color: transparent;
}

.act-widget__header {
  padding: var(--act-space-md) var(--act-space-lg);
  border-bottom: 1px solid var(--act-mist);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.act-widget--dark .act-widget__header {
  border-bottom-color: rgba(255,255,255,.08);
}

.act-widget__title {
  font-family: var(--act-font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--act-navy);
}

.act-widget--dark .act-widget__title { color: var(--act-white); }

.act-widget__body { padding: var(--act-space-lg); }

/* Sidebar newsletter */
.act-widget-nl input {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid var(--act-mist);
  border-radius: var(--act-radius-md);
  font-size: 14px;
  margin-bottom: var(--act-space-sm);
  outline: none;
  transition: border-color .2s;
}
.act-widget-nl input:focus { border-color: var(--act-ocean); }

.act-widget-nl button {
  width: 100%;
  padding: 12px;
  background: var(--act-ocean);
  color: var(--act-white);
  border: none;
  border-radius: var(--act-radius-md);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--act-transition);
}
.act-widget-nl button:hover { background: #005f91; }

/* Sidebar deal widget */
.act-widget-deal__item {
  display: flex;
  gap: var(--act-space-md);
  padding: var(--act-space-md) 0;
  border-bottom: 1px solid var(--act-mist);
  text-decoration: none;
  color: inherit;
  transition: var(--act-transition);
}
.act-widget-deal__item:last-child { border-bottom: none; padding-bottom: 0; }
.act-widget-deal__item:first-child { padding-top: 0; }
.act-widget-deal__item:hover { color: var(--act-ocean); }

.act-widget-deal__img {
  width: 72px;
  height: 56px;
  border-radius: var(--act-radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--act-cloud);
}

.act-widget-deal__name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--act-ink);
  margin-bottom: 3px;
  line-height: 1.3;
}

.act-widget-deal__price {
  font-family: var(--act-font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--act-ocean);
}

.act-widget-deal__was {
  font-size: 11px;
  color: var(--act-silver);
  text-decoration: line-through;
  margin-left: 4px;
}

/* Ad slots */
.act-ad-slot {
  background: var(--act-cloud);
  border: 2px dashed var(--act-mist);
  border-radius: var(--act-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--act-silver);
  font-size: 12px;
  text-align: center;
  overflow: hidden;
}

.act-ad-slot--leaderboard { width: 100%; height: 90px; }
.act-ad-slot--rectangle  { width: 300px; height: 250px; }
.act-ad-slot--wide       { width: 100%; height: 90px; }
.act-ad-slot--sidebar    { width: 100%; height: 250px; }

/* =============================================
   ARTICLE / SINGLE POST
============================================= */
.act-article-content {
  font-size: 17px;
  line-height: 1.75;
  color: var(--act-slate);
}

.act-article-content h2 {
  font-size: clamp(22px, 3vw, 30px);
  color: var(--act-navy);
  margin: var(--act-space-3xl) 0 var(--act-space-md);
  padding-bottom: var(--act-space-sm);
  border-bottom: 2px solid var(--act-mist);
}

.act-article-content h3 {
  font-size: clamp(19px, 2.5vw, 24px);
  color: var(--act-navy);
  margin: var(--act-space-xl) 0 var(--act-space-sm);
}

.act-article-content h4 {
  font-size: 19px;
  color: var(--act-navy);
  margin: var(--act-space-lg) 0 var(--act-space-sm);
}

.act-article-content p {
  margin-bottom: var(--act-space-lg);
  color: var(--act-slate);
}

.act-article-content ul,
.act-article-content ol {
  margin: var(--act-space-md) 0 var(--act-space-lg) var(--act-space-xl);
}

.act-article-content ul { list-style: disc; }
.act-article-content ol { list-style: decimal; }

.act-article-content li { margin-bottom: var(--act-space-sm); color: var(--act-slate); }

.act-article-content a {
  color: var(--act-ocean);
  text-decoration: underline;
  text-decoration-color: rgba(0,119,182,.3);
}
.act-article-content a:hover { text-decoration-color: var(--act-ocean); }

.act-article-content img {
  border-radius: var(--act-radius-md);
  margin: var(--act-space-xl) 0;
}

.act-article-content blockquote {
  border-left: 4px solid var(--act-ocean);
  padding: var(--act-space-md) var(--act-space-xl);
  margin: var(--act-space-xl) 0;
  background: rgba(0,119,182,.04);
  border-radius: 0 var(--act-radius-md) var(--act-radius-md) 0;
  font-family: var(--act-font-accent);
  font-size: 18px;
  font-style: italic;
  color: var(--act-ink);
}

.act-article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--act-space-xl) 0;
  font-size: 15px;
}

.act-article-content th {
  background: var(--act-navy);
  color: var(--act-white);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-family: var(--act-font-body);
  font-size: 13px;
}

.act-article-content td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--act-mist);
  color: var(--act-slate);
}

.act-article-content tr:nth-child(even) td { background: var(--act-cloud); }
.act-article-content tr:hover td { background: rgba(0,119,182,.04); }

/* Table of Contents */
.act-toc {
  background: var(--act-cloud);
  border: 1px solid var(--act-mist);
  border-radius: var(--act-radius-lg);
  padding: var(--act-space-xl);
  margin: var(--act-space-xl) 0;
}

.act-toc__title {
  font-family: var(--act-font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--act-navy);
  margin-bottom: var(--act-space-md);
  display: flex;
  align-items: center;
  gap: var(--act-space-sm);
}

.act-toc__list { list-style: none; counter-reset: toc-counter; }

.act-toc__item {
  counter-increment: toc-counter;
  padding: 6px 0;
  border-bottom: 1px solid var(--act-mist);
  display: flex;
  align-items: center;
  gap: var(--act-space-sm);
}

.act-toc__item:last-child { border-bottom: none; }

.act-toc__item::before {
  content: counter(toc-counter);
  background: var(--act-ocean);
  color: var(--act-white);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.act-toc__link {
  font-size: 14px;
  color: var(--act-ocean);
  text-decoration: none;
  font-weight: 500;
}
.act-toc__link:hover { color: var(--act-ocean-light); text-decoration: underline; }

/* Info Box */
.act-info-box {
  border-radius: var(--act-radius-md);
  padding: var(--act-space-xl);
  margin: var(--act-space-xl) 0;
  display: flex;
  gap: var(--act-space-md);
}

.act-info-box--tip     { background: rgba(0,119,182,.06); border-left: 4px solid var(--act-ocean); }
.act-info-box--warning { background: rgba(245,158,11,.08); border-left: 4px solid var(--act-warning); }
.act-info-box--success { background: rgba(16,185,129,.08); border-left: 4px solid var(--act-success); }

.act-info-box__icon { font-size: 22px; flex-shrink: 0; }

.act-info-box__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--act-navy);
  margin-bottom: 4px;
}

.act-info-box__text { font-size: 14.5px; color: var(--act-slate); line-height: 1.6; }

/* Quick Facts Box */
.act-quick-facts {
  background: var(--act-navy);
  border-radius: var(--act-radius-lg);
  padding: var(--act-space-xl);
  margin: var(--act-space-xl) 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--act-space-lg);
}

.act-quick-fact__label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 4px;
}

.act-quick-fact__value {
  font-family: var(--act-font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--act-white);
}

/* =============================================
   COMPARE TABLE
============================================= */
.act-compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--act-radius-lg);
  border: 1px solid var(--act-mist);
  box-shadow: var(--act-shadow-sm);
}

.act-compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.act-compare-table thead tr {
  background: var(--act-navy);
}

.act-compare-table thead th {
  padding: var(--act-space-lg) var(--act-space-xl);
  text-align: left;
  color: var(--act-white);
  font-family: var(--act-font-display);
  font-size: 18px;
  font-weight: 700;
}

.act-compare-table thead th:first-child {
  font-family: var(--act-font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.45);
  width: 220px;
}

.act-compare-table tbody tr {
  border-bottom: 1px solid var(--act-mist);
  transition: background .15s;
}

.act-compare-table tbody tr:last-child { border-bottom: none; }
.act-compare-table tbody tr:hover { background: rgba(0,119,182,.03); }

.act-compare-table td {
  padding: var(--act-space-md) var(--act-space-xl);
  font-size: 14.5px;
  color: var(--act-slate);
  vertical-align: middle;
}

.act-compare-table td:first-child {
  font-weight: 600;
  color: var(--act-ink);
  background: var(--act-cloud);
  font-size: 13px;
}

.act-compare-check { color: var(--act-success); font-size: 18px; }
.act-compare-cross { color: var(--act-danger); font-size: 18px; }

/* =============================================
   FOOTER
============================================= */
.act-site-footer {
  background: var(--act-navy);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: var(--act-space-4xl) 0 0;
}

.act-footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  gap: var(--act-space-4xl);
  padding-bottom: var(--act-space-3xl);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.act-footer-logo {
  display: flex;
  align-items: center;
  gap: var(--act-space-sm);
  margin-bottom: var(--act-space-md);
  text-decoration: none;
}

.act-footer-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--act-ocean), var(--act-ocean-light));
  border-radius: var(--act-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.act-footer-logo-name {
  font-family: var(--act-font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--act-white);
}

.act-footer-brand-desc {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  line-height: 1.7;
  margin-bottom: var(--act-space-lg);
}

.act-footer-socials {
  display: flex;
  gap: var(--act-space-sm);
}

.act-footer-social {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.07);
  border-radius: var(--act-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: 15px;
  cursor: pointer;
  transition: var(--act-transition);
  text-decoration: none;
}
.act-footer-social:hover {
  background: var(--act-ocean);
  color: var(--act-white);
}

.act-footer-col-title {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: var(--act-space-lg);
  line-height: 1.4;
}

.act-footer-links { display: flex; flex-direction: column; gap: var(--act-space-sm); list-style: none; padding: 0; margin: 0; }
.act-footer-links li { margin: 0; padding: 0; list-style: none; }
.act-footer-links li::marker { content: none; }

.act-footer-link {
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255,255,255,.5);
  cursor: pointer;
  transition: var(--act-transition);
  text-decoration: none;
  display: block;
  font-weight: 400;
  font-family: var(--wp--preset--font-family--body, inherit);
}
.act-footer-link:hover { color: var(--act-white); padding-left: 4px; }

/* Footer menu items rendered via wp_nav_menu — normalize sizes too */
.act-footer-links a,
.act-site-footer nav ul li a {
  font-size: 14px !important;
  line-height: 1.4 !important;
  color: rgba(255,255,255,.5) !important;
  font-weight: 400 !important;
  text-decoration: none !important;
}
.act-footer-links a:hover,
.act-site-footer nav ul li a:hover {
  color: var(--act-white) !important;
}

.act-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--act-space-lg) 0;
  gap: var(--act-space-lg);
  flex-wrap: wrap;
}

.act-footer-copy {
  font-size: 12.5px;
  color: rgba(255,255,255,.28);
}

.act-footer-legal {
  display: flex;
  gap: var(--act-space-xl);
  flex-wrap: wrap;
}

.act-footer-legal-link {
  font-size: 12.5px;
  color: rgba(255,255,255,.28);
  cursor: pointer;
  transition: var(--act-transition);
  text-decoration: none;
}
.act-footer-legal-link:hover { color: rgba(255,255,255,.7); }

.act-footer-disclosure {
  background: rgba(255,255,255,.02);
  border-top: 1px solid rgba(255,255,255,.04);
  padding: var(--act-space-md) 0;
}

.act-footer-disclosure p {
  font-size: 11px;
  color: rgba(255,255,255,.18);
  text-align: center;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

/* =============================================
   PAGINATION
============================================= */
.act-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--act-space-sm);
  margin: var(--act-space-4xl) 0;
  flex-wrap: wrap;
}

.act-page-num {
  width: 42px;
  height: 42px;
  border-radius: var(--act-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--act-transition);
  text-decoration: none;
  border: 2px solid var(--act-mist);
  color: var(--act-slate);
  background: var(--act-white);
}

.act-page-num:hover,
.act-page-num.current {
  background: var(--act-ocean);
  border-color: var(--act-ocean);
  color: var(--act-white);
}

/* =============================================
   ANIMATIONS
============================================= */
@keyframes act-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes act-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes act-pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.04); }
}

/* =============================================
   UTILITY CLASSES
============================================= */
.act-text-center { text-align: center; }
.act-text-right  { text-align: right; }
.act-mt-sm  { margin-top: var(--act-space-sm); }
.act-mt-md  { margin-top: var(--act-space-md); }
.act-mt-lg  { margin-top: var(--act-space-lg); }
.act-mt-xl  { margin-top: var(--act-space-xl); }
.act-mt-2xl { margin-top: var(--act-space-2xl); }
.act-flex   { display: flex; }
.act-flex-center { display: flex; align-items: center; justify-content: center; }
.act-flex-between { display: flex; align-items: center; justify-content: space-between; }
.act-gap-sm { gap: var(--act-space-sm); }
.act-gap-md { gap: var(--act-space-md); }
.act-gap-lg { gap: var(--act-space-lg); }
.act-hidden { display: none !important; }
.act-sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* =============================================
   SCROLLBAR
============================================= */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--act-cloud); }
::-webkit-scrollbar-thumb { background: var(--act-ocean); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #005f91; }

/* =============================================
   RESPONSIVE — TABLET (max 1024px)
============================================= */
@media (max-width: 1024px) {
  .act-hero__inner { grid-template-columns: 1fr; gap: var(--act-space-3xl); }
  .act-hero__search-card { max-width: 500px; }
  .act-hero__subtitle { max-width: 100%; }

  .act-destinations-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }
  .act-dest-card--featured { grid-column: span 2; grid-row: span 1; }
  .act-dest-card--wide { grid-column: span 2; }

  .act-cruise-grid { grid-template-columns: repeat(2, 1fr); }
  .act-deals-grid  { grid-template-columns: repeat(2, 1fr); }
  .act-blog-grid-featured { grid-template-columns: 1fr 1fr; }
  .act-footer-grid { grid-template-columns: repeat(2, 1fr); gap: var(--act-space-xl); }
  .act-content-sidebar { grid-template-columns: 1fr; }
  .act-newsletter__inner { grid-template-columns: 1fr; gap: var(--act-space-2xl); }
  .act-compare-strip__inner { flex-direction: column; align-items: flex-start; }
}

/* =============================================
   RESPONSIVE — MOBILE (max 768px)
============================================= */
@media (max-width: 768px) {
  :root { --act-header-height: 64px; --act-topbar-height: 0px; }

  .act-site-topbar { display: none; }

  /* v1.33.1: Page hero (destination + cruise-line) fit on mobile */
  .act-page-hero { padding: var(--act-space-2xl) 0; }
  .act-page-hero__title { font-size: clamp(26px, 7vw, 36px); }
  .act-page-hero__subtitle { font-size: 15px; }
  .act-page-hero__meta { gap: var(--act-space-md); margin-top: var(--act-space-lg); }
  .act-page-hero__meta-item { font-size: 12px; }
  .act-page-hero__meta .act-save-btn,
  .act-page-hero__meta .cdm-save-button { margin-top: 4px; }

  .act-primary-menu, .act-nav-actions > *:not(.act-menu-toggle) {
    display: none;
  }

  .act-menu-toggle { display: flex; }

  /* Mobile menu open */
  .act-primary-menu.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--act-header-height);
    left: 0; right: 0;
    background: var(--act-white);
    padding: var(--act-space-lg);
    box-shadow: var(--act-shadow-lg);
    z-index: 999;
    max-height: calc(100vh - var(--act-header-height));
    overflow-y: auto;
    gap: var(--act-space-xs);
  }

  .act-menu-link { padding: var(--act-space-md); border-radius: var(--act-radius-md); }
  .act-mega-menu { display: none; }

  .act-hero { min-height: 100svh; }
  .act-hero__title { font-size: clamp(32px, 8vw, 48px); }
  .act-hero__stats { grid-template-columns: 1fr 1fr; gap: var(--act-space-lg); }

  .act-destinations-grid { grid-template-columns: 1fr 1fr; }
  .act-dest-card--featured { grid-column: span 2; }
  .act-dest-card--wide { grid-column: span 2; }

  .act-cruise-grid { grid-template-columns: 1fr; }
  .act-deals-grid  { grid-template-columns: 1fr; }
  .act-blog-grid, .act-blog-grid--featured { grid-template-columns: 1fr; }
  .act-footer-grid { grid-template-columns: 1fr; }
  .act-quick-facts { grid-template-columns: 1fr 1fr; }

  .act-compare-tool { flex-direction: column; align-items: stretch; }
  .act-compare-select { min-width: auto; }

  .act-search-row { grid-template-columns: 1fr; }

  .act-section { padding: var(--act-space-3xl) 0; }

  .act-container { padding: 0 var(--act-space-md); }
}

@media (max-width: 480px) {
  .act-destinations-grid { grid-template-columns: 1fr; }
  .act-dest-card, .act-dest-card--featured, .act-dest-card--wide {
    grid-column: span 1;
    height: 180px;
  }
  .act-hero__ctas { flex-direction: column; }
  .act-btn { width: 100%; }
  .act-quick-facts { grid-template-columns: 1fr; }
}

/* =============================================
   PAGE VISIBILITY — hide widgets/sections per page
   These body classes are added by the ACT Page
   Visibility meta box. See: inc/class-act-page-visibility.php
============================================= */
.act-hide-compare-widget .cc-floating-widget,
.act-hide-compare-widget #cc-floating-widget,
.act-hide-compare-widget .cruisecompare-floating { display: none !important; }

.act-hide-subscribe-banner .cmember-subscribe-banner,
.act-hide-subscribe-banner .act-subscribe-banner { display: none !important; }

.act-hide-cta-banner .act-cta-banner,
.act-hide-cta-banner .act-top-cta { display: none !important; }

.act-hide-related-content .act-related-posts,
.act-hide-related-content .act-related-content { display: none !important; }

.act-hide-footer-widgets .act-footer-widgets,
.act-hide-footer-widgets #footer-widgets { display: none !important; }

.act-hide-social-share .act-social-share { display: none !important; }
.act-hide-author-box .act-author-box { display: none !important; }

/* Full-width content when sidebar is hidden */
.act-content-full {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

/* =============================================
   TEMPLATE LIBRARY HELPER CLASSES
   Used inside wp:html blocks in imported templates.
   Keep these stable — templates depend on them.
============================================= */

/* Hero sections */
.act-tpl-hero {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 5rem 1.5rem;
    text-align: center;
    background: #1E293B;
    color: #fff;
    background-size: cover;
    background-position: center;
    position: relative;
    box-sizing: border-box;
}
.act-tpl-hero--with-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 0;
}
.act-tpl-hero > * { position: relative; z-index: 1; }
.act-tpl-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin: 0 0 1rem;
    color: #fff;
    line-height: 1.15;
}
.act-tpl-hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 720px;
    margin: 0 auto 1.5rem;
    color: #F3F4F6;
}
.act-tpl-hero--red { background: #B91C1C; }
.act-tpl-hero--ocean { background: #0E7490; }

.act-tpl-hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
.act-tpl-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform .15s, background .15s;
}
.act-tpl-btn:hover { transform: translateY(-1px); }
.act-tpl-btn--primary { background: #D97706; color: #fff; }
.act-tpl-btn--primary:hover { background: #B45309; color: #fff; }
.act-tpl-btn--outline { background: transparent; color: #fff; border: 2px solid #fff; }
.act-tpl-btn--outline:hover { background: #fff; color: #1E293B; }
.act-tpl-btn--dark { background: #1E293B; color: #fff; }
.act-tpl-btn--dark:hover { background: #0F172A; color: #fff; }

/* Card grids */
.act-tpl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 1.5rem 0 2rem;
}
.act-tpl-grid--2col { grid-template-columns: repeat(auto-fit, minmax(420px, 1fr)); }
.act-tpl-grid--3col { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.act-tpl-card {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.act-tpl-card h3 { margin: 0 0 8px; font-size: 1.15rem; color: #1E293B; }
.act-tpl-card p  { margin: 0 0 12px; color: #4B5563; font-size: 0.95rem; line-height: 1.55; }
.act-tpl-card-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
    color: #6B7280;
    font-size: 0.85rem;
}

/* Region cards (Destinations page) */
.act-tpl-region {
    border-radius: 12px;
    padding: 2rem;
    color: #fff;
}
.act-tpl-region h3 { color: #fff; margin: 0 0 12px; font-size: 1.4rem; }
.act-tpl-region p  { color: rgba(255,255,255,0.9); margin: 0 0 12px; }
.act-tpl-region--caribbean { background: #0E7490; }
.act-tpl-region--med       { background: #1E3A8A; }
.act-tpl-region--alaska    { background: #075985; }
.act-tpl-region--asia      { background: #7C2D12; }
.act-tpl-region--europe    { background: #365314; }
.act-tpl-region--expedition{ background: #581C87; }

.act-tpl-region-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 16px;
    background: #fff;
    color: #1E293B;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}
.act-tpl-region-btn:hover { background: #F3F4F6; color: #0F172A; }

/* CTA banners */
.act-tpl-cta {
    margin: 2.5rem 0;
    padding: 2.5rem 2rem;
    background: #FEF3C7;
    border-radius: 12px;
    text-align: center;
}
.act-tpl-cta h3 { margin: 0 0 8px; color: #1E293B; }
.act-tpl-cta p  { margin: 0 0 16px; color: #4B5563; }
.act-tpl-cta--dark { background: #1E293B; }
.act-tpl-cta--dark h3 { color: #fff; }
.act-tpl-cta--dark p  { color: #CBD5E1; }
.act-tpl-cta--amber { background: #FEF3C7; border-left: 4px solid #D97706; text-align: left; }

/* Callout boxes */
.act-tpl-callout {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 1.25rem 0;
    background: #F9FAFB;
    border-left: 4px solid #6366F1;
    font-size: 0.95rem;
}
.act-tpl-callout--tip       { background: #FEF3C7; border-left-color: #D97706; }
.act-tpl-callout--warning   { background: #FEE2E2; border-left-color: #DC2626; }
.act-tpl-callout--info      { background: #DBEAFE; border-left-color: #2563EB; }
.act-tpl-callout--success   { background: #D1FAE5; border-left-color: #059669; }
.act-tpl-callout--takeaway  { background: #F9FAFB; border-left-color: #D97706; }

.act-tpl-callout strong { color: #1E293B; }

/* Pros / Cons / Skip-if box */
.act-tpl-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1rem 0;
}
.act-tpl-pros-cons > div {
    padding: 1rem;
    background: #F9FAFB;
    border-radius: 8px;
}
.act-tpl-pros-cons ul { margin: 0; padding-left: 1.25rem; }
.act-tpl-pros-cons li { margin-bottom: 4px; font-size: 0.9rem; }

@media (max-width: 600px) {
    .act-tpl-pros-cons { grid-template-columns: 1fr; }
}

/* Product card for gear page */
.act-tpl-product {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    margin: 1rem 0;
    padding: 1.25rem;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
}
.act-tpl-product-price {
    text-align: center;
    padding: 1.25rem;
    border: 2px solid #D97706;
    border-radius: 8px;
}
.act-tpl-product-price small { display: block; color: #92400E; text-transform: uppercase; font-size: 0.7rem; letter-spacing: 0.05em; font-weight: 600; margin-bottom: 4px; }
.act-tpl-product-price strong { display: block; font-size: 1.5rem; color: #1E293B; }
.act-tpl-product-price em { display: block; color: #6B7280; font-size: 0.8rem; font-style: normal; margin-bottom: 12px; }

@media (max-width: 600px) {
    .act-tpl-product { grid-template-columns: 1fr; }
}

/* Comparison matchup cards */
.act-tpl-matchup {
    padding: 1.25rem;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    background: #fff;
}
.act-tpl-matchup h3 { margin: 0 0 8px; font-size: 1.05rem; color: #1E293B; }
.act-tpl-matchup p  { margin: 0 0 12px; color: #4B5563; font-size: 0.9rem; }
.act-tpl-matchup a  { color: #D97706; font-weight: 600; text-decoration: none; }
.act-tpl-matchup a:hover { text-decoration: underline; }
