/* ============================
   LET'S FLY eFOIL – Style
   ============================ */

/* ====== CSS VARIABLES ====== */
/* Playfair Display removed per user request for sans-serif */

:root {
  /* ── Colors ── */
  --primary: #00A3FF;
  --primary-rgb: 0, 163, 255;
  --primary-dark: #0080CC;
  --primary-light: #33B8FF;
  --primary-glow: rgba(var(--primary-rgb), 0.15);
  --accent: #FF6B35;
  --accent-dark: #E55A25;
  --success: #28a745;
  --error: #dc3545;
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;

  /* ── Gradients ── */
  --gradient: linear-gradient(135deg, var(--primary), #00D4FF);
  --gradient-accent: linear-gradient(135deg, var(--accent), #FF9A5C);

  /* ── Surfaces ── */
  --dark: #081825;
  --dark-secondary: #0F2D44;
  --bg: #F4F9FC;
  --bg-alt: #FFFFFF;
  --card-bg: #FFFFFF;
  --border: rgba(var(--primary-rgb), 0.12);

  /* ── Text ── */
  --text: #003B5C;
  --text-light: #005A7A;
  --text-muted: #1A6B8C;

  /* ── Typography ── */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font: var(--font-body);
  --text-xs: 0.8rem;
  --text-sm: 0.85rem;
  --text-base: 1rem;
  --text-md: 1.05rem;
  --text-lg: 1.15rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: clamp(2rem, 4vw, 3rem);
  --text-4xl: clamp(2.5rem, 6vw, 4rem);

  /* ── Spacing (8px base) ── */
  --space-2xs: 4px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 80px;

  /* ── Shadows ── */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 40px rgba(var(--primary-rgb), 0.08);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);
  --card-shadow: var(--shadow-md);
  --card-shadow-hover: var(--shadow-lg);

  /* ── Radii ── */
  --radius: 12px;
  --radius-sm: 8px;
  --radius-xs: 4px;
  --radius-pill: 50px;
  --radius-round: 50%;

  /* ── Transitions ── */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* ── Layout ── */
  --container: 1100px;
}

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

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

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
  word-break: break-word;
}

h1, h2, h3, h4, h5, h6, .hero h1, .section-title, .blog-hero-title, .title, .card-header h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

h1 span, h2 span, h3 span, .title span, h1 i, h2 i, h3 i {
  font-weight: 400; /* Slightly lighter for italic accents in sans-serif */
  color: var(--primary);
}

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

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

ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.text-center { text-align: center; }
.mx-auto { max-width: 640px; margin-left: auto; margin-right: auto; }

.gradient-text {
  color: var(--primary);
  display: inline-block;
  padding: 0.2em 0.15em;
  margin: -0.2em -0.15em;
  vertical-align: bottom;
}

/* ====== BUTTONS ====== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.78rem 1.78rem;
  background: var(--gradient);
  color: #fff;
  font-weight: 600;
  font-size: var(--text-base);
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
  box-shadow: 0 4px 16px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(var(--primary-rgb), 0.3);
}

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.78rem 1.78rem;
  background: transparent;
  color: var(--primary);
  font-weight: 600;
  font-size: var(--text-base);
  border-radius: var(--radius-pill);
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
}

.btn-secondary:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ====== SECTION STYLES ====== */
.section-badge {
  display: inline-block;
  padding: 0.33rem var(--space-md);
  background: var(--primary-glow);
  color: var(--primary);
  border-radius: var(--radius-pill);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.section-title {
  font-size: var(--text-3xl);
  font-weight: 700;
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

.section-subtitle {
  font-size: var(--text-md);
  color: var(--text-light);
  margin-bottom: var(--space-2xl);
}

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

/* Dark section utility – used by process, disclaimer, etc. */
.section-dark {
  background: var(--dark);
  color: #fff;
}

.section-dark .section-badge {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.section-dark .section-title,
.section-dark .section-subtitle {
  color: #fff;
}

/* Anchor scroll offset under fixed navbar */
:root {
  --nav-scroll-offset: 88px;
}

#hero,
#was-ist-efoil,
#faq,
#gallery,
#booking,
#contact {
  scroll-margin-top: var(--nav-scroll-offset);
}

/* ====== NAVBAR ====== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-sm) 0;
  transition: all var(--transition);
  /* Default: immer sichtbarer Hintergrund */
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: var(--space-xs) 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.56rem;
  font-weight: 800;
  font-size: var(--text-xl);
  padding: var(--space-2xs);
  transition: all var(--transition);
}

.nav-logo:hover {
  opacity: 0.85;
}

.navbar.scrolled .nav-logo {
  opacity: 1;
}

.logo-img {
  height: 56px;
  width: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.navbar.scrolled .logo-img {
  height: 48px;
  width: 48px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.56rem;
  flex: 1;
  margin-left: 0.5rem;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text);
  transition: color var(--transition);
}



.nav-links a:hover {
  color: var(--primary);
}

.nav-links a.nav-active {
  color: var(--primary);
  position: relative;
}

.nav-links a.nav-active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
}


