:root {
  --bg: #08101f;
  --bg-soft: #0d172a;
  --bg-card: rgba(15, 23, 42, 0.88);
  --primary: #38bdf8;
  --primary-strong: #0ea5e9;
  --accent: #8b5cf6;
  --text: #e5eefb;
  --muted: #94a3b8;
  --border: rgba(148, 163, 184, 0.16);
  --success: #22c55e;
  --danger: #ef4444;
  --shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(139, 92, 246, 0.12), transparent 22%),
    linear-gradient(180deg, #07101d 0%, #091322 45%, #08101f 100%);
  color: var(--text);
}

.section-dark,
.footer-bar {
  background: transparent;
}

.section-deep {
  background: linear-gradient(180deg, rgba(10, 16, 31, 0.72), rgba(8, 16, 31, 0.98));
}

.glass-nav {
  backdrop-filter: blur(14px);
  background: rgba(8, 16, 31, 0.72);
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.navbar .nav-link {
  color: rgba(226, 232, 240, 0.82);
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: #fff;
}

.brand-badge {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary-strong), var(--accent));
  color: white;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(14, 165, 233, 0.25);
}

.hero-section {
  padding: 9rem 0 5rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  font-size: 0.78rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.text-light-emphasis,
.text-secondary {
  color: var(--muted) !important;
}

.hero-copy .lead {
  max-width: 38rem;
}

.hero-card,
.feature-card,
.step-card,
.contact-card,
.comparison-card,
.cta-panel,
.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1.5rem;
}

.status-pill {
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #bbf7d0;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.1);
  font-size: 0.85rem;
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.spot {
  height: 72px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.spot.free {
  background: linear-gradient(180deg, #22c55e, #16a34a);
  color: #07110b;
}

.spot.busy {
  background: linear-gradient(180deg, #f87171, #dc2626);
  color: white;
}

.spot.selected {
  background: linear-gradient(135deg, var(--primary-strong), var(--accent));
  color: white;
}

.info-box,
.booking-box,
.mini-stat,
.advantage-item,
.comparison-row {
  background: rgba(15, 23, 42, 0.82);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 18px;
}

.info-box,
.booking-box,
.advantage-item,
.comparison-row,
.step-card,
.feature-card,
.contact-card,
.cta-panel {
  padding: 1.1rem;
}

.info-box small,
.booking-box small,
.contact-list small {
  display: block;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.info-box strong,
.booking-box strong,
.contact-list strong {
  color: #fff;
}

.booking-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mini-stat {
  padding: 1rem;
  height: 100%;
}

.mini-stat strong {
  display: block;
  color: white;
  margin-bottom: 0.25rem;
}

.mini-stat span {
  font-size: 0.92rem;
  color: var(--muted);
}

.trust-card {
  padding: 1.4rem 1rem;
  height: 100%;
}

.trust-number {
  display: block;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
}

.section-heading {
  max-width: 46rem;
}

.feature-card,
.step-card {
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, opacity 0.6s ease;
}

.feature-card:hover,
.step-card:hover,
.contact-card:hover,
.comparison-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.34);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.18), rgba(139, 92, 246, 0.18));
}

.feature-card h3,
.step-card h3 {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 0.6rem;
}

.feature-card p,
.step-card p,
.advantage-item p,
.comparison-row span,
.trust-card p,
.cta-text,
.form-feedback {
  color: var(--muted);
}

.advantage-list {
  margin-top: 1rem;
}

.advantage-item strong {
  display: block;
  margin-bottom: 0.35rem;
  color: white;
}

.comparison-card {
  overflow: hidden;
}

.comparison-head,
.comparison-row {
  padding: 1rem 1.1rem;
}

.comparison-head {
  color: white;
  background: rgba(56, 189, 248, 0.08);
  border-bottom: 1px solid var(--border);
}

.comparison-row + .comparison-row {
  border-top: 1px solid rgba(148, 163, 184, 0.08);
}

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

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-strong), var(--accent));
  color: white;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-panel {
  max-width: 58rem;
  margin: 0 auto;
  padding: 2rem;
}

.custom-accordion .accordion-item {
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid var(--border);
  border-radius: 18px !important;
  overflow: hidden;
  margin-bottom: 1rem;
}

.custom-accordion .accordion-button,
.custom-accordion .accordion-body {
  background: transparent;
  color: var(--text);
}

