/* ============================================
   LUCON - Modern CSS with Animations
   Professional, Trust-Building Design
   ============================================ */

/* === ROOT VARIABLES === */
:root {
  /* Brand Colors - Matching Flutter App Exactly */
  --deep-teal: #004D61;
  --mid-teal: #007F91;
  --bright-teal: #26C6DA;
  --coral: #FF6B4A;
  --coral-deep: #E64A19;
  --sand: #FAF5E6;
  --gold: #FFD700;
  
  /* Semantic Mappings */
  --primary: var(--deep-teal);
  --primary-dark: #003847;
  --primary-light: var(--bright-teal);
  --secondary: var(--coral);
  --secondary-dark: var(--coral-deep);
  
  /* Neutrals */
  --ink: #1A1A1A;
  --navy: #004D61;
  --slate: #505050;
  --muted: #6B7280;
  --soft: #FAF5E6;
  --softer: #FAFAFA;
  --line: #E5E7EB;
  --white: #FFFFFF;
  
  /* Semantic Colors */
  --success: #2E7D32;
  --warning: #FFCA28;
  --error: #ef4444;
  --info: #26C6DA;
  
  /* Gradients - Caribbean Beach Theme */
  --gradient-primary: linear-gradient(135deg, var(--deep-teal), var(--mid-teal));
  --gradient-secondary: linear-gradient(135deg, var(--coral), var(--coral-deep));
  --gradient-hero: linear-gradient(135deg, rgba(0, 77, 97, 0.95), rgba(38, 198, 218, 0.85));
  --gradient-teal-bright: linear-gradient(135deg, var(--mid-teal), var(--bright-teal));
  --gradient-beach: linear-gradient(180deg, var(--sand) 0%, rgba(38, 198, 218, 0.05) 100%);
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 30px rgba(15, 118, 110, 0.3);
  
  /* Spacing */
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  
  /* Typography */
  --font-base: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-heading: var(--font-base);
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* === UTILITY CLASSES === */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  background: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius);
  border: 2px solid var(--primary);
  font-weight: 600;
}

.skip-link:focus {
  left: 20px;
  top: 20px;
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

/* === ICONS === */
.icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.icon-badge {
  width: 16px;
  height: 16px;
}

.icon-lg {
  width: 24px;
  height: 24px;
}

/* === NAVIGATION === */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  transition: var(--transition);
}

.brand:hover {
  color: var(--primary);
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.brand:hover img {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.brand-text {
  letter-spacing: 0.02em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  color: var(--slate);
  transition: var(--transition);
}

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

.nav-cta {
  margin-left: 8px;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: var(--soft);
  border-radius: 10px;
  transition: var(--transition);
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Trust Badge Bar */
.trust-badge-bar {
  background: var(--softer);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}

.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--slate);
  font-size: 14px;
  font-weight: 600;
}

.trust-badge .icon {
  color: var(--success);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn span, .btn .icon {
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow), var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-primary:active {
  transform: translateY(0);
}

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

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

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-block {
  width: 100%;
}

.btn:focus-visible {
  outline: 3px solid rgba(0, 77, 97, 0.3);
  outline-offset: 3px;
}

/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(38, 198, 218, 0.12), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 107, 74, 0.08), transparent 50%),
    linear-gradient(180deg, var(--sand) 0%, rgba(250, 245, 230, 0.5) 50%, var(--white) 100%);
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(0,77,97,0.025)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.6;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.8) 100%);
}

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

.hero-text {
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(38, 198, 218, 0.12);
  border: 1px solid rgba(38, 198, 218, 0.25);
  border-radius: 999px;
  color: var(--mid-teal);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.coral-accent {
  color: var(--coral);
  text-shadow: 0 2px 10px rgba(255, 107, 74, 0.2);
}

.hero-subtitle {
  font-size: 19px;
  line-height: 1.6;
  color: var(--slate);
  margin-bottom: 32px;
  max-width: 600px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.stat {
  text-align: left;
}

.stat-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--deep-teal);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}

/* Booking Card */
.booking-card {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 32px;
  padding: 32px;
  box-shadow: 
    0 25px 50px -12px rgba(0, 77, 97, 0.15),
    0 0 0 1px rgba(0, 77, 97, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.card-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-teal-bright);
  border-radius: 32px;
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
  filter: blur(30px);
}

.booking-card:hover .card-glow {
  opacity: 0.3;
}

.booking-card-header {
  margin-bottom: 24px;
}

.booking-card-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.booking-card-header p {
  color: var(--muted);
  font-size: 15px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
}

.select-wrapper,
.input-wrapper {
  position: relative;
}

.select-wrapper select,
.input-wrapper input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--line);
  border-radius: 12px;
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  transition: var(--transition);
}

.select-wrapper select {
  padding-right: 40px;
  appearance: none;
  cursor: pointer;
}

.input-wrapper input {
  padding-left: 44px;
}

.select-icon,
.input-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--muted);
}

.select-icon {
  right: 14px;
}

.input-icon {
  left: 14px;
}

.select-wrapper select:focus,
.input-wrapper input:focus {
  outline: none;
  border-color: var(--deep-teal);
  box-shadow: 0 0 0 4px rgba(0, 77, 97, 0.12);
}

.booking-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--slate);
}

.feature-icon {
  width: 16px;
  height: 16px;
  color: var(--success);
  flex-shrink: 0;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.scroll-icon {
  width: 30px;
  height: 50px;
  border: 2px solid var(--primary);
  border-radius: 25px;
  position: relative;
}

.scroll-icon::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--primary);
  border-radius: 2px;
  animation: scroll 2s infinite;
}

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