.nav-links .nav-cta {
  margin-left: auto;
  padding: 10px 24px;
  background: var(--gradient);
  color: #fff;
  border-radius: var(--radius-pill);
  font-weight: 600;
}

.nav-cta:hover {
  box-shadow: 0 4px 16px var(--primary-glow);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

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

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

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

/* ====== SKIP LINK ====== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  padding: 8px 16px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-xs);
  z-index: 9999;
  font-weight: 600;
  transition: top 0.2s;
}

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

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

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    #081825 0%,
    #0B2E4A 30%,
    #0E5C7A 50%,
    #00A3FF 70%,
    #7DD4FF 90%,
    var(--bg) 100%
  );
  z-index: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(8, 24, 37, 0.75) 0%,
    rgba(8, 24, 37, 0.5) 50%,
    rgba(8, 24, 37, 0.8) 100%
  );
  z-index: 2;
}

.hero-waves {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 3;
}

.hero-waves svg {
  display: block;
  width: 100%;
  height: 80px;
}

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

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

.hero-logo {
  max-width: 270px;
  margin: 0 auto var(--space-xl);
  padding: 0;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;

  /* ── Liquid Glass Core ── */
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(24px) saturate(2) brightness(1.1);
  -webkit-backdrop-filter: blur(24px) saturate(2) brightness(1.1);

  /* ── Sharp Glass Edge ── */
  border: 1px solid rgba(255, 255, 255, 0.4);

  /* ── 3D Shadows & Inner Lights ── */
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.35),
    inset 0 6px 16px rgba(255, 255, 255, 0.8),
    inset 0 -4px 12px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.2);

  /* ── Float animation ── */
  animation: liquidGlassFloat 5s ease-in-out infinite;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Specular Highlight (Apple Glass Shine) ── */
.hero-logo::before {
  content: '';
  position: absolute;
  top: 2%;
  left: 10%;
  right: 10%;
  height: 40%;
  border-radius: 50% 50% 20% 20% / 100% 100% 0% 0%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: overlay;
}

/* ── Caustic Inner Glow ── */
.hero-logo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 -10px 30px rgba(0, 163, 255, 0.2);
  pointer-events: none;
  z-index: 2;
}

/* ── Hover: Extra Glass Lift ── */
.hero-logo:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.4),
    inset 0 8px 20px rgba(255, 255, 255, 0.9),
    inset 0 -4px 12px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.3);
}

/* ── Floating keyframes ── */
@keyframes liquidGlassFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.hero-logo-img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  border-radius: 50%;
  position: relative;
  z-index: 3;
  /* Dies entfernt den weißen Hintergrund vom Logo-Bild und zeigt das Glas! */
  mix-blend-mode: multiply;
  filter: contrast(1.15) saturate(1.1);
  pointer-events: none;
}

.hero h1 {
  font-size: var(--text-4xl);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-md);
  line-height: 1.1;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 300;
  color: #ffffff;
  margin-bottom: var(--space-lg);
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6), 0 2px 4px rgba(0, 0, 0, 0.4);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.hero .gradient-text {
  color: var(--primary);
}

