/*
Theme Name: Cunard World Cruises Luxury
Theme URI: https://cunard-world-cruises.com
Author: Deluxe Cruises
Author URI: https://deluxecruises.com
Description: Ultra-premium, fully responsive WordPress theme for Cunard World Cruises. Features stunning luxury design with gold accents, detailed ship showcases for Queen Mary 2, Queen Elizabeth, Queen Victoria and Queen Anne, advanced SEO schema markup, AI-optimised search, and best-price CTAs. Built to preserve all existing URL structures.
Version: 3.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cunard-luxury
Tags: luxury, cruise, travel, responsive, seo, gold, navy, elegant
*/

/* ═══════════════════════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════════════════════ */
:root {
  --navy:        #001B30;
  --navy-mid:    #002B49;
  --navy-light:  #003A6B;
  --gold:        #D4AF37;
  --gold-light:  #F0D060;
  --gold-dark:   #A8860A;
  --crimson:     #C41230;
  --white:       #FFFFFF;
  --off-white:   #F8F5F0;
  --cream:       #FAF7F2;
  --text-dark:   #1A1A2E;
  --text-mid:    #3D3D5C;
  --text-light:  #6B6B8A;
  --border:      rgba(212,175,55,0.25);
  --shadow-sm:   0 2px 12px rgba(0,27,48,0.12);
  --shadow-md:   0 8px 32px rgba(0,27,48,0.18);
  --shadow-lg:   0 20px 60px rgba(0,27,48,0.25);
  --shadow-gold: 0 4px 20px rgba(212,175,55,0.30);
  --radius:      4px;
  --radius-lg:   12px;
  --transition:  all 0.35s cubic-bezier(0.4,0,0.2,1);
  --font-serif:  'Playfair Display', 'Georgia', serif;
  --font-sans:   'Lato', 'Helvetica Neue', Arial, sans-serif;
  --max-width:   1280px;
}

/* ═══════════════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-dark); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--crimson); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Skip link */
.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 9999;
  background: var(--gold); color: var(--navy); padding: 8px 16px;
  border-radius: var(--radius); font-weight: 700; font-size: 14px;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* ═══════════════════════════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════════════════════════ */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-serif);
  color: var(--navy);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p  { margin-bottom: 1.2rem; color: var(--text-mid); font-size: 1.05rem; }
.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-serif);
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto 2.5rem;
}
.gold-line {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 1rem auto 1.5rem;
  border-radius: 2px;
}
.gold-line.left { margin-left: 0; }

/* ═══════════════════════════════════════════════════════════════
   LAYOUT UTILITIES
═══════════════════════════════════════════════════════════════ */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.bg-navy { background: var(--navy); }
.bg-navy-mid { background: var(--navy-mid); }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }

/* Grid */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  min-height: 50px;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,175,55,0.45);
  color: var(--navy);
}
.btn-crimson {
  background: var(--crimson);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(196,18,48,0.30);
}
.btn-crimson:hover {
  background: #a00e28;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,18,48,0.40);
  color: var(--white);
}
.btn-outline-gold {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}
.btn-outline-white {
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
  background: transparent;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
}
.btn-lg { padding: 18px 44px; font-size: 0.95rem; min-height: 58px; }
.btn-sm { padding: 10px 22px; font-size: 0.80rem; min-height: 40px; }

/* ═══════════════════════════════════════════════════════════════
   TOP ANNOUNCEMENT BAR
═══════════════════════════════════════════════════════════════ */
.top-bar {
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy) 100%);
  border-bottom: 1px solid var(--border);
  padding: 9px 0;
  position: relative;
  z-index: 1001;
}
.top-bar-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}
.top-bar-message {
  font-size: 0.80rem;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  font-weight: 600;
}
.top-bar-message span { color: var(--white); }
.top-bar-contact {
  display: flex; align-items: center; gap: 20px;
}
.top-bar-contact a {
  font-size: 0.80rem;
  color: rgba(255,255,255,0.80);
  display: flex; align-items: center; gap: 6px;
  transition: var(--transition);
}
.top-bar-contact a:hover { color: var(--gold); }
.top-bar-contact .icon {
  width: 14px; height: 14px; fill: currentColor;
}