@keyframes scroll {
  0% {
    opacity: 0;
    top: 8px;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    top: 24px;
  }
}

/* === ANIMATIONS === */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

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

.fade-in {
  animation: fadeIn 0.8s ease-out;
}

.slide-up {
  animation: slideUp 0.8s ease-out;
}

.slide-up.delay-1 {
  animation-delay: 0.1s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.slide-up.delay-2 {
  animation-delay: 0.2s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.slide-up.delay-3 {
  animation-delay: 0.3s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.slide-in-right {
  animation: slideInRight 0.8s ease-out 0.3s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up.delay-1 {
  transition-delay: 0.1s;
}

.fade-in-up.delay-2 {
  transition-delay: 0.2s;
}

.fade-in-up.delay-3 {
  transition-delay: 0.3s;
}

/* === SECTIONS === */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  margin-bottom: 60px;
}

.section-header.center {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(38, 198, 218, 0.12);
  border: 1px solid rgba(38, 198, 218, 0.25);
  border-radius: 999px;
  color: var(--mid-teal);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--slate);
  max-width: 700px;
}

.section-header.center .section-subtitle {
  margin: 0 auto;
}

/* Why LUCON Section */
.why-section {
  background: var(--sand);
}

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

.feature-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(229, 231, 235, 0.8);
  box-shadow: 
    0 10px 30px rgba(0, 77, 97, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.05);
  transition: var(--transition-slow);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 25px 50px rgba(0, 77, 97, 0.15),
    0 10px 20px rgba(0, 0, 0, 0.08);
  border-color: var(--bright-teal);
}

.feature-icon-wrapper {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.feature-icon-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  transition: var(--transition);
}

.feature-icon-wrapper.ship-safe {
  background: rgba(46, 125, 50, 0.12);
}

.feature-icon-wrapper.ship-safe::before {
  background: var(--success);
}

.feature-icon-wrapper.certified {
  background: rgba(38, 198, 218, 0.12);
}

.feature-icon-wrapper.certified::before {
  background: var(--bright-teal);
}

.feature-icon-wrapper.transparent {
  background: rgba(0, 77, 97, 0.12);
}

.feature-icon-wrapper.transparent::before {
  background: var(--deep-teal);
}

.feature-icon-wrapper.instant {
  background: rgba(255, 215, 0, 0.12);
}

.feature-icon-wrapper.instant::before {
  background: var(--gold);
}

.feature-card:hover .feature-icon-wrapper::before {
  opacity: 0.2;
  transform: scale(1.2);
}

.feature-icon-lg {
  width: 36px;
  height: 36px;
  color: inherit;
  position: relative;
  z-index: 1;
}

.feature-icon-wrapper.ship-safe .feature-icon-lg {
  color: var(--success);
}

.feature-icon-wrapper.certified .feature-icon-lg {
  color: var(--bright-teal);
}

.feature-icon-wrapper.transparent .feature-icon-lg {
  color: var(--deep-teal);
}

.feature-icon-wrapper.instant .feature-icon-lg {
  color: var(--gold);
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.feature-list li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}

/* Transfers & Tours Sections */
.transfers-section {
  background: var(--white);
}

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

.filters-bar {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(229, 231, 235, 0.8);
  box-shadow: 
    0 10px 30px rgba(0, 77, 97, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.05);
  flex-wrap: wrap;
}

.filter-group {
  flex: 1;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
}

.search-wrapper {
  position: relative;
}

.filter-input {
  width: 100%;
  padding: 12px 40px 12px 16px;
  border: 2px solid var(--line);
  border-radius: 12px;
  font-size: 15px;
  transition: var(--transition);
}

.filter-input:focus {
  outline: none;
  border-color: var(--deep-teal);
  box-shadow: 0 0 0 4px rgba(0, 77, 97, 0.12);
}

.clear-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--muted);
}

.clear-btn:hover {
  background: var(--line);
  color: var(--ink);
}

.clear-btn svg {
  width: 14px;
  height: 14px;
}

.range-slider {
  position: relative;
  height: 6px;
  background: var(--line);
  border-radius: 3px;
}

.range-slider input[type="range"] {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 6px;
  background: transparent;
  pointer-events: none;
  -webkit-appearance: none;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--deep-teal);
  cursor: pointer;
  pointer-events: all;
  border: 3px solid var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.range-slider input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-md);
}

.range-slider input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--deep-teal);
  cursor: pointer;
  pointer-events: all;
  border: 3px solid var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.range-display {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--deep-teal);
}

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

.card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.8);
  box-shadow: 
    0 10px 30px rgba(0, 77, 97, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.05);
  transition: var(--transition-slow);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 
    0 25px 50px rgba(0, 77, 97, 0.15),
    0 10px 20px rgba(0, 0, 0, 0.08);
  border-color: var(--bright-teal);
}

.thumb {
  height: 220px;
  overflow: hidden;
  background: var(--soft);
  position: relative;
}

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

.card:hover .thumb img {
  transform: scale(1.08);
}

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

.card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.3;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
}

.desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 20px;
  flex: 1;
}

.actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
}

.load-more-wrapper {
  text-align: center;
  margin-top: 48px;
}

/* How It Works */
.how-section {
  background: var(--white);
}

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

.step-card {
  position: relative;
  padding: 32px;
  background: var(--softer);
  border-radius: 24px;
  border: 1px solid rgba(229, 231, 235, 0.8);
  transition: var(--transition);
}

