:root {
  --navy: #26326b;
  --navy-dark: #111831;
  --ink: #111318;
  --muted: #657080;
  --line: rgba(17, 19, 24, 0.12);
  --surface: #f5f7fb;
  --white: #ffffff;
  --blue-soft: #dfe8ff;
  --shadow: 0 28px 80px rgba(17, 24, 49, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--white);
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  width: min(1120px, calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 58px;
  padding: 8px 12px 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(8, 11, 23, 0.54);
  color: var(--white);
  backdrop-filter: blur(22px);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: 0 16px 46px rgba(17, 24, 49, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  font-size: 1rem;
  font-weight: 900;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  opacity: 0.88;
}

.nav a,
.text-link {
  position: relative;
}

.nav a::after,
.text-link::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

.nav a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.nav-cta {
  background: var(--white);
  color: var(--navy);
}

.site-header.is-scrolled .nav-cta {
  background: var(--navy);
  color: var(--white);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 390px);
  align-items: end;
  gap: 44px;
  min-height: 100svh;
  padding: 156px max(32px, calc((100vw - 1120px) / 2)) 46px;
  overflow: hidden;
  color: var(--white);
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 8, 22, 0.86), rgba(20, 28, 61, 0.58) 48%, rgba(4, 8, 22, 0.18)),
    linear-gradient(0deg, rgba(6, 8, 16, 0.74), rgba(6, 8, 16, 0.08) 48%);
}

.hero-content,
.booking-card {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 720px;
  padding-right: 32px;
}

.hero-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(280px, 62vw);
  margin-bottom: 28px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 60px rgba(3, 7, 19, 0.22);
  backdrop-filter: blur(18px);
}

.hero-brand-mark img {
  width: 100%;
  max-height: 110px;
  object-fit: contain;
}

.eyebrow,
.card-kicker {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow,
.cta-band .eyebrow {
  color: var(--blue-soft);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(3.6rem, 7vw, 7.2rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 4vw, 4.7rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button.primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 18px 44px rgba(38, 50, 107, 0.32);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.button.light {
  background: var(--white);
  color: var(--navy);
  box-shadow: none;
}

.booking-card {
  align-self: end;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(28px);
}

.booking-card h2 {
  margin-bottom: 18px;
  font-size: 1.64rem;
  line-height: 1.14;
}

.booking-card p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0;
}

.partner-logos a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 74px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  transition:
    transform 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.partner-logos a:hover,
.partner-logos a:focus-visible {
  background: var(--white);
  box-shadow: 0 14px 34px rgba(3, 7, 19, 0.18);
  transform: translateY(-2px);
}

.partner-logos img {
  width: 100%;
  height: 54px;
  object-fit: contain;
}

.text-link {
  display: inline-flex;
  color: var(--white);
  font-weight: 800;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.trust-strip div {
  min-height: 124px;
  padding: 26px 32px;
  background: var(--white);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 8px;
  font-size: 1.04rem;
}

.trust-strip span {
  color: var(--muted);
  line-height: 1.45;
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 112px 0;
}

.intro-section,
.split-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: center;
}

.section-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.narrow {
  max-width: 530px;
}

.photo-panel,
.media-stack img,
.map-card {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.photo-panel img {
  width: 100%;
  aspect-ratio: 1.04;
  object-fit: cover;
}

.services-section,
.operations-section {
  width: 100%;
  max-width: none;
  padding-right: max(32px, calc((100vw - 1120px) / 2));
  padding-left: max(32px, calc((100vw - 1120px) / 2));
  background: var(--surface);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(38, 50, 107, 0.26);
  box-shadow: 0 18px 46px rgba(17, 24, 49, 0.1);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-card p,
.operations-grid p,
.story-step p {
  color: var(--muted);
  line-height: 1.55;
}

.story-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: 100%;
  max-width: none;
  padding: 0;
  background: var(--line);
}

.story-step {
  min-height: 282px;
  padding: 46px 32px;
  background: var(--navy-dark);
  color: var(--white);
}

.story-step span {
  display: block;
  margin-bottom: 34px;
  color: var(--blue-soft);
  font-weight: 900;
}

.story-step p {
  color: rgba(255, 255, 255, 0.68);
}

.media-stack {
  display: block;
}

.media-stack img {
  width: 100%;
  aspect-ratio: 1.02;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  line-height: 1.55;
}

.check-list li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--navy);
  content: "";
}

.operations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.operations-grid article {
  min-height: 210px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 92px max(32px, calc((100vw - 1120px) / 2));
  background: var(--navy);
  color: var(--white);
}

.cta-band h2 {
  max-width: 810px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
}

.contact-section {
  grid-template-columns: 0.85fr 1.15fr;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-list a {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  font-weight: 800;
}

.map-card {
  position: relative;
  min-height: 430px;
  background: var(--surface);
}

.map-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.map-button {
  position: absolute;
  right: 18px;
  bottom: 18px;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(17, 24, 49, 0.72);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px max(32px, calc((100vw - 1120px) / 2));
  background: #080b17;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.footer strong,
.footer span {
  display: block;
}

.footer strong {
  color: var(--white);
}

.footer p {
  max-width: 620px;
  margin-bottom: 0;
  line-height: 1.55;
}

.concept-page {
  background: #f6f7fa;
}

.concept-hero {
  padding: 142px max(28px, calc((100vw - 1180px) / 2)) 42px;
  background: var(--navy-dark);
  color: var(--white);
}

.concept-hero h1 {
  max-width: 900px;
  font-size: clamp(3rem, 7vw, 7rem);
}

.concept-grid {
  display: grid;
  gap: 28px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 92px;
}

.concept {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(17, 24, 49, 0.12);
}

.concept-visual {
  min-height: 460px;
  background-size: cover;
  background-position: center;
}

.concept-copy {
  padding: clamp(30px, 6vw, 70px);
}

.concept-copy h2 {
  font-size: clamp(2rem, 4vw, 4.4rem);
}

.concept-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.concept-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.concept-tags span {
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.82rem;
}

.nav-mockup-page {
  background: #f4f6fa;
}

.nav-mockup-intro {
  padding: 104px max(24px, calc((100vw - 1120px) / 2)) 30px;
  background: var(--navy-dark);
  color: var(--white);
}

.nav-mockup-intro h1 {
  max-width: 980px;
  font-size: clamp(3rem, 7vw, 6.8rem);
}

.nav-mockup-intro p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.12rem;
  line-height: 1.65;
}

.nav-options {
  display: grid;
  gap: 30px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 96px;
}

.nav-option {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(17, 24, 49, 0.12);
}

.nav-preview {
  position: relative;
  min-height: 360px;
  padding: 28px;
  overflow: hidden;
}

.dark-preview {
  background:
    linear-gradient(90deg, rgba(4, 8, 22, 0.82), rgba(4, 8, 22, 0.28)),
    url("Assets/Photos/WhatsApp Image 2026-05-16 at 21.49.50.jpeg") center/cover;
  color: var(--white);
}

.light-preview {
  background:
    linear-gradient(90deg, rgba(245, 247, 251, 0.98), rgba(245, 247, 251, 0.55)),
    url("Assets/Photos/IMG_20250712_090822.jpg") center/cover;
}

.image-preview {
  background:
    linear-gradient(90deg, rgba(4, 8, 22, 0.72), rgba(4, 8, 22, 0.18)),
    url("Assets/Photos/Parking Overview.jpeg") center/cover;
}

.minimal-preview {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.35)),
    url("Assets/Photos/IMG_20250712_090843-EFFECTS.jpg") center/cover;
}