/* ═══════════════════════════════════════════════════════════════
   HEADER & NAVIGATION
═══════════════════════════════════════════════════════════════ */
.site-header {
  background: var(--navy);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
  border-bottom: 2px solid var(--gold-dark);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; gap: 24px;
}
.site-branding { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.site-branding .custom-logo { height: 52px; width: auto; }
.brand-text { display: flex; flex-direction: column; }
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.brand-tagline {
  font-size: 0.68rem;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
.brand-divider {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  margin: 0 4px;
}

/* Primary Nav */
.primary-nav { display: flex; align-items: center; }
.nav-menu {
  display: flex; align-items: center; gap: 4px;
}
.nav-menu li { position: relative; }
.nav-menu > li > a {
  display: flex; align-items: center; gap: 5px;
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a {
  color: var(--gold);
  background: rgba(212,175,55,0.10);
}
.nav-menu > li.contact-nav > a {
  background: var(--crimson);
  color: var(--white);
  padding: 10px 18px;
}
.nav-menu > li.contact-nav > a:hover {
  background: #a00e28;
  color: var(--white);
}

/* Dropdown */
.nav-menu .sub-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  z-index: 100;
}
.nav-menu li:hover > .sub-menu,
.nav-menu li:focus-within > .sub-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-menu .sub-menu a {
  display: block; padding: 10px 20px;
  font-size: 0.82rem; color: rgba(255,255,255,0.80);
  transition: var(--transition);
}
.nav-menu .sub-menu a:hover { color: var(--gold); background: rgba(212,175,55,0.08); }

/* Mobile toggle */
.menu-toggle {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 44px; height: 44px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: var(--transition);
}
.menu-toggle:hover { background: rgba(212,175,55,0.15); }
.menu-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.nav-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.65); z-index: 998;
  backdrop-filter: blur(4px);
}
.nav-overlay.active { display: block; }

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  min-height: 92vh;
  display: flex; align-items: center;
  background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/hero-banner.jpg');
  background-size: cover; background-position: center 40%;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,27,48,0.88) 0%,
    rgba(0,43,73,0.72) 50%,
    rgba(0,27,48,0.55) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 780px;
  padding: 60px 0;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.40);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-title .gold { color: var(--gold); }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 2.5rem;
  max-width: 580px;
  line-height: 1.7;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 3rem; }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 32px;
  padding-top: 2rem;
  border-top: 1px solid rgba(212,175,55,0.25);
}
.hero-stat { text-align: left; }
.hero-stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 4px;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2.5s infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(212,175,55,0.6), transparent);
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ═══════════════════════════════════════════════════════════════
   SEARCH BAR
═══════════════════════════════════════════════════════════════ */
.search-section {
  background: var(--navy-mid);
  padding: 0;
  position: relative;
  z-index: 10;
  border-bottom: 3px solid var(--gold-dark);
}
.search-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
}
.search-inner {
  display: flex; align-items: center; gap: 0;
  padding: 20px 0;
}
.search-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  padding-right: 20px;
  border-right: 1px solid var(--border);
  margin-right: 20px;
}
.search-form { flex: 1; display: flex; gap: 0; }
.search-form input[type="search"] {
  flex: 1;
  padding: 14px 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(212,175,55,0.25);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  outline: none;
  transition: var(--transition);
}
.search-form input[type="search"]::placeholder { color: rgba(255,255,255,0.40); }
.search-form input[type="search"]:focus {
  background: rgba(255,255,255,0.10);
  border-color: var(--gold);
}
.search-form button[type="submit"] {
  padding: 14px 28px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: var(--transition);
  white-space: nowrap;
}
.search-form button[type="submit"]:hover {
  background: var(--gold-light);
}

