/* ================================================================
   Půjčovna na cesty — Space / Dark Theme
   Inspired by: Starlink · deep space · dark UI
   Palette: #03070E (void) · #3B9EFF (electric blue) · #E07B2A (amber)
   Fonts: Fraunces (display) + Outfit (body)
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;0,9..144,900;1,9..144,400;1,9..144,700;1,9..144,900&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ─── Design Tokens (Space Theme) ───────────────────────────── */
:root {
  /* Backgrounds — deepest to lightest */
  --void:          #03070E;
  --space-deep:    #06101E;
  --space-dark:    #0A1729;
  --space-mid:     #0E1F36;
  --space-card:    #122240;
  --space-hover:   #1A3258;

  /* Legacy semantic aliases (used throughout components) */
  --green:         #0A1729;
  --green-mid:     #122240;
  --green-light:   #3B9EFF;
  --cream:         #06101E;
  --cream-dark:    #0A1729;
  --cream-darker:  #0E1F36;
  --dark:          #ECF3FC;

  /* Blue accent */
  --blue:          #3B9EFF;
  --blue-bright:   #70C3FF;
  --blue-dim:      #1D5FA0;
  --blue-glow:     rgba(59,158,255,.22);
  --blue-border:   rgba(59,158,255,.22);

  /* Orange / amber */
  --orange:        #E07B2A;
  --orange-light:  #F59E5A;
  --orange-pale:   rgba(224,123,42,.12);

  /* Text */
  --text:          #B2CDE8;
  --text-bright:   #E8F2FC;
  --text-muted:    #4E7090;
  --white:         #FFFFFF;

  /* Borders */
  --border:        rgba(59,158,255,.14);
  --border-light:  rgba(255,255,255,.06);
  --border-solid:  #122240;

  /* Shadows */
  --shadow-xs: 0 1px 4px rgba(0,0,0,.4);
  --shadow-sm: 0 2px 12px rgba(0,0,0,.45);
  --shadow-md: 0 8px 32px rgba(0,0,0,.55);
  --shadow-lg: 0 20px 56px rgba(0,0,0,.65);
  --shadow-xl: 0 36px 80px rgba(0,0,0,.7);
  --glow-blue: 0 0 24px rgba(59,158,255,.3);
  --glow-blue-lg: 0 0 48px rgba(59,158,255,.2);

  /* Radii */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-2xl: 40px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: 0.25s var(--ease);
  --transition-slow: 0.45s var(--ease);

  /* Typography */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:    'Outfit', system-ui, -apple-system, sans-serif;
}

/* ─── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--space-deep);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: var(--blue-bright); transition: color var(--transition); }
a:hover { color: var(--orange-light); }

/* ─── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.12;
  color: var(--text-bright);
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { line-height: 1.7; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .85rem;
}
.lead-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--orange);
  color: #fff !important;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  padding: .8rem 1.85rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  letter-spacing: .01em;
}
.btn-primary-custom:hover {
  background: #c96a1f;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224,123,42,.4);
}
.btn-primary-custom:active { transform: translateY(0); }

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--blue) !important;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--blue-border);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-outline-custom:hover {
  background: var(--blue);
  color: #fff !important;
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--glow-blue);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: rgba(255,255,255,.85) !important;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255,255,255,.2);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.5);
  color: #fff !important;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: transparent;
  color: var(--text-muted) !important;
  font-size: .85rem;
  font-weight: 500;
  padding: .55rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-solid);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue) !important;
  box-shadow: 0 0 12px rgba(59,158,255,.15);
}

/* ─── Navbar ─────────────────────────────────────────────────── */
#mainNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.35rem 0;
  transition: padding var(--transition-slow), background var(--transition-slow), box-shadow var(--transition-slow);
  background: transparent;
}
#mainNav.scrolled,
#mainNav.nav-solid {
  background: rgba(6,16,30,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: .8rem 0;
  box-shadow: 0 1px 0 rgba(59,158,255,.12), 0 4px 24px rgba(0,0,0,.5);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-bright) !important;
  display: flex;
  align-items: center;
  gap: .6rem;
  transition: color var(--transition);
  letter-spacing: -.01em;
}
.nav-logo .logo-icon {
  width: 34px;
  height: 34px;
  background: var(--orange);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform var(--transition-slow), box-shadow var(--transition);
}
.nav-logo:hover .logo-icon {
  transform: rotate(-8deg) scale(1.05);
  box-shadow: 0 4px 14px rgba(224,123,42,.5);
}

