/* ============================================================================
   VENTURE HAWAII - PREMIUM CSS DESIGN SYSTEM
   A luxury Hawaii travel guide website with warm, adventurous styling
   ============================================================================ */

/* ============================================================================
   1. CSS RESET & BASE STYLES
   ============================================================================ */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--line-height-normal);
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

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

/* ============================================================================
   2. CUSTOM PROPERTIES (CSS VARIABLES)
   ============================================================================ */

:root {
  /* -------- COLORS: PRIMARY PALETTE -------- */
  --primary-blue: #1a8fc4;
  --secondary-blue: #2ba5d8;
  --light-blue: #90e0ef;
  --primary-orange: #F7941D;
  --light-orange: #f7c59f;
  --gold: #ffd166;
  
  /* -------- COLORS: DARK PALETTE -------- */
  --volcanic-dark: #1a1a2e;
  --dark-blue: #16213e;
  --navy: #0f3460;
  
  /* -------- COLORS: GREEN PALETTE -------- */
  --lush-green: #2d6a4f;
  --medium-green: #40916c;
  --light-green: #52b788;
  
  /* -------- COLORS: SAND PALETTE -------- */
  --sand-light: #f4e8c1;
  --sand-medium: #ddb892;
  
  /* -------- COLORS: NEUTRAL & FUNCTIONAL -------- */
  --white: #ffffff;
  --off-white: #f8f9fa;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --border-color: #e0e0e0;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #3b82f6;

  /* -------- TYPOGRAPHY -------- */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', serif;
  
  /* TEXT SIZES */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  
  /* LINE HEIGHT */
  --line-height-tight: 1.2;
  --line-height-normal: 1.6;
  --line-height-relaxed: 1.8;

  /* -------- SPACING SCALE -------- */
  --space-0: 0;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* -------- SHADOWS -------- */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-base: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);

  /* -------- BORDER RADIUS -------- */
  --radius-none: 0;
  --radius-sm: 0.25rem;
  --radius-base: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;

  /* -------- TRANSITIONS -------- */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 200ms ease-in-out;
  --transition-slow: 300ms ease-in-out;

  /* -------- BREAKPOINTS (for reference in media queries) -------- */
  --breakpoint-sm: 480px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1200px;

  /* -------- Z-INDEX SCALE -------- */
  --z-hide: -1;
  --z-base: 0;
  --z-content: 10;
  --z-dropdown: 100;
  --z-fixed: 1000;
  --z-modal: 1100;
  --z-tooltip: 1200;
}

/* ============================================================================
   3. TYPOGRAPHY
   ============================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700;900&display=swap');

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: var(--line-height-tight);
  color: var(--volcanic-dark);
  margin-bottom: var(--space-4);
}

h1 {
  font-size: var(--text-6xl);
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--text-5xl);
  letter-spacing: -0.015em;
}

h3 {
  font-size: var(--text-4xl);
}

h4 {
  font-size: var(--text-3xl);
}

h5 {
  font-size: var(--text-2xl);
}

h6 {
  font-size: var(--text-xl);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

p {
  margin-bottom: var(--space-4);
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color var(--transition-base), opacity var(--transition-base);
}

a:hover {
  color: var(--secondary-blue);
  opacity: 0.9;
}

a:focus {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}

strong {
  font-weight: 600;
  color: var(--volcanic-dark);
}

em {
  font-style: italic;
}

small {
  font-size: var(--text-sm);
}

/* -------- LISTS -------- */

ul,
ol {
  margin-bottom: var(--space-4);
  margin-left: var(--space-6);
}

li {
  margin-bottom: var(--space-2);
  line-height: var(--line-height-relaxed);
}

/* -------- BLOCKQUOTES -------- */

blockquote {
  border-left: 4px solid var(--primary-blue);
  padding-left: var(--space-6);
  margin: var(--space-8) 0;
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--text-light);
}

blockquote footer {
  margin-top: var(--space-4);
  font-style: normal;
  font-size: var(--text-base);
  color: var(--text-dark);
}

/* -------- TABLES -------- */

table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-8) 0;
}

th,
td {
  padding: var(--space-4);
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

th {
  background-color: var(--off-white);
  font-weight: 600;
  color: var(--volcanic-dark);
}

tr:hover {
  background-color: var(--off-white);
}

/* ============================================================================
   4. LAYOUT UTILITIES
   ============================================================================ */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-8);
  }
}

/* -------- GRID -------- */

.grid {
  display: grid;
  gap: var(--space-6);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* -------- FLEXBOX HELPERS -------- */

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.flex-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.gap-4 {
  gap: var(--space-4);
}

.gap-6 {
  gap: var(--space-6);
}

.gap-8 {
  gap: var(--space-8);
}

/* -------- VISIBILITY -------- */

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .show-mobile {
    display: none !important;
  }
}

/* ============================================================================
   5. HEADER & NAVIGATION
   ============================================================================ */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  background-color: transparent;
  transition: background-color var(--transition-base), backdrop-filter var(--transition-base);
  padding: var(--space-4) 0;
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  padding: var(--space-3) 0;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 var(--space-4);
}

@media (min-width: 768px) {
  .header-wrapper {
    height: 80px;
    padding: 0 var(--space-8);
  }
}

/* -------- LOGO -------- */

.logo {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--volcanic-dark);
  transition: opacity var(--transition-base);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.logo:hover {
  opacity: 0.8;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: var(--text-lg);
}