/* ═══════════════════════════════════════════════════════════════
   SHIPS SHOWCASE SECTION
═══════════════════════════════════════════════════════════════ */
.ships-section { background: var(--cream); }
.ships-tabs {
  display: flex; gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 48px;
  overflow-x: auto;
}
.ship-tab {
  flex: 1; min-width: 140px;
  padding: 16px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-light);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
}
.ship-tab:hover { color: var(--navy); }
.ship-tab.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}
.ship-panel { display: none; }
.ship-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.ship-image-wrap {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.ship-image-wrap img {
  width: 100%; aspect-ratio: 3/2; object-fit: cover;
  transition: transform 0.6s ease;
}
.ship-image-wrap:hover img { transform: scale(1.04); }
.ship-badge {
  position: absolute; top: 20px; left: 20px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
}
.ship-info { padding: 8px 0; }
.ship-name {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.ship-specs {
  display: flex; flex-wrap: wrap; gap: 20px;
  margin: 1.5rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ship-spec { text-align: center; }
.ship-spec-value {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
}
.ship-spec-label {
  font-size: 0.70rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 4px;
}
.ship-description { color: var(--text-mid); line-height: 1.8; margin-bottom: 1.5rem; }
.ship-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin: 1.5rem 0;
}
.ship-feature {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem; color: var(--text-mid);
}
.ship-feature::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.ship-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 2rem; }

/* ═══════════════════════════════════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════════════════════════════════ */
.why-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative; overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-6px); border-color: rgba(212,175,55,0.35); }
.why-card:hover::before { opacity: 1; }
.why-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
  border: 1px solid rgba(212,175,55,0.30);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
}
.why-card h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 0.75rem; }
.why-card p { color: rgba(255,255,255,0.65); font-size: 0.92rem; line-height: 1.7; margin: 0; }

/* ═══════════════════════════════════════════════════════════════
   BEST PRICE CTA BANNER
═══════════════════════════════════════════════════════════════ */
.price-cta-section {
  background: linear-gradient(135deg, var(--crimson) 0%, #8B0A1E 100%);
  padding: 60px 0;
  position: relative; overflow: hidden;
}
.price-cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.price-cta-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 32px;
}
.price-cta-text h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 0.5rem;
}
.price-cta-text p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin: 0; }
.price-cta-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.price-cta-phone {
  display: flex; align-items: center; gap: 10px;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
}
.price-cta-phone .phone-icon { font-size: 1.4rem; }

/* ═══════════════════════════════════════════════════════════════
   DESTINATIONS / WORLD MAP SECTION
═══════════════════════════════════════════════════════════════ */
.destinations-section { background: var(--white); }
.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.dest-card {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dest-card-img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  transition: transform 0.5s ease;
}
.dest-card:hover .dest-card-img { transform: scale(1.06); }
.dest-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,27,48,0.85) 0%, transparent 55%);
}
.dest-card-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 20px;
}
.dest-card-info h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 4px; }
.dest-card-info span { color: var(--gold); font-size: 0.78rem; letter-spacing: 0.10em; text-transform: uppercase; }

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════════ */
.testimonials-section {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
}
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: rgba(212,175,55,0.35); }
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text {
  color: rgba(255,255,255,0.80);
  font-size: 0.95rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}
.testimonial-name { color: var(--white); font-weight: 700; font-size: 0.90rem; }
.testimonial-ship { color: var(--gold); font-size: 0.75rem; letter-spacing: 0.08em; }

/* ═══════════════════════════════════════════════════════════════
   COUNTERS / STATS BAR
═══════════════════════════════════════════════════════════════ */
.stats-bar {
  background: var(--gold);
  padding: 40px 0;
}
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(0,27,48,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(0,27,48,0.70);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 6px;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════
   BLOG / POSTS GRID
═══════════════════════════════════════════════════════════════ */
.posts-section { background: var(--cream); }
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.post-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.post-card-thumb {
  position: relative; overflow: hidden;
  aspect-ratio: 16/9;
}
.post-card-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.post-card:hover .post-card-thumb img { transform: scale(1.06); }
.post-card-cat {
  position: absolute; top: 14px; left: 14px;
  background: var(--crimson);
  color: var(--white);
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}
.post-card-no-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.post-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.post-card-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}
.post-card-meta .ship-tag {
  background: rgba(0,43,73,0.08);
  color: var(--navy-mid);
  padding: 2px 10px;
  border-radius: 50px;
  font-weight: 600;
}
.post-card-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.post-card-title a { color: inherit; }
.post-card-title a:hover { color: var(--crimson); }
.post-card-excerpt {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,27,48,0.08);
}
.read-more {
  font-size: 0.80rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: flex; align-items: center; gap: 6px;
  transition: var(--transition);
}
.read-more::after { content: '→'; transition: transform 0.2s; }
.read-more:hover { color: var(--crimson); }
.read-more:hover::after { transform: translateX(4px); }

