/* ==========================================================================
   ALASKA AIRLINES DEALS & RESERVATIONS - MODERN DESIGN SYSTEM
   ========================================================================== */

:root {
  --primary-navy: #00205B;
  --primary-navy-dark: #00133A;
  --primary-navy-light: #0B2C6E;
  --brand-teal: #00857C;
  --brand-teal-light: #00A398;
  --accent-cyan: #00A9E0;
  --accent-gold: #FFB81C;
  --accent-gold-hover: #E09F0A;
  --accent-electric: #1414D2;

  --bg-main: #F4F7FB;
  --bg-surface: #FFFFFF;
  --bg-surface-elevated: #FFFFFF;
  --bg-navy-gradient: linear-gradient(135deg, #00205B 0%, #00133A 100%);
  --bg-hero-gradient: linear-gradient(160deg, #00205B 0%, #003380 50%, #001844 100%);

  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #64748B;
  --text-white: #FFFFFF;
  --text-white-muted: #E2E8F0;

  --border-light: #E2E8F0;
  --border-focus: #00A9E0;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(0, 32, 91, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 32, 91, 0.08);
  --shadow-lg: 0 16px 40px rgba(0, 32, 91, 0.12);
  --shadow-xl: 0 24px 60px rgba(0, 32, 91, 0.18);
  --shadow-glow: 0 0 25px rgba(0, 169, 224, 0.4);
  --shadow-gold-glow: 0 0 25px rgba(255, 184, 28, 0.4);

  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Work Sans', sans-serif;

  --transition-fast: 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 74px;
  /* Space for sticky bar */
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

button,
input,
select {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   TOP HOTLINE BAR
   ========================================================================== */
.top-bar {
  background: #001438;
  color: #FFFFFF;
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.badge-pulse {
  background: var(--accent-gold);
  color: var(--primary-navy-dark);
  font-size: 11px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.5px;
}

.top-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all var(--transition-fast);
}

.top-phone-link:hover {
  background: var(--accent-gold);
  color: var(--primary-navy-dark);
  border-color: var(--accent-gold);
}

.top-phone-link i {
  color: var(--accent-gold);
}

.top-phone-link:hover i {
  color: var(--primary-navy-dark);
}

/* ==========================================================================
   HEADER NAVIGATION
   ========================================================================== */
.site-header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  /* border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(0, 32, 91, 0.04);
  transition: all var(--transition-smooth); */
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-symbol {
  width: 44px;
  height: 44px;
  background: var(--bg-navy-gradient);
  color: #FFFFFF;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(0, 32, 91, 0.2);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  color: var(--primary-navy);
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.brand-tag {
  font-size: 11px;
  font-weight: 800;
  color: var(--brand-teal);
  letter-spacing: 1.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-item {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 8px 0;
  position: relative;
}

.nav-item:hover,
.nav-item.active {
  color: var(--primary-navy);
}

.nav-item.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-navy);
  border-radius: var(--radius-full);
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.desk-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: #EAF8F6;
  border: 1px solid #B8EBE6;
  border-radius: var(--radius-full);
}

.status-dot {
  width: 9px;
  height: 9px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
  }

  70% {
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.desk-info {
  display: flex;
  flex-direction: column;
}

.desk-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1.2;
}

.desk-status {
  font-size: 10.5px;
  font-weight: 600;
  color: #047857;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  transition: all var(--transition-smooth);
  text-align: center;
}

.call-btn {
  font-size: 20px;
}

.btn-call-header {
  background: var(--primary-navy);
  color: #FFFFFF;
  font-size: 16.5px;
  box-shadow: 0 4px 14px rgba(0, 32, 91, 0.25);
}

.btn-call-header:hover {
  background: var(--primary-navy-dark);
  color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 32, 91, 0.35);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 24px;
  color: var(--primary-navy);
  cursor: pointer;
}

/* ==========================================================================
   HERO & BOOKING SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  background: var(--bg-hero-gradient);
  color: #FFFFFF;
  padding: 60px 0 80px;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(0, 169, 224, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(0, 133, 124, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.gradient-text {
  background: linear-gradient(135deg, #FFFFFF 0%, #A5F3FC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-white-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.hero-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14.5px;
  font-weight: 600;
  color: #FFFFFF;
}

.perk-item i {
  color: #34D399;
  font-size: 16px;
}

/* ==========================================================================
   HERO CTA & ALASKA AIRLINE IMAGE SHOWCASE
   ========================================================================== */
.hero-cta-group {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.btn-hero-call {
  background: linear-gradient(135deg, #00A9E0 0%, #00857C 100%);
  color: #FFFFFF;
  font-size: 19.5px;
  font-weight: 800;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 25px rgba(0, 169, 224, 0.4), 0 0 20px rgba(0, 133, 124, 0.3);
  transition: all var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.25);
  text-decoration: none;
}

.btn-hero-call i {
  font-size: 22px;
  color: var(--accent-gold);
  animation: gentle-ring 2.5s infinite;
}

@keyframes gentle-ring {

  0%,
  100% {
    transform: rotate(0);
  }

  10%,
  30% {
    transform: rotate(-15deg);
  }

  20%,
  40% {
    transform: rotate(15deg);
  }

  50% {
    transform: rotate(0);
  }
}

.btn-hero-call:hover {
  background: linear-gradient(135deg, #00B8F5 0%, #009E94 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 32px rgba(0, 169, 224, 0.5), 0 0 25px rgba(255, 209, 0, 0.4);
  color: #FFFFFF;
}

.hero-cta-subtext {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-white-muted);
  font-weight: 600;
}

.pulse-indicator {
  width: 8px;
  height: 8px;
  background: #34D399;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
  animation: pulse-green 1.8s infinite;
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(52, 211, 153, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0);
  }
}

/* Alaska Airlines Image Showcase */
.hero-image-showcase {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-image-card {
  position: relative;
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 20, 56, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.15);
  background: #001A4A;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(0, 20, 56, 0.6), 0 0 0 1.5px rgba(0, 169, 224, 0.4);
}

.hero-alaska-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.hero-image-card:hover .hero-alaska-img {
  transform: scale(1.04);
}

.hero-image-glass-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 32, 91, 0.05) 0%, rgba(0, 20, 56, 0.4) 100%);
  pointer-events: none;
}