.hero-description {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

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

.hero .btn-secondary {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

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

/* ====== ABOUT ====== */
.about-section {
  background: var(--bg-alt);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
  margin-top: var(--space-2xl);
}

.about-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform var(--transition-slow);
}

.about-image:hover img {
  transform: scale(1.02);
}

.about-text h3 {
  font-size: 1.4rem;
  margin-bottom: var(--space-2xs);
  font-weight: 700;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: var(--space-sm);
  font-size: var(--text-md);
  line-height: 1.7;
}

.about-text .about-lead {
  font-size: var(--text-lg);
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.about-text .about-tagline {
  margin-top: 1.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.02em;
}

.about-text .about-location {
  margin-top: var(--space-md);
  font-weight: 600;
  color: var(--primary);
  font-size: 1.1rem;
}

.about-image-secondary {
  margin-top: 40px;
  text-align: center;
}

.about-image-secondary img {
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-image-secondary:hover img {
  transform: scale(1.02);
}

/* Reverse layout: text left, image right (desktop) */
.about-grid-reverse .about-text {
  order: 1;
}

.about-grid-reverse .about-image-secondary {
  order: 2;
}

/* ====== SUBPAGE HERO (without image) ====== */
.page-hero {
  background: var(--bg-alt);
  padding: 130px 0 var(--space-xl);
  text-align: center;
}

.page-hero .section-badge {
  margin-bottom: var(--space-sm);
}

.page-hero .section-title {
  margin-bottom: var(--space-xs);
}

.page-hero .section-subtitle {
  max-width: 640px;
  margin: 0 auto;
  font-size: var(--text-lg);
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ====== BLOG / ÜBER MICH PAGE ====== */
.blog-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding: 140px 0 var(--space-2xl);
  text-align: center;
  color: white;
}

.blog-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    #081825 0%,
    #0B2E4A 40%,
    #0E5C7A 70%,
    #00A3FF 100%
  );
  z-index: 0;
}

.blog-hero-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.blog-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.blog-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(8, 24, 37, 0.75) 0%,
    rgba(8, 24, 37, 0.65) 50%,
    rgba(8, 24, 37, 0.88) 100%
  );
  z-index: 2;
}

.blog-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.blog-hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  margin: var(--space-md) 0 20px;
  line-height: 1.15;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.6), 0 2px 8px rgba(0, 0, 0, 0.4);
}

.blog-hero .gradient-text {
  color: var(--primary);
}

.blog-hero-subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6), 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* Blog Article Body */
.blog-article {
  background: var(--bg);
  padding: var(--space-3xl) 0;
}

.blog-date-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.blog-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.blog-body {
  max-width: 720px;
  margin: 0 auto;
}

.blog-section {
  margin-bottom: 56px;
}

.blog-section p {
  color: var(--text-light);
  font-size: 1.08rem;
  line-height: 1.85;
  margin-bottom: 16px;
}

.blog-section p em {
  color: var(--text-muted);
}

.blog-section p strong {
  color: var(--text);
}

/* Blog Lead Paragraph */
.blog-section .blog-lead {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.8;
}

/* Blog Intro (Über Mich page) – reuses .about-grid from homepage */
.blog-section .about-grid {
  margin-top: 0;
}

.blog-section .about-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Chapter Titles */
.blog-chapter-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  line-height: 1.3;
}

.pricing-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.blog-chapter-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-glow);
  color: var(--primary);
  font-size: 1rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* Blog Blockquote */
.blog-quote {
  margin: 32px 0;
  padding: 28px 32px;
  border-left: 4px solid var(--primary);
  background: linear-gradient(135deg, var(--primary-glow), rgba(var(--primary-rgb), 0.03));
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.blog-section .blog-quote p {
  font-size: var(--text-lg);
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 0;
}

.blog-quote cite {
  display: block;
  margin-top: 12px;
  font-size: 0.95rem;
  color: var(--primary);
  font-style: normal;
  font-weight: 600;
}

/* Highlight Box */
.blog-highlight-box {
  display: flex;
  gap: 20px;
  padding: 24px 28px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  margin: 32px 0;
  align-items: flex-start;
}

.blog-highlight-icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
}

.blog-highlight-text {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
}

.blog-highlight-text strong {
  color: var(--text);
}

/* Values Grid */
.blog-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}

.blog-value-card {
  padding: 28px 24px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  transition: all var(--transition);
}

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

.blog-value-emoji {
  font-size: 2rem;
  margin-bottom: 12px;
}

.blog-value-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.blog-section .blog-value-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 0;
}

/* Blog CTA */
.blog-cta {
  text-align: center;
  padding: 48px 32px;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.04), rgba(var(--primary-rgb), 0.08));
  border-radius: var(--radius);
  border: 1px solid rgba(var(--primary-rgb), 0.12);
  margin-top: 24px;
}

.blog-cta h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text);
}

