*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0a0e1a;
  --blue: #002265;
  --blue-lt: #0038a8;
  --white: #ffffff;
  --slate: #8892a4;
  --muted: #dcdcdc;
  --card-bg: #0f1525;
  --card-border: rgba(255, 255, 255, 0.08);
  --glass: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.1);
  --slide-duration: 6s;
}

html,
body {
  height: 100%;
  font-family: "Inter", sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 70px;
  background: rgba(1, 50, 135, 0.52);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: background 0.4s ease;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-img {
  width: 90px;
  height: 50px;
  object-fit: contain;
  display: block;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--blue-lt);
  transition: width 0.3s ease;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.nav-cta:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: ken-burns var(--slide-duration) ease infinite;
}
.slide.active {
  opacity: 1;
}
@keyframes ken-burns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  50% {
    transform: scale(1.08) translate(-1%, 0.5%);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}
.slide-1 {
  background-image: url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1800&auto=format&fit=crop&q=80");
  background-size: cover;
  background-position: center;
}
.slide-2 {
  background-image: url("images/500113ff4384143129f54adf1ed261c7.jpg");
  background-size: cover;
  background-position: center;
}
.slide-3 {
  background-image: url("images/7d8122441579e78040baeda3896d5874.jpg");
  background-size: cover;
  background-position: center;
}
.slide-1::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 10, 40, 0.35);
}
.slide-2::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 15, 30, 0.3);
}
.slide-3::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 5, 25, 0.3);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.5) 60%,
    rgba(10, 14, 26, 0.95) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 780px;
  padding: 0 24px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
  animation: fade-up 0.9s ease 0.2s both;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-lt);
  animation: blink 2s ease infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.hero-title {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  animation: fade-up 0.9s ease 0.4s both;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(90deg, #1a5fff, #38a0ff, #a8d8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 40px;
  animation: fade-up 0.9s ease 0.6s both;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fade-up 0.9s ease 0.8s both;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(0, 34, 101, 0.5);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 56, 168, 0.55);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.btn-ghost:hover {
  background: var(--glass);
  border-color: rgba(255, 255, 255, 0.25);
}
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero text slide transition */
.hero-content {
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}
.hero-content.fading {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.slide-indicators {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}
.indicator {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  overflow: hidden;
  transition: width 0.3s ease;
}
.indicator.active {
  width: 52px;
  background: rgba(255, 255, 255, 0.3);
}
.indicator-fill {
  height: 100%;
  width: 0%;
  background: var(--white);
  border-radius: 2px;
}
.indicator.active .indicator-fill {
  animation: fill-bar var(--slide-duration) linear forwards;
}
@keyframes fill-bar {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
.slide-caption {
  position: absolute;
  bottom: 56px;
  left: 48px;
  z-index: 20;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  transition: opacity 0.5s ease;
}
.scroll-hint {
  position: absolute;
  bottom: 36px;
  right: 48px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--slate);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--slate), transparent);
  animation: scroll-anim 1.8s ease infinite;
}
@keyframes scroll-anim {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  50.01% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ══════════════════════════════════════
       CATALOGUE SECTION
    ══════════════════════════════════════ */
.catalogue {
  padding: 96px 48px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 56px;
  text-align: center;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 34, 101, 0.35);
  border: 1px solid rgba(0, 56, 168, 0.4);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6aa3ff;
  margin-bottom: 16px;
}
.section-title {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.section-sub {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}

/* Layout: sidebar + grid */
.catalogue-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
}

/* ── SIDEBAR ── */
.sidebar {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 28px 24px;
  position: sticky;
  top: 90px;
}
.sidebar-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--card-border);
}
.filter-group {
  margin-bottom: 28px;
}
.filter-group-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.filter-group-label::before {
  content: "";
  display: block;
  width: 12px;
  height: 2px;
  background: var(--blue-lt);
  border-radius: 1px;
}

/* Pill filters */
.filter-pills {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.filter-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 14px;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--slate);
  background: transparent;
  transition: all 0.2s ease;
  user-select: none;
}
.filter-pill:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}
.filter-pill.active {
  background: rgba(0, 56, 168, 0.2);
  border-color: rgba(0, 100, 255, 0.35);
  color: var(--white);
}
.filter-pill .count {
  font-size: 0.7rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2px 8px;
  color: var(--slate);
  min-width: 24px;
  text-align: center;
}
.filter-pill.active .count {
  background: rgba(0, 100, 255, 0.3);
  color: #90c0ff;
}

