/* ============================================================
   DKB Club — Main Stylesheet
   Modern · Clean · Duotone Sports Inspired
   ============================================================ */

/* ─── Self-hosted Fonts ────────────────────────────────────── */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url('../fonts/montserrat-600.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../fonts/raleway-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ─── CSS Custom Properties ─────────────────────────────────── */
:root {
  --color-primary: #00a8c4;
  --color-primary-dark: #008da6;
  --color-primary-glow: rgba(0, 168, 196, 0.2);
  --color-accent: #f40000;
  --color-bg: #ffffff;
  --color-bg-alt: #f7f8fa;
  --color-bg-dark: #0a0a0a;
  --color-bg-dark-alt: #111111;
  --color-text: #1a1a1a;
  --color-text-light: #5a5a5a;
  --color-text-muted: #999999;
  --color-text-on-primary: #ffffff;
  --color-footer-bg: #0a0a0a;
  --color-footer-text: #888888;
  --color-border: #e8e8e8;
  --color-border-light: #f0f0f0;
  --color-primary-text: #007a91;

  --font-heading: "Montserrat", sans-serif;
  --font-body: "Raleway", sans-serif;

  --max-width: 1200px;
  --max-width-wide: 1400px;
  --section-pad: 100px;
  --card-gap: 24px;
  --radius: 0px;
  --radius-sm: 4px;
  --radius-lg: 8px;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--color-primary-dark);
}

ul {
  list-style: none;
}

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

/* ─── Utility ───────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-alt {
  background: var(--color-bg-alt);
}

.section-dark {
  background: var(--color-bg-dark);
  color: #fff;
}

.section-dark .section-header h2 {
  color: #fff;
}

.section-dark .section-header p {
  color: var(--color-text-muted);
}

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

.section-header h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--color-text);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-light);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ─── Skip Link ────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: top 0.2s ease;
}

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

/* ─── Focus Visible ────────────────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

/* ─── Scroll Reveal ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.revealed > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.revealed > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger.revealed > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger.revealed > *:nth-child(5) { transition-delay: 0.25s; }
.reveal-stagger.revealed > *:nth-child(6) { transition-delay: 0.3s; }

.reveal-stagger.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-align: center;
  line-height: 1.4;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-text-on-primary);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  color: var(--color-text-on-primary);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 168, 196, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text-on-primary);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-text);
}

.btn-outline:hover {
  background: var(--color-text);
  color: var(--color-bg);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.75rem;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 0.875rem;
}

/* ─── Navigation ────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}

.navbar.transparent {
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  padding: 12px 0;
}

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

.nav-logo img,
.nav-logo-img {
  height: 56px;
  width: auto;
  transition: height var(--transition);
}

.navbar.scrolled .nav-logo img,
.navbar.scrolled .nav-logo-img {
  height: 44px;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.375rem;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color var(--transition);
}

.navbar.scrolled .nav-logo-text {
  color: var(--color-text);
}

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

.nav-menu a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-primary);
  transition: width var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a:hover {
  color: #fff;
}

.navbar.scrolled .nav-menu a {
  color: var(--color-text-light);
}

.navbar.scrolled .nav-menu a:hover {
  color: var(--color-text);
}

.nav-menu .btn {
  padding: 8px 22px;
  letter-spacing: 1px;
}

.navbar.scrolled .nav-menu .btn-secondary {
  color: var(--color-text);
  border-color: var(--color-text);
}

.navbar.scrolled .nav-menu .btn-secondary:hover {
  background: var(--color-text);
  color: #fff;
}

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

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 12px;
  list-style: none;
  z-index: 100;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-bottom-color: var(--color-dark);
}

.nav-dropdown-menu li {
  background: var(--color-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-dropdown-menu li:first-child {
  border-radius: 4px 4px 0 0;
}

.nav-dropdown-menu li:last-child {
  border-radius: 0 0 4px 4px;
  border-bottom: 0;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 24px;
  white-space: nowrap;
  font-size: 0.7rem !important;
  color: rgba(255, 255, 255, 0.8) !important;
  letter-spacing: 1.2px;
}

.nav-dropdown-menu a::after {
  display: none !important;
}

.nav-dropdown-menu a:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.06);
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.navbar.scrolled .nav-dropdown-menu li {
  background: #fff;
  border-bottom-color: var(--color-border-light);
}

.navbar.scrolled .nav-dropdown-menu::before {
  border-bottom-color: #fff;
}

.navbar.scrolled .nav-dropdown-menu a {
  color: var(--color-text-light) !important;
}

.navbar.scrolled .nav-dropdown-menu a:hover {
  color: var(--color-text) !important;
  background: var(--color-bg-light);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  border-radius: 1px;
  transition: all var(--transition);
  transform-origin: center;
}

.navbar.scrolled .nav-toggle span {
  background: var(--color-text);
}

.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);
}

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
  color: #fff;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-video-wrap.active {
  opacity: 1;
}

.hero-video-wrap iframe,
.hero-video-wrap video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh; /* 16:9 aspect ratio */
  height: 100vh;
  min-width: 100%;
  min-height: 56.25vw;
  transform: translate(-50%, -50%);
  border: 0;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Store hero: left-aligned on desktop */