/* -------- MAIN NAVIGATION -------- */

.nav-menu {
  display: none;
  list-style: none;
  align-items: center;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .nav-menu {
    display: flex;
  }
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--text-dark);
  font-size: var(--text-base);
  font-weight: 500;
  transition: color var(--transition-base);
  padding: var(--space-2);
}

header.scrolled .nav-link {
  color: var(--text-dark);
}

.nav-link:hover {
  color: var(--primary-blue);
}

/* -------- DROPDOWN MENU -------- */

.dropdown {
  position: relative;
}

.dropdown-toggle::after {
  content: '▼';
  font-size: 0.5em;
  margin-left: var(--space-2);
  transition: transform var(--transition-base);
}

.dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  list-style: none;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity var(--transition-base), visibility var(--transition-base), transform var(--transition-base);
  margin-top: var(--space-2);
  z-index: var(--z-dropdown);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  padding: var(--space-3) var(--space-6);
  color: var(--text-dark);
  font-size: var(--text-base);
  transition: background-color var(--transition-base), color var(--transition-base);
  display: block;
  width: 100%;
  text-align: left;
}

.dropdown-item:hover {
  background-color: var(--off-white);
  color: var(--primary-blue);
}

.dropdown-item:first-child {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.dropdown-item:last-child {
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

/* -------- HAMBURGER MENU -------- */

.hamburger {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  cursor: pointer;
  z-index: var(--z-fixed);
}

@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background-color: var(--text-dark);
  transition: all var(--transition-base);
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* -------- MOBILE MENU -------- */

.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: white;
  z-index: var(--z-dropdown);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--transition-base);
}

.mobile-menu.active {
  transform: translateX(0);
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none;
  }
}

.mobile-nav-item {
  padding: var(--space-4) var(--space-6);
  border-bottom: 1px solid var(--border-color);
  font-size: var(--text-lg);
}

.mobile-nav-link {
  display: block;
  color: var(--text-dark);
  font-weight: 500;
}

.mobile-nav-link:hover {
  color: var(--primary-blue);
}

/* ============================================================================
   6. HERO SECTION
   ============================================================================ */

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 70px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

@media (min-width: 768px) {
  .hero {
    margin-top: 80px;
  }
}

/* Hero background gradient fallback */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  z-index: 1;
  opacity: 0.9;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(26, 26, 46, 0.4), rgba(26, 26, 46, 0.6));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  width: 100%;
  padding: var(--space-8) var(--space-4);
  animation: fadeInUp 0.8s ease-out;
}

@media (min-width: 768px) {
  .hero-content {
    padding: var(--space-12) var(--space-8);
  }
}

.hero h1 {
  color: white;
  font-size: var(--text-5xl);
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: var(--text-6xl);
  }
}

.hero-subtitle {
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: var(--text-2xl);
  }
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-cta-group {
    flex-direction: row;
  }
}

/* -------- HERO SEARCH BAR -------- */

.hero-search {
  display: flex;
  gap: var(--space-2);
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-full);
  padding: var(--space-2);
  margin-top: var(--space-6);
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-search input {
  flex: 1;
  border: none;
  background: transparent;
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-base);
  color: var(--text-dark);
}

.hero-search input::placeholder {
  color: var(--text-light);
}

.hero-search input:focus {
  outline: none;
}

.hero-search button {
  padding: var(--space-3) var(--space-6);
  background-color: var(--primary-blue);
  color: white;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-weight: 600;
  transition: background-color var(--transition-base);
}

.hero-search button:hover {
  background-color: var(--secondary-blue);
}

/* -------- ISLAND GRADIENT OVERRIDES -------- */