.step-card:hover {
  background: var(--white);
  border-color: var(--bright-teal);
  transform: translateY(-4px);
  box-shadow: 
    0 20px 40px rgba(0, 77, 97, 0.12),
    0 5px 15px rgba(0, 0, 0, 0.06);
}

.step-number {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 48px;
  font-weight: 800;
  color: var(--line);
  line-height: 1;
  transition: var(--transition);
}

.step-card:hover .step-number {
  color: rgba(15, 118, 110, 0.15);
}

.step-icon {
  width: 56px;
  height: 56px;
  background: rgba(0, 77, 97, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step-icon svg {
  width: 28px;
  height: 28px;
  color: var(--deep-teal);
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.step-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

/* FAQ Section */
.faq-section {
  background: var(--sand);
}

.faq-grid {
  display: grid;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(229, 231, 235, 0.8);
  transition: var(--transition);
  overflow: hidden;
}

.faq-item[open] {
  border-color: var(--bright-teal);
  box-shadow: 
    0 10px 30px rgba(0, 77, 97, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.05);
}

.faq-item summary {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  transition: var(--transition);
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  color: var(--deep-teal);
}

.faq-icon {
  flex-shrink: 0;
  color: var(--bright-teal);
  transition: var(--transition);
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px 24px;
  color: var(--slate);
  line-height: 1.7;
  animation: fadeInUp 0.3s ease-out;
}

.faq-cta {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--line);
}

.faq-cta-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
}

/* Trust Images Section */
.trust-images-section {
  background: var(--white);
  padding: 60px 0;
}

.trust-images-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trust-image-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 
    0 20px 40px rgba(0, 77, 97, 0.15),
    0 5px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition-slow);
}

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

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

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

.trust-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent);
  color: var(--white);
  transform: translateY(100%);
  transition: var(--transition);
}

.trust-image-card:hover .trust-image-overlay {
  transform: translateY(0);
}

.trust-image-overlay h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.trust-image-overlay p {
  font-size: 14px;
  opacity: 0.9;
}

/* Footer */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

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

.social-link:hover {
  background: var(--bright-teal);
  transform: translateY(-2px);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.footer-links h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: var(--transition);
}

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

.footer-contact h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.contact-list .icon {
  color: var(--bright-teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-list a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.contact-list a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-legal {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

/* Notice */
.notice {
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 1px solid;
  font-size: 14px;
  line-height: 1.5;
}

.success-notice {
  background: rgba(38, 198, 218, 0.12);
  border-color: rgba(38, 198, 218, 0.3);
  color: var(--mid-teal);
}

/* === RESPONSIVE === */

/* Tablet */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .booking-card {
    max-width: 500px;
    margin: 0 auto;
  }

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

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

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

  .trust-images-grid {
    grid-template-columns: 1fr;
  }

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

/* Mobile */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .nav {
    padding: 12px 0;
  }

  .nav-menu {
    position: fixed;
    top: 77px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 0;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 99;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-link {
    padding: 14px 16px;
    border-radius: 10px;
  }

  .nav-cta {
    margin: 8px 0 0 0;
  }

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

  .trust-badges {
    gap: 16px;
  }

  .trust-badge {
    font-size: 13px;
  }

  .section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-title {
    font-size: clamp(32px, 8vw, 40px);
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-stats {
    gap: 24px;
  }

  .stat-value {
    font-size: 28px;
  }

  .scroll-indicator {
    display: none;
  }

  .filters-bar {
    flex-direction: column;
    gap: 20px;
  }

  .filter-group {
    min-width: 100%;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    max-width: 100%;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .booking-card {
    padding: 24px;
  }

  .feature-card {
    padding: 28px;
  }

  .step-card {
    padding: 24px;
  }

  .step-number {
    font-size: 36px;
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: 15px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .scroll-indicator {
    display: none;
  }
}

/* Print Styles */
@media print {
  .topbar,
  .hero-cta,
  .booking-card,
  .btn,
  .footer {
    display: none;
  }
}

/* === DETAILS PAGE STYLES === */

.details-main {
  padding-top: 140px;
  padding-bottom: 80px;
  min-height: 100vh;
  background: var(--sand);
}

/* Loading State */
.details-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  gap: 20px;
}

.loading-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(0, 77, 97, 0.1);
  border-top-color: var(--deep-teal);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.details-loading p {
  color: var(--slate);
  font-weight: 600;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--muted);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--mid-teal);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--deep-teal);
}

.breadcrumb .icon-sm {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Details Header */
.details-header {
  margin-bottom: 48px;
  animation: fadeInUp 0.6s ease-out;
}

.details-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.2;
}

.details-subtitle {
  font-size: 18px;
  color: var(--slate);
  line-height: 1.6;
  max-width: 700px;
}

.details-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.detail-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(38, 198, 218, 0.12);
  border: 1px solid rgba(38, 198, 218, 0.25);
  border-radius: 12px;
  color: var(--deep-teal);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}

.detail-badge:hover {
  background: rgba(38, 198, 218, 0.18);
  transform: translateY(-2px);
}

.badge-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Main Grid Layout */
.details-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* Media Section */
.details-media-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.details-hero-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 
    0 20px 40px rgba(0, 77, 97, 0.15),
    0 5px 15px rgba(0, 0, 0, 0.08);
}