.hero-floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-primary);
  padding: 12px 18px;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 30px rgba(0, 20, 56, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  animation: float-gentle 4s ease-in-out infinite alternate;
  z-index: 3;
}

.hero-floating-card.top-card {
  top: 24px;
  left: 24px;
}

.hero-floating-card.bottom-card {
  bottom: 24px;
  right: 24px;
  animation-delay: 2s;
}

@keyframes float-gentle {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-8px);
  }
}

.hero-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--bg-navy-gradient);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.hero-card-icon.phone-icon {
  background: linear-gradient(135deg, #00857C 0%, #00A9E0 100%);
  color: #FFFFFF;
}

.hero-card-info {
  display: flex;
  flex-direction: column;
}

.hero-card-info strong {
  font-size: 14px;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.2;
}

.hero-card-info span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

/* ==========================================================================
   BOOKING CARD (GLASSMORPHIC / MODERN - PRESERVED UTILITY)
   ========================================================================== */
.booking-card {
  background: #FFFFFF;
  color: var(--text-primary);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.booking-card-header {
  background: #F8FAFC;
  border-bottom: 1px solid var(--border-light);
  padding: 6px;
}

.tab-buttons {
  display: flex;
  gap: 6px;
}

.tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.tab-btn.active {
  background: #FFFFFF;
  color: var(--primary-navy);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.tab-btn:hover:not(.active) {
  background: rgba(0, 0, 0, 0.04);
}

.booking-card-body {
  padding: 24px;
}

.trip-type-selector {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
}

.radio-label input {
  display: none;
}

.custom-radio {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border-light);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  transition: all var(--transition-fast);
}

.radio-label input:checked+.custom-radio {
  border-color: var(--primary-navy);
  background: var(--primary-navy);
}

.radio-label input:checked+.custom-radio::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: #FFFFFF;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.route-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.input-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.input-field-group label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.input-wrapper {
  position: relative;
}

.input-wrapper input,
.date-input,
.select-input {
  width: 100%;
  padding: 13px 14px;
  background: #F8FAFC;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.input-wrapper input:focus,
.date-input:focus,
.select-input:focus {
  background: #FFFFFF;
  border-color: var(--accent-cyan);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 169, 224, 0.15);
}

.airport-code {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: 800;
  background: #E2E8F0;
  color: var(--primary-navy);
  padding: 2px 6px;
  border-radius: 6px;
}

.swap-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #F1F5F9;
  border: 1.5px solid var(--border-light);
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-top: 20px;
  transition: all var(--transition-fast);
}

