@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Raleway:wght@400;500;600;700;800&display=swap');

:root {
  --joint-deep-abyss: #0B0F19;
  --joint-slate-shield: #141B2D;
  --joint-emerald-spark: #10B981;
  --joint-emerald-glow: #059669;
  --joint-cloud-white: #F8FAFC;
  --joint-mist-grey: #94A3B8;
  --joint-dark-overlay: rgba(11, 15, 25, 0.75);
  --joint-soft-glow: 0 10px 30px rgba(16, 185, 129, 0.15);
  --joint-heavy-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  --joint-card-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  --joint-border-radius: 16px;
  --joint-transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Raleway', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html, body {
  width: 100%;
  overflow-x: hidden;
  background-color: var(--joint-deep-abyss);
  color: var(--joint-cloud-white);
  font-family: var(--font-body);
  line-height: 1.6;
}

/* Header Styles */
.joint-main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--joint-slate-shield);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.joint-header-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.joint-logo-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--joint-cloud-white);
}

.joint-logo-icon {
  width: 40px;
  height: 40px;
  stroke: var(--joint-emerald-spark);
  fill: none;
  stroke-width: 2;
}

.joint-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.joint-navigation-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.joint-navigation-item {
  text-decoration: none;
  color: var(--joint-mist-grey);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--joint-transition-smooth);
}

.joint-navigation-item:hover,
.joint-navigation-item.joint-active-link {
  color: var(--joint-emerald-spark);
}

/* Hamburger Menu CSS-only */
.joint-hamburger-toggle {
  display: none;
}

.joint-hamburger-icon {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}

.joint-hamburger-icon span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--joint-cloud-white);
  border-radius: 3px;
  transition: var(--joint-transition-smooth);
}

/* Content Layout elements */
.joint-content-partition {
  padding: 10dvh 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.joint-section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3.5rem;
  letter-spacing: -0.5px;
}

.joint-section-title span {
  color: var(--joint-emerald-spark);
}

/* Unique index.html design: Preset A */
.joint-hero-interactive {
  position: relative;
  height: 100vh;
  min-height: 650px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.joint-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, rgba(11,15,25,0.4) 0%, rgba(11,15,25,0.85) 100%);
  z-index: 1;
}

.joint-hero-display-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 1.5rem;
}

.joint-hero-heading {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.joint-hero-heading span {
  color: var(--joint-emerald-spark);
}

.joint-hero-subheading {
  font-size: 1.25rem;
  color: var(--joint-mist-grey);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.joint-cta-pill {
  display: inline-block;
  background-color: var(--joint-emerald-spark);
  color: var(--joint-deep-abyss);
  font-family: var(--font-display);
  font-weight: 700;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 999px;
  transition: var(--joint-transition-smooth);
  box-shadow: var(--joint-soft-glow);
}

.joint-cta-pill:hover {
  background-color: var(--joint-emerald-glow);
  transform: translateY(-2px);
  color: var(--joint-cloud-white);
}

/* Floating Stat Bar below Hero */
.joint-stat-bar-floating {
  position: relative;
  margin-top: -60px;
  z-index: 10;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}

.joint-stat-card-deck {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  background-color: var(--joint-slate-shield);
  padding: 2rem;
  border-radius: var(--joint-border-radius);
  box-shadow: var(--joint-heavy-shadow);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.joint-stat-card {
  text-align: center;
}

.joint-stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--joint-emerald-spark);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.joint-stat-label {
  font-size: 0.9rem;
  color: var(--joint-mist-grey);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Zigzag Content Section */
.joint-zigzag-grid {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  margin-top: 4rem;
}

.joint-zigzag-row {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.joint-zigzag-row:nth-child(even) {
  flex-direction: row-reverse;
}

.joint-zigzag-image-container {
  flex: 1;
  height: 400px;
  overflow: hidden;
  border-radius: var(--joint-border-radius);
  position: relative;
}

.joint-slanted-right {
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}

.joint-slanted-left {
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}

.joint-zigzag-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.joint-zigzag-text {
  flex: 1.2;
}

.joint-zigzag-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.joint-zigzag-para {
  color: var(--joint-mist-grey);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

/* 2-row grid Features */
.joint-features-quad {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.joint-feature-block {
  background-color: var(--joint-slate-shield);
  padding: 2.5rem;
  border-radius: var(--joint-border-radius);
  border-left: 4px solid var(--joint-emerald-spark);
  box-shadow: var(--joint-card-shadow);
  transition: var(--joint-transition-smooth);
}

.joint-feature-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--joint-heavy-shadow);
}

.joint-feature-icon-frame {
  width: 50px;
  height: 50px;
  stroke: var(--joint-emerald-spark);
  fill: none;
  stroke-width: 2;
  margin-bottom: 1.25rem;
}

.joint-feature-heading {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.joint-feature-description {
  color: var(--joint-mist-grey);
  font-size: 0.95rem;
}

/* Vertical Timeline */
.joint-timeline-layout {
  position: relative;
  max-width: 800px;
  margin: 4rem auto 0 auto;
}

.joint-timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--joint-slate-shield);
  transform: translateX(-50%);
}

.joint-timeline-point {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
}

.joint-timeline-point:nth-child(even) {
  flex-direction: row-reverse;
}

.joint-timeline-badge {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--joint-emerald-spark);
  color: var(--joint-deep-abyss);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  z-index: 5;
  box-shadow: var(--joint-soft-glow);
}

.joint-timeline-content-card {
  width: 45%;
  background-color: var(--joint-slate-shield);
  padding: 2rem;
  border-radius: var(--joint-border-radius);
  box-shadow: var(--joint-card-shadow);
}

.joint-timeline-point-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--joint-emerald-spark);
}

