/* Your Cruise Your Way — Custom Styles */
/* Framework: Bulma CSS (CDN) + Playfair Display + Lato */

:root {
  --ocean-deep: #0B2B6B;
  --ocean-teal: #0E7C7B;
  --sand: #F5E6C8;
  --sand-dark: #E8D4A8;
  --white: #FFFFFF;
  --dark: #1A1A2E;
  --text-muted: #5C6B7A;
  --accent-gold: #C9922A;
  --card-bg: #F8FAFE;
  --border-light: #E2EAF4;
}

/* ===================== BASE ===================== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
}

a {
  color: var(--ocean-teal);
  transition: color 0.2s ease;
}

a:hover {
  color: var(--ocean-deep);
}

/* ===================== NAVBAR ===================== */
.site-navbar {
  background: var(--ocean-deep);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(11, 43, 107, 0.3);
}

.site-navbar .navbar-brand .navbar-item {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.75rem 1rem;
}

.site-navbar .navbar-brand .navbar-item:hover {
  color: var(--sand);
  background: transparent;
}

.site-navbar .navbar-brand .site-logo-icon {
  font-size: 1.6rem;
  margin-right: 0.5rem;
}

.site-navbar .navbar-menu {
  background: var(--ocean-deep);
}

.site-navbar .navbar-item,
.site-navbar .navbar-link {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 1rem 0.9rem;
  transition: color 0.2s, background 0.2s;
}

.site-navbar .navbar-item:hover,
.site-navbar .navbar-link:hover {
  color: var(--sand);
  background: rgba(255,255,255,0.08) !important;
}

.site-navbar .navbar-burger span {
  background: var(--white);
}

.site-navbar .navbar-burger:hover {
  background: rgba(255,255,255,0.1);
}

/* ===================== HERO ===================== */
.site-hero {
  position: relative;
  min-height: 560px;
  background: var(--ocean-deep);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.site-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  transition: opacity 0.3s;
}

.site-hero .hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 2rem;
}

.site-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  margin-bottom: 1rem;
}

.site-hero .hero-sub {
  color: var(--sand);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 300;
  max-width: 640px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.site-hero .hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  overflow: hidden;
}

.site-hero .hero-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ===================== INTERIOR PAGE HERO ===================== */
.page-hero {
  position: relative;
  min-height: 320px;
  background: var(--ocean-deep);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}

.page-hero .hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 2rem;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.page-hero .page-breadcrumb {
  color: var(--sand);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.page-hero .page-breadcrumb a {
  color: var(--sand);
}

/* ===================== SECTIONS ===================== */
.section-light {
  background: var(--white);
  padding: 4rem 1.5rem;
}

.section-sand {
  background: var(--sand);
  padding: 4rem 1.5rem;
}

.section-dark {
  background: var(--ocean-deep);
  padding: 4rem 1.5rem;
  color: var(--white);
}

.section-teal {
  background: var(--ocean-teal);
  padding: 4rem 1.5rem;
  color: var(--white);
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--ocean-deep);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.section-dark .section-title,
.section-teal .section-title {
  color: var(--white);
}

.section-dark .section-subtitle,
.section-teal .section-subtitle {
  color: rgba(255,255,255,0.75);
}

/* ===================== CARDS ===================== */
.cruise-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.cruise-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(11, 43, 107, 0.15);
}

.cruise-card .card-image-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
  flex-shrink: 0;
}

.cruise-card .card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.cruise-card:hover .card-image-wrap img {
  transform: scale(1.04);
}

.cruise-card .card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--ocean-teal);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
}

.cruise-card .card-body {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cruise-card .card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--ocean-deep);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.cruise-card .card-excerpt {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  flex: 1;
}

.cruise-card .card-link {
  display: inline-block;
  margin-top: 1.1rem;
  color: var(--ocean-teal);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.cruise-card .card-link::after {
  content: ' →';
}

/* ===================== DESTINATION CARDS ===================== */
.dest-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 280px;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  transition: transform 0.25s ease;
}

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

.dest-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.dest-card:hover img {
  transform: scale(1.06);
}

.dest-card .dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,43,107,0.8) 0%, transparent 60%);
}

.dest-card .dest-label {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 1.5rem;
}

.dest-card .dest-label h3 {
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
}

.dest-card .dest-label p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}

/* ===================== SIDEBAR ===================== */
.site-sidebar {
  padding-left: 1.5rem;
}

.sidebar-widget {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.sidebar-widget .widget-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--ocean-deep);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--ocean-teal);
}

.sidebar-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-widget ul li {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
}

.sidebar-widget ul li:last-child {
  border-bottom: none;
}

.sidebar-widget ul li a {
  color: var(--dark);
  text-decoration: none;
}

.sidebar-widget ul li a:hover {
  color: var(--ocean-teal);
}