.swap-btn:hover {
  background: var(--primary-navy);
  color: #FFFFFF;
  transform: rotate(180deg);
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 12px;
  margin-bottom: 20px;
}

/* Quote Callout */
.quote-callout {
  background: #EFF6FF;
  border: 1.5px dashed #93C5FD;
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.quote-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.quote-tag {
  font-size: 11px;
  font-weight: 800;
  color: #1D4ED8;
  letter-spacing: 0.5px;
}

.quote-left p {
  font-size: 13px;
  color: var(--text-secondary);
}

.btn-phone-action {
  background: #2563EB;
  color: #FFFFFF;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
  transition: all var(--transition-fast);
}

.btn-phone-action:hover {
  background: #1D4ED8;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}

.btn-phone-action i {
  font-size: 20px;
  color: var(--accent-gold);
}

.btn-micro {
  font-size: 9.5px;
  font-weight: 800;
  opacity: 0.9;
  letter-spacing: 0.5px;
  display: block;
}

.btn-macro {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
  display: block;
}

.action-row .btn-primary {
  width: 100%;
  background: var(--bg-navy-gradient);
  color: #FFFFFF;
  font-size: 16px;
  padding: 15px;
  border-radius: var(--radius-md);
}

.action-row .btn-primary:hover {
  background: #00133A;
  color: var(--accent-gold);
}

.booking-card-footer {
  background: #F8FAFC;
  border-top: 1px solid var(--border-light);
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.booking-card-footer span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.booking-card-footer i {
  color: var(--brand-teal);
}

/* ==========================================================================
   SERVICES RIBBON
   ========================================================================== */
.services-ribbon {
  padding: 60px 0;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-cyan);
}

.service-card.highlighted {
  background: #F0FDF9;
  border-color: #99F6E4;
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary-navy);
  box-shadow: 0 4px 12px rgba(0, 32, 91, 0.08);
}

.service-card.highlighted .service-icon-wrap {
  background: var(--brand-teal);
  color: #FFFFFF;
}

.service-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.service-info p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
}

.service-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-link:hover {
  color: var(--primary-navy);
  gap: 10px;
}

/* ==========================================================================
   ABOUT US SECTION
   ========================================================================== */
.about-section {
  padding: 90px 0;
  background: #FFFFFF;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.image-showcase {
  position: relative;
}

.image-card.main-img {
  background: var(--bg-navy-gradient);
  border-radius: var(--radius-xl);
  height: 420px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 20, 56, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.image-card.main-img:hover .about-real-img {
  transform: scale(1.04);
}

.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 32, 91, 0.05) 0%, rgba(0, 20, 56, 0.45) 100%);
  pointer-events: none;
}

.about-floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.96);
  padding: 12px 18px;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 30px rgba(0, 20, 56, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  z-index: 3;
  animation: float-gentle 4s ease-in-out infinite alternate;
}

.about-floating-badge.top-right {
  top: 24px;
  right: 24px;
}