.joint-timeline-point-text {
  color: var(--joint-mist-grey);
  font-size: 0.95rem;
}

/* CTA Strip */
.joint-strip-paralax {
  position: relative;
  padding: 8rem 2rem;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}

.joint-strip-shade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(11, 15, 25, 0.85);
  z-index: 1;
}

.joint-strip-body {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.joint-strip-heading {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.joint-strip-heading span {
  color: var(--joint-emerald-spark);
}

.joint-strip-para {
  color: var(--joint-mist-grey);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

/* Expert Page Layout */
.joint-pakar-hero {
  position: relative;
  padding: 8rem 2rem 4rem 2rem;
  background-size: cover;
  background-position: center;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.joint-pakar-split-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: center;
  margin-top: 4rem;
}

.joint-pakar-image-frame {
  border-radius: var(--joint-border-radius);
  overflow: hidden;
  box-shadow: var(--joint-heavy-shadow);
}

.joint-pakar-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.joint-pakar-bio-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.joint-pakar-bio-tag {
  color: var(--joint-emerald-spark);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.joint-pakar-bio-name {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
}

.joint-pakar-bio-details {
  color: var(--joint-mist-grey);
  font-size: 1.05rem;
}

/* Reserve Page Layout */
.joint-booking-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 4rem;
}

.joint-info-bundle {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.joint-info-item-box {
  background-color: var(--joint-slate-shield);
  padding: 2rem;
  border-radius: var(--joint-border-radius);
  box-shadow: var(--joint-card-shadow);
}

.joint-info-header-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.joint-info-box-icon {
  width: 28px;
  height: 28px;
  stroke: var(--joint-emerald-spark);
  fill: none;
  stroke-width: 2;
}

.joint-info-box-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}

.joint-info-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.joint-info-bullets li {
  font-size: 0.95rem;
  color: var(--joint-mist-grey);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.joint-bullet-marker {
  width: 8px;
  height: 8px;
  background-color: var(--joint-emerald-spark);
  border-radius: 50%;
  flex-shrink: 0;
}

.joint-booking-form-box {
  background-color: var(--joint-slate-shield);
  padding: 3rem;
  border-radius: var(--joint-border-radius);
  box-shadow: var(--joint-heavy-shadow);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.joint-form-element {
  margin-bottom: 1.5rem;
}

.joint-form-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--joint-cloud-white);
}

.joint-form-field {
  width: 100%;
  background-color: var(--joint-deep-abyss);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--joint-cloud-white);
  padding: 1rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--joint-transition-smooth);
}

.joint-form-field:focus {
  border-color: var(--joint-emerald-spark);
  outline: none;
}

.joint-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.joint-checkbox-group input[type="checkbox"] {
  margin-top: 0.25rem;
  accent-color: var(--joint-emerald-spark);
}

.joint-checkbox-label {
  font-size: 0.85rem;
  color: var(--joint-mist-grey);
}

.joint-checkbox-label a {
  color: var(--joint-emerald-spark);
  text-decoration: underline;
}

.joint-form-submit-btn {
  width: 100%;
  background-color: var(--joint-emerald-spark);
  color: var(--joint-deep-abyss);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--joint-transition-smooth);
}

.joint-form-submit-btn:hover {
  background-color: var(--joint-emerald-glow);
  color: var(--joint-cloud-white);
}

.joint-email-anchor {
  display: block;
  text-align: center;
  margin-top: 1.5rem;
  color: var(--joint-mist-grey);
  text-decoration: none;
  font-size: 0.9rem;
}

.joint-email-anchor:hover {
  color: var(--joint-emerald-spark);
}

/* FAQ Accordion Section */
.joint-accordion-stack {
  margin-top: 6rem;
}

.joint-accordion-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

.joint-accordion-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.joint-accordion-node {
  background-color: var(--joint-slate-shield);
  border-radius: var(--joint-border-radius);
  padding: 2rem;
  box-shadow: var(--joint-card-shadow);
}