.blog-cta > p {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

.blog-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

/* ====== PRICING ====== */
.pricing-section {
  background: var(--bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 8px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.price-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(var(--primary-rgb), 0.3);
}

.card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.card-header {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

@media (max-width: 900px) {
  .card-header {
    min-height: auto;
  }
}

.card-header h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.card-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
}

.price-amount {
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: wrap;
}

.price-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.price-currency {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
  margin-right: 4px;
}

.price-duration {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-muted);
}

.price-duration span {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

.price-amount-text {
  font-size: 2rem;
  line-height: 1.2;
  display: block;
}

@media (max-width: 768px) {
  .price-amount-text {
    font-size: 1.6rem;
  }
}

.price-footer-text {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
}

.price-amount + .price-footer-text {
  min-height: 90px;
}

.features-list {
  list-style: none;
  margin-bottom: 2.22rem;
  flex-grow: 1;
}

.features-list li {
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.95rem;
  color: var(--text);
}

.features-list li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 800;
}

.price-card .btn-primary,
.price-card .btn-secondary {
  width: 100%;
  justify-content: center;
  margin-top: auto;
  padding: 0.89rem 1.78rem;
  font-size: 1.1rem;
}

/* ====== PROCESS ====== */

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 800px;
  margin: 0 auto;
  gap: 2rem;
}

.process-step {
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.step-number {
  width: 3.56rem;
  height: 3.56rem;
  border-radius: var(--radius-round);
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.11rem;
}

.step-number span {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.process-step h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
  color: var(--text);
}

.process-step p {
  color: var(--text-light);
  font-size: 1.05rem;
}

/* ====== GALLERY ====== */
.gallery-section {
  background: var(--bg-alt);
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}

.gallery-grid > .gallery-item:first-child {
  grid-row: 1 / 3;
}

.gallery-grid > .gallery-item:first-child img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item {
  break-inside: avoid;
  display: block;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: var(--bg);
  cursor: zoom-in;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(var(--primary-rgb), 0.12);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.gallery-video {
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Gallery CTA Tile */
.gallery-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 100%;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(var(--primary-rgb), 0.15);
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-cta:hover {
  background: rgba(var(--primary-rgb), 0.08);
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(var(--primary-rgb), 0.12);
}

.gallery-cta-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}

.gallery-cta-arrow {
  font-size: 1.4rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.gallery-cta:hover .gallery-cta-arrow {
  transform: translateX(6px);
}

/* ====== BOOKING ====== */
.booking-section {
  background: var(--bg);
}

.booking-wizard {
  max-width: 900px;
  margin: 0 auto;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid var(--border);
}

.booking-steps-indicator {
  display: flex;
  border-bottom: 1px solid var(--border);
}

.step-dot {
  flex: 1;
  padding: 16px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-light);
  background: var(--bg);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.step-dot span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all var(--transition);
}

.step-dot.active {
  color: var(--primary);
  background: var(--card-bg);
}

.step-dot.active span {
  background: var(--gradient);
  color: #fff;
}

.step-dot.completed span {
  background: var(--success);
  color: #fff;
}

.booking-step {
  display: none;
  padding: 32px;
  animation: fadeInUp 0.4s ease;
}

.booking-step.active {
  display: block;
}

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

/* Calendar */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.calendar-wrapper {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 20px;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.calendar-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
}

.cal-nav {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card-bg);
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-family: var(--font);
  color: var(--text);
}

.cal-nav:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 8px;
}

.calendar-weekdays span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 0;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xs);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  background: transparent;
  font-family: var(--font);
  color: var(--text);
  position: relative;
  flex-direction: column;
  gap: 2px;
}

.cal-day:hover:not(.disabled):not(.empty) {
  background: var(--primary-glow);
  color: var(--primary);
}

.cal-day.selected,
.cal-day.selected:hover {
  background: var(--gradient);
  color: #fff;
  font-weight: 700;
}

.cal-day.selected .avail-dot {
  background: #fff;
}

.cal-day.disabled {
  color: var(--text-muted);
  opacity: 0.4;
  cursor: not-allowed;
}

.cal-day.today {
  border: 2px solid var(--primary);
  font-weight: 600;
}

.cal-day.empty {
  cursor: default;
}

/* Green availability indicator dot */
.avail-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #28a745;
  display: block;
  margin-top: 1px;
}