.hero-bg-store { object-position: left center; }

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.15) 40%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: 40px;
  opacity: 0.85;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 0, 0, 0.2);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-ctas .btn {
  min-width: 180px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--font-heading);
  animation: float 3s ease-in-out infinite;
}

.hero-scroll-indicator svg {
  width: 20px;
  height: 20px;
}

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

/* ─── About ─────────────────────────────────────────────────── */
.about-content {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.about-content p {
  margin-bottom: 20px;
  color: var(--color-text-light);
  font-size: 1.0625rem;
  line-height: 1.85;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--color-border-light);
}

.partner-logos img {
  height: 36px;
  width: auto;
  opacity: 0.35;
  filter: grayscale(100%);
  transition: all var(--transition);
}

.partner-logos img:hover {
  opacity: 0.8;
  filter: grayscale(0%);
}

/* ─── Lesson Cards ──────────────────────────────────────────── */
.lessons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--card-gap);
  margin-bottom: 80px;
}

.lesson-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border-light);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.lesson-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.lesson-card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: var(--color-bg-alt);
  transition: transform var(--transition-slow);
  will-change: transform;
  backface-visibility: hidden;
}

.lesson-card:hover .lesson-card-image {
  transform: scale(1.03);
}

.lesson-card-image-wrap {
  overflow: hidden;
}

.lesson-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
}
.lesson-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  align-self: stretch;
}
.lesson-pricing-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--transition);
}
.lesson-pricing-link:hover {
  color: var(--color-text);
}

.lesson-card-body h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.lesson-level {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  padding: 3px 12px;
  margin-bottom: 14px;
}

.lesson-card-body p {
  color: var(--color-text-light);
  font-size: 0.9375rem;
  margin-bottom: 18px;
  line-height: 1.7;
}

.lesson-highlights {
  margin-bottom: 24px;
}

.lesson-highlights li {
  font-size: 0.875rem;
  color: var(--color-text-light);
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}

.lesson-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 1.5px;
  background: var(--color-primary);
}

/* ─── Instructors ───────────────────────────────────────────── */
.instructors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
}

.instructor-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--color-bg);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition);
}

.instructor-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.instructor-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  background: var(--color-bg-alt);
}

.instructor-card h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.instructor-cert {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.instructor-card p {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: 12px;
  line-height: 1.6;
}

.instructor-specialties {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
}

.instructor-specialties span {
  font-size: 0.6875rem;
  background: var(--color-bg-alt);
  padding: 3px 10px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ─── Destinations ──────────────────────────────────────────── */
.destination-primary {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  margin-bottom: 48px;
  background: var(--color-bg);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
}

.destination-primary-image {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  background: var(--color-bg-alt);
}

.destination-primary-info {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.destination-primary-info h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.destination-primary-info .tagline {
  color: var(--color-primary);
  font-weight: 500;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.destination-primary-info > p {
  color: var(--color-text-light);
  margin-bottom: 24px;
  line-height: 1.75;
}

.destination-conditions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.condition-item {
  font-size: 0.9375rem;
  color: var(--color-text);
}

.condition-item strong {
  display: block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-text-muted);
  font-weight: 500;
  margin-bottom: 2px;
}

.best-for {
  display: inline-block;
  background: var(--color-primary-glow);
  color: var(--color-primary);
  padding: 6px 16px;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.5px;
}

.destination-highlights {
  margin-top: 20px;
}

.destination-highlights li {
  font-size: 0.875rem;
  color: var(--color-text-light);
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}

.destination-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 1.5px;
  background: var(--color-primary);
}

.dest-cta {
  margin-top: 24px;
  padding: 14px 36px;
  font-size: 0.875rem;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 168, 196, 0.3);
  transition: all var(--transition);
}

.dest-cta:hover {
  box-shadow: 0 6px 25px rgba(0, 168, 196, 0.45);
  transform: translateY(-2px);
}

.destinations-secondary-heading {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-light);
  margin-top: 48px;
  margin-bottom: 16px;
}

