/* ==========================================================================
   FM DEEJAYS - Modern, Fast, Responsive CSS (No WordPress)
   Corporate Colors: #da251c (Red), #243b56 (Navy), #5ce3de (Teal), #ffffff (White)
   ========================================================================== */

:root {
  /* Colors */
  --primary: #ce241c;
  --primary-hover: #b31b14;
  --primary-light: #fff5f5;
  --secondary: #5ce3de;
  --navy: #1e324a;
  --navy-dark: #122133;
  --dark: #1e293b;
  --gray-900: #0f172a;
  --gray-800: #1e293b;
  --gray-700: #334155;
  --gray-600: #475569;
  --gray-500: #64748b;
  --gray-400: #94a3b8;
  --gray-300: #cbd5e1;
  --gray-200: #e2e8f0;
  --gray-100: #f1f5f9;
  --gray-50: #f8fafc;
  --white: #ffffff;
  --whatsapp: #22c55e;
  --whatsapp-hover: #16a34a;

  /* Typography */
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-heading: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Spacing */
  --container-max: 1200px;
  --container-narrow: 860px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px 0 rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 12px -2px rgba(15, 23, 42, 0.08), 0 2px 4px -1px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 12px 24px -4px rgba(15, 23, 42, 0.1), 0 4px 8px -2px rgba(15, 23, 42, 0.05);
  --shadow-xl: 0 20px 30px -6px rgba(15, 23, 42, 0.12), 0 10px 12px -5px rgba(15, 23, 42, 0.04);
  --shadow-glass: 0 8px 32px 0 rgba(30, 50, 74, 0.1);

  /* Transitions */
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gray-700);
  background-color: var(--white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  width: 100%;
}

img, svg, picture, video {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--gray-900);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h1 { font-size: clamp(1.75rem, 4.5vw, 2.75rem); }
h2 { font-size: clamp(1.35rem, 3.5vw, 2rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.45rem); }
h4 { font-size: 1.1rem; }

p {
  margin-bottom: 1.25rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

p:last-child {
  margin-bottom: 0;
}

ul, ol {
  margin-bottom: 1.25rem;
  padding-left: 1.4rem;
}

li {
  margin-bottom: 0.4rem;
}

hr {
  border: none;
  height: 1px;
  background-color: var(--gray-200);
  margin: 2.5rem 0;
}

/* Layout Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.container-narrow {
  max-width: var(--container-narrow);
}

.section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.section-sm {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 2.25rem auto;
}

.section-header h2 {
  margin-bottom: 0.45rem;
}

.section-header p {
  color: var(--gray-600);
  font-size: 1.05rem;
  margin-bottom: 0;
}

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

.section-dark {
  background-color: var(--navy);
  color: var(--gray-100);
}

.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 {
  color: var(--white);
}

/* Header & Navigation */
.site-header {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--gray-200);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

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

.site-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.site-subtitle {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--gray-700);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: inline-block;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background-color: var(--primary-light);
}

.nav-cta {
  margin-left: 0.5rem;
}

/* Mobile Navigation Toggle (Animated Hamburger) */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5.5px;
  z-index: 1020;
  margin-left: auto;
  transition: var(--transition);
}

.hamburger-bar {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: var(--navy);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.mobile-menu-btn:hover {
  background-color: rgba(36, 59, 86, 0.06);
}

/* Morph Hamburger to X when active */
.mobile-menu-btn.active .hamburger-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--primary);
}

.mobile-menu-btn.active .hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-btn.active .hamburger-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background-color: var(--primary);
}