.details-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.overlay-badge {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  color: var(--deep-teal);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Panels */
.details-panel {
  background: var(--white);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid rgba(229, 231, 235, 0.8);
  box-shadow: 
    0 10px 30px rgba(0, 77, 97, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.05);
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--line);
}

.panel-icon {
  width: 24px;
  height: 24px;
  color: var(--bright-teal);
  flex-shrink: 0;
}

.panel-header h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  margin: 0;
}

.panel-content {
  color: var(--slate);
  line-height: 1.7;
}

.overview-description {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
}

.overview-long {
  color: var(--slate);
  font-size: 15px;
}

.long-description {
  white-space: pre-wrap;
}

/* Pricing Panel */
.pricing-explanation {
  font-size: 15px;
  margin-bottom: 20px;
}

.pricing-explanation strong {
  color: var(--deep-teal);
}

.pricing-breakdown {
  margin-top: 20px;
}

.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px;
  background: var(--softer);
  border-radius: 12px;
  transition: var(--transition);
}

.pricing-row:hover {
  background: rgba(38, 198, 218, 0.08);
}

.pricing-label {
  color: var(--slate);
  font-weight: 600;
  font-size: 14px;
}

.pricing-value {
  color: var(--deep-teal);
  font-weight: 800;
  font-size: 16px;
}

/* Facts Grid */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.fact-item {
  padding: 16px;
  background: var(--softer);
  border-radius: 12px;
  border: 1px solid var(--line);
  transition: var(--transition);
}

.fact-item:hover {
  border-color: var(--bright-teal);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 77, 97, 0.08);
}

.fact-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
  margin-bottom: 6px;
}

.fact-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
}

/* Booking Sidebar */
.booking-sidebar {
  position: relative;
}