/* Range / checkbox style */
.filter-check {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--slate);
  cursor: pointer;
  padding: 4px 0;
  transition: color 0.2s;
}
.check-item:hover {
  color: var(--white);
}
.check-box {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  flex-shrink: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.check-item.checked .check-box {
  background: var(--blue-lt);
  border-color: var(--blue-lt);
}
.check-item.checked .check-box::after {
  content: "✓";
  font-size: 0.6rem;
  color: #fff;
}
.check-item.checked {
  color: var(--white);
}

/* Reset btn */
.filter-reset {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid var(--card-border);
  color: var(--slate);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 4px;
}
.filter-reset:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

/* Results count */
.results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--card-border);
}
.results-count {
  font-size: 0.82rem;
  color: var(--slate);
}
.results-count strong {
  color: var(--white);
}
.sort-select {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--white);
  font-size: 0.8rem;
  padding: 7px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  outline: none;
}

/* ── CARDS GRID ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  cursor: pointer;
  animation: card-in 0.5s ease both;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 100, 255, 0.35);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}
@keyframes card-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Full image — natural ratio, no crop */
.card-img-wrap {
  position: relative;
  overflow: hidden;
  background: #0a0f1e;
}
.card-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.45s ease;
}
.card:hover .card-img-wrap img {
  transform: scale(1.04);
}

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 34, 101, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 100, 255, 0.3);
  color: #90c0ff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

.card-body {
  padding: 20px;
}
.card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.card-type {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-lt);
}
.card-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--slate);
}
.card-location {
  font-size: 0.72rem;
  color: var(--slate);
}
.card-title {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.35;
  margin-bottom: 8px;
  color: var(--white);
}
.card-desc {
  font-size: 0.8rem;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 16px;
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--card-border);
}
.card-price {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
}
.card-price span {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--slate);
}
.card-cta {
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  transition:
    background 0.2s,
    transform 0.15s;
}
.card-cta:hover {
  background: var(--blue-lt);
  transform: translateY(-1px);
}

/* No results */
.no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 20px;
  color: var(--slate);
  display: none;
}
.no-results.show {
  display: block;
}
.no-results-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

/* ══════════════════════════════════════
       DETAIL / REQUEST POPUP
    ══════════════════════════════════════ */
.detail-backdrop {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(5, 8, 20, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
  opacity: 0;
  animation: backdrop-in 0.35s ease forwards;
}
.detail-backdrop.closing {
  animation: backdrop-out 0.3s ease forwards;
}
.detail-backdrop.closing .detail-modal {
  animation: popup-out 0.3s cubic-bezier(0.4, 0, 1, 1) forwards;
}

.detail-modal {
  position: relative;
  width: 100%;
  max-width: 820px;
  background: #0d1427;
  border: 1px solid rgba(0, 80, 200, 0.3);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  transform: translateY(28px) scale(0.97);
  opacity: 0;
  animation: popup-in 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards;
  margin: auto;
}

.detail-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(10, 14, 26, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--slate);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    color 0.2s;
}
.detail-close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

/* Two-column layout inside modal */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* Left — image + info */
.detail-left {
  display: flex;
  flex-direction: column;
}
.detail-img {
  position: relative;
  overflow: hidden;
  background: #080d1a;
}
.detail-img img {
  width: 100%;
  height: auto;
  display: block;
}
.detail-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, #0d1427 100%);
}

.detail-info {
  padding: 24px 28px 28px;
  flex: 1;
}
.detail-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 34, 101, 0.7);
  border: 1px solid rgba(0, 100, 255, 0.3);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #90c0ff;
  margin-bottom: 12px;
}
.detail-title {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 10px;
}
.detail-desc {
  font-size: 0.83rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 20px;
}

.detail-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.detail-spec {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 10px 12px;
}
.detail-spec-label {
  font-size: 0.65rem;
  color: var(--slate);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.detail-spec-value {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
}

.detail-price {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  padding-top: 16px;
  border-top: 1px solid var(--card-border);
}
.detail-price span {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--slate);
}