.cal-day.available {
  font-weight: 600;
}

.cal-day.available:not(.selected):not(:hover) {
  color: var(--text);
}

/* Booking Options */
.booking-options {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.option-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

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

/* Timeslot hint (shown when no date selected) */
.timeslot-hint {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 20px 12px;
  background: var(--bg);
  border-radius: var(--radius-xs);
  border: 1px dashed var(--border);
  margin: 0;
  line-height: 1.5;
}

.timeslot-hint .hint-green {
  color: var(--success);
  font-weight: 600;
}

.timeslot-hint.timeslot-error {
  border-color: var(--error);
  color: var(--error);
  background: rgba(220, 53, 69, 0.05);
}

.timeslot {
  padding: 10px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border);
  background: var(--bg);
  cursor: pointer;
  font-size: 0.9rem;
  font-family: var(--font);
  font-weight: 500;
  transition: all var(--transition);
  color: var(--text);
}

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

.timeslot.selected {
  background: var(--gradient);
  color: #fff;
  border-color: var(--primary);
}

.package-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.package-option {
  padding: 12px 16px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border);
  background: var(--bg);
  cursor: pointer;
  font-family: var(--font);
  transition: all var(--transition);
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  color: var(--text);
}

.package-option:hover {
  border-color: var(--primary);
}

.package-option strong {
  font-size: 0.95rem;
}

.package-option span {
  font-size: 0.85rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.package-option.selected {
  background: var(--primary-glow);
  border-color: var(--primary);
}

.package-option.selected span {
  color: var(--primary);
}

.booking-next {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

/* Booking Form */
.booking-summary-bar {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 24px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.booking-summary-bar .summary-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.booking-summary-bar .summary-label {
  color: var(--text-muted);
}

.booking-summary-bar .summary-value {
  font-weight: 600;
  color: var(--primary);
}

.booking-form {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

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

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

.form-group.full-width {
  width: 100%;
}

.form-group label {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  background: var(--bg);
  color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.disclaimer-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
  padding: 16px;
  background: rgba(0, 163, 255, 0.03);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 163, 255, 0.1);
}

.disclaimer-check {
  width: 100%;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-light);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--primary);
}

.link {
  color: var(--primary);
  text-decoration: underline;
}

.form-buttons {
  display: flex;
  gap: 12px;
  width: 100%;
  justify-content: space-between;
  margin-top: 8px;
}

/* Payment */
.booking-summary-final {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin-bottom: 24px;
}

.payment-section h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.payment-info {
  color: var(--text-light);
  margin-bottom: 24px;
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.paypal-placeholder {
  text-align: center;
  padding: 24px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1px dashed var(--border);
}

.paypal-placeholder p {
  margin-bottom: 8px;
  color: var(--text-light);
  font-size: 0.9rem;
}

.payment-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.divider-or {
  text-align: center;
  position: relative;
}

.divider-or::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: var(--border);
}

.divider-or span {
  background: var(--card-bg);
  padding: 0 16px;
  position: relative;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.bank-details {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-top: 12px;
}

.bank-details p {
  font-size: 0.9rem;
  margin-bottom: 4px;
  color: var(--text);
}

.bank-transfer h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

/* Success */
.booking-step-hidden {
  display: none;
}

/* PayPal Branded Button */
#paypalCheckoutBtn {
  width: 100%;
  background: #FFC439;
  color: #111;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}

.paypal-logo-pay {
  font-weight: 800;
  color: #003087;
  margin-right: 2px;
  font-size: 1.1rem;
}

.paypal-logo-pal {
  font-weight: 800;
  color: #0079C1;
  margin-right: 8px;
  font-size: 1.1rem;
}

#paypalForm {
  display: none;
}

.link-download {
  font-weight: 600;
}

.success-message {
  text-align: center;
  padding: 48px 24px;
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.success-message h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.success-message p {
  color: var(--text-light);
  margin-bottom: 12px;
}

/* ====== DISCLAIMER ====== */

.disclaimer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}

.disclaimer-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.disclaimer-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.disclaimer-card p,
.disclaimer-card li {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.7;
}

.disclaimer-card ul {
  padding-left: 0;
}

.disclaimer-card li {
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}

.disclaimer-card li::before {
  content: '•';
  position: absolute;
  left: 4px;
  color: var(--accent);
}

/* ====== FAQ ====== */
.faq-section {
  background: var(--bg-alt);
}

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

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

.faq-question {
  width: 100%;
  padding: 20px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color var(--transition), background var(--transition);
}

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

.faq-icon {
  font-size: 1.3rem;
  transition: transform var(--transition);
  color: var(--primary);
}

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

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

.faq-answer p {
  padding-bottom: 20px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ====== CONTACT ====== */
.contact-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
  max-width: 900px;
  margin: var(--space-2xl) auto 0;
  justify-content: center;
}

.contact-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 1.33rem;
  padding: 2.22rem 1.78rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(var(--primary-rgb), 0.1);
  background: rgba(255, 255, 255, 0.85);
  border-color: var(--primary-light);
}

