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

:root {
  --ocean-deep: #1A365D;
  --ocean-medium: #2C5282;
  --ocean-light: #4299E1;
  --teal-electric: #0891B2;
  --teal-light: #22D3EE;
  --teal-glow: rgba(8, 145, 178, 0.1);
  --coral-warm: #F97316;
  --coral-light: #FB923C;
  --gold: #FBBF24;
  --sun-yellow: #FDE047;
  --sun-glow: rgba(253, 224, 71, 0.2);
  --sky-light: #E0F2FE;
  --sky-50: #F0F9FF;
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 40px rgba(0, 212, 170, 0.3);
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.7;
  color: var(--gray-800);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.2;
  font-weight: 700;
  color: var(--ocean-deep);
}

a {
  color: var(--ocean-medium);
  text-decoration: none;
  transition: var(--transition-base);
}

a:hover { color: var(--teal-electric); }

a:focus {
  outline: 2px solid var(--teal-electric);
  outline-offset: 3px;
  border-radius: 4px;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
}

.btn:focus { outline: 3px solid var(--teal-light); outline-offset: 2px; }

.btn-primary {
  background: linear-gradient(135deg, var(--teal-electric) 0%, var(--ocean-medium) 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(8, 145, 178, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(8, 145, 178, 0.45);
  color: var(--white);
}

.btn-secondary {
  background: var(--ocean-deep);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  background: var(--ocean-medium);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  border: 2px solid var(--ocean-deep);
  color: var(--ocean-deep);
}

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

.btn-phone {
  background: transparent;
  border: 2px solid var(--gray-800);
  color: var(--gray-800);
  font-weight: 600;
}

.btn-phone:hover {
  background: var(--gray-800);
  color: var(--white);
}

.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-full { width: 100%; }

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 16px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ocean-deep);
}

.logo svg { width: 44px; height: 44px; color: var(--teal-electric); }

.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ocean-deep);
  transition: var(--transition-fast);
  border-radius: 2px;
}

.nav-toggle:hover { background: var(--gray-100); }

nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

nav a {
  color: var(--gray-600);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 0;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-electric), var(--teal-light));
  transition: var(--transition-base);
  border-radius: 2px;
}

nav a:hover::after, nav a.active::after { width: 100%; }
nav a:hover, nav a.active { color: var(--ocean-deep); }

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

.header-phone, .header-email {
  color: var(--gray-600);
  font-weight: 500;
  font-size: 0.9rem;
}

.header-phone:hover, .header-email:hover { color: var(--teal-electric); }

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--sky-50) 0%, var(--white) 100%);
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30 Q15 25 30 30 T60 30' stroke='rgba(8,145,178,0.05)' stroke-width='1' fill='none'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  animation: wave 15s linear infinite;
}

@keyframes wave {
  0% { background-position: 0 0; }
  100% { background-position: 60px 0; }
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 70%;
  height: 80%;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

.hero-content {
  max-width: 720px;
  color: var(--ocean-deep);
}

.hero-badge {
  display: inline-block;
  background: var(--sun-glow);
  border: 1px solid rgba(251, 191, 36, 0.3);
  color: var(--ocean-medium);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  color: var(--ocean-deep);
  margin-bottom: 16px;
  letter-spacing: -1.5px;
  line-height: 1.05;
  font-weight: 800;
}

.hero .tagline {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--teal-electric);
  margin-bottom: 16px;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
}

.hero-desc {
  font-size: 1.15rem;
  margin-bottom: 32px;
  color: var(--gray-600);
  line-height: 1.8;
  max-width: 560px;
}

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

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-600);
  font-size: 0.9rem;
}

.hero-trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--teal-electric);
}

.stats-section {
  background: var(--white);
  padding: 60px 0;
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
  padding: 48px;
}

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

.stat-number {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--ocean-deep);
  line-height: 1;
  text-shadow: 2px 2px 0 var(--sun-glow);
  margin-bottom: 8px;
}

.stat-label {
  color: var(--gray-500);
  font-size: 0.95rem;
  font-weight: 500;
}

.reviews-strip {
  background: var(--gray-50);
  padding: 32px 0;
}