.featured-deal {
  background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--ocean-teal) 100%);
  color: var(--white);
  border: none;
}

.featured-deal .widget-title {
  color: var(--sand);
  border-bottom-color: rgba(255,255,255,0.3);
}

.featured-deal .deal-ship {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.featured-deal .deal-route {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-bottom: 0.8rem;
}

/* ===================== CREDENTIALS STRIP ===================== */
.credentials-strip {
  background: var(--sand);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--ocean-teal);
}

.credentials-strip .cred-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ocean-teal);
  margin-bottom: 0.6rem;
}

.credentials-strip .cred-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.credentials-strip .cred-badge {
  background: var(--ocean-deep);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  white-space: nowrap;
}

/* ===================== STAT BOXES ===================== */
.stat-box {
  text-align: center;
  padding: 2rem 1rem;
}

.stat-box .stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--ocean-teal);
  line-height: 1;
  display: block;
}

.stat-box .stat-label {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.section-light .stat-box .stat-number {
  color: var(--ocean-deep);
}

.section-light .stat-box .stat-label {
  color: var(--text-muted);
}

/* ===================== REVIEW CARDS ===================== */
.review-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1.8rem;
  margin-bottom: 2rem;
}

.review-card .review-ship {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--ocean-deep);
  margin-bottom: 0.3rem;
}

.review-card .review-route {
  color: var(--ocean-teal);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.review-card .review-body {
  color: var(--dark);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.review-card .review-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.review-card .highlight-tag {
  background: var(--sand);
  color: var(--ocean-deep);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
}

/* ===================== CRUISE LINES TABLE ===================== */
.line-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1.6rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--ocean-deep);
  transition: border-left-color 0.2s;
}

.line-card:hover {
  border-left-color: var(--ocean-teal);
}

.line-card .line-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--ocean-deep);
  margin-bottom: 0.2rem;
}

.line-card .line-tier {
  display: inline-block;
  background: var(--ocean-teal);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.8rem;
}

.line-card .line-body {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.line-card .line-best-for {
  margin-top: 0.8rem;
  font-size: 0.87rem;
  color: var(--dark);
}

.line-card .line-best-for strong {
  color: var(--ocean-teal);
}

/* ===================== TIP LISTS ===================== */
.tip-section {
  margin-bottom: 2.5rem;
}

.tip-section h3 {
  font-size: 1.35rem;
  color: var(--ocean-deep);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--sand-dark);
}

.tip-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tip-list li {
  padding: 0.7rem 0 0.7rem 2rem;
  position: relative;
  border-bottom: 1px solid var(--border-light);
  line-height: 1.65;
  font-size: 0.95rem;
}

.tip-list li:last-child {
  border-bottom: none;
}

.tip-list li::before {
  content: '⚓';
  position: absolute;
  left: 0;
  top: 0.7rem;
  font-size: 0.85rem;
  color: var(--ocean-teal);
}

/* ===================== PACKING CHECKLIST ===================== */
.pack-section {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.pack-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--ocean-deep);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pack-section h3 .pack-icon {
  font-size: 1.2rem;
}

.pack-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pack-list li {
  padding: 0.45rem 0 0.45rem 1.8rem;
  position: relative;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-light);
  line-height: 1.55;
}

.pack-list li:last-child {
  border-bottom: none;
}

.pack-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--ocean-teal);
  font-weight: 700;
}

.not-bring li::before {
  content: '✗';
  color: #c0392b;
}

/* ===================== DESTINATION REGION CARDS ===================== */
.region-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.region-card .region-header {
  background: linear-gradient(135deg, var(--ocean-deep), var(--ocean-teal));
  color: var(--white);
  padding: 1.5rem 1.8rem;
}

.region-card .region-header h3 {
  font-size: 1.5rem;
  margin: 0;
}

.region-card .region-header .region-ports {
  font-size: 0.82rem;
  opacity: 0.8;
  margin-top: 0.4rem;
}

.region-card .region-body {
  padding: 1.5rem 1.8rem;
}

.region-card .region-meta {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.region-card .region-meta-item {
  font-size: 0.85rem;
}

.region-card .region-meta-item strong {
  color: var(--ocean-teal);
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}

/* ===================== ABOUT PAGE ===================== */
.about-photo {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(11,43,107,0.2);
}

.about-photo img {
  width: 100%;
  display: block;
}

/* ===================== CONTACT FORM ===================== */
.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 2.5rem;
}

.contact-form .field label.label {
  color: var(--dark);
  font-weight: 600;
  font-size: 0.9rem;
}

.contact-form .input,
.contact-form .textarea,
.contact-form .select select {
  border-color: var(--border-light);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--dark);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form .input:focus,
.contact-form .textarea:focus,
.contact-form .select select:focus {
  border-color: var(--ocean-teal);
  box-shadow: 0 0 0 3px rgba(14,124,123,0.15);
}