.nav-link-custom {
  color: rgba(255,255,255,.6) !important;
  font-weight: 500;
  font-size: .875rem;
  padding: .4rem .7rem !important;
  border-radius: var(--radius-sm);
  transition: all var(--transition) !important;
  letter-spacing: .01em;
}
.nav-link-custom:hover {
  color: #fff !important;
  background: rgba(59,158,255,.1) !important;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
}

.nav-toggler {
  background: rgba(59,158,255,.08);
  border: 1.5px solid rgba(59,158,255,.2);
  border-radius: var(--radius-sm);
  padding: .4rem .55rem;
  color: var(--text-bright);
  cursor: pointer;
  display: none;
  align-items: center;
  font-size: 1.1rem;
  transition: all var(--transition);
}
.nav-toggler:hover { background: rgba(59,158,255,.16); border-color: var(--blue); }

@media (max-width: 991px) {
  .nav-toggler { display: flex; }
  .nav-menu { display: none; }
  .nav-collapse-panel {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(6,16,30,.97);
    backdrop-filter: blur(20px);
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(59,158,255,.12);
    flex-direction: column;
    gap: .15rem;
    display: none;
    box-shadow: 0 16px 40px rgba(0,0,0,.6);
  }
  .nav-collapse-panel.open { display: flex; }
  .nav-collapse-panel .nav-link-custom {
    color: rgba(255,255,255,.7) !important;
    padding: .6rem .75rem !important;
  }
  .nav-collapse-panel .nav-link-custom:hover { color: #fff !important; }
  .nav-collapse-panel .btn-primary-custom { margin-top: .75rem; align-self: flex-start; }
}

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--void);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 15% 50%, rgba(14,55,110,.6) 0%, transparent 65%),
    radial-gradient(ellipse 55% 55% at 85% 20%, rgba(20,70,140,.35) 0%, transparent 60%),
    radial-gradient(ellipse 40% 80% at 60% 80%, rgba(8,30,60,.4) 0%, transparent 70%),
    linear-gradient(175deg, #010408 0%, #03070E 40%, #060F1C 100%);
}
/* Stars — tiny white dots via background-image */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    radial-gradient(rgba(255,255,255,.8) 1px, transparent 1px),
    radial-gradient(rgba(255,255,255,.5) 1px, transparent 1px),
    radial-gradient(rgba(255,255,255,.3) 1px, transparent 1px);
  background-size: 80px 80px, 130px 130px, 200px 200px;
  background-position: 0 0, 40px 60px, 100px 20px;
  opacity: .28;
}
/* Noise overlay */
.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 300px;
}
/* Nebula glow streaks */
.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(59,158,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,158,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
/* Blue aurora at bottom */
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: 10%;
  right: 10%;
  height: 60%;
  background: radial-gradient(ellipse at 50% 100%, rgba(30,80,180,.22) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 8rem;
  padding-bottom: 5rem;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(59,158,255,.1);
  border: 1px solid rgba(59,158,255,.3);
  color: var(--blue-bright);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .38rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
}
.hero-eyebrow i { font-size: .8rem; }
.hero h1 {
  color: #fff;
  font-weight: 900;
  letter-spacing: -.03em;
  margin-bottom: 1.4rem;
  line-height: 1.06;
  text-shadow: 0 0 60px rgba(59,158,255,.15);
}
.hero h1 em {
  font-style: italic;
  color: var(--orange-light);
  text-shadow: 0 0 40px rgba(224,123,42,.3);
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(178,205,232,.65);
  max-width: 460px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  font-weight: 300;
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
}
.hero-stats-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(59,158,255,.12);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  text-shadow: 0 0 20px rgba(59,158,255,.4);
}
.hero-stat-label {
  font-size: .72rem;
  color: rgba(178,205,232,.38);
  margin-top: .25rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Hero visual card */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding-top: 7rem;
  padding-bottom: 3rem;
}
.hero-card {
  background: rgba(18,34,64,.65);
  border: 1px solid rgba(59,158,255,.2);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  width: 100%;
  max-width: 300px;
  position: relative;
  box-shadow: 0 0 40px rgba(59,158,255,.12), 0 20px 60px rgba(0,0,0,.5);
}
.hero-card-icon {
  width: 72px;
  height: 72px;
  background: rgba(224,123,42,.15);
  border: 1px solid rgba(224,123,42,.25);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 2rem;
}
.hero-card h4 { color: var(--text-bright); font-size: 1.05rem; margin-bottom: .4rem; }
.hero-card p  { color: rgba(178,205,232,.5); font-size: .82rem; margin: 0; line-height: 1.5; }
.hero-card-price {
  display: flex;
  align-items: baseline;
  gap: .35rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(59,158,255,.12);
}
.hero-card-price-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange-light);
  line-height: 1;
  text-shadow: 0 0 20px rgba(224,123,42,.35);
}
.hero-card-price-label { font-size: .78rem; color: rgba(178,205,232,.4); }
.hero-float-chip {
  position: absolute;
  bottom: 2rem;
  left: -2.5rem;
  background: var(--orange);
  color: #fff;
  padding: .65rem 1.1rem;
  border-radius: var(--radius-md);
  font-size: .78rem;
  font-weight: 600;
  box-shadow: 0 10px 28px rgba(224,123,42,.4), 0 0 20px rgba(224,123,42,.2);
  display: flex;
  align-items: center;
  gap: .45rem;
  white-space: nowrap;
}
.hero-float-chip i { font-size: .9rem; }
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.25);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: scrollHint 2.5s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { opacity: .25; transform: translateX(-50%) translateY(0); }
  50%       { opacity: .6;  transform: translateX(-50%) translateY(7px); }
}