/* ═══════════════════════════════════════════════════════════════
   SINGLE POST
═══════════════════════════════════════════════════════════════ */
.single-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.entry-header { margin-bottom: 2rem; }
.entry-cats { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 1rem; }
.entry-cat {
  background: var(--crimson); color: var(--white);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px;
}
.entry-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.entry-meta {
  display: flex; flex-wrap: wrap; gap: 16px;
  font-size: 0.82rem; color: var(--text-light);
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--border);
  margin-bottom: 2rem;
}
.entry-meta span { display: flex; align-items: center; gap: 6px; }
.entry-thumbnail {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-md);
}
.entry-thumbnail img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.entry-content { font-size: 1.05rem; line-height: 1.85; color: var(--text-mid); }
.entry-content h2,
.entry-content h3 { color: var(--navy); margin: 2rem 0 1rem; }
.entry-content p { margin-bottom: 1.4rem; }
.entry-content a { color: var(--gold-dark); text-decoration: underline; }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; margin-bottom: 1.4rem; }
.entry-content li { margin-bottom: 0.5rem; }
.entry-content blockquote {
  border-left: 4px solid var(--gold);
  padding: 1rem 1.5rem;
  background: rgba(212,175,55,0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
  font-style: italic;
  color: var(--navy);
}
.post-cta-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  margin: 3rem 0;
  text-align: center;
}
.post-cta-box h3 { color: var(--white); margin-bottom: 0.75rem; }
.post-cta-box p { color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; }
.post-cta-box .btn-group { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.post-nav {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.post-nav-link {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  transition: var(--transition);
}
.post-nav-link:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.post-nav-label { font-size: 0.72rem; color: var(--gold-dark); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; margin-bottom: 6px; }
.post-nav-title { font-family: var(--font-serif); font-size: 0.95rem; color: var(--navy); line-height: 1.4; }

/* ═══════════════════════════════════════════════════════════════
   SIDEBAR
═══════════════════════════════════════════════════════════════ */
.sidebar { position: sticky; top: 100px; }
.widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,27,48,0.06);
}
.widget-header {
  background: var(--navy);
  padding: 16px 24px;
  display: flex; align-items: center; gap: 10px;
}
.widget-header h3 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
}
.widget-header .widget-icon { color: var(--gold); font-size: 1rem; }
.widget-body { padding: 20px 24px; }
.widget-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border: 1px solid var(--border);
}
.widget-cta .widget-body { text-align: center; }
.widget-cta h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 0.5rem; }
.widget-cta p { color: rgba(255,255,255,0.70); font-size: 0.88rem; margin-bottom: 1.25rem; }
.widget-cta .btn { width: 100%; justify-content: center; margin-bottom: 10px; }
.widget-ships ul { display: flex; flex-direction: column; gap: 4px; }
.widget-ships ul li a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0;
  font-size: 0.88rem;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(0,27,48,0.06);
  transition: var(--transition);
}
.widget-ships ul li:last-child a { border-bottom: none; }
.widget-ships ul li a:hover { color: var(--navy); padding-left: 6px; }
.widget-ships ul li a::before {
  content: '⚓';
  font-size: 0.85rem;
  color: var(--gold);
}
.widget-search .search-form { flex-direction: column; gap: 8px; }
.widget-search .search-form input {
  border-radius: var(--radius);
  border: 1px solid rgba(0,27,48,0.15);
  padding: 12px 16px;
  font-size: 0.90rem;
  width: 100%;
  color: var(--text-dark);
  background: var(--off-white);
  outline: none;
  transition: var(--transition);
}
.widget-search .search-form input:focus { border-color: var(--gold); }
.widget-search .search-form button {
  background: var(--navy);
  color: var(--white);
  padding: 12px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
}
.widget-search .search-form button:hover { background: var(--gold); color: var(--navy); }