/* ===================== BUTTONS ===================== */
.btn-ocean {
  background: var(--ocean-teal);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.75rem;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
  display: inline-block;
}

.btn-ocean:hover {
  background: #0B6665;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--ocean-deep);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.75rem;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-navy:hover {
  background: #0D3A8F;
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--ocean-teal);
  border: 2px solid var(--ocean-teal);
  border-radius: 8px;
  padding: 0.7rem 1.7rem;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover {
  background: var(--ocean-teal);
  color: var(--white);
}

/* ===================== COMPASS DECORATION ===================== */
.compass-divider {
  text-align: center;
  margin: 2rem 0;
  color: var(--ocean-teal);
  font-size: 2rem;
  opacity: 0.4;
}

/* ===================== OUTBOUND LINKS SECTION ===================== */
.resources-box {
  background: linear-gradient(135deg, rgba(11,43,107,0.06), rgba(14,124,123,0.06));
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--ocean-teal);
  border-radius: 10px;
  padding: 1.4rem 1.6rem;
  margin-top: 2rem;
}

.resources-box .resources-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ocean-teal);
  margin-bottom: 0.8rem;
}

.resources-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.resources-box ul li {
  padding: 0.35rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.resources-box ul li a {
  color: var(--ocean-teal);
  font-weight: 600;
}

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--ocean-deep);
  color: rgba(255,255,255,0.75);
  padding: 3.5rem 1.5rem 1.5rem;
}

.site-footer .footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.site-footer .footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}

.site-footer .footer-heading {
  font-family: 'Playfair Display', serif;
  color: var(--sand);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer ul li {
  margin-bottom: 0.5rem;
}

.site-footer ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer ul li a:hover {
  color: var(--sand);
}

.site-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ===================== 404 PAGE ===================== */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--ocean-teal) 100%);
  color: var(--white);
  padding: 4rem 2rem;
}

.error-page .error-number {
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  line-height: 1;
  color: rgba(255,255,255,0.15);
  font-weight: 700;
}

.error-page .error-icon {
  font-size: 4rem;
  margin: -1rem 0 1rem;
}

.error-page h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.error-page p {
  font-size: 1.05rem;
  opacity: 0.8;
  max-width: 500px;
  margin: 0 auto 2rem;
}

/* ===================== HERO IMAGE ===================== */
.hero-image-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(11,43,107,0.25);
}

.hero-image-wrap img {
  width: 100%;
  display: block;
}

/* ===================== ADDITIONAL PAGE CLASSES ===================== */
.content-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 820px;
  margin-bottom: 2.5rem;
}

.section-heading {
  font-size: 1.8rem;
  color: var(--ocean-deep);
  margin-bottom: 1.5rem;
}

.tip-section h2 {
  font-size: 1.35rem;
  color: var(--ocean-deep);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--sand-dark);
}

.region-card .region-header .region-ports {
  font-size: 0.82rem;
  opacity: 0.8;
  margin-top: 0.4rem;
}

.region-card .region-ports-label,
.region-ports .ports-label {
  font-weight: 700;
  margin-right: 0.3rem;
}

.region-card p {
  padding: 0 1.8rem;
  line-height: 1.7;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.region-card .best-for {
  padding: 0.75rem 1.8rem 1.5rem;
  font-size: 0.88rem;
  color: var(--dark);
}

.region-card .best-for strong {
  color: var(--ocean-teal);
}

.pack-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--ocean-deep);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pack-icon {
  font-size: 1.2rem;
}

.pack-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 0.75rem;
}

.credentials-strip .credentials-quote {
  font-style: italic;
  line-height: 1.75;
  color: var(--dark);
  font-size: 0.95rem;
}

.credentials-strip .credentials-attr {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ocean-teal);
  font-style: normal;
}

.sidebar-widget h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--ocean-deep);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--ocean-teal);
}

.sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-links li {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
}

.sidebar-links li:last-child {
  border-bottom: none;
}

.sidebar-links li a {
  color: var(--dark);
  text-decoration: none;
}

.sidebar-links li a:hover {
  color: var(--ocean-teal);
}

.resources-box h3 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ocean-teal);
  margin-bottom: 0.8rem;
}

.contact-header {
  margin-bottom: 2rem;
}

.contact-title {
  font-size: 2.2rem;
  color: var(--ocean-deep);
  margin-bottom: 0.5rem;
}

.contact-intro {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.contact-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.error-inner {
  max-width: 540px;
  margin: 0 auto;
}

.error-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  .site-sidebar {
    padding-left: 0;
    margin-top: 2rem;
  }

  .site-hero {
    min-height: 420px;
  }

  .dest-card {
    height: 220px;
  }

  .region-card .region-meta {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .stat-box .stat-number {
    font-size: 2.2rem;
  }

  .contact-form {
    padding: 1.5rem;
  }
}