.hero-big-island::before {
  background: linear-gradient(135deg, #dc2626, var(--volcanic-dark));
}

.hero-maui::before {
  background: linear-gradient(135deg, var(--primary-orange), #7c3aed);
}

.hero-kauai::before {
  background: linear-gradient(135deg, var(--lush-green), var(--primary-blue));
}

.hero-oahu::before {
  background: linear-gradient(135deg, var(--primary-blue), var(--gold));
}

.hero-molokai::before {
  background: linear-gradient(135deg, #92400e, var(--medium-green));
}

.hero-lanai::before {
  background: linear-gradient(135deg, var(--gold), var(--navy));
}

.hero-niihau::before {
  background: linear-gradient(135deg, #7c3aed, var(--primary-blue));
}

.hero-kahoolawe::before {
  background: linear-gradient(135deg, #dc2626, var(--sand-medium));
}

/* ============================================================================
   7. CARD COMPONENTS
   ============================================================================ */

/* -------- ARTICLE CARD -------- */

.card {
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.card-image {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, var(--secondary-blue), var(--light-blue));
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: var(--space-6);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
  font-size: var(--text-sm);
  color: var(--text-light);
}

.card-category {
  display: inline-block;
}

.card-title {
  font-size: var(--text-xl);
  font-family: var(--font-display);
  color: var(--volcanic-dark);
  margin-bottom: var(--space-3);
  line-height: var(--line-height-tight);
  font-weight: 700;
}

.card-excerpt {
  font-size: var(--text-base);
  color: var(--text-light);
  line-height: var(--line-height-normal);
  margin-bottom: var(--space-4);
  flex-grow: 1;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-color);
}

.card-read-time {
  font-size: var(--text-sm);
  color: var(--text-light);
}

.card-link {
  color: var(--primary-blue);
  font-weight: 600;
  font-size: var(--text-sm);
}

/* -------- ISLAND SELECTOR CARD (see compatibility section below for active styles) -------- */

/* ============================================================================
   8. CALLOUT BOXES
   ============================================================================ */

.callout {
  border-left: 4px solid;
  border-radius: var(--radius-md);
  padding: var(--space-6);
  margin: var(--space-6) 0;
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.callout-icon {
  flex-shrink: 0;
  font-size: var(--text-2xl);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.callout-content h4 {
  margin-top: 0;
  margin-bottom: var(--space-2);
}

.callout-content p {
  margin-bottom: 0;
  font-size: var(--text-base);
}

/* -------- CALLOUT VARIANTS -------- */

.callout-tip {
  background-color: rgba(45, 106, 79, 0.1);
  border-left-color: var(--lush-green);
  color: var(--lush-green);
}

.callout-tip .callout-icon {
  background-color: rgba(45, 106, 79, 0.2);
  border-radius: var(--radius-md);
}

.callout-warning {
  background-color: rgba(247, 148, 29, 0.1);
  border-left-color: var(--primary-orange);
  color: var(--primary-orange);
}

.callout-warning .callout-icon {
  background-color: rgba(247, 148, 29, 0.2);
  border-radius: var(--radius-md);
}

.callout-local {
  background-color: rgba(26, 143, 196, 0.1);
  border-left-color: var(--primary-blue);
  color: var(--primary-blue);
}

.callout-local .callout-icon {
  background-color: rgba(26, 143, 196, 0.2);
  border-radius: var(--radius-md);
}

.callout-budget {
  background-color: rgba(255, 209, 102, 0.1);
  border-left-color: var(--gold);
  color: #92400e;
}

.callout-budget .callout-icon {
  background-color: rgba(255, 209, 102, 0.2);
  border-radius: var(--radius-md);
}

.callout-safety {
  background-color: rgba(239, 68, 68, 0.1);
  border-left-color: var(--danger);
  color: var(--danger);
}

.callout-safety .callout-icon {
  background-color: rgba(239, 68, 68, 0.2);
  border-radius: var(--radius-md);
}

/* ============================================================================
   9. BUTTONS
   ============================================================================ */

.btn {
  display: inline-block;
  padding: var(--space-3) var(--space-6);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  font-family: var(--font-body);
}

.btn:focus {
  outline: 2px solid;
  outline-offset: 2px;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* -------- BUTTON VARIANTS -------- */

.btn-primary {
  background-color: var(--primary-blue);
  color: white;
  border-color: var(--primary-blue);
}

.btn-primary:hover:not(:disabled) {
  background-color: var(--secondary-blue);
  border-color: var(--secondary-blue);
  box-shadow: var(--shadow-md);
}

.btn-primary:focus {
  outline-color: var(--primary-blue);
}

.btn-secondary {
  background-color: var(--primary-orange);
  color: white;
  border-color: var(--primary-orange);
}

.btn-secondary:hover:not(:disabled) {
  background-color: #f68a0a;
  border-color: #f68a0a;
  box-shadow: var(--shadow-md);
}

.btn-secondary:focus {
  outline-color: var(--primary-orange);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-blue);
  border-color: var(--primary-blue);
}

.btn-outline:hover:not(:disabled) {
  background-color: var(--primary-blue);
  color: white;
}

.btn-cta {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
  color: white;
  border-color: transparent;
  font-size: var(--text-lg);
  padding: var(--space-4) var(--space-8);
}

.btn-cta:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-small {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
}

.btn-large {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-lg);
}

.btn-block {
  display: block;
  width: 100%;
}

/* ============================================================================
   10. CATEGORY TAGS
   ============================================================================ */

.tag {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  background-color: var(--off-white);
  color: var(--text-dark);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: all var(--transition-base);
  border: 1px solid var(--border-color);
}

.tag:hover {
  background-color: var(--primary-blue);
  color: white;
  border-color: var(--primary-blue);
}

/* Tag color variants by category */
.tag-beaches {
  background-color: rgba(144, 224, 239, 0.2);
  color: var(--primary-blue);
  border-color: var(--light-blue);
}

.tag-hiking {
  background-color: rgba(45, 106, 79, 0.2);
  color: var(--lush-green);
  border-color: var(--lush-green);
}

.tag-food {
  background-color: rgba(247, 148, 29, 0.2);
  color: var(--primary-orange);
  border-color: var(--primary-orange);
}

.tag-accommodation {
  background-color: rgba(255, 209, 102, 0.2);
  color: #92400e;
  border-color: var(--gold);
}

.tag-activities {
  background-color: rgba(124, 58, 237, 0.2);
  color: #7c3aed;
  border-color: #7c3aed;
}

.tag-culture {
  background-color: rgba(239, 68, 68, 0.2);
  color: var(--danger);
  border-color: var(--danger);
}

.tag-planning {
  background-color: rgba(16, 185, 129, 0.2);
  color: var(--success);
  border-color: var(--success);
}

/* ============================================================================
   11. NEWSLETTER SECTION
   ============================================================================ */

.newsletter {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  border-radius: var(--radius-xl);
  padding: var(--space-12) var(--space-6);
  text-align: center;
  color: white;
}

@media (min-width: 768px) {
  .newsletter {
    padding: var(--space-16) var(--space-12);
  }
}

.newsletter h2 {
  color: white;
  margin-bottom: var(--space-4);
}

.newsletter-subtitle {
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
  opacity: 0.95;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: 500px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .newsletter-form {
    flex-direction: row;
  }
}

.newsletter-input {
  flex: 1;
  padding: var(--space-4) var(--space-6);
  border: none;
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  background-color: white;
  color: var(--text-dark);
}

.newsletter-input::placeholder {
  color: var(--text-light);
}

.newsletter-input:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

.newsletter-button {
  background-color: var(--primary-orange);
  color: white;
  border: none;
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--transition-base);
}

.newsletter-button:hover {
  background-color: #f68a0a;
}

/* ============================================================================
   12. FOOTER
   ============================================================================ */

footer {
  background-color: var(--volcanic-dark);
  color: white;
  padding: var(--space-16) 0 var(--space-8);
}

footer a {
  color: var(--light-blue);
}

footer a:hover {
  color: var(--secondary-blue);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

.footer-column h4 {
  color: white;
  font-size: var(--text-lg);
  margin-bottom: var(--space-6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

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

.footer-column li {
  margin-bottom: var(--space-3);
}

.footer-column a {
  transition: all var(--transition-base);
  font-size: var(--text-sm);
}

/* -------- FOOTER NEWSLETTER -------- */

.footer-newsletter {
  margin-bottom: var(--space-8);
}

.footer-newsletter-form {
  display: flex;
  gap: var(--space-2);
}

.footer-newsletter-input {
  flex: 1;
  padding: var(--space-3) var(--space-4);
  border: none;
  border-radius: var(--radius-base);
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: var(--text-base);
}

.footer-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.footer-newsletter-button {
  padding: var(--space-3) var(--space-6);
  background-color: var(--primary-orange);
  color: white;
  border: none;
  border-radius: var(--radius-base);
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--transition-base);
}

.footer-newsletter-button:hover {
  background-color: #f68a0a;
}

/* -------- FOOTER SOCIAL -------- */

.footer-social {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  color: white;
  transition: all var(--transition-base);
}

.social-link:hover {
  background-color: var(--primary-blue);
  transform: translateY(-3px);
}

/* -------- FOOTER BOTTOM -------- */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-legal {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-legal a:hover {
  color: var(--light-blue);
}

/* ============================================================================
   13. SECTION STYLES
   ============================================================================ */

section {
  padding: var(--space-16) 0;
}

@media (min-width: 768px) {
  section {
    padding: var(--space-20) 0;
  }
}

.section-light {
  background-color: var(--off-white);
}

.section-dark {
  background-color: var(--volcanic-dark);
  color: white;
}

.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
  color: white;
}

.section-sand {
  background-color: var(--sand-light);
}

.section-gradient {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: white;
}

.section-gradient h2,
.section-gradient h3,
.section-gradient h4,
.section-gradient h5,
.section-gradient h6 {
  color: white;
}

/* -------- SECTION TITLE -------- */

.section-title {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-title h2 {
  margin-bottom: var(--space-4);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================================
   14. ARTICLE & BLOG STYLES
   ============================================================================ */

article {
  max-width: 800px;
  margin: 0 auto;
  line-height: var(--line-height-relaxed);
}

article h1 {
  font-size: var(--text-5xl);
  margin-bottom: var(--space-6);
}

article h2 {
  margin-top: var(--space-12);
  margin-bottom: var(--space-6);
  border-bottom: 2px solid var(--light-blue);
  padding-bottom: var(--space-4);
}

article h3 {
  margin-top: var(--space-8);
  margin-bottom: var(--space-4);
}

article p {
  font-size: var(--text-lg);
  color: var(--text-dark);
}

article img {
  border-radius: var(--radius-lg);
  margin: var(--space-8) 0;
  box-shadow: var(--shadow-lg);
  max-width: 100%;
  height: auto;
}

article figure {
  margin: var(--space-8) 0;
  text-align: center;
}

article figcaption {
  font-size: var(--text-sm);
  color: var(--text-light);
  margin-top: var(--space-2);
  font-style: italic;
}

article code {
  background-color: var(--off-white);
  padding: 0.2em 0.4em;
  border-radius: var(--radius-sm);
  font-family: 'Monaco', 'Courier New', monospace;
  font-size: 0.9em;
  color: #c92c2c;
}

article pre {
  background-color: var(--volcanic-dark);
  color: #f5f5f5;
  padding: var(--space-6);
  border-radius: var(--radius-md);
  overflow-x: auto;
  margin: var(--space-8) 0;
  line-height: 1.5;
}

article pre code {
  background-color: transparent;
  padding: 0;
  color: inherit;
}

article hr {
  border: none;
  border-top: 2px solid var(--light-blue);
  margin: var(--space-12) 0;
}

/* -------- ARTICLE META -------- */

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--border-color);
  font-size: var(--text-sm);
  color: var(--text-light);
}

.article-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.article-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
}

/* ============================================================================
   15. BREADCRUMBS
   ============================================================================ */

.breadcrumbs {
  display: flex;
  gap: var(--space-2);
  align-items: center;
  font-size: var(--text-sm);
  margin-bottom: var(--space-6);
}

.breadcrumb-item {
  color: var(--text-light);
}

.breadcrumb-item a {
  color: var(--primary-blue);
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}

.breadcrumb-separator {
  color: var(--border-color);
  margin: 0 var(--space-2);
}

.breadcrumb-item.active {
  color: var(--text-dark);
  font-weight: 600;
}

/* ============================================================================
   16. PLAN YOUR TRIP CTA SECTION
   ============================================================================ */

.plan-trip {
  background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
  color: white;
}

.plan-trip-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.plan-trip-card {
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  transition: all var(--transition-base);
  cursor: pointer;
}

.plan-trip-card:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-4px);
}

.plan-trip-icon {
  font-size: var(--text-5xl);
  margin-bottom: var(--space-4);
  display: block;
}

.plan-trip-card h4 {
  color: white;
  margin-bottom: var(--space-3);
  font-size: var(--text-lg);
}

.plan-trip-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-sm);
  margin-bottom: 0;
}

/* ============================================================================
   17. RESPONSIVE DESIGN
   ============================================================================ */

@media (max-width: 479px) {
  h1 {
    font-size: var(--text-4xl);
  }

  h2 {
    font-size: var(--text-3xl);
  }

  h3 {
    font-size: var(--text-2xl);
  }

  .hero {
    min-height: 60vh;
  }

  .hero h1 {
    font-size: var(--text-4xl);
  }

  section {
    padding: var(--space-12) 0;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-8);
  }
}