/* Buttons & CTAs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.72rem 1.4rem;
  border-radius: 10px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1.25;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(180deg, #d9281e 0%, #c41e15 100%);
  color: var(--white) !important;
  border: 1px solid #b31b14;
  box-shadow: 0 2px 6px rgba(196, 30, 21, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #c41e15 0%, #aa1710 100%);
  box-shadow: 0 4px 14px rgba(196, 30, 21, 0.35);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--navy);
  color: var(--white) !important;
  border: 1px solid var(--navy-dark);
  box-shadow: 0 2px 6px rgba(30, 50, 74, 0.15);
}

.btn-secondary:hover {
  background-color: var(--navy-dark);
  box-shadow: 0 4px 12px rgba(30, 50, 74, 0.25);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white) !important;
  box-shadow: 0 4px 12px rgba(206, 36, 28, 0.25);
}

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

.btn-outline-navy:hover {
  background-color: var(--navy);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 50, 74, 0.15);
}

.btn-outline-white {
  background-color: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  color: var(--white) !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-category-filter {
  background-color: var(--white);
  color: var(--navy) !important;
  border: 1.5px solid #e2e8f0;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.52rem 1.15rem;
  border-radius: var(--radius-full);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-category-filter:hover {
  background-color: var(--navy);
  color: var(--white) !important;
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 50, 74, 0.15);
}

.btn-whatsapp {
  background-color: #f0fdf4;
  color: #15803d !important;
  border: 1.5px solid #86efac;
  box-shadow: 0 2px 6px rgba(22, 101, 52, 0.06);
}

.btn-whatsapp:hover {
  background-color: #dcfce7;
  border-color: #4ade80;
  color: #14532d !important;
  box-shadow: 0 4px 12px rgba(22, 101, 52, 0.14);
  transform: translateY(-2px);
}

.btn-whatsapp svg {
  color: #16a34a;
  transition: var(--transition);
}

/* Tasteful WhatsApp in Hero, dark sections, CTA banner */
.hero .btn-whatsapp,
.cta-banner .btn-whatsapp,
.section-dark .btn-whatsapp {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.hero .btn-whatsapp:hover,
.cta-banner .btn-whatsapp:hover,
.section-dark .btn-whatsapp:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
  transform: translateY(-2px);
}

.hero .btn-whatsapp svg,
.cta-banner .btn-whatsapp svg,
.section-dark .btn-whatsapp svg {
  color: #4ade80;
}

.btn-download {
  background-color: #f8fafc;
  color: var(--navy) !important;
  border: 1.5px solid #cbd5e1;
}

.btn-download:hover {
  background-color: var(--navy);
  border-color: var(--navy);
  color: var(--white) !important;
  box-shadow: 0 4px 12px rgba(30, 50, 74, 0.15);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 0.88rem 1.65rem;
  font-size: 1.02rem;
  border-radius: 12px;
}

.btn-sm {
  padding: 0.42rem 0.85rem;
  font-size: 0.85rem;
  border-radius: 8px;
}

.btn-full {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  background-color: var(--gray-900);
  color: var(--white);
  padding: 4rem 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 1.5rem auto;
  max-width: var(--container-max);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(20, 29, 43, 0.6) 0%, rgba(20, 29, 43, 0.95) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(30, 50, 74, 0.06);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.38rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(30, 50, 74, 0.12);
}

.hero .hero-badge {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.badge-subtle-red {
  background: #fef2f2 !important;
  color: #b91c1c !important;
  border: 1px solid #fecaca !important;
}

.badge-subtle-green {
  background: #f0fdf4 !important;
  color: #15803d !important;
  border: 1px solid #bbf7d0 !important;
}

.badge-subtle-navy {
  background: #f1f5f9 !important;
  color: var(--navy) !important;
  border: 1px solid #cbd5e1 !important;
}

.hero-title {
  color: var(--white);
  font-size: clamp(1.85rem, 4.5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--gray-200);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Glassmorphism Cards */
.glassmorphism {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 14px rgba(36, 59, 86, 0.08);
}

.glassmorphism-card {
  padding: 1.4rem 1.25rem;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.02);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.glassmorphism-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px -4px rgba(30, 50, 74, 0.1), 0 4px 10px -2px rgba(30, 50, 74, 0.03);
  border-color: #cbd5e1;
}

/* Interactive Clickable Card */
.card-interactive {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.card-interactive:hover {
  transform: translateY(-4px);
  border-color: #94a3b8;
  box-shadow: 0 16px 32px -4px rgba(30, 50, 74, 0.12), 0 4px 10px -2px rgba(30, 50, 74, 0.04);
}

.card-interactive:hover .card-title {
  color: var(--primary);
}

/* Tasteful Card Action Link */
.card-action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  background: #f8fafc;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.88rem;
  border: 1px solid #e2e8f0;
  transition: var(--transition);
}

.card-action-arrow {
  display: inline-block;
  color: var(--primary);
  transition: transform 0.2s ease;
  font-size: 0.95rem;
}

.card-interactive:hover .card-action-link {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.card-interactive:hover .card-action-arrow {
  color: var(--white);
  transform: translateX(3px);
}

/* Trust Badge */
.trust-badge-row {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-full);
  padding: 0.35rem 1rem;
  font-size: 0.88rem;
  color: var(--navy);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  flex-wrap: wrap;
  justify-content: center;
}

.trust-badge .stars {
  letter-spacing: 1px;
  font-size: 0.82rem;
}

.trust-divider {
  color: #94a3b8;
}

/* Compact Comparison Table */
.comparison-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1.5px solid #cbd5e1;
  box-shadow: 0 4px 14px rgba(36, 59, 86, 0.06);
  overflow: hidden;
  margin: 0 auto;
  max-width: 860px;
  width: 100%;
}