.contact-avatar {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-round);
  margin-bottom: 1.11rem;
  object-fit: cover;
  object-position: top;
  border: 4px solid #fff;
  box-shadow: var(--shadow-sm);
}

.contact-icon-glass {
  width: 3.56rem;
  height: 3.56rem;
  background: var(--primary-glow);
  color: var(--primary);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.11rem;
  box-shadow: inset 0 0 12px rgba(255,255,255,0.5);
}

.contact-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.contact-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.contact-card .btn-contact {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

.btn-whatsapp-glass {
  background: var(--whatsapp);
  color: #fff;
  border-radius: 50px;
  padding: 12px 24px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-glass:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-glass svg {
  width: 20px;
  height: 20px;
}


/* ====== FOOTER ====== */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 24px;
}

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

.footer-brand p {
  margin-top: 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-cta {
  margin-top: 16px;
  font-size: 0.85rem;
  padding: 10px 24px;
}

.footer-logo-img {
  height: 56px;
  width: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-column h4 {
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}

.footer-column a,
.footer-column p {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
  transition: color var(--transition), letter-spacing var(--transition);
}

.footer-column a:hover {
  color: #fff;
  letter-spacing: 0.02em;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ====== COOKIE BANNER ====== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  z-index: 9999;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner.hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.cookie-banner p {
  font-size: 1.05rem;
  margin: 0;
  line-height: 1.5;
}

.cookie-accept {
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-decline {
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
  border-color: rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.8);
  background: transparent;
}

.cookie-decline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}



.contact-coming-soon {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.iban-placeholder {
  color: var(--text-muted);
}

/* ====== REVEAL ANIMATIONS ====== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Staggered reveal for grid children */
.pricing-grid .price-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.pricing-grid .price-card.reveal:nth-child(3) { transition-delay: 0.2s; }
.pricing-grid .price-card.reveal:nth-child(4) { transition-delay: 0.3s; }
.pricing-grid .price-card.reveal:nth-child(5) { transition-delay: 0.4s; }

.process-steps .process-step.reveal:nth-child(2) { transition-delay: 0.15s; }
.process-steps .process-step.reveal:nth-child(3) { transition-delay: 0.3s; }

.disclaimer-content .disclaimer-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.disclaimer-content .disclaimer-card.reveal:nth-child(3) { transition-delay: 0.2s; }
.disclaimer-content .disclaimer-card.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ====== SCROLL-TO-TOP BUTTON ====== */
.scroll-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-round);
  background: var(--card-bg);
  color: var(--primary);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  z-index: 997;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition);
  font-family: var(--font);
}

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

.scroll-to-top:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--primary-glow);
}

.scroll-to-top:active {
  transform: scale(0.9);
  transition-duration: 0.1s;
}

