:root {
  --blue: #0067b8;
  --blue-dark: #004a82;
  --bg: #020712;
  --text: #111827;
  --muted: #6b7280;
  --card-bg: #ffffff;
  --border: #e5e7eb;
  --radius-lg: 18px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.16);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: #f3f4f6;
  color: var(--text);
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 100% - 2rem);
  margin: 0 auto;
}

/* HEADER */

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.header-logo {
  height: 44px;
  width: auto;
}

.header-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #e5e7eb;
  letter-spacing: 0.3px;
  white-space: nowrap;
  opacity: 0.92;
  transition: opacity 0.2s ease;
}

.header-title:hover {
  opacity: 1;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(2, 7, 18, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo img {
  height: 48px;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.main-nav a {
  color: #e5e7eb;
  padding-bottom: 0.15rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.main-nav a:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

.main-nav .active {
  color: #ffffff;
  border-color: var(--blue);
}

/* HERO */

.hero {
  background: radial-gradient(circle at top, #0b65b1 0, #020617 60%);
  color: #ffffff;
  padding: 4.5rem 0 4rem;
}

.hero-small {
  padding: 3.5rem 0 3rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 3.5rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 3.3vw, 3.2rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.hero-subtitle {
  margin: 0 0 1.5rem;
  max-width: 32rem;
  color: #d1d5db;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: #bfdbfe;
  margin-bottom: 0.6rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: #cbd5f5;
}

.hero-meta span {
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(191, 219, 254, 0.5);
  background: rgba(15, 23, 42, 0.35);
}

/* HERO CARD */

.hero-card {
  background: linear-gradient(145deg, #0b1120, #020617);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: var(--shadow-soft);
  padding: 1.75rem 1.5rem 1.5rem;
}

.hero-kpi {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.75rem;
}

.kpi-label {
  font-size: 0.75rem;
  color: #9ca3af;
}

.kpi-number {
  font-size: 1.75rem;
  font-weight: 700;
}

.hero-note {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 0.75rem;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.3rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    background 0.18s ease, color 0.18s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #ffffff;
  box-shadow: 0 14px 35px rgba(37, 99, 235, 0.45);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.65);
}

.btn.ghost {
  background: rgba(15, 23, 42, 0.35);
  color: #e5e7eb;
  border-color: rgba(148, 163, 184, 0.7);
}

.btn.ghost:hover {
  background: rgba(15, 23, 42, 0.7);
}

.btn.full {
  width: 100%;
}

/* SECTIONS */

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: #eef2ff;
}

.section-title {
  font-size: 1.8rem;
  margin: 0 0 0.4rem;
}

.section-intro {
  margin: 0 0 2rem;
  max-width: 36rem;
  color: var(--muted);
}

/* GRID / LAYOUTS */

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

.card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem;
  border: 1px solid var(--border);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease, background 0.18s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
  border-color: rgba(59, 130, 246, 0.4);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
}

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
}

/* TIMELINE */

.timeline {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.timeline-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: flex-start;
}

.step-number {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: var(--blue);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* QUOTE / CTA */

.quote-block {
  background: #020617;
  color: #e5e7eb;
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: var(--shadow-soft);
}

.quote {
  margin: 0 0 0.75rem;
  font-size: 1rem;
}

.quote-meta {
  margin: 0;
  font-size: 0.85rem;
  color: #9ca3af;
}

.cta-block h2 {
  margin-top: 0;
}

.small {
  font-size: 0.85rem;
  color: var(--muted);
}

/* FORMS */

.form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.form label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.85rem;
}

.form input,
.form select,
.form textarea {
  border-radius: 999px;
  border: 1px solid var(--border);
  padding: 0.55rem 0.9rem;
  font: inherit;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease,
    background 0.18s ease;
}

.form textarea {
  border-radius: 16px;
  resize: vertical;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: rgba(37, 99, 235, 0.7);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.5);
  background: #eff6ff;
}

.form-message {
  font-size: 0.86rem;
  margin: 0.25rem 0 0;
}

/* BOOKING / CONTACT LAYOUT */

.booking-layout,
.contact-layout {
  margin-top: 1rem;
}

.bullet-list {
  padding-left: 1rem;
  margin: 0 0 1rem 0;
}

.bullet-list li {
  margin-bottom: 0.35rem;
}

/* FOOTER */

.site-footer {
  background: #020617;
  color: #9ca3af;
  padding: 1rem 0 1.2rem;
  margin-top: 2rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a {
  color: #e5e7eb;
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
}

/* ANIMATIONS (reveal on scroll) */

[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    order: -1;
  }

  .split {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .header-inner {
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .main-nav {
    gap: 0.9rem;
    font-size: 0.8rem;
  }

  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 3.3rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.4rem;
    align-items: flex-start;
  }
}

.credits {
  font-size: 0.7rem;
  opacity: 0.6;
}

.credits a {
  color: #e5e7eb;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.credits a:hover {
  opacity: 1;
}

/* Quote Slider */
#quote-slider {
  position: relative;
  overflow: hidden;
}

.quote-item {
  opacity: 0;
  position: absolute;
  inset: 0;
  transition: opacity 0.6s ease;
}

.quote-item.active {
  opacity: 1;
  position: relative;
}