@media (min-width: 1024px) {
  section {
    padding: var(--space-24) 0;
  }
}

/* ============================================================================
   18. ANIMATIONS
   ============================================================================ */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.animate-on-scroll {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fade {
  animation: fadeIn 0.6s ease-out;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* ============================================================================
   19. UTILITY CLASSES
   ============================================================================ */

/* -------- TEXT UTILITIES -------- */

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-xs {
  font-size: var(--text-xs);
}

.text-sm {
  font-size: var(--text-sm);
}

.text-base {
  font-size: var(--text-base);
}

.text-lg {
  font-size: var(--text-lg);
}

.text-xl {
  font-size: var(--text-xl);
}

.text-2xl {
  font-size: var(--text-2xl);
}

.text-3xl {
  font-size: var(--text-3xl);
}

.text-4xl {
  font-size: var(--text-4xl);
}

.text-5xl {
  font-size: var(--text-5xl);
}

.text-6xl {
  font-size: var(--text-6xl);
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

.font-normal {
  font-weight: 400;
}

.font-light {
  font-weight: 300;
}

.text-dark {
  color: var(--text-dark);
}

.text-light {
  color: var(--text-light);
}

.text-white {
  color: white;
}

.text-primary {
  color: var(--primary-blue);
}

.text-secondary {
  color: var(--primary-orange);
}

/* -------- MARGIN UTILITIES -------- */

.mt-2 {
  margin-top: var(--space-2);
}

.mt-4 {
  margin-top: var(--space-4);
}

.mt-6 {
  margin-top: var(--space-6);
}

.mt-8 {
  margin-top: var(--space-8);
}

.mt-12 {
  margin-top: var(--space-12);
}

.mb-2 {
  margin-bottom: var(--space-2);
}

.mb-4 {
  margin-bottom: var(--space-4);
}

.mb-6 {
  margin-bottom: var(--space-6);
}

.mb-8 {
  margin-bottom: var(--space-8);
}

.mb-12 {
  margin-bottom: var(--space-12);
}

/* -------- PADDING UTILITIES -------- */

.p-4 {
  padding: var(--space-4);
}

.p-6 {
  padding: var(--space-6);
}

.p-8 {
  padding: var(--space-8);
}

.px-4 {
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

.px-6 {
  padding-left: var(--space-6);
  padding-right: var(--space-6);
}

.py-4 {
  padding-top: var(--space-4);
  padding-bottom: var(--space-4);
}

.py-6 {
  padding-top: var(--space-6);
  padding-bottom: var(--space-6);
}

.py-8 {
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
}

/* -------- DISPLAY UTILITIES -------- */

.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

.block {
  display: block;
}

.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

/* -------- OPACITY UTILITIES -------- */

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

.opacity-100 {
  opacity: 1;
}

/* -------- BACKGROUND UTILITIES -------- */

.bg-primary {
  background-color: var(--primary-blue);
}

.bg-secondary {
  background-color: var(--primary-orange);
}

.bg-light {
  background-color: var(--off-white);
}

.bg-dark {
  background-color: var(--volcanic-dark);
}

/* ============================================================================
   20. FORM STYLES
   ============================================================================ */

input[type='text'],
input[type='email'],
input[type='password'],
input[type='search'],
textarea,
select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  font-family: var(--font-body);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

input[type='text']:focus,
input[type='email']:focus,
input[type='password']:focus,
input[type='search']:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(26, 143, 196, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

label {
  display: block;
  margin-bottom: var(--space-2);
  font-weight: 500;
  color: var(--text-dark);
}

.form-group {
  margin-bottom: var(--space-6);
}

.form-group:last-child {
  margin-bottom: 0;
}

/* ============================================================================
   21. SKIP LINK (ACCESSIBILITY)
   ============================================================================ */

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background-color: var(--primary-blue);
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  z-index: var(--z-modal);
  border-radius: var(--radius-md);
}

.skip-link:focus {
  top: 0;
}

/* ============================================================================
   22. PRINT STYLES
   ============================================================================ */

@media print {
  body {
    background-color: white;
    color: black;
  }

  header,
  footer,
  .no-print {
    display: none;
  }

  a {
    color: black;
    text-decoration: underline;
  }

  img {
    max-width: 100%;
    page-break-inside: avoid;
  }

  h1,
  h2,
  h3 {
    page-break-after: avoid;
  }

  p {
    page-break-inside: avoid;
  }
}

/* ============================================================================
   CLASS COMPATIBILITY ALIASES
   Ensures consistent styling regardless of class naming variations across pages
   ============================================================================ */

/* Header aliases — homepage uses .site-header/.header-container, CSS uses header/.header-wrapper */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  background-color: transparent;
  transition: background-color var(--transition-base), backdrop-filter var(--transition-base), padding var(--transition-base);
  padding: var(--space-4) 0;
}

.site-header.header-scrolled,
.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  padding: var(--space-2) 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-4);
  height: 70px;
}

@media (min-width: 768px) {
  .header-container {
    padding: 0 var(--space-8);
    height: 80px;
  }
}

/* Logo — ensure img inside logo renders well */
a.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

a.logo img {
  height: 50px;
  width: auto;
}

@media (min-width: 768px) {
  a.logo img {
    height: 60px;
  }
}

/* Nav list alias — homepage uses .nav-list, CSS uses .nav-menu */
.nav-list {
  display: none;
  list-style: none;
  align-items: center;
  gap: var(--space-1);
  margin: 0;
  padding: 0;
}

@media (min-width: 1024px) {
  .nav-list {
    display: flex;
    gap: var(--space-4);
  }
}

/* Main nav wrapper */
.main-nav {
  display: flex;
  align-items: center;
}

/* Nav item with dropdown */
.nav-item.dropdown {
  position: relative;
}

.nav-item.dropdown > .nav-link {
  cursor: pointer;
}

.nav-item.dropdown:hover > .dropdown-menu,
.nav-item.dropdown > .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-item.dropdown > .dropdown-menu {
  position: absolute;
  top: 100%;
  left: -12px;
  background: white;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  list-style: none;
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-base);
  margin-top: var(--space-2);
  z-index: var(--z-dropdown);
  padding: 8px 0;
}