.booking-card-sticky {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.booking-card-detail {
  position: relative;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 32px;
  padding: 32px;
  box-shadow: 
    0 25px 50px -12px rgba(0, 77, 97, 0.15),
    0 0 0 1px rgba(0, 77, 97, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.card-glow-detail {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-teal-bright);
  border-radius: 32px;
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
  filter: blur(30px);
}

.booking-card-detail:hover .card-glow-detail {
  opacity: 0.3;
}

.booking-header {
  margin-bottom: 24px;
}

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

.price-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.price-amount .currency {
  font-size: 24px;
  font-weight: 700;
  color: var(--deep-teal);
}

.price-amount .amount {
  font-size: 48px;
  font-weight: 900;
  color: var(--deep-teal);
  line-height: 1;
  transition: var(--transition);
}

.price-amount.price-update .amount {
  animation: priceUpdate 0.3s ease;
}

@keyframes priceUpdate {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.price-note {
  display: block;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.booking-divider {
  height: 1px;
  background: var(--line);
  margin: 24px 0;
}

/* Booking Form */
.booking-form-detail {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group-detail {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-label-detail .icon-sm {
  width: 16px;
  height: 16px;
  color: var(--bright-teal);
}

.select-wrapper-detail {
  position: relative;
}

.form-select-detail {
  width: 100%;
  padding: 14px 40px 14px 16px;
  background: var(--softer);
  border: 2px solid var(--line);
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  appearance: none;
  cursor: pointer;
  transition: var(--transition);
}

.form-select-detail:hover {
  border-color: var(--bright-teal);
}

.form-select-detail:focus {
  outline: none;
  border-color: var(--deep-teal);
  box-shadow: 0 0 0 4px rgba(0, 77, 97, 0.12);
  background: var(--white);
}

.select-icon-detail {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--muted);
  pointer-events: none;
  transition: var(--transition);
}

.form-select-detail:focus + .select-icon-detail {
  color: var(--deep-teal);
}

.form-input-detail {
  width: 100%;
  padding: 14px 16px;
  background: var(--softer);
  border: 2px solid var(--line);
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  transition: var(--transition);
}

.form-input-detail:hover {
  border-color: var(--bright-teal);
}

.form-input-detail:focus {
  outline: none;
  border-color: var(--deep-teal);
  box-shadow: 0 0 0 4px rgba(0, 77, 97, 0.12);
  background: var(--white);
}

.form-row-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Field Updated Animation */
.field-updated {
  animation: fieldPulse 0.3s ease;
}

@keyframes fieldPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

/* Trust Notes */
.booking-trust-note {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: rgba(46, 125, 50, 0.08);
  border: 1px solid rgba(46, 125, 50, 0.2);
  border-radius: 14px;
  margin-top: 8px;
}

.booking-trust-note .icon-sm {
  width: 20px;
  height: 20px;
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}

.booking-trust-note strong {
  display: block;
  color: var(--success);
  font-size: 14px;
  margin-bottom: 4px;
}

.booking-trust-note p {
  color: var(--slate);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

/* Booking Button */
.btn-booking {
  margin-top: 8px;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* PayPal Trust */
.paypal-trust {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: rgba(38, 198, 218, 0.08);
  border: 1px solid rgba(38, 198, 218, 0.2);
  border-radius: 14px;
  margin-top: 16px;
}

.paypal-trust .icon {
  width: 24px;
  height: 24px;
  color: var(--bright-teal);
  flex-shrink: 0;
}

.paypal-trust strong {
  display: block;
  color: var(--deep-teal);
  font-size: 14px;
  margin-bottom: 4px;
}

.paypal-trust p {
  color: var(--slate);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

/* Cruise Tip */
.cruise-tip {
  display: flex;
  gap: 12px;
  padding: 14px;
  background: rgba(255, 215, 0, 0.12);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  margin-top: 16px;
}

.cruise-tip .icon-sm {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

.cruise-tip p {
  color: var(--slate);
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
}

.cruise-tip strong {
  color: var(--ink);
}

/* Confidence Panel */
.confidence-panel {
  background: var(--softer);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--line);
}

.confidence-panel h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 16px;
}

.confidence-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.confidence-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
}

.confidence-list .icon-sm {
  width: 20px;
  height: 20px;
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Fade In Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.6s ease-out;
}

/* === RESPONSIVE: DETAILS PAGE === */

@media (max-width: 1024px) {
  .details-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .booking-card-sticky {
    position: static;
  }
  
  .booking-sidebar {
    order: -1;
  }
  
  .details-main {
    padding-top: 120px;
  }
}

@media (max-width: 768px) {
  .details-main {
    padding-top: 100px;
    padding-bottom: 60px;
  }
  
  .details-header {
    margin-bottom: 32px;
  }
  
  .details-title {
    font-size: clamp(24px, 6vw, 32px);
  }
  
  .details-subtitle {
    font-size: 16px;
  }
  
  .details-grid {
    gap: 32px;
  }
  
  .details-hero-image {
    aspect-ratio: 4/3;
  }
  
  .details-panel {
    padding: 24px;
    border-radius: 20px;
  }
  
  .panel-header h2 {
    font-size: 20px;
  }
  
  .booking-card-detail {
    padding: 24px;
    border-radius: 24px;
  }
  
  .price-amount .amount {
    font-size: 40px;
  }
  
  .form-row-detail {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .facts-grid {
    grid-template-columns: 1fr;
  }
  
  .confidence-panel {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .details-main {
    padding-top: 90px;
    padding-bottom: 40px;
  }
  
  .breadcrumb {
    font-size: 12px;
  }
  
  .details-header {
    margin-bottom: 24px;
  }
  
  .details-title {
    font-size: 24px;
  }
  
  .details-subtitle {
    font-size: 14px;
  }
  
  .details-badges {
    gap: 8px;
  }
  
  .detail-badge {
    padding: 8px 14px;
    font-size: 12px;
  }
  
  .badge-icon {
    width: 16px;
    height: 16px;
  }
  
  .details-grid {
    gap: 24px;
  }
  
  .details-media-section {
    gap: 24px;
  }
  
  .details-hero-image {
    border-radius: 16px;
  }
  
  .image-overlay {
    padding: 16px;
  }
  
  .overlay-badge {
    padding: 6px 12px;
    font-size: 12px;
  }
  
  .details-panel {
    padding: 20px;
    border-radius: 16px;
  }
  
  .panel-header {
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
  
  .panel-header h2 {
    font-size: 18px;
  }
  
  .panel-icon {
    width: 20px;
    height: 20px;
  }
  
  .booking-card-detail {
    padding: 20px;
    border-radius: 20px;
  }
  
  .booking-header {
    margin-bottom: 20px;
  }
  
  .price-amount .currency {
    font-size: 20px;
  }
  
  .price-amount .amount {
    font-size: 36px;
  }
  
  .booking-divider {
    margin: 20px 0;
  }
  
  .booking-form-detail {
    gap: 16px;
  }
  
  .form-label-detail {
    font-size: 12px;
  }
  
  .form-select-detail,
  .form-input-detail {
    padding: 12px 14px;
    font-size: 15px;
  }
  
  .select-wrapper-detail .form-select-detail {
    padding-right: 36px;
  }
  
  .booking-trust-note,
  .paypal-trust {
    padding: 14px;
  }
  
  .cruise-tip {
    padding: 12px;
  }
  
  .confidence-panel {
    padding: 18px;
  }
  
  .confidence-panel h3 {
    font-size: 16px;
  }
  
  .confidence-list {
    gap: 10px;
  }
  
  .confidence-list li {
    font-size: 13px;
  }
  
  .pricing-row {
    padding: 12px;
  }
  
  .pricing-label,
  .pricing-value {
    font-size: 13px;
  }
  
  .fact-item {
    padding: 14px;
  }
}

@media (max-width: 360px) {
  .details-main {
    padding-left: 16px;
    padding-right: 16px;
  }
  
  .details-title {
    font-size: 22px;
  }
  
  .price-amount .amount {
    font-size: 32px;
  }
  
  .btn {
    padding: 12px 20px;
    font-size: 14px;
  }
}

/* === CHECKOUT PAGE STYLES === */

.checkout-main {
  padding-top: 140px;
  padding-bottom: 80px;
  min-height: 100vh;
  background: var(--sand);
}

/* Checkout Progress Bar */
.checkout-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 77, 97, 0.08);
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  transition: var(--transition);
}

.progress-step.active {
  opacity: 1;
}

.step-circle {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--softer);
  border: 2px solid var(--line);
  border-radius: 50%;
  font-weight: 800;
  font-size: 14px;
  color: var(--muted);
  transition: var(--transition);
}

.progress-step.active .step-circle {
  background: var(--deep-teal);
  border-color: var(--deep-teal);
  color: var(--white);
}

.step-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--slate);
  white-space: nowrap;
}

.progress-line {
  width: 40px;
  height: 2px;
  background: var(--line);
  transition: var(--transition);
}

.progress-line.active {
  background: var(--deep-teal);
}

/* Security Badge Bar */
.checkout-security {
  background: rgba(46, 125, 50, 0.08);
  border-bottom: 1px solid rgba(46, 125, 50, 0.2);
}

.security-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 0;
}

.security-badges .icon {
  width: 24px;
  height: 24px;
  color: var(--success);
  flex-shrink: 0;
}

.security-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.security-text strong {
  font-size: 15px;
  color: var(--success);
  font-weight: 700;
}

.security-detail {
  font-size: 12px;
  color: var(--slate);
}

/* Checkout Loading */
.checkout-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  gap: 20px;
}

/* Checkout Header */
.checkout-header {
  margin-bottom: 48px;
  animation: fadeInUp 0.6s ease-out;
}

.checkout-title {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.2;
}

.checkout-subtitle {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.5;
}

/* Checkout Grid */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* Form Section */
.checkout-form-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.checkout-panel {
  background: var(--white);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid rgba(229, 231, 235, 0.8);
  box-shadow: 
    0 10px 30px rgba(0, 77, 97, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.05);
}

.form-panel .panel-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--line);
}