/* ─── Section Common ─────────────────────────────────────────── */
.section      { padding: 6rem 0; }
.section-sm   { padding: 4rem 0; }
.section-lg   { padding: 8rem 0; }
.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; }
.section-header.centered .lead-text { margin: 0 auto; }

/* ─── Steps "Jak to funguje" ─────────────────────────────────── */
.steps-section {
  background: var(--space-dark);
  padding: 6rem 0;
  border-top: 1px solid var(--border-solid);
  border-bottom: 1px solid var(--border-solid);
}
.step-card {
  text-align: center;
  padding: 2.5rem 1.75rem;
  background: var(--space-mid);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-solid);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 0 1px rgba(59,158,255,.25), var(--glow-blue), var(--shadow-md);
  border-color: rgba(59,158,255,.25);
}
.step-num-wrap {
  position: relative;
  display: inline-flex;
  margin-bottom: 1.75rem;
}
.step-num {
  width: 60px;
  height: 60px;
  background: rgba(59,158,255,.12);
  border: 1.5px solid rgba(59,158,255,.3);
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-slow);
}
.step-card:hover .step-num {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 0 20px rgba(224,123,42,.4);
  transform: scale(1.1) rotate(-5deg);
}
.step-icon {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 26px;
  height: 26px;
  background: var(--space-mid);
  border: 1.5px solid var(--border-solid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  color: var(--blue);
}
.step-card h4 { margin-bottom: .6rem; color: var(--text-bright); }
.step-card p  { font-size: .875rem; color: var(--text-muted); margin: 0; }
.steps-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--border-solid);
  font-size: 1.5rem;
  padding-top: 2.5rem;
  opacity: .6;
}
@media (max-width: 767px) {
  .steps-arrow { transform: rotate(90deg); padding-top: 0; margin: .75rem auto; }
}