.comparison-table-wrapper {
  width: 100%;
  overflow: hidden;
}

.comparison-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.85rem;
  line-height: 1.35;
}

.comparison-table th,
.comparison-table td {
  padding: 0.48rem 0.65rem;
  border-bottom: 1px solid #e2e8f0;
  vertical-align: middle;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.comparison-table th {
  background-color: #f8fafc;
  font-weight: 700;
  font-size: 0.88rem;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  color: var(--navy);
}

.comparison-table th.highlight-header {
  background-color: #fef2f2;
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  border-left: 2px solid #fecaca;
  border-right: 2px solid #fecaca;
  font-weight: 800;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

/* Kein Hover-Effekt */
.comparison-table tr:hover td {
  background-color: inherit;
}

.comparison-table td:first-child {
  color: var(--navy);
  font-weight: 700;
  background-color: #ffffff;
}

.comparison-table td.negative {
  color: #64748b;
  background-color: #ffffff;
}

.comparison-table td.positive {
  color: var(--navy);
  background-color: #fff5f5;
  border-left: 2px solid #fecaca;
  border-right: 2px solid #fecaca;
  font-weight: 600;
}

/* Mobile-optimiert: 100% Breite, 2 Zeilen pro Zelle, KEIN seitliches Wischen */
@media (max-width: 640px) {
  .comparison-card {
    border-radius: var(--radius-sm);
    border: 1px solid #cbd5e1;
  }

  .comparison-table {
    font-size: 0.76rem;
    line-height: 1.25;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.42rem 0.32rem;
  }

  .comparison-table th {
    font-size: 0.78rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .comparison-table th.highlight-header {
    border-left: 1.5px solid #fecaca;
    border-right: 1.5px solid #fecaca;
  }

  .comparison-table td.positive {
    background-color: #fff5f5;
    border-left: 1.5px solid #fecaca;
    border-right: 1.5px solid #fecaca;
  }

  .comp-icon {
    width: 15px;
    height: 15px;
    font-size: 0.65rem;
    margin-right: 0.2rem;
  }
}

.card-icon-wrapper {
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  flex-shrink: 0;
  transition: var(--transition);
}

.card-interactive:hover .card-icon-wrapper {
  transform: scale(1.06);
  background-color: var(--primary-light);
  border-color: rgba(206, 36, 28, 0.22);
  box-shadow: 0 4px 10px rgba(206, 36, 28, 0.1);
}

/* Comparison Table Indicators */
.comp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 800;
  margin-right: 0.45rem;
  flex-shrink: 0;
  vertical-align: middle;
  line-height: 1;
}

.comp-icon-cross {
  background-color: #fee2e2;
  color: #dc2626;
}

.comp-icon-check {
  background-color: #dcfce7;
  color: #16a34a;
}

.card-icon-wrapper img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.card-icon-wrapper svg {
  width: 28px;
  height: 28px;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.35rem;
  line-height: 1.25;
}

.card-desc {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.45;
  margin-bottom: 0;
}

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Equipment / Portfolio Cards (Compact) */
.equipment-card {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(36, 59, 86, 0.07);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.equipment-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px -4px rgba(36, 59, 86, 0.12);
  border-color: #94a3b8;
}

.equipment-image-box {
  background: var(--gray-50);
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 165px;
  min-height: 165px;
  border-bottom: 1px solid #cbd5e1;
}

.equipment-image-box img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: var(--transition);
}

.equipment-card:hover .equipment-image-box img {
  transform: scale(1.03);
}

.equipment-body {
  padding: 1rem 1.15rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.equipment-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.equipment-specs {
  font-size: 0.88rem;
  color: var(--gray-600);
  margin-bottom: 0.65rem;
  flex-grow: 1;
  line-height: 1.45;
}

.equipment-specs p {
  margin-bottom: 0.35rem;
}

.equipment-specs ul {
  margin-bottom: 0.4rem;
}

.equipment-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.65rem;
  border-top: 1px solid var(--gray-100);
  gap: 0.5rem;
}

.equipment-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
}