.destinations-secondary {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}

.dest-card {
  background: var(--color-bg);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}

.dest-card:hover {
  z-index: 1;
  box-shadow: var(--shadow-lg);
}

.dest-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--color-bg-dark);
  transition: transform var(--transition-slow);
  will-change: transform;
  backface-visibility: hidden;
}

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

.dest-card-image-wrap {
  overflow: hidden;
}

.dest-card-body {
  padding: 20px;
}

.dest-card-body h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}

.dest-country {
  font-weight: 400;
  font-size: 0.6875rem;
  color: var(--color-text-light);
  letter-spacing: 0.02em;
  margin-left: 2px;
}

.dest-card-body .season {
  font-size: 0.6875rem;
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dest-card-body p {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  margin-top: 8px;
  line-height: 1.5;
}

/* ─── Shop ──────────────────────────────────────────────────── */
.shop-hero-image {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  margin-bottom: 32px;
  opacity: 0.85;
}

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

a.shop-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.shop-card {
  background: var(--color-bg-dark-alt);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.shop-card:hover {
  z-index: 1;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 168, 196, 0.12);
}

.shop-card--featured {
  border: 1px solid rgba(0, 168, 196, 0.3);
}

.shop-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  font-family: var(--font-heading);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  background: var(--color-primary);
  padding: 4px 12px;
  line-height: 1;
}

.shop-card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: var(--color-bg-dark);
  transition: transform var(--transition-slow), opacity var(--transition);
  opacity: 0.7;
  will-change: transform;
  backface-visibility: hidden;
}

.shop-card:hover .shop-card-image {
  transform: scale(1.05);
  opacity: 1;
}

.shop-card-image-wrap {
  overflow: hidden;
}

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

.shop-card-body h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.0625rem;
  margin-bottom: 6px;
  color: #fff;
  letter-spacing: 0.5px;
}

.shop-card-body .brands {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

.section-dark .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.section-dark .btn-outline:hover {
  background: #fff;
  color: var(--color-bg-dark);
  border-color: #fff;
}

.shop-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  padding-top: 8px;
}

/* ─── Why Us ────────────────────────────────────────────────── */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.feature-block {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid var(--color-border-light);
  transition: background var(--transition);
}

.feature-block:last-child {
  border-right: none;
}

.feature-block:hover {
  background: var(--color-bg-alt);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
}

.feature-block h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.feature-block p {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  line-height: 1.65;
}

/* ─── Gallery ───────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 200px);
  gap: 3px;
  grid-template-areas:
    "a  a  b  c"
    "a  a  d  e"
    "f  g  g  h"
    "i  j  k  k";
}

.gallery-item:nth-child(1)  { grid-area: a; }
.gallery-item:nth-child(2)  { grid-area: b; }
.gallery-item:nth-child(3)  { grid-area: c; }
.gallery-item:nth-child(4)  { grid-area: d; }
.gallery-item:nth-child(5)  { grid-area: e; }
.gallery-item:nth-child(6)  { grid-area: f; }
.gallery-item:nth-child(7)  { grid-area: g; }
.gallery-item:nth-child(8)  { grid-area: h; }
.gallery-item:nth-child(9)  { grid-area: i; }
.gallery-item:nth-child(10) { grid-area: j; }
.gallery-item:nth-child(11) { grid-area: k; }
.gallery-item:nth-child(12) { display: none; }

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--color-bg-dark);
}

.gallery-item picture {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-item img,
.gallery-item .placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity var(--transition);
}

.gallery-item:hover img,
.gallery-item:hover .placeholder-img {
  transform: scale(1.08);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background var(--transition);
  pointer-events: none;
}

.gallery-item:hover::after {
  background: rgba(0, 0, 0, 0.2);
}

/* Lightbox nav arrows */
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  padding: 16px;
  opacity: 0.6;
  transition: opacity var(--transition);
  line-height: 1;
  z-index: 2001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 1;
}