/* ====== FOCUS VISIBLE (Accessibility) ====== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
  .pricing-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

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

  .gallery-grid > .gallery-item:first-child {
    grid-row: auto;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-4px);
  }

  .about-grid,
  .about-grid.about-grid-reverse {
    grid-template-columns: 1fr;
    grid-template-areas: none;
    gap: var(--space-xl);
  }

  .about-grid > *,
  .about-grid.about-grid-reverse > * {
    order: unset;
    min-width: 0;
  }

  .blog-intro-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .blog-intro-image img {
    aspect-ratio: 16/9;
    max-height: 280px;
  }

  .blog-values-grid {
    grid-template-columns: 1fr;
  }

  .blog-chapter-title {
    font-size: 1.3rem;
  }

  .blog-hero {
    padding: 120px 0 60px;
    min-height: 50vh;
  }

  .blog-cta {
    padding: 32px 20px;
  }

  .blog-quote {
    padding: 20px 24px;
  }

  .blog-highlight-box {
    flex-direction: column;
    gap: 12px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process-step {
    padding-left: 3.5rem;
  }

  .process-step::before {
    left: 1rem;
    top: 2rem;
    width: 2rem;
    height: 2rem;
    font-size: 0.9rem;
  }

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

  .disclaimer-content {
    grid-template-columns: 1fr;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --text-4xl: clamp(2.2rem, 8vw, 2.5rem);
    --text-3xl: clamp(1.8rem, 6vw, 2.2rem);
  }

  .container {
    padding: 0 var(--space-md);
  }

  .nav-hamburger {
    display: flex;
    margin-left: auto;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 var(--radius) var(--radius);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: none; /* Add display none by default */
    margin-left: 0;
  }

  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    display: flex; /* Override display when open */
  }

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

  .gallery-grid > .gallery-item:first-child {
    grid-row: auto;
  }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 24px 20px 80px 20px;
  }



  .navbar .nav-links a {
    color: var(--text);
    font-size: 1rem;
  }

  .nav-links .nav-cta {
    margin-left: 0;
  }

  .hero-logo {
    max-width: 200px;
  }

  section {
    padding: 60px 0;
  }

  .hero {
    min-height: 90vh;
  }

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

  .booking-steps-indicator {
    font-size: 0.8rem;
  }

  .step-dot {
    padding: 12px 8px;
    flex-direction: column;
    gap: 4px;
  }

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

  .form-buttons {
    flex-direction: column-reverse;
  }

  .form-buttons .btn-primary,
  .form-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}



/* ====== UTILITY CLASSES ====== */
.bg-alt {
  background-color: var(--bg-alt);
}

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

.pt-80 {
  padding-top: 80px;
}

.mt-1 { margin-top: 1rem; }
.mt-1-5 { margin-top: 1.5rem; }
.mt-2 { margin-top: 2rem; }
.mt-section { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-1-5 { margin-bottom: 1.5rem; }
.font-bold { font-weight: 700; }
.font-lg { font-size: 1.1rem; }

/* About text closing tagline (Über Mich page) */
.about-text-closing {
  font-size: 1.4rem;
  margin-top: 2rem;
}

/* Gallery standalone page – tighter top spacing */
.gallery-section.gallery-page {
  padding-top: var(--space-md);
}

/* ====== PRICING LEGAL NOTE ====== */
.pricing-legal-note {
  margin-top: 1rem;
  font-size: var(--text-xs);
  color: var(--text-muted);
  opacity: 0.7;
}

.pricing-cta-block {
  margin-top: 3rem;
}

.pricing-cta-block .brand-tagline {
  margin-top: 0.75rem;
  font-weight: 700;
}

/* ====== PROCESS STEP COUNTERS ====== */
.process-steps {
  counter-reset: process-counter;
}

.process-step {
  counter-increment: process-counter;
  position: relative;
  padding-left: 4rem;
}

.process-step::before {
  content: counter(process-counter);
  position: absolute;
  left: 1.5rem;
  top: 2.5rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: var(--radius-round);
  background: var(--gradient);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px var(--primary-glow);
}

/* ====== INFO-BOX IMAGE ====== */
.info-box-image {
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius);
  margin-top: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.process-step-wide {
  text-align: left;
  padding: 2.5rem;
  justify-content: flex-start;
  align-items: flex-start;
}

.process-step-wide p {
  text-align: left;
  margin-top: 1rem;
}

.process-step-wide p:first-of-type {
  margin-top: 0;
}

.process-step .highlight-box {
  color: var(--primary);
  font-weight: 600;
  margin-top: 0.5rem;
  background: rgba(var(--primary-rgb), 0.12);
  padding: 1rem;
  border-radius: var(--radius-sm);
}

.info-box.highlight h4 {
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
}

/* ====== CHECK-LIST & HIGHLIGHT UTILITIES ====== */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  padding: 6px 0;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
}

.highlight-text {
  font-weight: 600;
  color: var(--primary);
  font-size: 1.05rem;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(var(--primary-rgb), 0.06);
  border-radius: var(--radius-sm);
}

.highlight-text-inline {
  font-weight: 600;
  color: var(--primary);
  font-size: 1.05rem;
  margin-top: 1rem;
  padding: 0;
  background: transparent;
}