/* Checkout Form */
.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group-checkout {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label-checkout {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-label-checkout .icon-sm {
  width: 16px;
  height: 16px;
  color: var(--bright-teal);
}

.required-star {
  color: var(--coral);
  margin-left: 2px;
}

.form-input-checkout,
.form-select-checkout {
  width: 100%;
  padding: 14px 16px;
  background: var(--softer);
  border: 2px solid var(--line);
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  transition: var(--transition);
  font-family: inherit;
}

.form-input-checkout:hover,
.form-select-checkout:hover {
  border-color: var(--bright-teal);
}

.form-input-checkout:focus,
.form-select-checkout:focus {
  outline: none;
  border-color: var(--deep-teal);
  box-shadow: 0 0 0 4px rgba(0, 77, 97, 0.12);
  background: var(--white);
}

.form-input-checkout::placeholder {
  color: var(--muted);
  font-weight: 500;
}

.select-wrapper-checkout {
  position: relative;
}

.form-select-checkout {
  padding-right: 40px;
  appearance: none;
  cursor: pointer;
}

.select-icon-checkout {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--muted);
  pointer-events: none;
  transition: var(--transition);
}

.form-select-checkout:focus + .select-icon-checkout {
  color: var(--deep-teal);
}

.form-row-checkout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Field Hints & Errors */
.field-hint {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}

.field-error {
  display: none;
  font-size: 13px;
  color: #dc2626;
  font-weight: 600;
  margin-top: 4px;
}

.field-error-state {
  border-color: #dc2626 !important;
  background: rgba(220, 38, 38, 0.05) !important;
}

.field-error-state:focus {
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.12) !important;
}

/* Form Notice */
.form-notice-error {
  padding: 16px;
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.25);
  border-radius: 12px;
  color: #7f1d1d;
  font-size: 14px;
  font-weight: 600;
}

/* Cruise Tip in Form */
.cruise-tip-checkout {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 215, 0, 0.12);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 14px;
}

.cruise-tip-checkout .icon-sm {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

.cruise-tip-checkout p {
  color: var(--slate);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.cruise-tip-checkout strong {
  color: var(--ink);
}

/* Checkout Sidebar */
.checkout-sidebar {
  position: relative;
}

.checkout-sidebar-sticky {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Summary Card */
.summary-card {
  position: relative;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 32px;
  padding: 32px;
  box-shadow: 
    0 25px 50px -12px rgba(0, 77, 97, 0.15),
    0 0 0 1px rgba(0, 77, 97, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.summary-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--line);
}

.summary-header .icon {
  width: 24px;
  height: 24px;
  color: var(--bright-teal);
}

.summary-header h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin: 0;
}

/* Service Info */
.summary-service {
  margin-bottom: 24px;
}

.service-badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(38, 198, 218, 0.12);
  border: 1px solid rgba(38, 198, 218, 0.25);
  border-radius: 8px;
  color: var(--deep-teal);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.service-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}

.service-subtitle {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.5;
}

.summary-divider {
  height: 1px;
  background: var(--line);
  margin: 24px 0;
}

/* Price Breakdown */
.price-breakdown {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
}

.price-label {
  color: var(--slate);
  font-weight: 600;
}

.price-value {
  color: var(--deep-teal);
  font-weight: 800;
}

/* Total Row */
.total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 20px;
  background: rgba(38, 198, 218, 0.08);
  border-radius: 16px;
  margin-bottom: 24px;
}

.total-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--slate);
}

.total-value {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.total-value .currency {
  font-size: 20px;
  font-weight: 700;
  color: var(--deep-teal);
}

.total-value .amount {
  font-size: 36px;
  font-weight: 900;
  color: var(--deep-teal);
  line-height: 1;
  transition: var(--transition);
}

.total-value.price-update .amount {
  animation: priceUpdate 0.3s ease;
}

/* PayPal Button */
.btn-paypal {
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.btn-paypal::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-paypal:hover::before {
  width: 300px;
  height: 300px;
}

.btn-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* Payment Notice */
.payment-notice {
  padding: 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  margin-top: 16px;
}

.payment-notice-info {
  background: rgba(38, 198, 218, 0.08);
  border: 1px solid rgba(38, 198, 218, 0.2);
  color: var(--deep-teal);
}

.payment-notice-success {
  background: rgba(46, 125, 50, 0.08);
  border: 1px solid rgba(46, 125, 50, 0.2);
  color: #0b3d1d;
}

.payment-notice-error {
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.25);
  color: #7f1d1d;
}

.paypal-help {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.6;
  margin-top: 12px;
  display: none;
}

.paypal-help strong {
  color: var(--ink);
}

/* App Download Card */
.app-card {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.app-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(38, 198, 218, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.app-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--deep-teal);
}

.app-card-content h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}