.nav-item.dropdown .dropdown-menu li {
  list-style: none;
}

.nav-item.dropdown .dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: var(--text-dark);
  border-radius: 8px;
  margin: 2px 8px;
  font-size: var(--text-sm);
  transition: background-color var(--transition-fast), color var(--transition-fast);
  text-decoration: none;
}

.nav-item.dropdown .dropdown-item i {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--primary-blue);
  font-size: 12px;
  background: rgba(26, 143, 196, 0.1);
  border-radius: 6px;
  flex-shrink: 0;
}

.nav-item.dropdown .dropdown-item:hover {
  background-color: rgba(26, 143, 196, 0.08);
  color: var(--primary-blue);
}

.nav-item.dropdown .dropdown-item:hover i {
  background: rgba(26, 143, 196, 0.18);
}

/* Header actions (CTA button + hamburger) */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.nav-cta {
  display: none;
}

@media (min-width: 1024px) {
  .nav-cta {
    display: inline-flex;
  }
}

/* Hamburger for mobile */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: calc(var(--z-fixed) + 1);
}

@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.site-header.header-scrolled .hamburger span {
  background-color: var(--text-dark);
}

/* Hamburger animation to X */
.site-header.nav-open .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.site-header.nav-open .hamburger span:nth-child(2) {
  opacity: 0;
}
.site-header.nav-open .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav slide-in */
.site-header.nav-open .nav-list {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: white;
  padding: 80px var(--space-6) var(--space-6);
  box-shadow: var(--shadow-xl);
  z-index: var(--z-fixed);
  gap: 0;
  overflow-y: auto;
}