.reviews-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.review-avatars {
  display: flex;
  margin-right: -12px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-electric), var(--ocean-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  border: 3px solid var(--white);
  margin-right: -12px;
}

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

.review-stars {
  color: var(--gold);
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.review-rating {
  color: var(--gray-600);
  font-size: 0.95rem;
}

.trusted-section {
  background: var(--white);
  padding: 48px 0;
  border-bottom: 1px solid var(--gray-200);
}

.trusted-label {
  text-align: center;
  color: var(--gray-500);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.trusted-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.trusted-item {
  background: var(--gray-100);
  color: var(--gray-600);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
}

section { padding: 100px 0; }

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

.section-tag {
  display: inline-block;
  background: var(--teal-glow);
  color: var(--teal-electric);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-header p {
  color: var(--gray-600);
  font-size: 1.15rem;
  line-height: 1.7;
}

.charter-packages {
  padding: 80px 0;
  background: var(--white);
}

.charter-packages .section-header {
  margin-bottom: 48px;
}

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

.charter-card {
  background: var(--white);
}

.charter-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
}

.charter-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #b8d4e3 0%, #87bdd8 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--white);
}

.charter-image-placeholder span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
}

.charter-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.charter-image-buttons {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  gap: 8px;
}

.img-btn {
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all var(--transition-base);
}

.img-btn-primary {
  background: var(--ocean-deep);
  color: var(--white);
}

.img-btn-primary:hover {
  background: var(--ocean-medium);
  color: var(--white);
}

.img-btn-outline {
  background: var(--white);
  color: var(--ocean-deep);
  border: 2px solid var(--white);
}

.img-btn-outline:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.charter-card-info {
  padding: 0 4px;
}

.charter-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 8px;
}

.charter-title-row h3 {
  font-size: 1.75rem;
  color: var(--ocean-deep);
  margin: 0;
  line-height: 1.2;
}

ul {margin-left: 20px}
.view-details-link {
  color: var(--ocean-medium);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  padding-top: 6px;
}

.view-details-link:hover {
  color: var(--teal-electric);
}

.charter-passengers {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.charter-passengers svg {
  color: var(--gray-500);
}

.charter-description {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin: 0 0 16px 0;
  line-height: 1.6;
}

.charter-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.charter-pill {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: var(--gray-700);
  background: var(--white);
}

@media (max-width: 900px) {
  .charter-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .charter-title-row {
    flex-direction: column;
    gap: 8px;
  }
  
  .charter-title-row h3 {
    font-size: 1.5rem;
  }
  
  .view-details-link {
    padding-top: 0;
  }
}

.features-section {
  padding: 80px 0;
  background: var(--sky-50);
}

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

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon-svg {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal-electric);
  box-shadow: var(--shadow-sm);
}

.feature-item h3 {
  font-size: 1.1rem;
  margin: 0 0 6px 0;
  color: var(--ocean-deep);
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .features-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.why-section { background: var(--gray-50); }

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

.why-item {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

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

.why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--sky-light), var(--teal-glow));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--teal-electric);
  stroke-width: 2;
}

.why-item h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.why-item p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
}

.offerings-section { background: var(--white); }

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

.offering-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid var(--gray-200);
  transition: var(--transition-base);
  position: relative;
  display: flex;
  flex-direction: column;
}

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

.offering-featured {
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(251, 191, 36, 0.15);
}

.offering-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: linear-gradient(135deg, var(--sun-yellow), var(--gold));
  color: var(--ocean-deep);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(251, 191, 36, 0.4);
}

.offering-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--ocean-deep), var(--ocean-medium));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.offering-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--teal-light);
}

.offering-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.offering-card > p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.offering-features {
  list-style: none;
  margin-bottom: 24px;
  flex-grow: 1;
}

.offering-features li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--gray-600);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--gray-100);
}

.offering-features li:last-child { border-bottom: none; }

.offering-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal-electric);
  font-weight: 700;
}

.how-section {
  background: var(--white);
  color: var(--ocean-deep);
}

.how-section .section-tag {
  background: var(--teal-glow);
}

.how-section .section-header h2 { color: var(--ocean-deep); }

.how-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 48px;
}