/* Right — request form */
.detail-right {
  background: #080d1a;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.form-title {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 4px;
}
.form-sub {
  font-size: 0.78rem;
  color: var(--slate);
  margin-bottom: 22px;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 14px;
}
.form-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 6px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px 14px;
  font-family: "Inter", sans-serif;
  font-size: 0.83rem;
  color: var(--white);
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--slate);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(0, 100, 255, 0.5);
  background: rgba(0, 56, 168, 0.08);
}
.form-select {
  cursor: pointer;
}
.form-select option {
  background: #0d1427;
}
.form-textarea {
  resize: vertical;
  min-height: 90px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-submit {
  width: 100%;
  margin-top: 6px;
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 13px;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0, 34, 101, 0.5);
}
.form-submit:hover {
  background: var(--blue-lt);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(0, 56, 168, 0.5);
}

.form-note {
  font-size: 0.7rem;
  color: var(--slate);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}

/* Success state */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
  padding: 20px 0;
}
.form-success.show {
  display: flex;
}
.form-success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}
.form-success h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.form-success p {
  font-size: 0.82rem;
  color: var(--slate);
  line-height: 1.6;
}

/* Responsive modal */
@media (max-width: 700px) {
  .detail-layout {
    grid-template-columns: 1fr;
  }
  .detail-right {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .catalogue-layout {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: static;
  }
  .catalogue {
    padding: 60px 24px;
  }
}
@media (max-width: 768px) {
  nav {
    padding: 0 24px;
  }
  .nav-links {
    display: none;
  }
  .scroll-hint {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .slide,
  .indicator-fill,
  .scroll-line {
    animation: none;
  }
  .slide.active {
    opacity: 1;
  }
}

/* ══════════════════════════════════════
       ANNOUNCEMENT POPUP
    ══════════════════════════════════════ */
.popup-backdrop {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(5, 8, 20, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  animation: backdrop-in 0.4s ease 0.3s forwards;
}
@keyframes backdrop-in {
  to {
    opacity: 1;
  }
}

.popup {
  position: relative;
  width: 100%;
  max-width: 560px;
  background: #0d1427;
  border: 1px solid rgba(0, 80, 200, 0.35);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  transform: translateY(32px) scale(0.97);
  opacity: 0;
  animation: popup-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}
@keyframes popup-in {
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* Top image band */
.popup-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  position: relative;
}
.popup-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.popup-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, #0d1427 100%);
}

/* Floating badge over image */
.popup-badge {
  position: absolute;
  top: 16px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0, 34, 101, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 100, 255, 0.4);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #90c0ff;
}
.popup-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #38a0ff;
  animation: blink 1.5s ease infinite;
}

/* Body */
.popup-body {
  padding: 28px 32px 32px;
}

.popup-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3b82f6;
  margin-bottom: 10px;
}
.popup-title {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 1.55rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 12px;
}
.popup-title em {
  font-style: normal;
  background: linear-gradient(90deg, #1a5fff, #38a0ff, #a8d8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.popup-desc {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Feature list */
.popup-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.popup-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--muted);
}
.popup-feature-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  flex-shrink: 0;
  background: rgba(0, 56, 168, 0.3);
  border: 1px solid rgba(0, 100, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* Actions */
.popup-actions {
  display: flex;
  gap: 10px;
}
.popup-btn-primary {
  flex: 1;
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 13px 20px;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  transition:
    background 0.2s,
    transform 0.15s;
  box-shadow: 0 4px 20px rgba(0, 34, 101, 0.5);
}
.popup-btn-primary:hover {
  background: var(--blue-lt);
  transform: translateY(-1px);
}
.popup-btn-ghost {
  background: transparent;
  color: var(--slate);
  border: 1px solid var(--card-border);
  padding: 13px 20px;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  transition:
    color 0.2s,
    border-color 0.2s,
    background 0.2s;
  white-space: nowrap;
}
.popup-btn-ghost:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--glass);
}

/* Close button */
.popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(10, 14, 26, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--slate);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    color 0.2s;
  z-index: 10;
}
.popup-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

/* Dismiss checkbox */
.popup-dismiss {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  cursor: pointer;
  width: fit-content;
}
.popup-dismiss input {
  accent-color: var(--blue-lt);
  cursor: pointer;
}
.popup-dismiss span {
  font-size: 0.74rem;
  color: var(--slate);
  user-select: none;
}