.site-header.nav-open .nav-item {
  width: 100%;
}

.site-header.nav-open .nav-link {
  display: block;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--border-color);
  font-size: var(--text-lg);
}

.site-header.nav-open .dropdown-menu {
  position: static;
  box-shadow: none;
  opacity: 1;
  visibility: visible;
  transform: none;
  padding-left: var(--space-4);
  display: none;
  min-width: auto;
}

.site-header.nav-open .dropdown.active .dropdown-menu {
  display: block;
}

/* ============================================================================
   HERO SECTION (Homepage + Landing Pages)
   ============================================================================ */

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #0f3460 0%, #16213e 20%, #1a1a2e 40%, #5c2d91 60%, #ff6b35 80%, #ffd166 100%);
  background-size: 200% 200%;
  animation: heroGradient 15s ease infinite;
  overflow: hidden;
}

@keyframes heroGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--space-8) var(--space-4);
  max-width: 800px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: white;
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-5);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-8);
  line-height: var(--line-height-relaxed);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* ============================================================================
   SECTION STYLES
   ============================================================================ */

.section {
  padding: var(--space-16) 0;
}

.section-light {
  background-color: var(--off-white);
}

.section-sand {
  background-color: var(--sand-light);
}

.section-cta {
  background: linear-gradient(160deg, #0a1f3f 0%, #0f3460 35%, #1a6fa0 70%, #1a8fc4 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.section-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.section-newsletter {
  background: linear-gradient(135deg, var(--primary-orange), var(--gold));
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--volcanic-dark);
  margin-bottom: var(--space-3);
}