.how-step {
  text-align: center;
  flex: 1;
  max-width: 280px;
  position: relative;
}

.how-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--sun-yellow), var(--gold));
  color: var(--ocean-deep);
  border-radius: 50%;
  display: flex;
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  margin: 0 auto 20px;
}

.how-icon {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.how-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--teal-light);
}

.how-step svg {
  width: 28px;
  height: 28px;
  stroke: var(--teal-electric);
  margin: 0 auto 16px;
  display: block;
}

.how-step h3 {
  color: var(--ocean-deep);
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.how-step p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
}

.how-connector {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-electric), var(--gray-200));
  margin-top: 80px;
  flex-shrink: 0;
}

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

.experiences-section { background: var(--gray-50); }

.experiences-slider {
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}

.experience-slide {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.experience-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.experience-slide h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.experience-slide p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
}

.slider-btn:hover {
  background: var(--ocean-deep);
  border-color: var(--ocean-deep);
}

.slider-btn:hover svg { stroke: var(--white); }

.slider-btn svg {
  width: 20px;
  height: 20px;
  stroke: var(--ocean-deep);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: var(--transition-base);
}

.slider-dot.active { background: var(--teal-electric); width: 28px; border-radius: 5px; }

.testimonials-section { background: var(--white); }

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: var(--transition-base);
}

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

.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.testimonial-card > p {
  color: var(--gray-700);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-electric), var(--ocean-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.author-info strong {
  display: block;
  color: var(--ocean-deep);
  font-size: 0.95rem;
}

.author-info span {
  color: var(--gray-500);
  font-size: 0.85rem;
}

.inquiry-section {
  background: var(--gray-50);
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.inquiry-content .section-tag { margin-bottom: 16px; }

.inquiry-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.inquiry-content > p {
  color: var(--gray-600);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.inquiry-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.inquiry-phone, .inquiry-email {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ocean-deep);
  font-weight: 600;
  font-size: 1.1rem;
}

.inquiry-phone svg, .inquiry-email svg {
  width: 24px;
  height: 24px;
  color: var(--teal-electric);
}

.inquiry-phone:hover, .inquiry-email:hover { color: var(--teal-electric); }

.inquiry-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-xl);
}

.inquiry-form .form-group { margin-bottom: 20px; }

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

.inquiry-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--ocean-deep);
  font-size: 0.9rem;
}

.inquiry-form input,
.inquiry-form select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition-fast);
  background: var(--white);
}

.inquiry-form input:focus,
.inquiry-form select:focus {
  outline: none;
  border-color: var(--teal-electric);
  box-shadow: 0 0 0 4px rgba(0, 212, 170, 0.1);
}

.blog-section { background: var(--white); }

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

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: var(--transition-base);
}

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

.blog-image {
  height: 180px;
  background: linear-gradient(135deg, var(--sky-light) 0%, var(--teal-glow) 100%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.blog-category {
  background: var(--teal-electric);
  color: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
}

.blog-content { padding: 24px; }

.blog-content h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-content p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-link {
  color: var(--teal-electric);
  font-weight: 600;
  font-size: 0.9rem;
}

.blog-link:hover { color: var(--ocean-deep); }

.newsletter-section {
  background: var(--gray-100);
  padding: 80px 0;
}

.newsletter-content {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-content h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.newsletter-content p {
  color: var(--gray-600);
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
}

.newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-family: inherit;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--teal-electric);
}

.cta-section {
  background: linear-gradient(180deg, var(--sky-light) 0%, var(--sky-50) 100%);
  color: var(--ocean-deep);
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(253, 224, 71, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--ocean-deep);
  margin-bottom: 16px;
  position: relative;
}

.cta-section p {
  margin-bottom: 32px;
  color: var(--gray-600);
  font-size: 1.15rem;
  position: relative;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

.cta-section .hero-buttons {
  justify-content: center;
}

.cta-section .btn-outline {
  background: var(--white);
  border: 2px solid var(--ocean-deep);
  color: var(--ocean-deep);
}

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

.page-header {
  background: linear-gradient(180deg, var(--sky-50) 0%, var(--white) 100%);
  color: var(--ocean-deep);
  padding: 160px 0 100px;
  text-align: center;
  position: relative;
}

.page-header h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--ocean-deep);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.page-header p {
  color: var(--gray-600);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  font-size: 0.9rem;
}

.breadcrumb a { color: var(--teal-electric); }
.breadcrumb span { color: var(--gray-400); }

.content-section { background: var(--white); padding: 80px 0; }

.content-main h2 {
  font-size: 1.85rem;
  margin-bottom: 20px;
}

.content-main h3 {
  font-size: 1.3rem;
  margin: 40px 0 16px;
}

.content-main p {
  margin-bottom: 16px;
  color: var(--gray-700);
  line-height: 1.8;
}

.content-main ul, .content-main ol {
  margin: 16px 0 16px 24px;
  color: var(--gray-700);
}

.content-main li { margin-bottom: 10px; line-height: 1.7; }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: var(--transition-base);
}