.lightbox-prev {
  left: 16px;
}

.lightbox-next {
  right: 16px;
}

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 12px;
  background: none;
  border: none;
  opacity: 0.6;
  transition: opacity var(--transition);
}

.lightbox-close:hover {
  opacity: 1;
}

/* ─── Reviews Section ──────────────────────────────────────── */
.section-reviews {
  background: #f9fafb;
}

/* ─── Review Badges ────────────────────────────────────────── */
.review-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--card-gap);
  margin-bottom: var(--card-gap);
}

.review-badge {
  display: flex;
  align-items: stretch;
  text-decoration: none;
  color: var(--color-dark);
  background: #fff;
  border: 1px solid var(--color-border-light);
  overflow: hidden;
  position: relative;
  transition: all var(--transition);
}

.review-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

/* Left: #1 rank panel — soft washed tones */
.review-badge-rank-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 24px;
  min-width: 130px;
}

.review-badge--tripadvisor .review-badge-rank-hero {
  background: linear-gradient(160deg, #e8faf3 0%, #f0fdf7 100%);
}

.review-badge--google .review-badge-rank-hero {
  background: linear-gradient(160deg, #e8f0fd 0%, #f0f5ff 100%);
}

.review-badge-rank-number {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
}

.review-badge--tripadvisor .review-badge-rank-number {
  color: #34a853;
}

.review-badge--google .review-badge-rank-number {
  color: #4285f4;
}

.review-badge-rank-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 1.4;
  text-align: center;
  color: rgba(0, 0, 0, 0.45);
  margin-top: 6px;
}

/* Center: platform text, score, count */
.review-badge-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  padding: 24px 20px;
  flex: 1;
}

.review-badge-platform {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(0, 0, 0, 0.35);
  font-weight: 600;
}

.review-badge-score {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.review-badge-rating {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--color-dark);
}

.review-badge-stars {
  font-size: 0.875rem;
  letter-spacing: 2px;
}

.review-badge--tripadvisor .review-badge-stars {
  color: #34a853;
}

.review-badge--google .review-badge-stars {
  color: #fbbc05;
}

.review-badge-count {
  font-size: 0.8125rem;
  color: rgba(0, 0, 0, 0.4);
  margin-top: 2px;
}

/* Right: logo — tilted, watermark feel */
.review-badge-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  margin-left: auto;
}

.review-badge-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  opacity: 0.18;
  transform: rotate(12deg);
  transition: opacity var(--transition), transform var(--transition);
}

.review-badge:hover .review-badge-icon {
  opacity: 0.3;
  transform: rotate(6deg);
}

.review-badge--tripadvisor .review-badge-icon {
  color: #34a853;
}

/* ─── Testimonials ──────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--card-gap);
}

.testimonial-card {
  background: #fff;
  padding: 28px;
  border: 1px solid var(--color-border-light);
  transition: all var(--transition);
}

.testimonial-card:hover {
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.testimonial-stars {
  color: #fbbc05;
  font-size: 0.875rem;
  margin-bottom: 14px;
  letter-spacing: 3px;
}

.testimonial-card blockquote {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.55);
  line-height: 1.75;
  margin-bottom: 18px;
  font-style: normal;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-dark);
}

.testimonial-source {
  font-size: 0.6875rem;
  color: rgba(0, 0, 0, 0.35);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border-light);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  gap: 16px;
  transition: color var(--transition);
  letter-spacing: -0.01em;
}

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

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform var(--transition);
  stroke-width: 1.5;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.75;
}

/* ─── Contact ───────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

/* ─── Contact CTAs ─────────────────────────────────────────── */
.contact-ctas {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: start;
  position: relative;
  overflow: hidden;
}

.contact-ctas-intro {
  font-size: 1.0625rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 8px;
}

.contact-cta-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  border: 1.5px solid var(--color-border);
  transition: all var(--transition);
  overflow: hidden;
}

.contact-cta-btn svg,
.contact-cta-btn span {
  position: relative;
  z-index: 1;
}

.contact-cta-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.contact-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-cta-whatsapp {
  background: #f5f6f7;
  color: #2a2a2a;
  border-color: #dfe1e4;
}

