/* =============================================
   TOKENS
   ============================================= */
:root {
  --accent: #00C3FF;
  --black: #000000;
  --white: #FFFFFF;
  --bg-soft: #0b0b0b;
  --bg-card: #111111;
  --text-soft: rgba(255, 255, 255, 0.72);
  --text-faint: rgba(255, 255, 255, 0.5);
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --radius-sm: 18px;
  --container: 1200px;
  --header-height: 84px;
  --transition: 0.35s ease;
}

/* =============================================
   RESET & BASE
   ============================================= */
@font-face {
  font-family: "ARPDisplay";
  src: url("assets/ARPDisplay-150.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

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

button, input, select, textarea {
  font: inherit;
}

ul {
  list-style: none;
}

i {
  color: var(--accent);
}

/* =============================================
   LAYOUT
   ============================================= */
.container {
  width: min(var(--container), 92%);
  margin: 0 auto;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
.eyebrow, .mini-label {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

h1, h2 {
  font-family: "ARPDisplay", sans-serif;
  font-weight: 700;
}

h1 {
font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.2;
}

p {
  color: var(--text-soft);
}

/* =============================================
   REVEAL ANIMATION
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  will-change: opacity, transform;
}

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

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }

/* =============================================
   HEADER / NAV
   ============================================= */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: var(--black);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo img {
  height: 38px;
  width: auto;
}

.nav a {
  font-size: 0.95rem;
  color: #ffffff;
  opacity: 0.7;
  position: relative;
  margin: 5px;
  transition: 0.3s ease;
}

.nav a:hover {
  opacity: 1;
}

.nav a.active {
  opacity: 1;
  color: #ffffff;
}

.nav a.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ffffff;
}

.nav-enquire {
  display: none;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.location {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.btn-enquire {
  padding: 10px 22px;
  border: 2px solid var(--accent);
  border-radius: 999px;
  font-size: 0.9rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-enquire:hover {
  background: var(--accent);
  color: var(--black);
}

/* Hamburger */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 1.5px;
  background: var(--white);
  transform: translateX(-50%);
  transition: var(--transition);
}

.menu-toggle span:first-child { top: 16px; }
.menu-toggle span:last-child  { top: 25px; }

.menu-toggle.active span:first-child {
  top: 20px;
  transform: translateX(-50%) rotate(45deg);
}

.menu-toggle.active span:last-child {
  top: 20px;
  transform: translateX(-50%) rotate(-45deg);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 80px;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: end;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero-copy .eyebrow {
  margin-bottom: 18px;
}

.hero-copy h1 {
  margin: 0 0 30px;
}

.hero-copy h1 span {
  color: var(--accent);
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--white);
  color: var(--black);
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--white);
  padding: 12px 22px;
  border-radius: 999px;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

.hero-bottom-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.small-img {
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.small-img img {
  height: 180px;
  object-fit: cover;
}

.hero-right {
  border-radius: 28px;
  overflow: hidden;
}

.hero-right img {
  min-height: 520px;
  object-fit: cover;
}

/* =============================================
   STATS
   ============================================= */
.stats {
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 80px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat h2 {
  font-family: "ARPDisplay", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 15px;
}

.stat p {
  font-size: 0.95rem;
  line-height: 1.2;
  color: var(--accent);
  font-weight: 600;
}

/* =============================================
   INTRO STRIP
   ============================================= */
.intro-strip {
  padding: 20px 0;
}

.intro-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.intro-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.intro-card .mini-label {
  margin-bottom: 12px;
}

.intro-card h3 {
  margin-bottom: 10px;
}

/* =============================================
   STATEMENT BANNER
   ============================================= */
.statement {
  position: relative;
  padding: 140px 0;
  background: url("assets/text-banner0bg.png") center/cover no-repeat;
  overflow: hidden;
}

.statement-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.statement::before,
.statement::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 1;
}

.statement::before {
  top: 0;
  background: linear-gradient(to bottom, #000, transparent);
}

.statement::after {
  bottom: 0;
  background: linear-gradient(to top, #000, transparent);
}

.statement-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.statement-content p {
  font-family: "ARPDisplay", sans-serif;
  font-size: clamp(1.6rem, 5vh, 3rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--white);
}

.statement-content .blue {
  color: var(--accent);
}

/* =============================================
   PRICING
   ============================================= */
.pricing-section {
  padding: 100px 0;
}

.pricing-intro {
  max-width: 680px;
  margin: 0 auto 50px;
  text-align: center;
}

.pricing-intro h2 {
  font-family: "ARPDisplay", sans-serif;
  font-size: clamp(2rem, 4vh, 3rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: 20px;
}

.pricing-intro h2 span {
  color: var(--accent);
}

.pricing-intro p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--white);
  max-width: 560px;
  margin: 0 auto;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(4, 330px);
  justify-content: center;
  gap: 20px;
}

.pricing-card {
  padding: 28px 22px;
  border-radius: 32px;
  min-height: 460px;
  border: 1px solid var(--white);
  display: flex;
  flex-direction: column;
}

.pricing-card-light {
  background: #e8e8e8;
  border-color: #e8e8e8;
}

.pricing-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 14px;
  border: 2px solid var(--accent);
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--white);
  margin-bottom: 20px;
}

.pricing-card-light .pricing-pill {
  color: var(--black);
}

.pricing-card h3 {
  font-family: "ARPDisplay", sans-serif;
  font-size: clamp(2rem, 4vh, 3rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 14px;
}

.pricing-card-light h3 {
  color: var(--black);
}

.maintence-bold {
  font-weight: 700;
}

.per-month {
  font-size: 1rem;;
}

.pricing-desc, .pricing-note, .pricing-card li {
  font-size: 0.95rem;
  line-height: 1.45;
}

.pricing-desc {
  color: var(--white);
  margin-bottom: 18px;
}

.pricing-card-light .pricing-desc {
  color: var(--black);
}

.pricing-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
  flex: 1;
}

.pricing-card li {
  position: relative;
  padding-left: 16px;
  color: var(--white);
}

.pricing-card-light li {
  color: var(--black);
}

.pricing-card li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-size: 0.8rem;
  line-height: 1.45;
}

.pricing-card li strong {
  font-weight: 700;
}

.pricing-note {
  color: var(--white);
  margin-bottom: 20px;
}

.pricing-card-light .pricing-note {
  color: var(--black);
}

.pricing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: background 0.3s ease, color 0.3s ease;
  width: fit-content;
}

.pricing-btn-dark {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}

.pricing-btn-dark:hover {
  background: var(--white);
  color: var(--black);
}

.pricing-btn-light {
  border: 2px solid var(--accent);
  color: var(--black);
  background: #8fdcf6;
}

.pricing-btn-light:hover {
  background: var(--accent);
}

/* =============================================
   BANNER
   ============================================= */
.banner {
  padding: 80px 0;
}

.banner-inner {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  min-height: 300px;
  background: url("assets/jpw-banner.png") center/cover no-repeat;
}

.banner-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.banner-content {
  position: relative;
  z-index: 2;
  padding: 50px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banner-logo {
  width: 90px;
  margin-bottom: 20px;
  margin-top: 15vh;
}

.banner-content h2 {
  font-family: "ARPDisplay", sans-serif;
  font-size: clamp(3rem, 8vh, 6rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-top: 3vh;
  color: var(--white);
}

.banner-content h2 span {
  color: var(--accent);
}

/* =============================================
   BOOKING / CONTACT
   ============================================= */
.booking-section {
  padding: 90px 0;
}

.booking-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.booking-intro {
  max-width: 480px;
}

.booking-eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 14px;
}

.booking-intro h2 {
  font-family: "ARPDisplay", sans-serif;
  font-size: clamp(2rem, 4vh, 3rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--accent);
  margin-bottom: 16px;
}

.booking-intro p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--white);
  opacity: 0.92;
}

.booking-contact-links {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.booking-contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  font-size: 0.92rem;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.booking-contact-links a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.booking-form {
  background: #090909;
  border: 1px solid rgba(0, 195, 255, 0.24);
  border-radius: 32px;
  padding: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--white);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 195, 255, 0.12);
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
}

.form-feedback {
  margin-top: 14px;
  margin-bottom: 6px;
  font-family: "Poppins", sans-serif;
  font-size: 0.92rem;
  line-height: 1.5;
  min-height: 24px;
}

.form-feedback.success {
  color: #00C3FF;
}

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

.booking-btn {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 54px;
  padding: 0 24px;
  border: 2px solid var(--accent);
  border-radius: 999px;
  background: #8fdcf6;
  color: var(--black);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease;
}

.booking-btn:hover {
  background: var(--accent);
}

/* =============================================
   FAQ
   ============================================= */
.faq-section {
  padding: 90px 0;
}

.faq-title {
  font-family: "ARPDisplay", sans-serif;
  font-size: clamp(2rem, 4vh, 3.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 36px;
}

.faq-item {
  border-bottom: 1px solid var(--accent);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  text-align: left;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
}

.faq-chevron {
  position: relative;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.faq-chevron::before,
.faq-chevron::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 1.5px;
  background: var(--white);
  top: 50%;
  transition: transform 0.28s ease;
}

.faq-chevron::before {
  left: 1px;
  transform: translateY(-50%) rotate(45deg);
}

.faq-chevron::after {
  right: 1px;
  transform: translateY(-50%) rotate(-45deg);
}

.faq-item.active .faq-chevron::before {
  transform: translateY(-50%) rotate(-45deg);
}

.faq-item.active .faq-chevron::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer {
  padding: 0 0 22px;
  color: rgba(255,255,255,0.82);
  font-size: 0.96rem;
  line-height: 1.7;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  padding: 100px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.footer-left {
  flex: 1;
}

.footer-top {
  margin-bottom: 50px;
}

.footer-logo {
  width: 90px;
  margin-bottom: 20px;
}

.footer-top h2 {
  font-family: "ARPDisplay", sans-serif;
  font-size: clamp(3rem, 8vh, 6rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--white);
}

.footer-top h2 span {
  color: var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.footer-col h4 {
  font-size: 1.05rem;
  margin-bottom: 12px;
  color: var(--white);
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 0.92rem;
  color: var(--white);
  opacity: 0.8;
  margin-bottom: 6px;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.footer-col a:hover {
  color: var(--accent);
  opacity: 1;
}

.footer-right {
  display: flex;
  align-items: flex-end;
}

.footer-right a {
  font-size: 0.9rem;
}

.footer-right a span {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid var(--accent);
}

/* =============================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================= */
@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-right {
    order: -1; /* image above copy */
  }

  .hero-right img {
    min-height: 380px;
    max-height: 480px;
  }

  .intro-strip-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-cards {
    grid-template-columns: repeat(4, 1fr);
  }

  .booking-wrap {
    grid-template-columns: 1fr;
  }

  .booking-intro {
    max-width: none;
  }
}

/* =============================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================= */
@media (max-width: 768px) {

  /* Header */
  .nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    width: min(300px, 80%);
    height: calc(100vh - var(--header-height));
    background: rgba(0, 0, 0, 0.97);
    border-left: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 999;
  }

  .nav.active {
    transform: translateX(0);
  }

  .nav a {
    display: block;
    width: 100%;
    font-size: 1.1rem;
    margin: 0;
  }

  .location {
    display: none; /* hide on mobile — saves space */
  }

  .btn-enquire {
    display: none; /* replaced by nav link */
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Hero */
  .hero {
    padding-top: calc(var(--header-height) + 24px);
    padding-bottom: 60px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-right {
    order: 1;
  }

  .hero-right img {
    min-height: 200px;
    max-height: 250px;
  }

  .hero-copy h1 {
    font-size: clamp(1.9rem, 7.5vw, 2.8rem);
    line-height: 1.2;
  }

  .hero-buttons {
    gap: 12px;
  }

  .hero-bottom-images {
    gap: 12px;
  }

  .small-img img {
    height: 130px;
  }

  /* Stats */
  .stats {
    padding: 48px 0;
  }

  .stats-grid {
    gap: 36px;
  }

  /* Intro strip */
  .intro-strip-grid {
    grid-template-columns: 1fr;
  }

  /* Statement */
  .statement {
    padding: 90px 0;
  }

  .statement-content p {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
  }

  /* Pricing */
  .pricing-section {
    padding: 100px 0;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .pricing-card {
    min-height: auto;
  }

  /* Banner */
  .banner {
    padding: 50px 0;
  }

  .banner-content {
    padding: 36px 28px;
  }
  
  .banner-content h2 {
    font-size: clamp(2.2rem, 9vw, 3.4rem);
    line-height: 1.2;
  }


  .banner-logo {
    margin-top: 0;
    width: 70px;
  }

  /* Booking */
  .booking-section {
    padding: 70px 0;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  /* FAQ */
  .faq-section {
    padding: 70px 0;
  }

  .faq-question {
    font-size: 0.96rem;
    padding: 20px 0;
  }

  .faq-answer {
    font-size: 0.92rem;
  }

  /* Footer */
  .footer {
    padding: 70px 0 40px;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .footer-top {
    margin-bottom: 36px;
  }

  .footer-top h2 {
    font-size: clamp(1.6rem, 6.5vw, 2.4rem);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-right {
    margin-top: 40px;
  }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================= */
@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-bottom-images {
    grid-template-columns: 1fr;
  }

  .small-img img {
    height: 180px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .booking-contact-links {
    flex-direction: column;
  }

  .booking-contact-links a {
    width: 100%;
    justify-content: center;
  }
}