.app-card-content p {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 12px;
}

.app-buttons {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--ink);
  color: var(--white);
  border-radius: 10px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  transition: var(--transition);
}

.app-store-btn:hover {
  background: var(--deep-teal);
  transform: translateY(-2px);
}

.app-store-btn svg {
  width: 16px;
  height: 16px;
}

.app-note {
  font-size: 12px;
  color: var(--slate);
  background: rgba(255, 215, 0, 0.12);
  padding: 8px 12px;
  border-radius: 8px;
  margin: 0;
}

.app-note strong {
  color: var(--ink);
}

/* Confidence Note */
.confidence-note {
  display: flex;
  gap: 12px;
  padding: 20px;
  background: var(--softer);
  border-radius: 16px;
  border: 1px solid var(--line);
}

.confidence-note .icon-sm {
  width: 20px;
  height: 20px;
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}

.confidence-note strong {
  display: block;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 8px;
}

.confidence-note ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.confidence-note li {
  font-size: 13px;
  color: var(--slate);
  position: relative;
  padding-left: 16px;
}

.confidence-note li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

/* Success Panel */
.success-panel {
  background: var(--white);
  border-radius: 32px;
  padding: 48px;
  box-shadow: 
    0 25px 50px rgba(0, 77, 97, 0.15),
    0 0 0 1px rgba(46, 125, 50, 0.2);
  animation: fadeInUp 0.6s ease-out;
  text-align: center;
}

.success-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(46, 125, 50, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.success-icon svg {
  width: 48px;
  height: 48px;
  color: var(--success);
}

.success-title {
  font-size: 32px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 8px;
}

.success-subtitle {
  font-size: 18px;
  color: var(--slate);
  margin-bottom: 32px;
}

/* Booking Code Card */
.booking-code-card {
  background: var(--softer);
  border: 2px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 40px;
}

.code-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
  margin-bottom: 12px;
}

.booking-code-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}

.code-value {
  font-size: 36px;
  font-weight: 900;
  color: var(--deep-teal);
  font-family: 'Courier New', monospace;
  letter-spacing: 2px;
}

.copy-btn {
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.copy-btn:hover {
  border-color: var(--bright-teal);
  background: rgba(38, 198, 218, 0.08);
}

.copy-btn svg {
  width: 20px;
  height: 20px;
  color: var(--deep-teal);
}

.code-hint {
  font-size: 12px;
  color: var(--muted);
}

/* Success Steps */
.success-steps {
  margin-bottom: 32px;
  text-align: left;
}

.success-steps h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 20px;
  text-align: center;
}

.next-steps-grid {
  display: grid;
  gap: 16px;
}

.next-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--softer);
  border-radius: 16px;
  border: 1px solid var(--line);
  transition: var(--transition);
}

.next-step:hover {
  border-color: var(--bright-teal);
  transform: translateX(4px);
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--deep-teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}

.step-content p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
  margin: 0;
}

/* Success Actions */
.success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
}

/* === RESPONSIVE: CHECKOUT PAGE === */