.about-floating-badge.bottom-left {
  bottom: 24px;
  left: 24px;
  animation-delay: 2s;
}

.about-badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--bg-navy-gradient);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.about-badge-icon.star-icon {
  background: linear-gradient(135deg, #FFB81C 0%, #D97706 100%);
  color: #FFFFFF;
}

.about-badge-info {
  display: flex;
  flex-direction: column;
}

.about-badge-info strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.2;
}

.about-badge-info span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

.about-cta {
  margin-top: 24px;
}

.btn-about-call {
  background: var(--bg-navy-gradient);
  color: #FFFFFF;
  font-size: 17.5px;
  font-weight: 800;
  padding: 15px 32px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0, 32, 91, 0.25);
  border: 1px solid rgba(0, 169, 224, 0.3);
  transition: all var(--transition-smooth);
  text-decoration: none;
}

.btn-about-call i {
  color: var(--accent-gold);
  font-size: 19px;
}

.btn-about-call:hover {
  background: var(--primary-navy-dark);
  color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 32, 91, 0.35);
}

.section-tag {
  font-size: 12px;
  font-weight: 800;
  color: var(--brand-teal);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: inline-block;
}

.section-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.2;
  margin-bottom: 18px;
}

.support-number-box {
  background: #F0F4F8;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.support-number-box i {
  font-size: 28px;
  color: var(--primary-navy);
}

.box-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
}

.box-number {
  font-size: 24px;
  font-weight: 900;
  color: var(--primary-navy);
}

.box-number:hover {
  color: var(--brand-teal);
}

.about-desc {
  font-size: 16.5px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 14px;
}

.about-subdesc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.about-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 28px;
}

.about-feature {
  display: flex;
  gap: 12px;
}

.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #EAF8F6;
  color: var(--brand-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.about-feature h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 2px;
}

.about-feature p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   TAKEOFF BANNER
   ========================================================================== */
.takeoff-banner {
  padding: 30px 0;
}

.takeoff-card {
  background: var(--bg-navy-gradient);
  border-radius: var(--radius-xl);
  padding: 50px 40px;
  color: #FFFFFF;
  text-align: center;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.takeoff-content {
  max-width: 720px;
  margin: 0 auto;
}

.takeoff-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 12px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.takeoff-title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 12px;
}

.takeoff-subtitle {
  font-size: 16px;
  color: var(--text-white-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.takeoff-action-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.btn-takeoff-call {
  background: var(--accent-gold);
  color: var(--primary-navy-dark);
  font-size: 18px;
  font-weight: 800;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 20px rgba(255, 184, 28, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all var(--transition-fast);
}

.btn-takeoff-call:hover {
  background: #FFFFFF;
  color: var(--primary-navy);
  transform: scale(1.03);
}

.takeoff-note {
  font-size: 13px;
  color: var(--text-white-muted);
}

.takeoff-note i {
  color: #34D399;
}

/* ==========================================================================
   ADVENTURES & DEALS SECTION
   ========================================================================== */
.adventures-section {
  padding: 90px 0;
  background: var(--bg-main);
}

.section-header-center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}

.accent-text {
  color: var(--primary-navy);
  position: relative;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
}

.adventures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.adventure-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
}

.adventure-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-cyan);
}