/* ─── Product Cards ──────────────────────────────────────────── */
.products-section {
  background: var(--space-deep);
  padding: 6rem 0;
}
.product-card {
  background: var(--space-mid);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-solid);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 0 1px rgba(59,158,255,.2), var(--glow-blue), var(--shadow-lg);
  border-color: rgba(59,158,255,.2);
}
.product-card:hover::before { transform: scaleX(1); }

.product-img {
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, #0A1729 0%, #0E1F36 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
/* Subtle star dots in product image bg */
.product-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: .06;
}
.product-img-label {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--blue);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .65rem;
  border-radius: 100px;
  z-index: 1;
  box-shadow: 0 0 12px rgba(59,158,255,.5);
}
.product-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.product-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: .6rem;
}
.product-desc {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-bottom: 1.5rem;
}
.product-tag {
  background: rgba(59,158,255,.08);
  color: var(--blue-bright);
  font-size: .68rem;
  font-weight: 600;
  padding: .22rem .6rem;
  border-radius: 100px;
  letter-spacing: .03em;
  text-transform: uppercase;
  border: 1px solid rgba(59,158,255,.2);
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-solid);
  gap: 1rem;
}
.product-price-num {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--orange-light);
  line-height: 1;
  text-shadow: 0 0 16px rgba(224,123,42,.3);
}
.product-price-label {
  font-size: .7rem;
  color: var(--text-muted);
  margin-top: .15rem;
}

/* Product SVG illustrations */
.prod-svg { width: 90px; height: 90px; opacity: .8; position: relative; z-index: 1; }

/* ─── Why Us ─────────────────────────────────────────────────── */
.why-section {
  background: var(--space-dark);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-solid);
  border-bottom: 1px solid var(--border-solid);
}
.why-bg-decoration {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 95% 5%, rgba(20,60,130,.3) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 5% 95%, rgba(8,25,60,.4) 0%, transparent 55%);
  pointer-events: none;
}
/* Extra star dots in why section */
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: .05;
  pointer-events: none;
}
.why-section .section-label { color: var(--blue); }
.why-section h2 { color: var(--text-bright); }
.why-section .lead-text { color: var(--text-muted); }

.why-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.75rem;
  background: rgba(18,34,64,.5);
  border: 1px solid var(--border-solid);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.why-card:hover {
  background: rgba(18,34,64,.8);
  border-color: rgba(59,158,255,.22);
  transform: translateY(-3px);
  box-shadow: var(--glow-blue);
}
.why-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: rgba(59,158,255,.1);
  border: 1px solid rgba(59,158,255,.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}
.why-card h4 { color: var(--text-bright); margin-bottom: .4rem; font-size: 1.05rem; }
.why-card p  { color: var(--text-muted); font-size: .86rem; margin: 0; line-height: 1.6; }

/* ─── Contact / Inquiry Form ─────────────────────────────────── */
.contact-section {
  background: var(--space-deep);
  padding: 6rem 0;
}
.form-card {
  background: var(--space-mid);
  border-radius: var(--radius-xl);
  padding: 3rem;
  border: 1px solid var(--border-solid);
  box-shadow: var(--shadow-lg);
}
@media (max-width: 575px) { .form-card { padding: 1.75rem; } }

.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: .4rem;
  letter-spacing: .02em;
}
.form-control {
  width: 100%;
  padding: .8rem 1.1rem;
  font-family: var(--font-body);
  font-size: .88rem;
  color: var(--text-bright);
  background: var(--space-dark);
  border: 1.5px solid var(--border-solid);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59,158,255,.15);
  background: rgba(14,31,54,.7);
}
.form-control::placeholder { color: var(--text-muted); opacity: .7; }
textarea.form-control { resize: vertical; min-height: 130px; }