/* Exit animation */
.popup-backdrop.closing {
  animation: backdrop-out 0.3s ease forwards;
}
.popup-backdrop.closing .popup {
  animation: popup-out 0.3s cubic-bezier(0.4, 0, 1, 1) forwards;
}
@keyframes backdrop-out {
  to {
    opacity: 0;
  }
}
@keyframes popup-out {
  to {
    transform: translateY(20px) scale(0.96);
    opacity: 0;
  }
}

@media (max-width: 500px) {
  .popup-body {
    padding: 22px 20px 24px;
  }
  .popup-actions {
    flex-direction: column;
  }
  .popup-img {
    height: 150px;
  }
}

/* ══════════════════════════════════════
SERVICES SECTION
══════════════════════════════════════ */

.services {
  padding: 96px 48px;
  max-width: 1400px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 28px;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 56, 168, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 100, 255, 0.35);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 56, 168, 0.2);
  border: 1px solid rgba(0, 100, 255, 0.3);
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.service-card h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--slate);
}

/* Mobile */

@media (max-width: 900px) {
  .services {
    padding: 60px 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════
FOOTER
══════════════════════════════════════ */

.footer {
  border-top: 1px solid var(--card-border);
  background: #080d1a;
  padding: 32px 48px;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.footer-logo img {
  width: 110px;
  height: auto;
  display: block;
}

.footer-contact {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--slate);
  font-size: 0.9rem;
}

.footer-item a {
  color: var(--slate);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-item a:hover {
  color: var(--white);
}

@media (max-width: 768px) {
  .footer {
    padding: 24px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-contact {
    flex-direction: column;
    gap: 12px;
  }
}

/* ══════════════════════════════════════
SERVICES PAGE
══════════════════════════════════════ */

.services-page {
  padding: 140px 48px 100px;
  max-width: 1400px;
  margin: 0 auto;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.service-detail {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 36px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 30px;
  transition: all 0.3s ease;
}

.service-detail:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 100, 255, 0.35);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
}

.service-number {
  font-family: "Syne", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(0, 102, 255, 0.934);
  line-height: 1;
}

.service-content h2 {
  font-family: "Syne", sans-serif;
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--white);
}

.service-content p {
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-content ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 12px;
}

.service-content li {
  color: var(--muted);
  font-size: 0.9rem;
  position: relative;
  padding-left: 18px;
}

.service-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-lt);
}

@media (max-width: 768px) {
  .services-page {
    padding: 120px 24px 80px;
  }

  .service-detail {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .service-number {
    font-size: 2.2rem;
  }

  .service-content ul {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════
SERVICES HERO (MINIMAL)
══════════════════════════════════════ */

.services-hero {
  padding: 140px 48px 60px;
  text-align: center;
  background: radial-gradient(
    circle at center,
    rgba(0, 56, 168, 0.388),
    transparent 60%
  );
}

.services-hero-content h1 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  position: relative;
}

/* subtle underline glow */
.services-hero-content h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  margin: 16px auto 0;
  background: linear-gradient(90deg, transparent, var(--blue-lt), transparent);
  opacity: 0.8;
}

/* ══════════════════════════════════════
CONTACT PAGE
══════════════════════════════════════ */

.contact-section {
  padding: 80px 48px 120px;
  max-width: 1400px;
  margin: auto;
}

/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

/* FORM */
.contact-form,
.contact-info {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 32px;
}

.contact-form h2,
.contact-info h2 {
  font-family: "Syne", sans-serif;
  color: var(--white);
  margin-bottom: 18px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--white);
  font-family: "Inter", sans-serif;
}

.contact-form textarea {
  resize: none;
}

.contact-form button {
  background: var(--blue);
  border: none;
  padding: 12px;
  border-radius: 10px;
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.contact-form button:hover {
  background: var(--blue-lt);
  transform: translateY(-2px);
}

/* INFO */
.info-item {
  margin-bottom: 10px;
  color: var(--slate);
  font-size: 0.9rem;
}

.contact-info p {
  margin-top: 16px;
  color: var(--slate);
  line-height: 1.6;
}

/* MAP */
.contact-map {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--card-border);
}

.contact-map iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding: 60px 24px;
  }
}