.contact-cta-whatsapp svg {
  color: #25d366;
}

.contact-cta-whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}

.contact-cta-whatsapp:hover svg {
  color: #fff;
}

.contact-cta-email {
  background: #f5f6f7;
  color: #2a2a2a;
  border-color: #dfe1e4;
}

.contact-cta-email svg {
  color: var(--color-primary);
}

.contact-cta-email:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.contact-cta-email:hover svg {
  color: #fff;
  stroke: #fff;
}

.contact-cta-phone {
  background: #f5f6f7;
  color: #2a2a2a;
  border-color: #dfe1e4;
}

.contact-cta-phone svg {
  color: var(--color-primary);
}

.contact-cta-phone:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.contact-cta-phone:hover svg {
  color: #fff;
  stroke: #fff;
}

.contact-cta-instagram {
  background: #f5f6f7;
  color: #2a2a2a;
  border-color: #dfe1e4;
}

.contact-cta-instagram svg {
  color: #e1306c;
  stroke: #e1306c;
}

.contact-cta-instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
  color: #fff;
}

.contact-cta-instagram:hover svg {
  color: #fff;
  stroke: #fff;
}

.contact-cta-facebook {
  background: #f5f6f7;
  color: #2a2a2a;
  border-color: #dfe1e4;
}

.contact-cta-facebook svg {
  color: #1877f2;
}

.contact-cta-facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: #fff;
}

.contact-cta-facebook:hover svg {
  color: #fff;
}

.contact-cta-line {
  background: #f5f6f7;
  color: #2a2a2a;
  border-color: #dfe1e4;
}

.contact-cta-line svg {
  color: #06c755;
}

.contact-cta-line:hover {
  background: #06c755;
  border-color: #06c755;
  color: #fff;
}

.contact-cta-line:hover svg {
  color: #fff;
}

.contact-cta-viber {
  background: #f5f6f7;
  color: #2a2a2a;
  border-color: #dfe1e4;
}

.contact-cta-viber svg {
  color: #7360f2;
}

.contact-cta-viber:hover {
  background: #7360f2;
  border-color: #7360f2;
  color: #fff;
}

.contact-cta-viber:hover svg {
  color: #fff;
}

.contact-details {
  background: var(--color-bg-alt);
  padding: 40px;
  display: flex;
  flex-direction: column;
}