.form-info-strip {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  background: rgba(59,158,255,.07);
  border: 1px solid rgba(59,158,255,.18);
  border-radius: var(--radius-md);
  padding: .9rem 1.1rem;
  margin-bottom: 1.5rem;
  font-size: .82rem;
  color: var(--text-muted);
}
.form-info-strip i { color: var(--blue); font-size: 1rem; flex-shrink: 0; margin-top: .1rem; }

/* ─── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--void);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(59,158,255,.08);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-bright) !important;
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: .9rem;
}
.footer-logo .logo-icon {
  width: 32px;
  height: 32px;
  background: var(--orange);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
}
.footer-tagline {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.55;
}
.footer h6 {
  color: rgba(255,255,255,.45);
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.1rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a {
  color: var(--text-muted);
  font-size: .875rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--blue-bright); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .875rem;
  color: var(--text-muted);
  margin-bottom: .65rem;
}
.footer-contact-item i { color: var(--blue); font-size: .95rem; margin-top: .1rem; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,.5); }
.footer-contact-item a:hover { color: var(--blue-bright); }
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,.05);
  margin: 3rem 0 1.75rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .78rem;
  color: rgba(255,255,255,.2);
}
.footer-bottom a { color: rgba(255,255,255,.25); }
.footer-bottom a:hover { color: rgba(255,255,255,.55); }

/* ─── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb-bar {
  background: var(--space-dark);
  border-bottom: 1px solid var(--border-solid);
  padding: .85rem 0;
  margin-top: 62px;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: .4rem;
  list-style: none;
  font-size: .8rem;
  flex-wrap: wrap;
}
.breadcrumb-list li { display: flex; align-items: center; gap: .4rem; color: var(--text-muted); }
.breadcrumb-list li:not(:last-child)::after { content: '/'; opacity: .3; }
.breadcrumb-list a { color: var(--text-muted); }
.breadcrumb-list a:hover { color: var(--blue-bright); }
.breadcrumb-list .current { color: var(--text-bright); font-weight: 500; }

/* ─── Product Detail Hero ────────────────────────────────────── */
.detail-hero {
  background: var(--space-deep);
  padding: 3rem 0 4rem;
}
.detail-img-frame {
  background: linear-gradient(145deg, #0A1729 0%, #0E1F36 100%);
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-solid);
  box-shadow: 0 0 40px rgba(59,158,255,.08);
}
/* Star dots in detail image */
.detail-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: .06;
}
.detail-img-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--blue);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .35rem .8rem;
  border-radius: 100px;
  z-index: 1;
  box-shadow: 0 0 12px rgba(59,158,255,.5);
}
.detail-info { padding-left: 1rem; }
@media (max-width: 991px) { .detail-info { padding-left: 0; margin-top: 2rem; } }

.detail-category {
  font-size: .72rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.detail-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  color: var(--text-bright);
}
.detail-spec-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1.75rem;
}
.spec-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: rgba(59,158,255,.08);
  border: 1px solid rgba(59,158,255,.2);
  color: var(--text);
  font-size: .72rem;
  font-weight: 500;
  padding: .3rem .65rem;
  border-radius: 100px;
}
.spec-badge i { color: var(--blue); font-size: .7rem; }
.detail-price-block {
  background: var(--space-dark);
  border: 1px solid var(--border-solid);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.detail-price-big {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--orange-light);
  line-height: 1;
  text-shadow: 0 0 20px rgba(224,123,42,.3);
}
.detail-price-sub {
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: .3rem;
}
.detail-availability {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  font-weight: 500;
  color: #4FC3A0;
}
.detail-availability::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4FC3A0;
  box-shadow: 0 0 0 3px rgba(79,195,160,.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(79,195,160,.2); }
  50%       { box-shadow: 0 0 0 6px rgba(79,195,160,.07); }
}