.mock-nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
  padding: 12px 14px 12px 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(8, 11, 23, 0.46);
  color: var(--white);
  backdrop-filter: blur(20px);
}

.mock-nav nav,
.floating-actions-nav div {
  display: flex;
  align-items: center;
  gap: 24px;
}

.mock-nav nav a,
.quiet-link {
  color: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  opacity: 0.82;
}

.mock-wordmark {
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.mock-wordmark.dark,
.light-preview .mock-nav {
  color: var(--ink);
}

.mock-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font-weight: 900;
  white-space: nowrap;
}

.mock-cta.navy {
  background: var(--navy);
  color: var(--white);
}

.split-brand-nav,
.floating-actions-nav {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(17, 19, 24, 0.1);
  box-shadow: 0 18px 44px rgba(17, 24, 49, 0.12);
}

.mock-brand-block {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.mock-brand-block span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.mock-brand-block strong {
  color: var(--navy);
  font-size: 1.26rem;
  font-weight: 950;
}

.centered-nav {
  justify-content: center;
  gap: 34px;
  padding-right: 120px;
  padding-left: 34px;
}

.center-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 170px;
  height: 72px;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
}

.center-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mock-cta.floating {
  position: absolute;
  right: 14px;
}

.floating-actions-nav {
  padding-left: 24px;
}

.preview-hero-copy {
  position: absolute;
  left: 42px;
  bottom: 36px;
  z-index: 2;
  display: grid;
  gap: 8px;
}

.preview-hero-copy span {
  color: var(--blue-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.preview-hero-copy strong {
  max-width: 640px;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.dark-copy span {
  color: var(--navy);
}

.dark-copy strong {
  color: var(--ink);
}

.nav-option-copy {
  display: grid;
  gap: 10px;
  padding: 30px;
}

.nav-option-copy h2 {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.nav-option-copy p {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.nav-option-copy strong {
  color: var(--navy);
}

@media (max-width: 980px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .nav {
    display: none;
  }

  .hero,
  .intro-section,
  .split-section,
  .contact-section,
  .concept {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 132px;
  }

  .hero-content {
    padding-right: 0;
  }

  .booking-card {
    margin-top: 44px;
  }

  .trust-strip,
  .story-section,
  .operations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .cta-band,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .concept-visual {
    min-height: 360px;
  }

  .mock-nav nav {
    display: none;
  }

  .centered-nav {
    justify-content: space-between;
    padding-right: 14px;
    padding-left: 14px;
  }

  .center-logo {
    width: 150px;
  }

  .mock-cta.floating {
    position: static;
  }
}

@media (max-width: 620px) {
  .brand span {
    max-width: 166px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 14px;
  }

  .hero {
    padding-right: 20px;
    padding-left: 20px;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 4.6rem);
  }

  .hero-actions,
  .partner-logos,
  .trust-strip,
  .service-grid,
  .story-section,
  .operations-grid,
  .media-stack {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }

  .section {
    padding: 78px 0;
  }

  .services-section,
  .operations-section,
  .cta-band,
  .footer {
    padding-right: 20px;
    padding-left: 20px;
  }
}