.adv-image-wrap {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.adv-bg {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.adv-bg-1 {
  background: linear-gradient(135deg, #00205B 0%, #1414D2 100%);
}

.adv-bg-2 {
  background: linear-gradient(135deg, #00857C 0%, #00205B 100%);
}

.adv-bg-3 {
  background: linear-gradient(135deg, #00A9E0 0%, #00205B 100%);
}

.adventure-card:hover .adv-bg {
  transform: scale(1.06);
}

.adv-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary-navy);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
}

.adv-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.adv-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 10px;
}

.adv-desc {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}

.btn-outline-adv {
  width: 100%;
  background: #F8FAFC;
  border: 1.5px solid var(--border-light);
  color: var(--primary-navy);
  font-weight: 700;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.btn-outline-adv:hover {
  background: var(--primary-navy);
  color: #FFFFFF;
  border-color: var(--primary-navy);
}

/* ==========================================================================
   POPULAR ROUTES & FARES TABLE
   ========================================================================== */
.routes-section {
  padding: 80px 0;
  background: #FFFFFF;
}

.routes-table-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.table-responsive {
  overflow-x: auto;
}

.deals-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.deals-table th {
  background: #F8FAFC;
  padding: 16px 24px;
  font-size: 12px;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.8px;
  border-bottom: 1px solid var(--border-light);
}

.deals-table td {
  padding: 20px 24px;
  font-size: 14.5px;
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
}

.route-city strong {
  display: block;
  font-size: 16px;
  color: var(--primary-navy);
  margin-bottom: 2px;
}

.route-city strong i {
  color: var(--brand-teal);
  margin: 0 4px;
  font-size: 14px;
}

.route-city span {
  font-size: 13px;
  color: var(--text-muted);
}

.fare-price {
  font-size: 22px;
  font-weight: 800;
  color: #047857;
}

.btn-table-call {
  background: var(--primary-navy);
  color: #FFFFFF;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-fast);
}

.btn-table-call:hover {
  background: var(--brand-teal);
  color: #FFFFFF;
}

.table-disclaimer {
  padding: 14px 24px;
  background: #F8FAFC;
  font-size: 12px;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
  padding: 80px 0;
  background: var(--bg-main);
}

.faq-accordion-wrap {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: 16.5px;
  font-weight: 700;
  color: var(--primary-navy);
  cursor: pointer;
}

.faq-question i {
  font-size: 14px;
  color: var(--text-muted);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--brand-teal);
}

.faq-answer {
  padding: 0 24px 20px;
  display: none;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #00133A;
  color: #FFFFFF;
  padding: 70px 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-desc {
  font-size: 14px;
  color: var(--text-white-muted);
  line-height: 1.6;
  margin: 16px 0 24px;
}

.footer-contact-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-contact-card i {
  font-size: 24px;
  color: var(--accent-gold);
}

.footer-contact-card span {
  display: block;
  font-size: 11px;
  color: var(--text-white-muted);
}

.footer-contact-card a {
  font-size: 18px;
  font-weight: 800;
  color: #FFFFFF;
}

.footer-contact-card a:hover {
  color: var(--accent-gold);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-white-muted);
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.badge-item {
  font-size: 13.5px;
  color: var(--text-white-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-item i {
  color: var(--brand-teal-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.disclaimer {
  max-width: 600px;
  font-size: 11px;
  line-height: 1.4;
}

/* ==========================================================================
   STICKY BOTTOM CALL BAR
   ========================================================================== */
.sticky-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #00133A;
  border-top: 2px solid var(--accent-gold);
  padding: 10px 0;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
}

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

.sticky-left {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #FFFFFF;
}

.pulse-call-icon {
  width: 42px;
  height: 42px;
  background: var(--accent-gold);
  color: var(--primary-navy-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 184, 28, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(255, 184, 28, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 184, 28, 0);
  }
}

.sticky-heading {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #FFFFFF;
}

.sticky-sub {
  display: block;
  font-size: 12px;
  color: var(--text-white-muted);
}

.btn-sticky-call {
  background: var(--accent-gold);
  color: var(--primary-navy-dark);
  font-size: 16.5px;
  font-weight: 800;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(255, 184, 28, 0.4);
}

.btn-sticky-call:hover {
  background: #FFFFFF;
  color: var(--primary-navy);
}

/* ==========================================================================
   MODAL
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 20, 58, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-card {
  background: #FFFFFF;
  width: 100%;
  max-width: 580px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  animation: modal-pop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modal-pop {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-header {
  padding: 20px 24px;
  background: #F8FAFC;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-close {
  background: transparent;
  border: none;
  font-size: 20px;
  color: var(--text-muted);
  cursor: pointer;
}

.modal-body {
  padding: 24px;
  max-height: 400px;
  overflow-y: auto;
}

.modal-footer {
  padding: 16px 24px;
  background: #F8FAFC;
  border-top: 1px solid var(--border-light);
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .about-container {
    grid-template-columns: 1fr;
  }

  .image-card.main-img {
    height: 320px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 66px;
    padding-bottom: 74px;
  }

  .top-bar {
    display: none;
  }

  .nav-links {
    display: none;
  }

  /* Fixed Top Header with Call Now button in mobile view */
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    /* background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 15px rgba(0, 32, 91, 0.08); */
  }

  /* Header in mobile: remove alaska dealz & flights text, cta call button takes full width */
  .brand-logo {
    display: none !important;
  }

  .nav-container {
    /* height: 62px;
    padding: 0 16px; */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: linear-gradient(370deg, #00205B 0%, #003380 50%, #001844 100%);
  }

  .mobile-toggle {
    display: none !important;
  }

  .header-cta-group {
    display: flex;
    width: 100%;
    margin: 0;
  }

  .header-cta-group .desk-indicator {
    display: none !important;
  }

  .btn-call-header {
    width: 100%;
    justify-content: center;
    padding: 13px 18px;
    font-size: 17px;
    font-weight: 800;
    gap: 10px;
    white-space: nowrap;
    border-radius: var(--radius-full);
    background: var(--bg-navy-gradient);
    border: 1.5px solid var(--accent-gold);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(0, 32, 91, 0.35);
  }

  .btn-call-header i {
    font-size: 17px;
    color: var(--accent-gold);
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-cta-group {
    align-items: stretch;
    width: 100%;
    margin-top: 24px;
    margin-bottom: 8px;
  }

  .btn-hero-call {
    width: 100%;
    max-width: 100%;
    font-size: 17.5px;
    padding: 15px 20px;
    justify-content: center;
  }

  .hero-cta-subtext {
    justify-content: center;
    font-size: 12px;
    text-align: center;
  }

  .hero-alaska-img {
    height: 280px;
  }

  .hero-floating-card {
    padding: 8px 12px;
    gap: 8px;
  }

  .hero-card-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
    border-radius: 8px;
  }

  .hero-card-info strong {
    font-size: 12px;
  }

  .hero-card-info span {
    font-size: 10.5px;
  }

  .hero-floating-card.top-card {
    top: 12px;
    left: 12px;
  }

  .hero-floating-card.bottom-card {
    bottom: 12px;
    right: 12px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-features-grid {
    grid-template-columns: 1fr;
  }

  .image-card.main-img {
    height: 280px;
  }

  .about-floating-badge {
    padding: 8px 12px;
    gap: 8px;
  }

  .about-badge-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
    border-radius: 8px;
  }

  .about-badge-info strong {
    font-size: 12px;
  }

  .about-badge-info span {
    font-size: 10.5px;
  }

  .about-floating-badge.top-right {
    top: 12px;
    right: 12px;
  }

  .about-floating-badge.bottom-left {
    bottom: 12px;
    left: 12px;
  }

  .about-cta .btn-about-call {
    width: 100%;
    justify-content: center;
  }

  /* Remove footer in mobile view */
  .site-footer {
    display: none !important;
  }

  /* Sticky call bar: fixed bottom full-width button */
  .sticky-call-bar {
    padding: 10px 16px;
    background: rgba(0, 19, 58, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 2px solid var(--accent-gold);
  }

  .sticky-bar-inner {
    justify-content: center;
    width: 100%;
  }

  .sticky-left {
    display: none !important;
  }

  .sticky-right {
    width: 100%;
  }

  .btn-sticky-call {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 17.5px;
    font-weight: 800;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 16px rgba(255, 184, 28, 0.5);
  }

  .sticky-sub {
    display: none;
  }
}