/* ─── Detail Tabs ────────────────────────────────────────────── */
.detail-tabs-bar {
  background: var(--space-dark);
  border-bottom: 1px solid var(--border-solid);
  position: sticky;
  top: 62px;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
}
.detail-tabs-nav {
  display: flex;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 0;
}
.detail-tabs-nav::-webkit-scrollbar { display: none; }
.detail-tabs-nav li a {
  display: block;
  padding: 1rem 1.5rem;
  font-size: .86rem;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all var(--transition);
  text-decoration: none;
  letter-spacing: .01em;
}
.detail-tabs-nav li a:hover { color: var(--text-bright); }
.detail-tabs-nav li a.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-panel-inner {
  padding: 3.5rem 0;
  background: var(--space-deep);
}

/* Tab panel wraps */
.bg-white {
  background: var(--space-deep) !important;
}

/* Spec table */
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid var(--border-solid); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table td { padding: .85rem 0; font-size: .875rem; vertical-align: top; }
.spec-table td:first-child { color: var(--text-muted); width: 42%; }
.spec-table td:last-child  { color: var(--text-bright); font-weight: 500; }

/* Terms */
.terms-list { list-style: none; }
.terms-list li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  padding: .75rem 0;
  border-bottom: 1px solid var(--border-solid);
  font-size: .88rem;
  color: var(--text);
}
.terms-list li:last-child { border-bottom: none; }
.terms-list li i { color: var(--blue); font-size: 1rem; margin-top: .1rem; flex-shrink: 0; }

/* ─── Availability Calendar ──────────────────────────────────── */
.availability-section {
  background: var(--space-dark);
  padding: 4rem 0;
  border-top: 1px solid var(--border-solid);
  border-bottom: 1px solid var(--border-solid);
}
.cal-container {
  background: var(--space-mid);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid var(--border-solid);
  box-shadow: var(--shadow-md);
}
@media (max-width: 575px) { .cal-container { padding: 1.25rem; } }

.cal-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}
.cal-period-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-bright);
  text-align: center;
  flex: 1;
}
.cal-btn {
  width: 38px;
  height: 38px;
  background: var(--space-dark);
  border: 1.5px solid var(--border-solid);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  font-size: .9rem;
  transition: all var(--transition);
  flex-shrink: 0;
}
.cal-btn:hover:not(:disabled) {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: var(--glow-blue);
}
.cal-btn:disabled { opacity: .25; cursor: default; }

.cal-months-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
@media (max-width: 767px) { .cal-months-grid { grid-template-columns: 1fr; gap: 2rem; } }

.cal-month-name {
  font-size: .8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  text-align: center;
  margin-bottom: .9rem;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.cal-dh {
  text-align: center;
  font-size: .65rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: .3rem 0;
  opacity: .7;
}
.cal-d {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 500;
  border-radius: var(--radius-xs);
  transition: all .15s var(--ease);
  cursor: default;
  color: var(--text-muted);
}
.cal-d.empty { background: transparent; }
.cal-d.past  { color: rgba(255,255,255,.1); }
.cal-d.today {
  background: rgba(59,158,255,.15);
  color: var(--blue);
  font-weight: 700;
  border: 1.5px solid rgba(59,158,255,.4);
  box-shadow: 0 0 8px rgba(59,158,255,.2);
}
.cal-d.available { color: var(--text); }
.cal-d.available:hover {
  background: rgba(59,158,255,.1);
  color: var(--blue-bright);
}
.cal-d.occupied {
  background: rgba(220,53,69,.12);
  color: rgba(220,53,69,.6);
  text-decoration: line-through;
  font-weight: 400;
}

.cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-solid);
}
.leg-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  color: var(--text-muted);
}
.leg-dot {
  width: 13px;
  height: 13px;
  border-radius: 3px;
  flex-shrink: 0;
}
.leg-dot.free     { background: rgba(255,255,255,.04); border: 1px solid var(--border-solid); }
.leg-dot.occupied { background: rgba(220,53,69,.15); }
.leg-dot.today-d  { background: rgba(59,158,255,.15); border: 1.5px solid rgba(59,158,255,.4); }