.faq-item:hover { box-shadow: var(--shadow-md); }

.faq-question {
  width: 100%;
  padding: 24px 28px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--ocean-deep);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-fast);
}

.faq-question:hover { background: var(--gray-50); }

.faq-icon {
  font-size: 1.5rem;
  color: var(--teal-electric);
  transition: var(--transition-base);
  font-weight: 300;
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer { max-height: 600px; }

.faq-answer-content {
  padding: 0 28px 24px;
  color: var(--gray-600);
  line-height: 1.8;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.form-group { margin-bottom: 24px; }

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--ocean-deep);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition-fast);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--teal-electric);
  box-shadow: 0 0 0 4px rgba(0, 212, 170, 0.1);
}

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

.contact-info {
  background: linear-gradient(180deg, var(--sky-light) 0%, var(--sky-50) 100%);
  color: var(--ocean-deep);
  padding: 40px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.contact-info::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.contact-info h3 {
  margin-bottom: 28px;
  color: var(--teal-electric);
  font-size: 1.3rem;
  position: relative;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
}

.contact-info-item .icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.contact-info-item h4 { margin-bottom: 4px; font-size: 1rem; }
.contact-info-item a { color: var(--teal-light); }
.contact-info-item a:hover { color: var(--white); }

.booking-embed {
  background: var(--white);
  padding: 0px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 0px dashed var(--gray-300);
}

.booking-placeholder { color: var(--gray-600); }
.booking-placeholder h3 { color: var(--ocean-deep); margin-bottom: 12px; font-size: 1.5rem; }

.booking-fallback {
  background: linear-gradient(135deg, var(--gray-50), var(--white));
  padding: 40px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin-top: 40px;
  border: 1px solid var(--gray-200);
}

.booking-fallback h3 { color: var(--ocean-deep); margin-bottom: 12px; }

.policy-section { margin-bottom: 48px; }

.policy-section h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--teal-electric);
  display: inline-block;
}

.highlight-box {
  background: linear-gradient(135deg, var(--teal-glow), var(--white));
  border-left: 4px solid var(--teal-electric);
  padding: 28px;
  margin: 28px 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.highlight-box h3 { margin-bottom: 12px; font-size: 1.15rem; }

.location-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.location-feature {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: var(--transition-base);
}

.location-feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.location-feature h3 { margin-bottom: 8px; font-size: 1.1rem; }

.captain-profile {
  display: flex;
  gap: 48px;
  align-items: center;
}

.captain-image {
  width: 280px;
  height: 280px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--sky-light), var(--teal-glow));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-electric);
  font-size: 6rem;
  border: 8px solid var(--teal-electric);
  box-shadow: 0 0 40px rgba(8, 145, 178, 0.2);
}

.captain-bio h2 { font-size: 2.25rem; margin-bottom: 20px; }

.captain-bio h3 { font-size: 1.25rem; margin: 24px 0 12px; color: var(--ocean-deep); }

.credentials-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.credentials-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--gray-700);
}

.credentials-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 16px;
  height: 16px;
  background: var(--teal-electric);
  border-radius: 50%;
  opacity: 0.2;
}

.credentials-list li::after {
  content: '\2713';
  position: absolute;
  left: 3px;
  top: 8px;
  color: var(--teal-electric);
  font-weight: bold;
  font-size: 0.75rem;
}