@media (max-width: 1024px) {
  .checkout-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .checkout-sidebar-sticky {
    position: static;
  }
  
  .checkout-sidebar {
    order: -1;
  }
  
  .checkout-main {
    padding-top: 120px;
  }
  
  .checkout-progress {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .checkout-main {
    padding-top: 100px;
    padding-bottom: 60px;
  }
  
  .checkout-header {
    margin-bottom: 32px;
  }
  
  .checkout-title {
    font-size: clamp(24px, 6vw, 32px);
  }
  
  .checkout-grid {
    gap: 32px;
  }
  
  .checkout-panel {
    padding: 24px;
    border-radius: 20px;
  }
  
  .summary-card {
    padding: 24px;
    border-radius: 24px;
  }
  
  .form-row-checkout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .total-value .amount {
    font-size: 32px;
  }
  
  .app-card {
    flex-direction: column;
  }
  
  .app-buttons {
    flex-wrap: wrap;
  }
  
  .success-panel {
    padding: 32px 24px;
  }
  
  .success-icon {
    width: 64px;
    height: 64px;
  }
  
  .success-icon svg {
    width: 36px;
    height: 36px;
  }
  
  .success-title {
    font-size: 28px;
  }
  
  .code-value {
    font-size: 28px;
  }
  
  .checkout-progress {
    padding: 10px 16px;
    gap: 6px;
  }
  
  .step-circle {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
  
  .step-label {
    font-size: 12px;
  }
  
  .progress-line {
    width: 30px;
  }
}

@media (max-width: 480px) {
  .checkout-main {
    padding-top: 90px;
    padding-bottom: 40px;
  }
  
  .breadcrumb {
    font-size: 12px;
  }
  
  .checkout-header {
    margin-bottom: 24px;
  }
  
  .checkout-title {
    font-size: 24px;
  }
  
  .checkout-subtitle {
    font-size: 14px;
  }
  
  .checkout-grid {
    gap: 24px;
  }
  
  .checkout-panel {
    padding: 20px;
    border-radius: 16px;
  }
  
  .form-panel .panel-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  
  .checkout-form {
    gap: 20px;
  }
  
  .form-label-checkout {
    font-size: 12px;
  }
  
  .form-input-checkout,
  .form-select-checkout {
    padding: 12px 14px;
    font-size: 15px;
  }
  
  .summary-card {
    padding: 20px;
    border-radius: 20px;
  }
  
  .summary-header {
    margin-bottom: 20px;
  }
  
  .total-row {
    padding: 16px;
  }
  
  .total-value .amount {
    font-size: 28px;
  }
  
  .cruise-tip-checkout {
    padding: 14px;
  }
  
  .app-card {
    padding: 20px;
  }
  
  .app-buttons {
    gap: 6px;
  }
  
  .app-store-btn {
    padding: 6px 12px;
    font-size: 11px;
  }
  
  .confidence-note {
    padding: 16px;
  }
  
  .success-panel {
    padding: 24px 16px;
    border-radius: 24px;
  }
  
  .success-icon {
    width: 56px;
    height: 56px;
  }
  
  .success-icon svg {
    width: 32px;
    height: 32px;
  }
  
  .success-title {
    font-size: 24px;
  }
  
  .success-subtitle {
    font-size: 16px;
  }
  
  .booking-code-card {
    padding: 20px;
  }
  
  .code-value {
    font-size: 24px;
  }
  
  .copy-btn {
    width: 40px;
    height: 40px;
  }
  
  .next-step {
    padding: 16px;
  }
  
  .step-number {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  
  .success-actions {
    flex-direction: column;
  }
  
  .btn-large {
    padding: 14px 24px;
    font-size: 15px;
    width: 100%;
  }
  
  .step-label {
    display: none;
  }
  
  .progress-line {
    width: 24px;
  }
  
  .security-text {
    text-align: center;
  }
  
  .security-detail {
    display: none;
  }
}

@media (max-width: 360px) {
  .checkout-main {
    padding-left: 16px;
    padding-right: 16px;
  }
  
  .checkout-title {
    font-size: 22px;
  }
  
  .code-value {
    font-size: 20px;
  }
  
  .total-value .amount {
    font-size: 24px;
  }
}

/* ======================================================================
   LUCON v2 PATCH (Quick Reservation + FAQ + Checkout)
   Fixes: oversized SVG icons, FAQ accordion polish, checkout form UX
   ====================================================================== */

/* --- SVG icon sizing (prevents 300x150 default SVG sizing) --- */
.icon,
.icon-sm,
.icon-badge,
.feature-icon,
.feature-icon-lg,
.select-icon,
.input-icon,
.faq-icon,
.select-icon-checkout,
.panel-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: inline-block;
}

.icon-sm { width: 16px; height: 16px; flex-basis: 16px; }
.icon-badge { width: 18px; height: 18px; flex-basis: 18px; }
.feature-icon { width: 18px; height: 18px; flex-basis: 18px; }
.feature-icon-lg { width: 26px; height: 26px; flex-basis: 26px; }
.panel-icon { width: 22px; height: 22px; flex-basis: 22px; }

/* Make sure any nested SVGs/images inside icon wrappers don't explode */
.select-icon svg,
.input-icon svg,
.faq-icon svg,
.select-icon-checkout svg,
.icon svg,
.icon-sm svg {
  width: 100%;
  height: 100%;
}

/* Icons that are purely decorative should not intercept clicks */
.select-icon,
.input-icon,
.faq-icon,
.select-icon-checkout {
  pointer-events: none;
}

/* --- Quick Reservation form: keep icons aligned and inputs readable --- */
.select-wrapper,
.input-wrapper {
  position: relative;
}

.select-wrapper select,
.select-wrapper-checkout select,
.form-select-checkout,
.booking-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.select-wrapper .select-icon,
.select-wrapper-checkout .select-icon-checkout {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.85;
}

.input-wrapper .input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.75;
}

.input-wrapper input {
  padding-left: 44px;
}

/* Improve tap targets (35+ audience) */
.booking-form input,
.booking-form select,
.checkout-form input,
.checkout-form select,
.form-input-checkout,
.form-select-checkout {
  min-height: 48px;
}

/* --- FAQ refinements --- */
.faq-grid {
  gap: 14px;
}

.faq-item {
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.92);
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.faq-item > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  font-size: 1.03rem;
  line-height: 1.35;
}

.faq-item > summary::-webkit-details-marker {
  display: none;
}

.faq-item > summary span {
  font-weight: 650;
}

.faq-icon {
  transition: transform 180ms ease;
  opacity: 0.9;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 18px 16px 18px;
  color: rgba(0, 0, 0, 0.78);
  font-size: 1rem;
  line-height: 1.6;
}

.faq-item[open] {
  border-color: rgba(10, 118, 110, 0.30);
  background: rgba(10, 118, 110, 0.04);
}

.faq-item > summary:focus-visible {
  outline: 3px solid rgba(10, 118, 110, 0.45);
  outline-offset: 3px;
  border-radius: 14px;
}

/* --- Checkout polish --- */
.checkout-panel,
.summary-card,
.app-card {
  border-radius: 18px;
}

.form-label-checkout {
  gap: 10px;
}

.form-input-checkout:focus-visible,
.form-select-checkout:focus-visible,
.booking-form input:focus-visible,
.booking-form select:focus-visible {
  outline: 3px solid rgba(10, 118, 110, 0.45);
  outline-offset: 2px;
}

/* Prevent icon overlap in checkout select */
.select-wrapper-checkout .select-icon-checkout {
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
}

/* Better mobile spacing */
@media (max-width: 768px) {
  .faq-item > summary {
    padding: 16px 14px;
    font-size: 1.05rem;
  }
  .faq-answer { padding: 0 14px 16px 14px; }
  .booking-card { margin-top: 18px; }
}

/* End LUCON v2 patch */