/* Decorative tilted envelope icon — top right */
/* Decorative faded email icon — behind Email button */
.contact-cta-email {
  position: relative;
}
.contact-cta-email::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 120px;
  height: 120px;
  transform: translateY(-50%) rotate(-15deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300a8c4' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/%3E%3Cpolyline points='22,6 12,13 2,6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

/* Decorative faded phone icon — behind Call button */
.contact-cta-phone {
  position: relative;
}
.contact-cta-phone::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 100px;
  height: 100px;
  transform: translateY(-50%) rotate(20deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300a8c4' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

/* Decorative faded WhatsApp icon — behind WhatsApp button */
.contact-cta-whatsapp {
  position: relative;
}
.contact-cta-whatsapp::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 110px;
  height: 110px;
  transform: translateY(-50%) rotate(12deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2325d366'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 0 1-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 0 1-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 0 1 2.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0 0 12.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 0 0 5.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 0 0-3.48-8.413z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

/* Decorative faded Instagram icon — behind Instagram button */
.contact-cta-instagram {
  position: relative;
}
.contact-cta-instagram::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 110px;
  height: 110px;
  transform: translateY(-50%) rotate(-10deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e1306c' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='20' height='20' rx='5' ry='5'/%3E%3Cpath d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z'/%3E%3Cline x1='17.5' y1='6.5' x2='17.51' y2='6.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

/* Decorative faded Facebook icon — behind Facebook button */
.contact-cta-facebook {
  position: relative;
}
.contact-cta-facebook::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 100px;
  height: 100px;
  transform: translateY(-50%) rotate(8deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231877f2'%3E%3Cpath d='M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

/* Decorative faded Viber icon — behind Viber button */
.contact-cta-viber {
  position: relative;
}
.contact-cta-viber::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 110px;
  height: 110px;
  transform: translateY(-50%) rotate(-12deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237360f2' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z'/%3E%3Cpath d='M14.5 13.5c-.4-.2-.8-.4-1.1-.2l-.6.5c-.2.2-.5.1-.7 0-.8-.5-1.5-1.2-2-2-.2-.2-.1-.5.1-.7l.5-.6c.2-.3 0-.7-.2-1.1-.2-.4-.5-.8-.8-1.1-.3-.2-.6-.2-.9 0-.6.5-1 1.1-1 1.8 0 .5.2.9.4 1.4.5 1 1.3 1.9 2.2 2.7.8.6 1.7 1.3 2.7 1.6.5.1.9.1 1.4-.1.7-.3 1.2-.8 1.4-1.5.1-.3-.1-.6-.3-.7-.3-.2-.7-.4-1.1-.6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

/* Keep content above the decorative icons */
.contact-ctas > * {
  position: relative;
  z-index: 1;
}

.contact-details h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-detail-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-primary);
  margin-top: 2px;
  stroke-width: 1.5;
}

.contact-detail-item a {
  font-size: 0.9375rem;
}

.contact-detail-item p,
.contact-detail-item address {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  font-style: normal;
  line-height: 1.6;
}

.contact-map-facade {
  margin-top: auto;
  overflow: hidden;
  position: relative;
}

.contact-map-facade picture {
  display: block;
}

.contact-map-facade.map-loaded picture {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.contact-map {
  width: 100%;
  display: block;
  object-fit: cover;
  border: none;
  filter: grayscale(100%);
  transition: filter var(--transition);
}


.contact-map-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.contact-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.contact-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-bg);
  color: var(--color-text-light);
  transition: all var(--transition);
}

.contact-social a:hover {
  background: var(--color-primary);
  color: #fff;
}

.contact-social a svg {
  width: 16px;
  height: 16px;
}

/* ─── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: 72px 0 24px;
}

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

.footer-brand .nav-logo-text {
  color: #fff;
  margin-bottom: 16px;
  display: block;
  font-size: 1.125rem;
}

.footer-logo-img {
  height: 44px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.8125rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--color-footer-text);
}

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

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-footer-text);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--color-primary);
  color: #fff;
}

.footer-social a svg {
  width: 14px;
  height: 14px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 0.8125rem;
  color: var(--color-footer-text);
  padding: 5px 0;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: #fff;
}

.footer-partners {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-partners img {
  height: 20px;
  opacity: 0.35;
  filter: grayscale(100%) brightness(2);
  transition: opacity var(--transition);
}

.footer-partners img:hover {
  opacity: 0.7;
}

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

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.footer-legal {
  display: inline-flex;
  gap: 24px;
  margin-bottom: 12px;
}

.footer-legal a {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.footer-legal a:hover {
  color: #fff;
}

/* ─── Legal Pages (Imprint, Privacy) ───────────────────────── */
.legal-page {
  padding: calc(var(--nav-height) + 64px) 0 var(--section-pad);
  background: var(--color-bg);
  min-height: 60vh;
}

.legal-page h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 40px;
}

.legal-page h2 {
  font-size: 1.25rem;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--color-primary);
}

.legal-page h3 {
  font-size: 1.1rem;
  margin-top: 32px;
  margin-bottom: 8px;
}

.legal-page h4 {
  font-size: 1rem;
  margin-top: 24px;
  margin-bottom: 8px;
  color: var(--color-text-light);
}

.legal-page p,
.legal-page address {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 16px;
  font-style: normal;
}

.legal-page ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-page li {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 4px;
}

.legal-page a {
  color: var(--color-primary);
}

.legal-page a:hover {
  text-decoration: underline;
}

.legal-page .container {
  max-width: 800px;
}

/* ─── WhatsApp Chat Widget ──────────────────────────────────── */
.wa-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
}

/* Floating Action Button */
.wa-fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
  position: relative;
}

.wa-fab:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.wa-fab-icon,
.wa-fab-close {
  width: 26px;
  height: 26px;
  position: absolute;
  transition: all var(--transition);
}

.wa-fab-close {
  opacity: 0;
  transform: rotate(-90deg) scale(0.5);
}

.wa-widget.open .wa-fab-icon {
  opacity: 0;
  transform: rotate(90deg) scale(0.5);
}

.wa-widget.open .wa-fab-close {
  opacity: 1;
  transform: rotate(0) scale(1);
}

/* Notification badge */
.wa-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  animation: badgePulse 2s ease-in-out infinite;
  pointer-events: none;
}