footer {
  background: var(--gray-50);
  color: var(--ocean-deep);
  padding: 80px 0 32px;
  border-top: 1px solid var(--gray-200);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr) 1.25fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ocean-deep);
  margin-bottom: 20px;
}

.footer-logo svg { width: 40px; height: 40px; color: var(--teal-electric); }
.footer-logo span { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.25rem; }

.footer-about p { color: var(--gray-600); margin-bottom: 12px; line-height: 1.7; }
.footer-tagline { font-style: italic; color: var(--teal-electric) !important; }

.footer-section h4 {
  color: var(--ocean-deep);
  margin-bottom: 20px;
  font-size: 1.1rem;
  font-family: 'Space Grotesk', sans-serif;
}

.footer-section ul { list-style: none; }
.footer-section li { margin-bottom: 12px; }
.footer-section a { color: var(--gray-600); transition: var(--transition-fast); }
.footer-section a:hover { color: var(--teal-electric); }

.footer-contact p {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-700);
  font-size: 0.95rem;
}

.footer-contact svg { width: 18px; height: 18px; color: var(--teal-electric); flex-shrink: 0; }
.footer-contact a { color: var(--teal-electric); }

.footer-bottom {
  border-top: 1px solid var(--gray-200);
  padding-top: 32px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray-500);
}

.skip-link {
  position: absolute;
  top: -50px;
  left: 16px;
  background: var(--teal-electric);
  color: var(--ocean-deep);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  z-index: 10000;
  transition: top 0.3s;
}

.skip-link:focus { top: 16px; }

@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-about { grid-column: span 3; }
  .footer-contact { grid-column: span 3; }
}

@media (max-width: 1024px) {
  .offerings-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .inquiry-grid { grid-template-columns: 1fr; gap: 48px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .header-phone, .header-email { display: none; }
}

@media (max-width: 767px) {
  .nav-toggle { 
    display: flex !important; 
    z-index: 10001; 
    position: relative; 
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  header {
    z-index: 10000;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
  
  nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    flex-direction: column;
    justify-content: flex-start;
    padding: 24px;
    gap: 16px;
    display: none;
    visibility: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    border-top: 1px solid var(--gray-200);
    z-index: 9999;
  }
  
  nav ul { 
    display: flex;
    flex-direction: column;
    gap: 0;
    justify-content: flex-start;
    align-items: stretch;
    flex: 1;
    padding-top: 0; 
    margin-top: 0;
  }
  
  nav.active { 
    display: flex !important; 
    visibility: visible !important;
  }
  
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  main { z-index: 1; position: relative; }
  .page-header { position: static; z-index: auto; }
  
  nav ul { flex-direction: column; width: 100%; gap: 0; }
  nav li { width: 100%; }
  nav a { display: block; padding: 16px 0; font-size: 1.1rem; border-bottom: 1px solid var(--gray-100); }
  
  .header-cta { 
    flex-direction: column; 
    width: 100%; 
    margin-top: auto; 
    gap: 16px; 
  }
  .header-phone, .header-email { display: block; text-align: center; }
  
  .hero { padding: 140px 0 80px; text-align: center; }
  .hero-content { text-align: center; margin: 0 auto; }
  .hero-buttons { justify-content: center; }
  .hero-trust { justify-content: center; }
  
  .stats-section { margin-top: 0; padding: 40px 0; }
  .stats-grid { padding: 32px; gap: 24px; }
  
  section { padding: 60px 0; }
  
  .why-grid, .offerings-grid, .testimonials-grid, .blog-grid { grid-template-columns: 1fr; }
  
  .how-grid { flex-direction: column; gap: 40px; }
  .how-connector { display: none; }
  .how-step { max-width: 100%; }
  
  .experience-slide { flex: 0 0 100%; }
  
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form, .contact-info { padding: 28px; }
  
  .inquiry-form .form-row { grid-template-columns: 1fr; }
  
  .newsletter-form { flex-direction: column; }
  
  .captain-profile { flex-direction: column; text-align: center; }
  .captain-image { width: 200px; height: 200px; font-size: 4rem; }
  .credentials-list { text-align: left; }
  
  .page-header {
    padding: 100px 0 40px;
  }
  .page-header h1 {
    font-size: 1.75rem;
    display: block !important;
    visibility: visible !important;
  }
  .page-header p {
    font-size: 1rem;
    display: block !important;
    visibility: visible !important;
  }
  .breadcrumb {
    flex-direction: row;
    gap: 8px;
  }
  
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-about, .footer-contact { grid-column: auto; }
}

.hero-with-image .hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

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

.hero-image-placeholder {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(0, 212, 170, 0.15));
  border: 2px dashed rgba(255,255,255,0.3);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255,255,255,0.7);
}