.custom-accordion .accordion-button:not(.collapsed) {
  color: white;
  background: rgba(56, 189, 248, 0.08);
  box-shadow: none;
}

.custom-accordion .accordion-button:focus {
  box-shadow: none;
}

.contact-card {
  padding: 1.4rem;
}

.form-control,
.form-control:focus {
  background: rgba(15, 23, 42, 0.72);
  border-color: rgba(148, 163, 184, 0.16);
  color: white;
  box-shadow: none;
}

.form-control::placeholder {
  color: #7c8ba1;
}

.form-feedback.success {
  color: #bbf7d0;
}

.form-feedback.error {
  color: #fecaca;
}

.footer-bar {
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  color: var(--muted);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(26px);
}

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

@media (max-width: 991.98px) {
  .hero-section {
    min-height: auto;
    padding-top: 8rem;
  }
}

@media (max-width: 767.98px) {
  .comparison-row {
    grid-template-columns: 1fr;
  }

  .booking-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-card {
    padding: 1rem;
  }

  .spot {
    height: 62px;
  }
}


.screen-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
}

.screen-media {
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.placeholder-screen {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(14, 165, 233, 0.14), rgba(139, 92, 246, 0.16)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 10px, rgba(255,255,255,0.04) 10px 20px);
}

.placeholder-content {
  text-align: center;
  padding: 1.5rem;
}

.placeholder-content span {
  display: block;
  color: white;
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.placeholder-content small {
  color: var(--muted);
}

.screen-body {
  padding: 1.1rem;
}

.screen-body h3 {
  color: white;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.screen-body p,
.gallery-tip {
  color: var(--muted);
}

.screen-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-tip {
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem 1.1rem;
}

.gallery-tip code {
  color: #c7d2fe;
  background: rgba(255,255,255,0.04);
  padding: 0.15rem 0.4rem;
  border-radius: 8px;
}
.screen-media {
  padding: 0;
  border: 0;
  background: transparent;
  width: 100%;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  cursor: zoom-in;
}

.screen-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.screen-trigger:hover .screen-image {
  transform: scale(1.04);
}

.image-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 9999;
}

.image-lightbox.is-open {
  display: flex;
}

.image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(4px);
}

.image-lightbox-dialog {
  position: relative;
  z-index: 2;
  width: min(1100px, 100%);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-lightbox-img {
  max-width: 100%;
  max-height: 78vh;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.image-lightbox-title {
  margin-top: 14px;
  color: #fff;
  font-size: 1rem;
  text-align: center;
}

.image-lightbox-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #111827;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

@media (max-width: 768px) {
  .image-lightbox {
    padding: 16px;
  }

  .image-lightbox-img {
    max-height: 72vh;
  }

  .image-lightbox-close {
    top: -10px;
    right: -6px;
  }
}
.instagram-contact {
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.16);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.instagram-contact:hover {
  transform: translateY(-2px);
  border-color: rgba(236, 72, 153, 0.45);
  background: rgba(15, 23, 42, 0.92);
}

.instagram-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
  box-shadow: 0 10px 24px rgba(221, 42, 123, 0.2);
  flex-shrink: 0;
}

.contact-link,
.privacy-mail,
.privacy-note a,
.footer-links a {
  color: #fff;
  text-decoration: none;
}

.contact-link:hover,
.privacy-mail:hover,
.privacy-note a:hover,
.footer-links a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.privacy-panel,
.privacy-highlight,
.privacy-note {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.privacy-panel {
  padding: 1.4rem;
}

.privacy-highlight {
  padding: 1.4rem;
}

.privacy-highlight small {
  display: block;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.privacy-highlight h3 {
  color: white;
  margin-bottom: 0.5rem;
}

.privacy-highlight p,
.privacy-list p {
  color: var(--muted);
}

.privacy-mail {
  display: inline-flex;
  padding: 0.8rem 1rem;
  border-radius: 16px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.22);
  font-weight: 700;
}

.privacy-list > div {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.privacy-list strong,
.privacy-note strong {
  display: block;
  color: white;
  margin-bottom: 0.35rem;
}

.privacy-list p {
  margin-bottom: 0;
}

.privacy-note {
  padding: 1rem 1.1rem;
}

.footer-links {
  color: var(--muted);
}

@media (max-width: 767.98px) {
  .privacy-panel {
    padding: 1rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.35rem !important;
  }
}