.wa-widget.open .wa-badge {
  display: none;
}

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

/* Chat Popup */
.wa-popup {
  position: absolute;
  bottom: 72px;
  right: 0;
  width: 340px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px) scale(0.95);
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: bottom right;
}

.wa-widget.open .wa-popup {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.wa-popup-header {
  background: #075e54;
  color: #fff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wa-popup-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-avatar svg {
  width: 24px;
  height: 24px;
}

.wa-popup-header-info strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
}

.wa-popup-header-info span {
  font-size: 0.6875rem;
  opacity: 0.8;
}

.wa-popup-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 4px;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.wa-popup-close:hover {
  opacity: 1;
}

.wa-popup-body {
  padding: 20px;
  background: #e5ddd5;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8c3bc' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  min-height: 100px;
}

.wa-message {
  background: #fff;
  padding: 12px 16px;
  border-radius: 0 8px 8px 8px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
  max-width: 260px;
  position: relative;
}

.wa-message::before {
  content: "";
  position: absolute;
  top: 0;
  left: -8px;
  width: 0;
  height: 0;
  border-top: 8px solid #fff;
  border-left: 8px solid transparent;
}

.wa-message p {
  font-size: 0.875rem;
  color: var(--color-text);
  line-height: 1.5;
  margin: 0;
}

.wa-time {
  display: block;
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  text-align: right;
  margin-top: 4px;
}

.wa-popup-footer {
  padding: 12px 20px 16px;
  background: #fff;
}

.wa-send-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: background var(--transition);
}

.wa-send-btn:hover {
  background: #1da851;
  color: #fff;
}

.wa-send-btn svg {
  width: 16px;
  height: 16px;
}

/* ─── Responsive ────────────────────────────────────────────── */

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

  .feature-block:nth-child(4) {
    border-right: none;
  }

  .destinations-secondary {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

}