.hero-image-placeholder svg {
  width: 64px;
  height: 64px;
  stroke: var(--teal-light);
}

.hero-image-placeholder span {
  font-size: 0.9rem;
  font-weight: 500;
}

.gallery-section { background: var(--gray-50); padding: 80px 0; }

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.gallery-filter {
  padding: 12px 24px;
  border: 2px solid var(--gray-200);
  background: var(--white);
  border-radius: var(--radius-full);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition-base);
}

.gallery-filter:hover {
  border-color: var(--teal-electric);
  color: var(--teal-electric);
}

.gallery-filter.active {
  background: var(--teal-electric);
  border-color: var(--teal-electric);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.gallery-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--gray-500);
  font-size: 1.1rem;
}

.gallery-empty {
  margin-bottom: 48px;
}

.empty-state {
  text-align: center;
  padding: 80px 20px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  color: var(--gray-500);
}

.empty-state svg {
  margin-bottom: 20px;
  opacity: 0.5;
}

.empty-state h3 {
  color: var(--ocean-deep);
  margin-bottom: 8px;
}

.empty-state p {
  color: var(--gray-600);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item-tall {
  grid-row: span 2;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--sky-light) 0%, var(--gray-100) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  text-align: center;
  border: 1px solid var(--gray-200);
}

.gallery-placeholder svg {
  width: 48px;
  height: 48px;
  stroke: var(--teal-electric);
  opacity: 0.7;
}

.gallery-placeholder span {
  color: var(--gray-500);
  font-size: 0.85rem;
  font-weight: 500;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 54, 93, 0.85), transparent);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition-base);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-caption {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
}

.gallery-note {
  background: var(--white);
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  text-align: center;
  color: var(--gray-600);
}

.gallery-note strong { color: var(--ocean-deep); }

.image-placeholder {
  background: linear-gradient(135deg, var(--sky-light) 0%, var(--gray-100) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 200px;
  border-radius: var(--radius-md);
  border: 2px dashed var(--gray-300);
}

.image-placeholder svg {
  width: 40px;
  height: 40px;
  stroke: var(--teal-electric);
  opacity: 0.6;
}

.image-placeholder span {
  color: var(--gray-500);
  font-size: 0.8rem;
}
@media (min-width: 1024px) {
	.hero-buttons-mobile {display: none}
}
@media (max-width: 1024px) {
  .hero-with-image .hero-grid { grid-template-columns: 1fr; }
  .hero-image { order: -1; margin-bottom: 32px; }
  .hero-image-placeholder { max-width: 400px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item-large { grid-column: span 2; grid-row: span 2; }
}

@media (max-width: 767px) {
  .hero-with-image .hero-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item-large, .gallery-item-wide { grid-column: span 2; }
  .gallery-item-tall { grid-row: span 1; }
  .gallery-item-large { grid-row: span 1; }
	
}

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.lightbox.active { display: flex; }

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10001;
  transition: var(--transition-fast);
}

.lightbox-close:hover { color: var(--teal-light); }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 48px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  padding: 16px 20px;
  cursor: pointer;
  transition: var(--transition-fast);
  border-radius: var(--radius-md);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--teal-electric);
}

.lightbox-content {
  max-width: 90%;
  max-height: 80%;
  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 70vh;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  color: var(--white);
  margin-top: 16px;
  font-size: 1.1rem;
}

.gallery-note code {
  background: var(--sky-light);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.9rem;
}

.captcha-container {
  margin: 16px 0;
}

.captcha-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
}

.captcha-box input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.captcha-label {
  font-size: 0.95rem;
  color: var(--gray-700);
}

@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;
  }
}