.joint-accordion-head {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--joint-emerald-spark);
  margin-bottom: 0.75rem;
}

.joint-accordion-body {
  color: var(--joint-mist-grey);
  font-size: 0.95rem;
}

/* Legal Pages */
.joint-legal-parchment {
  padding: 8rem 2rem 4rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  min-height: 100vh;
}

.joint-legal-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
}

.joint-legal-subtitle {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2rem 0 1rem 0;
  color: var(--joint-emerald-spark);
}

.joint-legal-paragraph {
  color: var(--joint-mist-grey);
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

/* Thank you page design */
.joint-thank-shell {
  padding: 8rem 2rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.joint-thank-inner {
  max-width: 600px;
  background-color: var(--joint-slate-shield);
  border-radius: var(--joint-border-radius);
  padding: 4rem 2rem;
  box-shadow: var(--joint-heavy-shadow);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.joint-thank-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
  overflow: hidden;
  border: 3px solid var(--joint-emerald-spark);
}

.joint-thank-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.joint-thank-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.joint-thank-desc {
  color: var(--joint-mist-grey);
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

/* Cookie Banner */
.joint-cookie-strip {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--joint-slate-shield);
  border-top: 2px solid var(--joint-emerald-spark);
  padding: 1.5rem 2rem;
  z-index: 9999;
  display: none;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

.joint-cookie-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.joint-cookie-text {
  color: var(--joint-mist-grey);
  font-size: 0.95rem;
}

.joint-cookie-btn-group {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.joint-cookie-btn {
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  border: none;
  transition: var(--joint-transition-smooth);
}

.joint-cookie-btn-accept {
  background-color: var(--joint-emerald-spark);
  color: var(--joint-deep-abyss);
}

.joint-cookie-btn-accept:hover {
  background-color: var(--joint-emerald-glow);
  color: var(--joint-cloud-white);
}

.joint-cookie-btn-decline {
  background-color: transparent;
  color: var(--joint-mist-grey);
  border: 1px solid var(--joint-mist-grey);
}

.joint-cookie-btn-decline:hover {
  color: var(--joint-cloud-white);
  border-color: var(--joint-cloud-white);
}

/* Footer Styles */
.joint-footer-area {
  background-color: #080C14;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4rem 2rem 2.5rem 2rem;
}

.joint-footer-shell {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.joint-footer-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.joint-footer-nav {
  display: flex;
  gap: 2rem;
}

.joint-footer-nav-link {
  text-decoration: none;
  color: var(--joint-mist-grey);
  font-size: 0.9rem;
  font-family: var(--font-display);
  font-weight: 600;
  transition: var(--joint-transition-smooth);
}

.joint-footer-nav-link:hover {
  color: var(--joint-emerald-spark);
}

.joint-footer-disclaimer {
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.3);
  text-align: justify;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
}

.joint-footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--joint-mist-grey);
}

/* Responsiveness Settings */
@media (max-width: 968px) {
  .joint-zigzag-row,
  .joint-zigzag-row:nth-child(even) {
    flex-direction: column;
    gap: 2rem;
  }

  .joint-zigzag-image-container {
    height: 300px;
    width: 100%;
  }

  .joint-slanted-left,
  .joint-slanted-right {
    clip-path: none;
  }

  .joint-pakar-split-grid,
  .joint-booking-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .joint-timeline-line {
    left: 20px;
  }

  .joint-timeline-point,
  .joint-timeline-point:nth-child(even) {
    flex-direction: row;
    justify-content: flex-start;
    padding-left: 50px;
  }

  .joint-timeline-badge {
    left: 20px;
    transform: translateX(-50%);
  }

  .joint-timeline-content-card {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .joint-hamburger-icon {
    display: flex;
  }

  .joint-navigation-links {
    position: fixed;
    top: 73px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 73px);
    background-color: var(--joint-slate-shield);
    flex-direction: column;
    padding: 3rem 2rem;
    align-items: flex-start;
    gap: 2rem;
    transition: var(--joint-transition-smooth);
    z-index: 999;
  }

  .joint-hamburger-toggle:checked ~ .joint-navigation-links {
    left: 0;
  }

  .joint-hamburger-toggle:checked ~ .joint-hamburger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .joint-hamburger-toggle:checked ~ .joint-hamburger-icon span:nth-child(2) {
    opacity: 0;
  }

  .joint-hamburger-toggle:checked ~ .joint-hamburger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .joint-hero-heading {
    font-size: 2.25rem;
  }

  .joint-stat-card-deck {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .joint-stat-bar-floating {
    margin-top: -30px;
  }

  .joint-features-quad {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .joint-footer-top-row {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }

  .joint-footer-nav {
    flex-direction: column;
    gap: 1rem;
  }

  .joint-cookie-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .joint-cookie-btn-group {
    width: 100%;
  }

  .joint-cookie-btn {
    flex: 1;
    text-align: center;
  }
}