/* ═══════════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 80px 0 60px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
}
.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}
.page-hero-subtitle { color: rgba(255,255,255,0.70); font-size: 1.05rem; margin: 0; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.80rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.40); }

/* ═══════════════════════════════════════════════════════════════
   CONTACT / PAGE CONTENT
═══════════════════════════════════════════════════════════════ */
.page-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.page-content { font-size: 1.05rem; line-height: 1.85; color: var(--text-mid); }
.page-content h2, .page-content h3 { color: var(--navy); margin: 2rem 0 1rem; }
.page-content p { margin-bottom: 1.4rem; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 2rem 0; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow-gold); border-color: var(--gold); }
.contact-card .icon { font-size: 2.2rem; margin-bottom: 1rem; }
.contact-card h4 { color: var(--navy); margin-bottom: 0.5rem; }
.contact-card a { color: var(--gold-dark); font-weight: 600; font-size: 1rem; }
.contact-card a:hover { color: var(--crimson); }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  border-top: 3px solid var(--gold-dark);
}
.footer-top { padding: 70px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand .brand-name { color: var(--white); font-size: 1.4rem; margin-bottom: 0.5rem; }
.footer-brand .brand-tagline { color: var(--gold); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.8; margin-bottom: 1.5rem; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
}
.footer-contact-item a { color: var(--gold-light); }
.footer-contact-item a:hover { color: var(--white); }
.footer-col h4 {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(212,175,55,0.20);
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-col ul li a::before { content: '›'; color: var(--gold-dark); }
.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 0.80rem; color: rgba(255,255,255,0.40); }
.footer-copy a { color: rgba(255,255,255,0.55); }
.footer-copy a:hover { color: var(--gold); }
.footer-badges { display: flex; gap: 8px; }
.footer-badge {
  background: rgba(212,175,55,0.10);
  border: 1px solid rgba(212,175,55,0.20);
  border-radius: var(--radius);
  padding: 4px 10px;
  font-size: 0.70rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════
   SEARCH RESULTS PAGE
═══════════════════════════════════════════════════════════════ */
.search-results-header {
  background: var(--cream);
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.search-results-header h1 { font-size: 1.8rem; margin-bottom: 0.5rem; }
.search-results-header p { color: var(--text-light); margin: 0; }
.search-highlight { color: var(--gold-dark); font-style: italic; }
.no-results { text-align: center; padding: 60px 0; }
.no-results h2 { margin-bottom: 1rem; }

/* ═══════════════════════════════════════════════════════════════
   404 PAGE
═══════════════════════════════════════════════════════════════ */
.error-404 {
  min-height: 70vh;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  text-align: center;
  padding: 80px 0;
}
.error-404-code {
  font-family: var(--font-serif);
  font-size: clamp(6rem, 15vw, 10rem);
  color: rgba(212,175,55,0.15);
  line-height: 1;
  font-weight: 700;
  margin-bottom: -1rem;
}
.error-404 h1 { color: var(--white); margin-bottom: 1rem; }
.error-404 p { color: rgba(255,255,255,0.65); max-width: 480px; margin: 0 auto 2rem; }
.error-404-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ═══════════════════════════════════════════════════════════════
   PAGINATION
═══════════════════════════════════════════════════════════════ */
.pagination {
  display: flex; justify-content: center; align-items: center;
  gap: 8px; padding: 40px 0;
}
.pagination a, .pagination span {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: var(--transition);
}
.pagination a:hover, .pagination .current {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .ship-panel.active { grid-template-columns: 1fr; gap: 32px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(0,27,48,0.15); }
  .stat-item:nth-child(4) { border-top: 1px solid rgba(0,27,48,0.15); border-right: none; }
  .single-layout { grid-template-columns: 1fr; }
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .container { padding: 0 16px; }

  /* Top bar */
  .top-bar-message { display: none; }
  .top-bar-contact { width: 100%; justify-content: center; }

  /* Header */
  .menu-toggle { display: flex; }
  .primary-nav {
    position: fixed;
    top: 0; left: -100%; bottom: 0;
    width: min(320px, 85vw);
    background: var(--navy-mid);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 0 40px;
    z-index: 999;
    transition: left 0.35s cubic-bezier(0.4,0,0.2,1);
    overflow-y: auto;
    box-shadow: 4px 0 30px rgba(0,0,0,0.4);
  }
  .primary-nav.open { left: 0; }
  .nav-menu { flex-direction: column; width: 100%; gap: 0; padding: 0 20px; }
  .nav-menu > li > a {
    padding: 14px 16px;
    font-size: 0.90rem;
    border-radius: var(--radius);
    width: 100%;
  }
  .nav-menu .sub-menu {
    position: static;
    opacity: 1; visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(0,0,0,0.20);
    border: none;
    border-radius: 0;
    padding: 0;
    margin-left: 16px;
  }

  /* Hero */
  .hero { min-height: 80vh; }
  .hero-stats { gap: 20px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }

  /* Search */
  .search-inner { flex-direction: column; align-items: stretch; gap: 12px; }
  .search-label { border-right: none; padding-right: 0; margin-right: 0; }
  .search-form { flex-direction: column; }
  .search-form input[type="search"] { border-right: 1px solid rgba(212,175,55,0.25); border-radius: var(--radius); }
  .search-form button[type="submit"] { border-radius: var(--radius); }

  /* Ships */
  .ships-tabs { gap: 4px; }
  .ship-tab { min-width: 100px; padding: 12px 14px; font-size: 0.72rem; }
  .ship-features { grid-template-columns: 1fr; }
  .ship-specs { gap: 12px; }
  .ship-cta { flex-direction: column; }
  .ship-cta .btn { width: 100%; justify-content: center; }

  /* Grids */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .posts-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: 1fr; }
  .post-nav { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  /* Price CTA */
  .price-cta-inner { flex-direction: column; text-align: center; }
  .price-cta-actions { flex-direction: column; align-items: center; }
  .price-cta-actions .btn { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════
   PRINT STYLES
═══════════════════════════════════════════════════════════════ */
@media print {
  .site-header, .top-bar, .site-footer, .sidebar,
  .menu-toggle, .hero-scroll, .price-cta-section,
  .btn, .search-section { display: none !important; }
  body { font-size: 12pt; color: #000; }
  .entry-content { max-width: 100%; }
}


/* ═══════════════════════════════════════════════════════════════════
   WHATSAPP STYLES
═══════════════════════════════════════════════════════════════════ */
.top-bar-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #25D366 !important;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.top-bar-whatsapp .icon {
  fill: #25D366;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.top-bar-whatsapp:hover {
  color: #1ebe57 !important;
  text-decoration: underline;
}

/* WhatsApp header button */
.header-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #25D366;
  color: #fff !important;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 9px 16px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}
.header-whatsapp-btn:hover {
  background: #1ebe57;
  transform: translateY(-1px);
}
.header-whatsapp-btn svg {
  flex-shrink: 0;
}

/* WhatsApp sidebar widget */
.widget-whatsapp {
  background: linear-gradient(135deg, #001B30 0%, #002B49 100%);
  border: 2px solid #25D366;
  border-radius: 12px;
  overflow: hidden;
}
.widget-whatsapp-body {
  padding: 24px 20px;
  text-align: center;
}
.whatsapp-icon-wrap {
  margin-bottom: 12px;
}
.widget-whatsapp h3 {
  color: #fff !important;
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.whatsapp-number {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.whatsapp-number a {
  color: #25D366 !important;
  text-decoration: none;
}
.whatsapp-number a:hover {
  text-decoration: underline;
}
.widget-whatsapp p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

/* WhatsApp button */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff !important;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  width: 100%;
  justify-content: center;
}
.btn-whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}
.btn-whatsapp.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

/* Footer WhatsApp contact item */
.footer-whatsapp {
  color: #25D366 !important;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-whatsapp:hover {
  color: #1ebe57 !important;
}

/* Mobile: hide WhatsApp header button text on very small screens */
@media (max-width: 480px) {
  .header-whatsapp-btn span { display: none; }
  .header-whatsapp-btn { padding: 9px 12px; }
}

/* ── SHIP YEAR LINKS ──────────────────────────────────────────────── */
.ship-year-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(212,175,55,0.25);
}
.year-links-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-right: 4px;
  white-space: nowrap;
}
.year-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.45);
  color: #D4AF37 !important;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
  white-space: nowrap;
}
.year-link:hover {
  background: #D4AF37;
  border-color: #D4AF37;
  color: #001B30 !important;
  transform: translateY(-2px);
}
/* Footer WhatsApp box */
.footer-whatsapp-box {
  margin-top: 20px;
  padding: 14px 16px;
  background: rgba(37,211,102,0.08);
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: 8px;
}
.footer-whatsapp-box p {
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  margin-bottom: 6px;
}
.footer-wa-link {
  color: #25D366 !important;
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.03em;
}
.footer-wa-link:hover {
  text-decoration: underline;
}