/* Reference Cards & Tables */
.reference-card {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(36, 59, 86, 0.08);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.reference-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px -4px rgba(36, 59, 86, 0.13), 0 4px 10px -2px rgba(0, 0, 0, 0.04);
  border-color: #94a3b8;
}

.reference-image-box {
  min-height: 300px;
  height: 320px;
  overflow: hidden;
  position: relative;
  background: var(--gray-900);
  display: block;
}

.reference-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.reference-card:hover .reference-image-box img {
  transform: scale(1.04);
}

.reference-body {
  padding: 1.5rem;
}

.reference-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.reference-subtitle {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 0;
}

/* Instagram Feed Section */
.instagram-section {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow-sm);
  max-width: 960px;
  margin: 0 auto;
}

.instagram-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.instagram-profile {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.instagram-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  flex-shrink: 0;
}

.instagram-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fff;
  padding: 2px;
  object-fit: cover;
}

.instagram-handle {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.instagram-subtext {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.instagram-post {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--gray-100);
  display: block;
}

.instagram-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.instagram-post:hover img {
  transform: scale(1.08);
}

.instagram-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: var(--white);
  font-size: 1.75rem;
}

.instagram-post:hover .instagram-overlay {
  opacity: 1;
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.65rem 1.2rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.btn-instagram:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 39, 67, 0.35);
}

/* Lightbox & Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/3;
  background-color: var(--gray-100);
  display: block;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: var(--white);
  font-size: 1.5rem;
}

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

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  padding: 1.25rem;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 92vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-xl);
}

.lightbox-caption {
  color: var(--white);
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.95rem;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.25rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.5rem;
  z-index: 2010;
}

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--white);
  font-size: 1.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  z-index: 2010;
}

.lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(255, 255, 255, 0.4);
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* FAQ Accordion */
.faq-accordion {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

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

.faq-item:hover {
  border-color: var(--gray-300);
}

.faq-question {
  width: 100%;
  padding: 1.15rem 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  transition: var(--transition);
}

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

.faq-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 0.75rem;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.35rem;
  color: var(--gray-600);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.35rem 1.35rem 1.35rem;
}

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 2.5rem;
}

.contact-info-card {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: 0 4px 14px rgba(36, 59, 86, 0.08);
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-method-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-method-text h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
  color: var(--gray-900);
}

.contact-form {
  background: var(--white);
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: 0 4px 14px rgba(36, 59, 86, 0.08);
}

.form-group {
  margin-bottom: 1.25rem;
}

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

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-800);
  margin-bottom: 0.4rem;
}

.form-label .required {
  color: var(--primary);
}

.form-input,
.form-textarea,
.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--gray-900);
  background-color: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: block;
}

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

.form-input:focus,
.form-textarea:focus,
.form-control:focus {
  outline: none;
  background-color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(218, 37, 28, 0.15);
}

.form-hint {
  display: block;
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-top: 0.4rem;
  line-height: 1.4;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--gray-700);
  cursor: pointer;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
  cursor: pointer;
  flex-shrink: 0;
}

.form-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.35rem;
}

.radio-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.92rem;
  cursor: pointer;
}

.form-alert {
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  display: none;
}