.section-title.text-white,
.text-white {
  color: white;
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-subtitle.text-white {
  color: rgba(255, 255, 255, 0.85);
}

/* ============================================================================
   ISLAND GRID
   ============================================================================ */

.island-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (min-width: 768px) {
  .island-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

/* ---- Island Card Base ---- */
.island-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-decoration: none;
  color: white;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* All cards same height within their row */
  min-height: 340px;
}

.island-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

/* Remove separate lg/sm heights — all cards are uniform */
.island-card-lg,
.island-card-sm {
  min-height: 340px;
}

@media (min-width: 768px) {
  .island-card-lg,
  .island-card-sm {
    min-height: 340px;
  }
}

/* ---- Background gradient ---- */
.island-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* ---- Archipelago mini-map ---- */
.island-card-map {
  position: absolute;
  z-index: 1;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 88%;
  max-width: 420px;
  height: auto;
  aspect-ratio: 2 / 1;
  pointer-events: none;
  transition: transform 0.45s ease, opacity 0.45s ease;
  opacity: 1;
}

.island-card:hover .island-card-map {
  transform: translateX(-50%) scale(1.04);
}

.island-card-map svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Background islands (dimmed) */
.island-map-bg {
  fill: rgba(255, 255, 255, 0.12);
  transition: fill 0.4s ease;
}

.island-card:hover .island-map-bg {
  fill: rgba(255, 255, 255, 0.18);
}

/* Highlighted island (featured) */
.island-map-highlight {
  fill: rgba(255, 255, 255, 0.85);
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.4));
  transition: fill 0.4s ease, filter 0.4s ease;
}

.island-card:hover .island-map-highlight {
  fill: white;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
}

/* Small cards: adjust map */
.island-card-sm .island-card-map {
  top: 12px;
  width: 85%;
  max-width: 380px;
}

/* ---- Dark overlay for text readability ---- */
.island-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.55) 35%,
    rgba(0, 0, 0, 0.08) 65%,
    transparent 100%
  );
  z-index: 2;
}

/* ---- Card text content ---- */
.island-card-content {
  position: relative;
  z-index: 3;
  padding: 20px 24px;
  width: 100%;
}

.island-card-content h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: 2px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
  color: white;
  line-height: 1.2;
}

.island-card-tagline {
  font-size: var(--text-sm);
  opacity: 0.85;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  margin-bottom: 12px;
  font-weight: 400;
  letter-spacing: 0.02em;
  font-style: italic;
}

/* ---- Highlight chips ---- */
.island-card-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.island-card-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  letter-spacing: 0.02em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.island-card:hover .island-card-highlights span {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.3);
}

.island-card-highlights span i {
  font-size: 10px;
  opacity: 0.9;
}

/* ---- CTA link ---- */
.island-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: white;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s;
  letter-spacing: 0.01em;
}

.island-card:hover .island-card-cta {
  opacity: 1;
  transform: translateY(0);
}

.island-card-cta i {
  font-size: 11px;
  transition: transform 0.25s ease;
}

.island-card:hover .island-card-cta i {
  transform: translateX(5px);
}

/* ---- Small card adjustments ---- */
.island-card-sm .island-card-content {
  padding: 16px 20px;
}

.island-card-sm .island-card-content h3 {
  font-size: var(--text-xl);
}

.island-card-sm .island-card-highlights span {
  font-size: 10px;
  padding: 4px 9px;
}

/* ---- Mobile responsive ---- */
@media (max-width: 767px) {
  .island-card,
  .island-card-lg,
  .island-card-sm {
    min-height: 280px;
  }
  .island-card-sm .island-card-highlights {
    display: none;
  }
  .island-card-cta {
    opacity: 1;
    transform: translateY(0);
  }
  .island-card-map {
    width: 80%;
    top: 10px;
  }
}

/* Generic fallback for .island-card-content p */
.island-card-content p {
  font-size: var(--text-sm);
  opacity: 0.9;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* ============================================================================
   ARTICLE CARDS
   ============================================================================ */

.card-grid {
  display: grid;
  gap: var(--space-6);
}

.card-grid-3 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .card-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .card-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}

.card-image {
  height: 180px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SVG illustration in card image */
.card-image-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transition: transform 0.6s ease;
}

.card:hover .card-image-svg {
  transform: scale(1.06);
}

/* Legacy icon fallback */
.card-image-icon {
  font-size: 72px;
  color: rgba(255, 255, 255, 0.15);
  position: absolute;
  bottom: -8px;
  right: 12px;
  transition: transform 0.5s ease, color 0.5s ease;
  pointer-events: none;
}

.card:hover .card-image-icon {
  transform: scale(1.12) rotate(-5deg);
  color: rgba(255, 255, 255, 0.25);
}

.card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: white;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2;
}

.tag-activities { background: rgba(26, 143, 196, 0.85); }
.tag-beaches { background: rgba(0, 119, 182, 0.85); }
.tag-food { background: rgba(180, 83, 9, 0.85); }
.tag-planning { background: rgba(45, 106, 79, 0.85); }
.tag-hiking { background: rgba(56, 118, 29, 0.85); }
.tag-accommodation { background: rgba(15, 52, 96, 0.85); }
.tag-adventures { background: rgba(15, 52, 96, 0.85); }
.tag-experiences { background: rgba(75, 48, 120, 0.85); }

.card-body {
  padding: 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-2);
  line-height: 1.3;
}

.card-title a {
  color: var(--volcanic-dark);
  text-decoration: none;
  transition: color 0.25s ease;
}

.card-title a:hover {
  color: var(--primary-blue);
}

.card-excerpt {
  font-size: var(--text-sm);
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: var(--space-4);
  flex: 1;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
  color: var(--text-light);
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.card-island {
  font-weight: 600;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  gap: 5px;
}

.card-island i {
  font-size: 10px;
}

.card-read-time {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

/* ============================================================================
   CATEGORY GRID (What Are You Looking For?)
   ============================================================================ */

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.category-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  text-align: center;
  text-decoration: none;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.category-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
  margin: 0 auto var(--space-4);
}

.category-card h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.category-card p {
  font-size: var(--text-sm);
  color: var(--text-light);
}

/* ============================================================================
   PLANNING CARDS (Plan Your Trip CTA)
   ============================================================================ */

.planning-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}