@media (max-width: 768px) {
  :root {
    --section-pad: 64px;
  }

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

  /* Hero image mobile repositioning */
  .hero-bg-home { object-position: calc(50% + 150px) center; }
  .hero-bg-store { object-position: calc(50% + 125px) center; }

  /* Nav mobile */
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh;
    background: var(--color-bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    gap: 0;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
    transition: right var(--transition);
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-menu a {
    color: var(--color-text);
    padding: 16px 0;
    width: 100%;
    border-bottom: 1px solid var(--color-border-light);
    font-size: 0.8125rem;
  }

  .nav-menu a::after {
    display: none;
  }

  .nav-menu .btn-secondary {
    color: var(--color-text);
    border-color: var(--color-text);
    margin-top: 24px;
    text-align: center;
  }

  .nav-dropdown-menu {
    display: block;
    position: static;
    transform: none;
    padding-top: 0;
    padding-left: 16px;
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown-menu li {
    background: transparent;
    border-bottom: 0;
  }

  .nav-dropdown-menu a {
    padding: 10px 0 !important;
    font-size: 0.75rem !important;
    color: var(--color-text-light) !important;
    border-bottom: 1px solid var(--color-border-light) !important;
  }

  /* Layout adjustments */
  .lessons-grid,
  .instructors-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lessons-grid {
    margin-bottom: 56px;
  }

  .destination-primary {
    grid-template-columns: 1fr;
  }

  .destination-primary-image {
    min-height: 280px;
  }

  .destination-primary-info {
    padding: 32px 24px;
  }

  .destinations-secondary {
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
  }

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

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

  .feature-block {
    border-right: none;
    border-bottom: 1px solid var(--color-border-light);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 160px);
    gap: 2px;
    grid-template-areas:
      "a  a"
      "b  c"
      "d  e"
      "f  g"
      "h  i";
  }

  .gallery-item:nth-child(7)  { grid-area: g; }
  .gallery-item:nth-child(8)  { grid-area: h; }
  .gallery-item:nth-child(9)  { grid-area: i; }
  .gallery-item:nth-child(10) { display: none; }
  .gallery-item:nth-child(11) { display: none; }

  .review-badges {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .review-badge-rank-hero {
    min-width: 110px;
    padding: 20px 16px;
  }

  .review-badge-rank-number {
    font-size: 2.75rem;
  }

  .review-badge-icon {
    width: 56px;
    height: 56px;
  }

  .review-badge-rating {
    font-size: 1.75rem;
  }

  .review-badge-logo {
    padding: 16px 20px;
  }

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

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

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

  .hero-scroll-indicator {
    display: none;
  }
}

@media (max-width: 480px) {
  :root {
    --section-pad: 48px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    min-width: 0;
  }

  .review-badge-logo {
    display: none;
  }

  .review-badge-rank-hero {
    min-width: 90px;
    padding: 16px 12px;
  }

  .review-badge-rank-number {
    font-size: 2.25rem;
  }

  .review-badge-content {
    padding: 16px;
  }

  .review-badge-rating {
    font-size: 1.5rem;
  }

  .destinations-secondary {
    grid-template-columns: 1fr;
  }

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

  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .wa-widget {
    bottom: 16px;
    right: 16px;
  }

  .wa-fab {
    width: 50px;
    height: 50px;
  }

  .wa-popup {
    width: calc(100vw - 32px);
    right: -8px;
    bottom: 64px;
  }
}

/* ─── Placeholder images ────────────────────────────────────── */
.placeholder-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a2a32 0%, #0d1a1f 100%);
  color: rgba(255, 255, 255, 0.25);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ─── Print ─────────────────────────────────────────────────── */
@media print {
  .navbar,
  .whatsapp-widget,
  .hero-scroll-indicator,
  .lightbox {
    display: none !important;
  }

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

  .section-padding {
    padding: 32px 0;
  }
}

/* ============================================================
   Teal Band, Warm Accents & Image Dividers
   ============================================================ */

/* ─── Warm Accent Color ────────────────────────────────────── */
:root {
  --color-warm: #f0a050;
  --color-warm-dark: #d88c3c;
  --color-warm-glow: rgba(240, 160, 80, 0.12);
}

/* ─── Section Header Tighter Spacing ───────────────────────── */
.section-header {
  margin-bottom: 36px;
}

/* ─── About Section → Teal Color Band ──────────────────────── */
.about-teal-band {
  background: var(--color-primary);
  color: #fff;
  padding: 80px 0;
}

.about-teal-band .section-header h2 {
  color: #fff;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

.about-teal-band-tagline {
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* Stats Row */
.about-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-bottom: 48px;
}

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

.about-stat-number {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 4px;
}

.about-stat-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* Partner logos in teal band */
.about-teal-band .partner-logos {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 32px;
}

.about-teal-band .partner-logos img {
  filter: grayscale(100%) brightness(3);
  opacity: 0.5;
  height: 32px;
}

.about-teal-band .partner-logos img:hover {
  opacity: 0.9;
  filter: grayscale(0%) brightness(1);
}


/* ─── Amber Accents ────────────────────────────────────────── */
.testimonial-stars {
  color: var(--color-warm);
}

.best-for {
  background: var(--color-warm-glow);
  color: var(--color-warm-dark);
}

.dest-card-body .season {
  color: var(--color-warm);
}

.faq-question:hover {
  color: var(--color-warm);
}

/* ─── WhatsApp Widget Recoloring ───────────────────────────── */
.wa-popup-header {
  background: var(--color-bg-dark);
}

.wa-send-btn {
  background: var(--color-primary);
}

.wa-send-btn:hover {
  background: var(--color-primary-dark);
}

.wa-badge {
  background: var(--color-warm);
}

/* ─── Image Dividers (full-bleed photo + quote) ────────────── */
.image-divider {
  position: relative;
  height: 350px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-divider img {
  position: absolute;
  left: 0;
  width: 100%;
  height: 130%;
  top: -15%;
  object-fit: cover;
  will-change: transform;
}

.image-divider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.55);
  z-index: 1;
}

.image-divider-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 24px;
  max-width: 700px;
}

.image-divider-content blockquote {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  line-height: 1.4;
  letter-spacing: -0.01em;
  font-style: normal;
}

.image-divider-content cite {
  display: block;
  margin-top: 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.6);
  font-style: normal;
}

/* ─── Theme Responsive Overrides ───────────────────────────── */
@media (max-width: 768px) {
  .about-stats {
    gap: 32px;
    flex-wrap: wrap;
  }

  .image-divider {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .about-stats {
    gap: 24px;
  }

  .about-stat-number {
    font-size: 2rem;
  }

  .image-divider {
    height: 200px;
  }

  .image-divider-content blockquote {
    font-size: 1.125rem;
  }
}