.info-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.info-box h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.info-box p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}


/* ====== LIGHTBOX / MODAL ====== */
.gallery-item {
  cursor: pointer;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lightbox-overlay.active .lightbox-content {
  transform: scale(1);
}

.lightbox-content img,
.lightbox-content video {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
  object-fit: contain;
  display: block;
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  z-index: 10001;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  z-index: 10001;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.lightbox-counter {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  z-index: 10001;
  font-family: var(--font);
}

/* Play icon overlay for video thumbnails in gallery */
.gallery-item.gallery-video::after {
  content: '▶';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  pointer-events: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2;
}

.gallery-item.gallery-video:hover::after {
  background: rgba(var(--primary-rgb), 0.7);
  transform: translate(-50%, -50%) scale(1.1);
}

/* Mobile lightbox adjustments */
@media (max-width: 768px) {
  .lightbox-nav {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }

  .lightbox-prev {
    left: 12px;
  }

  .lightbox-next {
    right: 12px;
  }

  .lightbox-close {
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }

  .lightbox-content img,
  .lightbox-content video {
    max-width: 95vw;
    max-height: 80vh;
    border-radius: 8px;
  }
}

/* ====== PAGE TABS (Angebot Sub-Navigation) ====== */
.page-tabs {
  position: sticky;
  top: 56px; /* below navbar */
  z-index: 99;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.page-tabs.has-shadow {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.page-tabs .container {
  padding-top: 0;
  padding-bottom: 0;
}

.page-tabs-inner {
  display: flex;
  gap: var(--space-xs);
  justify-content: center;
  padding: var(--space-xs) 0;
}

.page-tab {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-lg);
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font);
  font-size: var(--text-base);
  font-weight: 500;
  cursor: pointer;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  position: relative;
  white-space: nowrap;
}

.page-tab::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 3px;
  background: var(--gradient);
  border-radius: 3px;
  transition: transform var(--transition);
}

.page-tab:hover {
  color: var(--primary);
  background: var(--primary-glow);
}

.page-tab.active {
  color: var(--primary);
  font-weight: 600;
}

.page-tab.active::after {
  transform: translateX(-50%) scaleX(1);
}

.page-tab-icon {
  font-size: 1.1em;
  line-height: 1;
}

.page-tab-label {
  line-height: 1;
}

/* Tab Panels */
.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: tabFadeIn 0.4s ease forwards;
}

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

/* ── Responsive: Tab bar ── */
@media (max-width: 768px) {
  .page-tabs {
    top: 48px; /* smaller navbar on mobile */
  }

  .page-tab {
    padding: var(--space-xs) var(--space-md);
    font-size: var(--text-sm);
  }

  .page-tab-icon {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-tabs-inner {
    gap: var(--space-2xs);
  }

  .page-tab {
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.82rem;
  }
}

/* ====== COOKIE BANNER ====== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: var(--space-lg);
  background: rgba(8, 24, 37, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(var(--primary-rgb), 0.2);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.25);
  animation: cookieSlideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.3s ease;
}

@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.cookie-banner-content {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-lg);
}

.cookie-banner-content h4 {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: #fff;
  width: 100%;
  margin-bottom: -8px;
}

.cookie-banner-content p {
  flex: 1;
  min-width: 280px;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.cookie-banner-content p .link {
  color: var(--primary-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner-content p .link:hover {
  color: #fff;
}

.cookie-banner-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.cookie-banner-buttons .btn-sm {
  padding: 0.6rem 1.4rem;
  font-size: var(--text-sm);
  white-space: nowrap;
}

.cookie-banner-buttons .btn-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.85);
}

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

/* Revoke button on datenschutz page */
.cookie-revoke-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  margin-top: var(--space-md);
  padding: 0.5rem 1.2rem;
  background: var(--primary-glow);
  color: var(--primary);
  font-weight: 600;
  font-size: var(--text-sm);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
}

.cookie-revoke-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

@media (max-width: 768px) {
  .cookie-banner {
    padding: var(--space-md);
  }

  .cookie-banner-content {
    flex-direction: column;
    gap: var(--space-md);
  }

  .cookie-banner-buttons {
    width: 100%;
    justify-content: stretch;
  }

  .cookie-banner-buttons .btn-sm {
    flex: 1;
    text-align: center;
    justify-content: center;
  }
}