@media (min-width: 768px) {
  .planning-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.planning-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  text-align: center;
  color: white;
  transition: background var(--transition-base), transform var(--transition-base);
}

.planning-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.planning-icon {
  font-size: 2.2rem;
  margin-bottom: var(--space-3);
  color: var(--gold);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  margin-left: auto;
  margin-right: auto;
}

.planning-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.planning-card p {
  font-size: var(--text-sm);
  opacity: 0.75;
  line-height: 1.5;
}

/* ============================================================================
   NEWSLETTER
   ============================================================================ */

.newsletter-box {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  color: white;
}

.newsletter-box h2 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: white;
}

.newsletter-box > p {
  font-size: var(--text-lg);
  margin-bottom: var(--space-6);
  opacity: 0.9;
}

.newsletter-form {
  margin-bottom: var(--space-3);
}

.newsletter-input-group {
  display: flex;
  gap: var(--space-2);
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-input-group input[type="email"] {
  flex: 1;
  padding: var(--space-3) var(--space-4);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.95);
  font-size: var(--text-base);
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--transition-fast);
}

.newsletter-input-group input[type="email"]:focus {
  border-color: white;
}

.newsletter-input-group .btn {
  white-space: nowrap;
}

.newsletter-privacy {
  font-size: var(--text-xs);
  opacity: 0.75;
  color: white;
}

@media (max-width: 480px) {
  .newsletter-input-group {
    flex-direction: column;
  }
}

/* ============================================================================
   FOOTER
   ============================================================================ */

.site-footer {
  background-color: var(--volcanic-dark);
  color: rgba(255, 255, 255, 0.8);
}

.footer-main {
  padding: var(--space-12) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-about p {
  font-size: var(--text-sm);
  line-height: var(--line-height-relaxed);
  margin-top: var(--space-3);
}

.footer-logo img {
  height: 50px;
  width: auto;
}

.footer-col h4 {
  color: white;
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-4);
}

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

.footer-col ul li {
  margin-bottom: var(--space-2);
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}

.footer-col ul a:hover {
  color: var(--primary-orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-5) 0;
  text-align: center;
  font-size: var(--text-xs);
}

.footer-bottom p {
  margin-bottom: var(--space-2);
}

.affiliate-disclosure {
  opacity: 0.6;
}

/* ============================================================================
   BUTTONS
   ============================================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-base);
  font-weight: 600;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-base);
  font-family: var(--font-body);
  line-height: 1;
}

.btn-primary {
  background: var(--primary-blue);
  color: white;
  border-color: var(--primary-blue);
}

.btn-primary:hover {
  background: #157ab0;
  border-color: #157ab0;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--primary-orange);
  color: white;
  border-color: var(--primary-orange);
}

.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
}

.btn-cta {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
  color: white;
  border: none;
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-lg);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 143, 196, 0.4);
}

.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-lg);
}

/* ============================================================================
   BACK TO TOP
   ============================================================================ */

.back-to-top {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--primary-blue);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  z-index: var(--z-fixed);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #157ab0;
  transform: translateY(-3px);
}

/* ============================================================================
   BREADCRUMBS
   ============================================================================ */

.breadcrumb {
  padding: var(--space-3) 0;
  font-size: var(--text-sm);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.breadcrumb-list li::after {
  content: '›';
  margin-left: var(--space-2);
  color: var(--text-light);
}

.breadcrumb-list li:last-child::after {
  display: none;
}

.breadcrumb-list a {
  color: var(--primary-blue);
  text-decoration: none;
}

.breadcrumb-list a:hover {
  text-decoration: underline;
}

/* ============================================================================
   UTILITY CLASSES
   ============================================================================ */

.text-center { text-align: center; }
.text-white { color: white; }

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-8);
  }
}

/* Animate on scroll */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================================
   ISLAND LANDING PAGE — HERO VARIANT
   ============================================================================ */

.hero-island {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-8);
}

.hero-island .hero-content {
  text-align: left;
  padding-top: 120px;
}

/* ============================================================================
   COMING SOON CARD OVERLAY
   ============================================================================ */

.card-coming-soon {
  position: relative;
}

.card-coming-soon .card-image::after {
  content: 'Coming Soon';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================================
   FORMS
   ============================================================================ */

.form-group {
  margin-bottom: var(--space-4);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--text-dark);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  font-size: var(--text-base);
  font-family: var(--font-body);
  color: var(--text-dark);
  background: white;
  transition: border-color var(--transition-fast);
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--primary-blue);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* ============================================================================
   LEGAL PAGE STYLES
   ============================================================================ */

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-8) var(--space-4);
}

.legal-content h2 {
  font-size: var(--text-2xl);
  margin-top: var(--space-8);
  margin-bottom: var(--space-4);
  color: var(--volcanic-dark);
}

.legal-content p {
  margin-bottom: var(--space-4);
  line-height: var(--line-height-relaxed);
}

.legal-content ul {
  margin-bottom: var(--space-4);
  padding-left: var(--space-6);
}

.legal-content li {
  margin-bottom: var(--space-2);
  line-height: var(--line-height-normal);
}