.form-alert-success {
  background-color: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-alert-error {
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Steps / 3 Schritte Boxen */
.step-card {
  position: relative;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 14px rgba(36, 59, 86, 0.08);
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px -4px rgba(36, 59, 86, 0.13), 0 4px 10px -2px rgba(0, 0, 0, 0.04);
  border-color: #94a3b8;
}

.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
}

/* CTA Banner Box */
.cta-banner {
  background: linear-gradient(145deg, #1e324a 0%, #101c2b 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 3.25rem 2rem;
  text-align: center;
  margin: 2.5rem 0;
  box-shadow: 0 12px 30px -6px rgba(15, 23, 42, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: var(--gray-200);
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto 2rem auto;
}

.cta-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Footer */
.site-footer {
  background-color: var(--navy);
  color: var(--gray-300);
  margin-top: auto;
  border-top: 4px solid var(--primary);
  width: 100%;
}

.site-footer .container {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
}

.footer-top {
  padding-top: 2.25rem;
  padding-bottom: 1.5rem;
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.footer-col {
  min-width: 0;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.4rem;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-2col li {
  margin-bottom: 0.35rem;
  min-width: 0;
}

.footer-links-2col a {
  color: var(--gray-300);
  font-size: 0.92rem;
  transition: var(--transition);
  display: inline-block;
  word-break: break-word;
}

.footer-links-2col a:hover {
  color: var(--secondary);
  transform: translateX(3px);
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
  font-size: 0.88rem;
  color: var(--gray-400);
  width: 100%;
}

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

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: var(--gray-400);
  font-size: 0.88rem;
}

.footer-legal-links a:hover {
  color: var(--white);
}

/* Legal Pages (Datenschutz, Impressum, AGB) */
.legal-content {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.legal-content h2 {
  font-size: 1.35rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 0.4rem;
}

.legal-content h3 {
  font-size: 1.15rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.impressum-header-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .impressum-header-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ==========================================================================
   Fotobox Booking Wizard Styles (Desktop Base)
   ========================================================================== */

/* Progress Bar */
.booking-progress-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.25rem;
  gap: 0.75rem;
}

.booking-step-indicator {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gray-400);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.step-bubble {
  width: 38px;
  height: 38px;
  min-width: 38px;
  min-height: 38px;
  max-width: 38px;
  max-height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  background: var(--white);
  border: 2px solid var(--gray-300);
  color: var(--gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
}

.booking-step-indicator.active {
  color: var(--navy);
  font-weight: 700;
}

.booking-step-indicator.active .step-bubble {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(218, 37, 28, 0.35);
}

.booking-step-indicator.completed {
  color: var(--navy);
}

.booking-step-indicator.completed .step-bubble {
  background: #10b981;
  border-color: #10b981;
  color: var(--white);
}

.booking-step-connector {
  flex: 1;
  max-width: 60px;
  height: 2px;
  background-color: var(--gray-200);
  transition: var(--transition);
}

/* Booking Card Container */
.booking-form-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1.5px solid #cbd5e1;
  box-shadow: 0 4px 16px rgba(36, 59, 86, 0.08);
  padding: 2.25rem 2.5rem;
}

.step-panel-header {
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.step-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.5rem;
}

/* Selection Cards Grid (Multi-Select Format Cards) */
.selection-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 0.75rem;
}

.selection-card-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 0.75rem;
}

.selection-card {
  position: relative;
  background: #ffffff;
  border: 2px solid #cbd5e1;
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  text-align: center;
  user-select: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.selection-card input[type="checkbox"],
.selection-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.selection-check-indicator {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: 2px solid #94a3b8;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: transparent;
  transition: var(--transition);
  z-index: 2;
}

.selection-card:hover {
  border-color: #94a3b8;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(36, 59, 86, 0.1);
}

.selection-card.selected,
.selection-card:has(input:checked) {
  border-color: var(--primary);
  background: #fff8f8;
  box-shadow: 0 8px 22px rgba(218, 37, 28, 0.15);
}

.selection-card.selected .selection-check-indicator,
.selection-card:has(input:checked) .selection-check-indicator {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

.selection-card-thumb-container {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border-radius: var(--radius-sm);
  padding: 10px;
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
  border: 1px solid #e2e8f0;
}

.selection-card-thumb {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border: 2px solid #64748b;
  border-radius: 4px;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.selection-card:hover .selection-card-thumb {
  border-color: var(--primary);
  box-shadow: 0 6px 14px rgba(218, 37, 28, 0.25);
  transform: scale(1.03);
}

.selection-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.selection-subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.selection-desc {
  font-size: 0.84rem;
  color: var(--gray-600);
  line-height: 1.4;
}

.selection-tag {
  position: absolute;
  top: -10px;
  right: 12px;
  background: #10b981;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
  z-index: 2;
}

/* Selection Pills (Radio Pills) */
.selection-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.4rem;
}

.selection-pill {
  position: relative;
  cursor: pointer;
}

.selection-pill input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.selection-pill span {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.15rem;
  background: #ffffff;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gray-700);
  transition: var(--transition);
}

.selection-pill:hover span {
  border-color: #94a3b8;
  background: var(--gray-50);
}

.selection-pill input:checked + span {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  box-shadow: 0 3px 8px rgba(36, 59, 86, 0.2);
}

/* Step Buttons */
.step-button-row {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Summary Card */
.booking-summary-card {
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.35rem;
}

.summary-header {
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 0.4rem;
}

.summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.25rem;
  font-size: 0.9rem;
}

.summary-grid span {
  color: var(--gray-500);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

/* Success Screen */
.booking-success-box {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1.5px solid #cbd5e1;
  box-shadow: 0 4px 16px rgba(36, 59, 86, 0.08);
  padding: 2.75rem 2rem;
  text-align: center;
}

.success-icon {
  font-size: 3.5rem;
  margin-bottom: 0.75rem;
}

/* ==========================================================================
   Comprehensive Mobile & Tablet Responsive Media Queries
   ========================================================================== */

@media (max-width: 1024px) {
  .hero {
    padding: 3.5rem 1.5rem;
  }

  .footer-grid {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  /* Container & Spacing */
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section {
    padding-top: 1.85rem;
    padding-bottom: 1.85rem;
  }

  .section-sm {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .section-header {
    margin-bottom: 1.25rem;
  }

  .section-header h2 {
    font-size: 1.35rem;
    margin-bottom: 0.35rem;
  }

  .section-header p {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  /* Header & Navigation */
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .site-logo {
    display: flex;
    align-items: center;
    margin-right: auto;
    z-index: 1015;
  }

  .site-logo img {
    height: 44px;
  }

  .site-title {
    font-size: 1.15rem;
  }

  .site-subtitle {
    font-size: 0.68rem;
  }

  .mobile-menu-btn {
    display: flex;
    margin-left: auto;
    z-index: 1020;
  }

  .main-nav {
    position: fixed;
    top: 61px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem 1.25rem 2.5rem 1.25rem;
    gap: 0.75rem;
    overflow-y: auto;
    border-top: 1px solid rgba(36, 59, 86, 0.1);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
    pointer-events: none;
  }

  .main-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .nav-links li {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .nav-links li:not(.nav-cta) a {
    width: 100%;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 0.95rem 1.25rem;
    text-align: left;
    border: 1.5px solid #e2e8f0;
    border-radius: var(--radius-md);
    background: #f8fafc;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.25s ease;
    box-sizing: border-box;
  }

  .nav-links li:not(.nav-cta) a::after {
    content: '➔';
    font-size: 0.95rem;
    color: #94a3b8;
    transition: all 0.25s ease;
  }

  .nav-links li:not(.nav-cta) a:hover,
  .nav-links li:not(.nav-cta) a.active {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateX(4px);
  }

  .nav-links li:not(.nav-cta) a:hover::after,
  .nav-links li:not(.nav-cta) a.active::after {
    color: var(--primary);
    transform: translateX(3px);
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 0.85rem;
    width: 100%;
  }

  .nav-links .nav-cta a,
  .nav-cta .btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem 1.25rem;
    font-size: 1.1rem;
    font-weight: 700;
    background: var(--primary) !important;
    background-color: var(--primary) !important;
    color: #ffffff !important;
    border: 2px solid var(--primary) !important;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 14px rgba(218, 37, 28, 0.35);
    box-sizing: border-box;
    transition: var(--transition);
  }

  .nav-links .nav-cta a:hover,
  .nav-cta .btn:hover {
    background: var(--primary-hover) !important;
    background-color: var(--primary-hover) !important;
    border-color: var(--primary-hover) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
  }

  /* Mobile Base Spacing & Typography */
  body {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  h1 { font-size: 1.75rem; margin-bottom: 0.5rem; }
  h2 { font-size: 1.35rem; margin-bottom: 0.4rem; }
  h3 { font-size: 1.1rem; }
  p { font-size: 0.92rem; line-height: 1.48; margin-bottom: 0.75rem; }

  /* Hero */
  .hero {
    padding: 2rem 1.25rem;
    text-align: center;
  }

  .hero-title {
    font-size: 1.65rem;
    line-height: 1.2;
    margin-bottom: 0.65rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    line-height: 1.45;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.65rem;
  }

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

  /* Grids */
  .grid-2,
  .grid-3,
  .grid-4,
  .equipment-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
  }

  /* Compact Cards */
  .glassmorphism-card {
    padding: 1.15rem 1rem;
  }

  .card-icon-wrapper {
    width: 46px;
    height: 46px;
    margin-bottom: 0.55rem;
  }

  .equipment-image-box {
    height: 140px;
    min-height: 140px;
    padding: 0.5rem;
  }

  .equipment-body {
    padding: 0.85rem 0.95rem;
  }

  .card-icon-wrapper img {
    width: 28px;
    height: 28px;
  }

  .card-icon-wrapper svg {
    width: 24px;
    height: 24px;
  }

  .card-title {
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
  }

  .card-desc {
    font-size: 0.88rem;
    line-height: 1.4;
  }

  .step-card {
    padding: 1.25rem 1rem;
  }

  /* Contact & Forms */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-info-card,
  .contact-form {
    padding: 1.35rem 1.15rem;
  }

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

  /* Footer */
  .footer-top {
    padding-top: 1.75rem;
    padding-bottom: 1rem;
  }

  .site-footer .container {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }

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

  .footer-links-2col {
    gap: 0.35rem 0.85rem;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .footer-legal-links {
    justify-content: center;
    gap: 0.85rem;
  }

  /* Booking Wizard 768px */
  .selection-card-grid,
  .selection-card-grid-2col {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .selection-card-thumb-container {
    height: 130px;
    padding: 6px;
  }

  .selection-card-thumb {
    height: 115px;
  }

  .booking-form-card {
    padding: 1.5rem 1.25rem;
  }
}

@media (max-width: 480px) {
  /* Phones / Smaller Screens */
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .site-title {
    font-size: 1.05rem;
  }

  .site-subtitle {
    font-size: 0.62rem;
  }

  .hero {
    padding: 1.5rem 0.95rem;
    border-radius: var(--radius-sm);
  }

  .hero-title {
    font-size: 1.45rem;
  }

  .hero-subtitle {
    font-size: 0.88rem;
  }

  .footer-links-2col {
    grid-template-columns: 1fr 1fr;
    gap: 0.35rem 0.65rem;
  }

  .footer-links-2col a {
    font-size: 0.85rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem;
  }

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.35rem;
  }

  .equipment-price-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }

  .equipment-price-row .btn {
    width: 100%;
  }

  /* Booking Wizard Mobile Styles */
  .booking-progress-bar {
    gap: 0.3rem;
    margin-bottom: 1.15rem;
    padding: 0;
  }

  .booking-step-indicator {
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
    flex-shrink: 0;
  }

  .step-bubble {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    max-width: 32px;
    max-height: 32px;
    font-size: 0.85rem;
    flex-shrink: 0;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
  }

  .booking-step-indicator .step-text {
    font-size: 0.72rem;
    white-space: nowrap;
    letter-spacing: -0.01em;
  }

  .booking-step-connector {
    flex: 1;
    min-width: 15px;
    max-width: 35px;
    margin-bottom: 1.15rem;
  }

  .booking-form-card {
    padding: 1rem 0.85rem;
    border-radius: var(--radius-sm);
  }

  .step-panel-header {
    padding-bottom: 0.65rem;
    margin-bottom: 0.85rem;
  }

  .step-panel-header h2 {
    font-size: 1.15rem !important;
    line-height: 1.3;
    margin-bottom: 0.25rem;
  }

  .step-panel-header p {
    font-size: 0.82rem !important;
  }

  .selection-card-grid,
  .selection-card-grid-2col {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .selection-card {
    padding: 0.75rem 0.85rem;
  }

  .selection-card-thumb-container {
    height: 105px;
    padding: 4px;
    margin-top: 0.25rem;
    margin-bottom: 0.35rem;
  }

  .selection-card-thumb {
    height: 90px;
    max-height: 90px;
    width: auto;
  }

  .selection-title {
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
  }

  .selection-subtitle {
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
  }

  .selection-desc {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .selection-pills-row {
    flex-direction: column;
    gap: 0.4rem;
  }

  .selection-pill span {
    width: 100%;
    justify-content: center;
    padding: 0.5rem 0.85rem;
    font-size: 0.85rem;
  }

  .booking-summary-card {
    padding: 0.75rem 0.85rem;
    margin-top: 0.75rem;
  }

  .summary-header {
    font-size: 0.88rem;
    margin-bottom: 0.4rem;
    padding-bottom: 0.25rem;
  }

  .summary-grid {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    font-size: 0.82rem;
  }

  .form-group {
    margin-top: 0.85rem !important;
    margin-bottom: 0.75rem;
  }

  .form-label {
    font-size: 0.86rem;
    margin-bottom: 0.3rem;
  }

  .form-input,
  .form-textarea {
    padding: 0.55rem 0.75rem;
    font-size: 0.9rem;
  }

  .form-hint {
    font-size: 0.75rem;
    margin-top: 0.25rem;
  }

  .step-button-row {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.25rem !important;
  }

  .step-button-row .btn {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }
}