/* ─── Reservation Form ───────────────────────────────────────── */
.reservation-section {
  background: var(--space-deep);
  padding: 4rem 0;
}
.reservation-card {
  background: var(--space-mid);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid var(--border-solid);
  box-shadow: var(--shadow-md);
}
@media (max-width: 575px) { .reservation-card { padding: 1.5rem; } }

.price-summary-box {
  background: var(--space-dark);
  border: 1px solid rgba(59,158,255,.2);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  display: none;
  box-shadow: 0 0 12px rgba(59,158,255,.08);
}
.price-summary-box.visible { display: block; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
  padding: .3rem 0;
  color: var(--text-muted);
}
.price-row.total {
  color: var(--orange-light);
  font-weight: 700;
  font-size: 1rem;
  padding-top: .85rem;
  margin-top: .5rem;
  border-top: 1px solid var(--border-solid);
}
.price-row.total .price-val {
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-shadow: 0 0 16px rgba(224,123,42,.3);
}

/* ─── Flatpickr overrides ────────────────────────────────────── */
.flatpickr-calendar {
  font-family: var(--font-body) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow-xl), 0 0 30px rgba(59,158,255,.1) !important;
  border: 1px solid rgba(59,158,255,.2) !important;
  background: var(--space-mid) !important;
}
.flatpickr-months { background: var(--space-mid) !important; }
.flatpickr-months .flatpickr-month { background: var(--space-mid) !important; color: var(--text-bright) !important; }
.flatpickr-current-month .flatpickr-monthDropdown-months { background: var(--space-mid) !important; }
.flatpickr-current-month input.cur-year { color: var(--text-bright) !important; }
.flatpickr-weekdays { background: var(--space-mid) !important; }
span.flatpickr-weekday { background: var(--space-mid) !important; color: var(--text-muted) !important; }
.flatpickr-days { background: var(--space-mid) !important; }
.dayContainer { background: var(--space-mid) !important; }
.flatpickr-day {
  color: var(--text) !important;
  border-color: transparent !important;
}
.flatpickr-day:hover:not(.selected):not(.startRange):not(.endRange) {
  background: rgba(59,158,255,.12) !important;
  border-color: transparent !important;
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: var(--blue) !important;
  border-color: var(--blue) !important;
  color: #fff !important;
  box-shadow: 0 0 10px rgba(59,158,255,.4) !important;
}
.flatpickr-day.inRange {
  background: rgba(59,158,255,.12) !important;
  box-shadow: -5px 0 0 rgba(59,158,255,.12), 5px 0 0 rgba(59,158,255,.12) !important;
  border-color: transparent !important;
}
.flatpickr-day.flatpickr-disabled { color: rgba(255,255,255,.15) !important; text-decoration: line-through; }
.flatpickr-day.today { border-color: rgba(59,158,255,.4) !important; }
.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg { fill: var(--text-muted) !important; }
.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg { fill: var(--blue) !important; }

/* ─── Scroll Reveal ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ─── Misc utilities ─────────────────────────────────────────── */
.divider       { height: 1px; background: var(--border-solid); margin: 2rem 0; }
.text-green    { color: var(--blue) !important; }
.text-orange   { color: var(--orange) !important; }
.text-muted-c  { color: var(--text-muted) !important; }
.bg-cream      { background: var(--space-deep) !important; }
.bg-cream-dark { background: var(--space-dark) !important; }

/* Alert box */
.alert-success-custom {
  display: none;
  align-items: center;
  gap: .75rem;
  background: rgba(59,158,255,.08);
  border: 1.5px solid rgba(59,158,255,.25);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  color: var(--blue-bright);
  font-weight: 500;
  margin-top: 1rem;
  box-shadow: var(--glow-blue);
}
.alert-success-custom.show { display: flex; }
.alert-success-custom i { font-size: 1.2rem; color: var(--blue); }

/* ─── Thumbnail placeholders in detail ──────────────────────── */
.thumb-active {
  border: 2px solid var(--blue) !important;
  box-shadow: 0 0 10px rgba(59,158,255,.35) !important;
}
