  :root {
    --orange: #FF5500;
    --orange-light: #FF7733;
    --orange-dark: #CC3300;
    --black: #0A0A0A;
    --black-2: #111111;
    --black-3: #1A1A1A;
    --white: #FFFFFF;
    --white-dim: rgba(255, 255, 255, 0.85);
    --white-muted: rgba(255, 255, 255, 0.45);
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Barlow', sans-serif;
  }

  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  ul{
      list-style:none;
  }
.input-group{
    display:inline-block;
}
.input-group label {
    display: block !important;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #444444;
    margin-bottom: 8px;
}

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    cursor: none;
  }

  /* CUSTOM CURSOR */
  .cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 12px;
    height: 12px;
    background: var(--orange);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
  }

  .cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--orange);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease;
    opacity: 0.6;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 20px;
    background: transparent;
    border-bottom: 2px solid transparent;
    transition: background 0.3s ease, border 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
  }

  nav.scrolled {
    padding: 14px 20px;
    background: var(--black);
    border-bottom: 2px solid var(--orange);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.9);
  }

  .nav-logo {
    font-family: var(--font-display);
    font-size: 30px;
    color: var(--white);
    letter-spacing: 2px;
    text-decoration: none;
  }

  .nav-logo span {
    color: var(--orange);
  }

  .nav-logo img {
    max-height: 40px;
    display: block;
  }

  .nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
  }

  .nav-links a {
    color: var(--white-dim);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s ease;
  }

  .nav-links a:hover {
    color: var(--white);
  }

  .nav-links a:hover::after {
    width: 100%;
  }

  .hamburger {
    display: none;
  }

  .nav-cta {
    background: var(--orange);
    color: var(--white) !important;
    padding: 12px 28px;
    border-radius: 2px;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 2px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    display: inline-block;
  }

  .nav-cta:hover {
    background: var(--orange-light);
    transform: translateY(-1px);
  }

  .nav-cta::after {
    display: none !important;
  }

  .nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    border: 1.5px solid rgba(255, 85, 0, 0.5);
    padding: 9px 18px;
    border-radius: 2px;
    transition: all 0.3s;
    white-space: nowrap;
  }

  .nav-phone:hover {
    border-color: #FF5500;
    color: #FF5500;
  }

  .nav-phone svg {
    flex-shrink: 0;
  }

  /* FLOATING CALL BUTTON */
  .float-call {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: 0;
    background: #FF5500;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 32px rgba(255, 85, 0, 0.5);
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 58px;
    height: 58px;
  }

  .float-call:hover {
    width: 220px;
    box-shadow: 0 8px 40px rgba(255, 85, 0, 0.7);
  }

  .float-call-icon {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
  }

  .float-call-text {
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
    opacity: 0;
    padding-right: 20px;
    transition: opacity 0.2s 0.1s;
  }

  .float-call:hover .float-call-text {
    opacity: 1;
  }

  /* Pulse ring animation */
  .float-call::before {
    content: '';
    position: absolute;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 2px solid #FF5500;
    animation: callPulse 2s ease-out infinite;
  }

  @keyframes callPulse {
    0% {
      transform: scale(1);
      opacity: 0.8;
    }

    100% {
      transform: scale(2);
      opacity: 0;
    }
  }

  /* HERO */
  #hero {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    min-height: 100dvh;
    /* true full screen on mobile */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 20px;
  }

  .hero-video-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background: var(--black);
    width: 100%;
    height: 100%;
  }

  .hero-video-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.75) 0%, rgba(255, 85, 0, 0.08) 50%, rgba(10, 10, 10, 0.85) 100%);
    z-index: 1;
  }

  /* Video iframe — always covers full viewport */
  .hero-video-wrap iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    /* landscape-safe: use vmax so it covers both axes */
    width: 200vmax;
    height: 200vmax;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    border: none;
    pointer-events: none;
    z-index: 0;
  }

  /* Static bg fallback */
  .hero-bg-fallback {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
      radial-gradient(ellipse at 20% 50%, rgba(255, 85, 0, 0.15) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(255, 85, 0, 0.08) 0%, transparent 50%), var(--black);
  }

  /* Animated grid overlay */
  .hero-grid {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image:
      linear-gradient(rgba(255, 85, 0, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 85, 0, 0.05) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: gridMove 20s linear infinite;
  }

  @keyframes gridMove {
    0% {
      background-position: 0 0;
    }

    100% {
      background-position: 80px 80px;
    }
  }

  .hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
    max-width: 1100px;
    width: 100%;
  }

  .hero-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 24px;
    animation: fadeUp 0.8s ease both;
  }

  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(64px, 11vw, 140px);
    line-height: 0.92;
    color: var(--white);
    letter-spacing: 3px;
    animation: fadeUp 0.8s 0.2s ease both;
  }

  .hero-title .orange {
    color: var(--orange);
  }

  .hero-title .stroke {
    -webkit-text-stroke: 2px var(--white);
    color: transparent;
  }

  .hero-sub {
    font-size: 20px;
    font-weight: 400;
    color: var(--white-dim);
    margin: 28px auto 0;
    max-width: 560px;
    line-height: 1.6;
    animation: fadeUp 0.8s 0.4s ease both;
  }

  .hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 48px;
    animation: fadeUp 0.8s 0.6s ease both;
  }

  .btn-primary {
    background: var(--orange) !important;
    color: var(--white);
    padding: 18px 48px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    transition: background 0.3s, transform 0.2s;
    display: inline-block;
  }

  .btn-primary:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
  }

  .btn-outline {
    background: transparent;
    color: var(--white);
    padding: 18px 48px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    transition: border-color 0.3s, color 0.3s, transform 0.2s;
    display: inline-block;
  }

  .btn-outline:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-2px);
  }

  /* GENERIC CONTENT PAGE (SUB-PAGES) */
  .page-content {
    max-width: 1100px;
    margin: 160px auto 80px;
    padding: 0 40px;
    position: relative;
    z-index: 10;
  }

  .page-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 100px);
    color: var(--orange);
    margin-bottom: 40px;
    letter-spacing: 2px;
  }

  .rich-text h3 {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--white);
    margin-top: 50px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .rich-text h3::after {
    content: '';
    height: 2px;
    flex-grow: 1;
    background: linear-gradient(90deg, var(--orange), transparent);
  }

  .rich-text p {
    font-size: 18px;
    color: var(--white-dim);
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 800px;
  }

  .rich-text ul {
    list-style: none;
    margin-bottom: 40px;
  }

  .rich-text ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 16px;
    font-size: 17px;
    color: var(--white);
  }

  .rich-text ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
  }

  @media (max-width: 768px) {
    .fac-top{
        flex-wrap:wrap;
    }
    .fac-top-right{
        width:100%;
        max-width:100% !important;
        text-align:start !important;
    }

    .overall-rating {
       
        gap: 25px !important;
    }
    .page-content {
        margin-top: 120px;
        padding: 0 24px;
    }


    .page-title {
      font-size: 60px;
    }

    .rich-text h3 {
      font-size: 26px;
    }
  }

  .hero-stats {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 80px;
    z-index: 10;
    margin-top: 60px;
    animation: fadeUp 0.8s 0.8s ease both;
    width: 100%;
  }

  .hero-stat {
    text-align: center;
  }

  .hero-stat-num {
    font-family: var(--font-display);
    font-size: 54px;
    color: var(--orange);
    line-height: 1;
  }

  .hero-stat-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white-muted);
    margin-top: 6px;
  }

  .hero-scroll {
    position: absolute;
    bottom: 48px;
    right: 60px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: fadeUp 0.8s 1s ease both;
  }

  .hero-scroll span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white-muted);
    writing-mode: vertical-rl;
  }

  .scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--orange), transparent);
    animation: scrollPulse 2s ease infinite;
  }

  @keyframes scrollPulse {

    0%,
    100% {
      opacity: 0.4;
      height: 40px;
    }

    50% {
      opacity: 1;
      height: 70px;
    }
  }

  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* MARQUEE */
  .marquee-strip {
    background: var(--orange);
    padding: 16px 0;
    overflow: hidden;
    border-top: 1px solid var(--orange-dark);
    border-bottom: 1px solid var(--orange-dark);
  }

  .marquee-inner {
    display: flex;
    gap: 0;
    animation: marqueeScroll 25s linear infinite;
    width: max-content;
  }

  .marquee-item {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 4px;
    color: var(--black);
    white-space: nowrap;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .marquee-dot {
    width: 6px;
    height: 6px;
    background: var(--black);
    border-radius: 50%;
    opacity: 0.5;
  }

  @keyframes marqueeScroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }
  }

  /* SECTIONS */
  section {
    padding: 120px 60px;
  }

  .section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 20px;
    display: block;
  }

  .section-title {
    font-family: var(--font-display);
    font-size: clamp(54px, 7vw, 100px);
    line-height: 0.95;
    color: var(--white);
    margin-bottom: 24px;
  }

  .section-title .stroke {
    -webkit-text-stroke: 1.5px var(--white);
    color: transparent;
  }

  .section-title .orange {
    color: var(--orange);
  }

  .section-body {
    font-size: 18px;
    color: var(--white-dim);
    line-height: 1.7;
    max-width: 560px;
  }

  /* WHY FITOCLOCK */
  /* ── WHY SECTION ── */
  #why {
    background: var(--black-2);
    padding: 110px 60px;
    position: relative;
    overflow: hidden;
  }

  /* big ghost word behind everything */
  #why::before {
    content: 'WHY';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 30vw;
    color: rgba(255, 85, 0, 0.025);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    letter-spacing: -8px;
    z-index: 0;
  }

  /* outer wrapper: collage LEFT | content RIGHT */
  .why-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
  }

  /* ── LEFT: IMAGE COLLAGE ── */
  .why-collage {
    position: relative;
    height: 680px;
  }

  /* individual collage image */
  .wci {
    position: absolute;
    overflow: hidden;
    cursor: pointer;
  }

  .wci img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(.4, 0, .2, 1), filter 0.4s;
    filter: brightness(0.8) saturate(0.7);
  }

  .wci:hover img {
    transform: scale(1.08);
    filter: brightness(1) saturate(1);
  }

  /* orange border accent on hover */
  .wci::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 0px solid var(--orange);
    transition: border-width 0.3s ease;
    z-index: 2;
    pointer-events: none;
  }

  .wci:hover::after {
    border-width: 3px;
  }

  /* COLLAGE POSITIONS — editorial asymmetric layout */
  /* img1 — large top-left */
  .wci-1 {
    top: 0;
    left: 0;
    width: 62%;
    height: 58%;
  }

  /* img2 — tall right column */
  .wci-2 {
    top: 0;
    right: 0;
    width: 35%;
    height: 72%;
  }

  /* img3 — bottom-left wide */
  .wci-3 {
    bottom: 0;
    left: 0;
    width: 42%;
    height: 40%;
  }

  /* img4 — bottom center */
  .wci-4 {
    bottom: 0;
    left: 44%;
    width: 26%;
    height: 30%;
  }

  /* img5 — bottom-right small */
  .wci-5 {
    bottom: 10%;
    right: 0;
    width: 35%;
    height: 24%;
  }

  /* gap lines between images (decorative) */
  .why-collage-gap {
    position: absolute;
    background: #0A0A0A;
    z-index: 1;
    pointer-events: none;
  }

  .why-collage-gap-h {
    height: 6px;
    left: 0;
    right: 0;
  }

  .why-collage-gap-v {
    width: 6px;
    top: 0;
    bottom: 0;
  }

  /* floating stat badge on collage */
  .why-collage-badge {
    position: absolute;
    bottom: 38%;
    left: 64%;
    z-index: 10;
    background: var(--orange);
    padding: 16px 22px;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  }

  .why-collage-badge strong {
    font-family: var(--font-display);
    font-size: 44px;
    color: #000;
    display: block;
    line-height: 1;
  }

  .why-collage-badge span {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    color: rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
  }

  /* ── RIGHT: CONTENT ── */
  .why-content {
    padding-top: 8px;
  }

  /* eyebrow */
  .why-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
  }

  .why-eyebrow-line {
    height: 1px;
    width: 40px;
    background: var(--orange);
  }

  .why-eyebrow-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--orange);
  }

  /* big title */
  .why-title {
    font-family: var(--font-display);
    font-size: clamp(52px, 5.5vw, 78px);
    line-height: 0.92;
    color: #fff;
    margin-bottom: 28px;
    letter-spacing: 1px;
  }

  .why-title .hl {
    color: var(--orange);
  }

  .why-title .st {
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.3);
    color: transparent;
  }

  /* short designer paragraph */
  .why-para {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.85;
    margin-bottom: 44px;
    padding-left: 20px;
    border-left: 2px solid var(--orange);
    font-style: italic;
  }

  .why-para strong {
    color: #fff;
    font-style: normal;
  }

  /* reason pills row */
  .why-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 44px;
  }

  .why-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 85, 0, 0.07);
    border: 1px solid rgba(255, 85, 0, 0.2);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    transition: all 0.3s;
    clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
  }

  .why-pill:hover {
    background: rgba(255, 85, 0, 0.18);
    border-color: var(--orange);
    color: #fff;
  }

  .why-pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
  }

  /* stats strip */

  .why-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(255, 255, 255, 0.07);
    margin-bottom: 44px;
  }

  .why-stat {
    padding: 22px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    transition: background 0.3s;
  }

  .why-stat:last-child {
    border-right: none;
  }

  .why-stat:hover {
    background: rgba(255, 85, 0, 0.06);
  }

  .why-stat-num {
    font-family: var(--font-display);
    font-size: 40px;
    color: var(--orange);
    line-height: 1;
  }

  .why-stat-lbl {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 4px;
  }

  /* CTA */
  .why-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--orange);
    color: #fff;
    padding: 16px 36px;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    transition: background 0.3s, transform 0.2s;
  }

  .why-cta:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
  }

  .why-cta svg {
    width: 16px;
    height: 16px;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    #why {
      padding: 80px 30px;
    }

    .why-wrap {
      gap: 50px;
    }

    .why-collage {
      height: 560px;
    }
  }

  @media (max-width: 768px) {
    #why {
      padding: 60px 20px;
    }

    .why-wrap {
      grid-template-columns: 1fr;
      gap: 48px;
    }

    .why-collage {
      height: 420px;
    }

    .wci-1 {
      width: 60%;
      height: 55%;
    }

    .wci-2 {
      width: 37%;
      height: 70%;
    }

    .why-collage-badge {
      left: 62%;
      padding: 12px 16px;
    }

    .why-collage-badge strong {
      font-size: 34px;
    }

    .why-title {
      font-size: 48px;
    }

    .why-stats {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 480px) {
    #why {
      padding: 50px 16px;
    }

    .why-collage {
      height: 340px;
    }

    .why-title {
      font-size: 40px;
    }

    .why-stats {
      grid-template-columns: repeat(3, 1fr);
    }

    .why-stat-num {
      font-size: 28px;
    }

    .why-pills {
      gap: 8px;
    }

    .why-pill {
      font-size: 10px;
      padding: 8px 12px;
    }
  }

  /* FACILITIES */
  #facilities {
    background: var(--black);
    /*padding: 100px 60px;*/
  }

  .fac-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 56px;
  }

  .fac-top-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 5px;
    color: #FF5500;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
  }

  .fac-top-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(44px, 5.5vw, 72px);
    line-height: .95;
    color: #fff;
  }

  .fac-top-title span {
    color: #FF5500;
  }

  .fac-top-right {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    max-width: 260px;
    text-align: right;
    line-height: 1.7;
  }

  /* ROW 1 — 3 tiles: wide | narrow | narrow */
  .fac-row1 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4px;
    margin-bottom: 4px;
  }

  /* ROW 2 — 4 equal tiles */
  .fac-row2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
  }

  /* TILE base */
  .ft {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #0d0d0d;
  }

  .fac-row1 .ft:first-child {
    height: 320px;
  }

  .fac-row1 .ft:not(:first-child) {
    height: 320px;
  }

  .fac-row2 .ft {
    height: 220px;
  }

  .ft img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(.45) saturate(.5);
    transition: transform .65s cubic-bezier(.4, 0, .2, 1), filter .4s;
  }

  .ft:hover img {
    transform: scale(1.08);
    filter: brightness(.25) saturate(.3);
  }

  /* gradient */
  .ft-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .98) 0%, rgba(0, 0, 0, .3) 60%, transparent 100%);
    z-index: 1;
  }

  /* orange top-left corner slash */
  .ft-slash {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 52px 52px 0 0;
    border-color: #FF5500 transparent transparent transparent;
    transition: border-width .35s ease;
  }

  .ft:hover .ft-slash {
    border-width: 64px 64px 0 0;
  }

  .ft-slash-num {
    position: absolute;
    top: 6px;
    left: 5px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 15px;
    color: #000;
    z-index: 4;
    line-height: 1;
  }

  /* text */
  .ft-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 22px 22px 20px;
    z-index: 2;
  }

  .ft-icon {
    font-size: 22px;
    display: block;
    margin-bottom: 8px;
  }

  .ft-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: #fff;
    line-height: 1.05;
    text-shadow: 0 2px 16px #000;
    transition: color .3s;
  }

  .ft:hover .ft-name {
    color: #FF5500;
  }

  .ft-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, .4);
    text-transform: uppercase;
    margin-top: 5px;
    display: block;
    transition: color .3s;
  }

  .ft:hover .ft-tag {
    color: rgba(255, 85, 0, .7);
  }

  /* big tile has larger text */
  .fac-row1 .ft:first-child .ft-name {
    font-size: 32px;
  }

  .fac-row1 .ft:first-child .ft-body {
    padding: 28px 28px 26px;
  }

  .fac-row1 .ft:first-child .ft-icon {
    font-size: 28px;
  }

  /* PROGRAMS */
  #programs {
    background: var(--black-2);
  }

  .programs-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-top: 60px;
  }

  .program-card {
    background: var(--black-3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }

  .program-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform 0.4s;
  }

  .program-card:hover {
    border-color: var(--orange);
    transform: translateY(-6px);
    background: rgba(255, 85, 0, 0.07);
  }

  .program-card:hover::before {
    transform: scaleX(1);
  }

  .program-emoji {
    font-size: 42px;
    display: block;
    margin-bottom: 20px;
  }

  .program-name {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--white);
    letter-spacing: 1px;
    line-height: 1.1;
  }

  .program-tag {
    font-size: 11px;
    color: var(--orange);
    letter-spacing: 2px;
    font-weight: 700;
    margin-top: 8px;
  }

  /* GALLERY */
  #gallery {
    background: var(--black);
  }

  .gallery-header {
    margin-bottom: 60px;
  }

  .gallery-masonry {
    columns: 4;
    gap: 8px;
  }

  .gallery-item {
    break-inside: avoid;
    margin-bottom: 8px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: block;
  }

  .gallery-item img {
    width: 100%;
    display: block;
    filter: grayscale(30%);
    transition: filter 0.4s, transform 0.6s;
  }

  .gallery-item::after {
    content: '⤢';
    position: absolute;
    inset: 0;
    background: rgba(255, 85, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.4s;
  }

  .gallery-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.04);
  }

  .gallery-item:hover::after {
    opacity: 1;
  }

  /* TESTIMONIALS */
  #testimonials {
    background: var(--black-2);
    overflow: hidden;
  }

  .testimonials-header {
    margin-bottom: 80px;
    text-align: center;
  }

  .reviews-track {
    display: flex;
    gap: 24px;
    animation: reviewScroll 40s linear infinite;
    width: max-content;
  }

  .reviews-track:hover {
    animation-play-state: paused;
  }

  .reviews-wrapper {
    overflow: hidden;
    position: relative;
  }

  .reviews-wrapper::before,
  .reviews-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    z-index: 2;
    pointer-events: none;
  }

  .reviews-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--black-2), transparent);
  }

  .reviews-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--black-2), transparent);
  }

  @keyframes reviewScroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }
  }

  .review-card {
    width: 380px;
    flex-shrink: 0;
    background: var(--black-3);
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 36px 32px;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
    transition: border-color 0.3s;
  }

  .review-card:hover {
    border-color: rgba(255, 85, 0, 0.4);
  }

  .review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
  }

  .review-star {
    color: var(--orange);
    font-size: 18px;
  }

  .review-text {
    font-size: 15px;
    color: var(--white-dim);
    line-height: 1.7;
    margin-bottom: 28px;
    font-style: italic;
  }

  .review-text::before {
    content: '"';
    font-size: 60px;
    color: rgba(255, 85, 0, 0.2);
    line-height: 0;
    vertical-align: -24px;
    margin-right: 4px;
    font-style: normal;
  }

  .review-author {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--black);
  }

  .review-name {
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
  }

  .review-meta {
    font-size: 12px;
    color: var(--white-muted);
    margin-top: 2px;
    letter-spacing: 1px;
  }

  .google-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.06);
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white-muted);
    text-transform: uppercase;
  }

  /* SECOND REVIEW ROW */
  .reviews-track-rev {
    display: flex;
    gap: 24px;
    margin-top: 24px;
    animation: reviewScrollRev 38s linear infinite;
    width: max-content;
  }

  .reviews-track-rev:hover {
    animation-play-state: paused;
  }

  @keyframes reviewScrollRev {
    0% {
      transform: translateX(-50%);
    }

    100% {
      transform: translateX(0);
    }
  }

  /* OVERALL RATING */
  .overall-rating {
    text-align: center;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
  }

  .rating-big {
    font-family: var(--font-display);
    font-size: 120px;
    color: var(--orange);
    line-height: 1;
  }

  .rating-info {
    text-align: left;
  }

  .rating-stars {
    display: flex;
    gap: 6px;
    font-size: 28px;
    margin-bottom: 12px;
  }

  .google-review-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 85, 0, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    transition: background 0.3s, border-color 0.3s;
  }

  .google-review-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 85, 0, 0.4);
  }

  .gr-g-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }

  .gr-right {
    display: flex;
    flex-direction: column;
    text-align: left;
  }

  .gr-title {
    font-size: 15px;
    color: var(--white);
    line-height: 1.2;
  }

  .gr-title strong {
    font-weight: 700;
  }

  .gr-desc {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--orange);
    margin-top: 2px;
  }

  /* CTA BANNER */
  #cta-banner {
    position: relative;
    padding: 160px 60px;
    background: var(--black-3);
    text-align: center;
    overflow: hidden;
  }

  .cta-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 300px;
    color: rgba(255, 85, 0, 0.04);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: -10px;
    user-select: none;
  }

  #cta-banner .section-title {
    font-size: clamp(60px, 8vw, 110px);
    margin-bottom: 32px;
  }

  #cta-banner .section-body {
    margin: 0 auto 52px;
    font-size: 20px;
  }

  .cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
  }

  /* CONTACT */
  #contact {
    background: var(--black);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
  }

  .contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 40px;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 85, 0, 0.12);
    border: 1px solid rgba(255, 85, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
  }

  .contact-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 6px;
  }

  .contact-value {
    font-size: 18px;
    color: var(--white-dim);
    line-height: 1.5;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .form-field label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white-muted);
  }

  .form-field input,
  .form-field textarea {
    background: var(--black-3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  }

  .form-field input:focus,
  .form-field textarea:focus {
    border-color: var(--orange);
  }

  .form-field textarea {
    height: 120px;
    resize: none;
  }

  /* FOOTER */
  footer {
    background: #050505;
    padding: 60px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .footer-logo {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
  }

  .footer-logo span {
    color: var(--orange);
  }

  .footer-about {
    font-size: 15px;
    color: var(--white-muted);
    line-height: 1.7;
    margin-bottom: 28px;
  }

  .footer-social {
    display: flex;
    gap: 12px;
  }

  .footer-social a {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-muted);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
  }

  .footer-social a:hover {
    border-color: var(--orange);
    color: var(--orange);
  }

  .footer-social a svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
  }

  .footer-social a:hover svg {
    transform: scale(1.1);
  }

  .footer-col h4 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 24px;
  }

  .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .footer-col a {
    font-size: 14px;
    color: var(--white-muted);
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-col a:hover {
    color: var(--orange);
  }

  .footer-bottom {
    background: #050505;
    padding: 24px 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
  }

  /* SCROLL REVEAL */
  .reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: none;
  }

  .reveal-left {
    opacity: 1;
    transform: none;
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
  }

  .reveal-right {
    opacity: 1;
    transform: none;
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
  }

  /* LIGHTBOX */
  .lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }

  .lightbox.open {
    opacity: 1;
    pointer-events: all;
  }

  .lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
  }

  .lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: var(--white);
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
  }

  .lightbox-close:hover {
    color: var(--orange);
  }


  /* RESPONSIVE */
  @media (max-width:1280px){

    .nav-logo img {
        max-height: 32px;
        display: block;
    }
    .nav-links {
        gap: 12px;
    }
    .nav-links a {
        font-size: 12px;
    }
    .nav-cta {
        padding: 12px 23px;
        font-size: 12px !important;
    }
  }
  @media (max-width: 1024px) {
    nav {
      padding: 12px 20px;
      background: transparent !important;
      border-bottom-color: transparent !important;
    }

    nav.scrolled {
      padding: 10px 20px;
      background: var(--black) !important;
      border-bottom-color: var(--orange) !important;
    }

    .nav-logo img {
      max-height: 24px;
    }

    #hero {
      padding-top: 130px;
      padding-bottom: 70px;
      justify-content: flex-start;
    }

    /* FACILITIES RESPONSIVE */
    .fac-row1,
    .fac-row2 {
      grid-template-columns: 1fr;
    }

    .fac-row1 .ft,
    .fac-row1 .ft:not(:first-child),
    .fac-row2 .ft {
      height: 280px;
    }

    .fac-row1 .ft:first-child .ft-name {
      font-size: 26px;
    }

    section {
      padding: 70px 24px;
    }

    .programs-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .gallery-masonry {
      columns: 3;
    }

    #why,
    #contact {
      grid-template-columns: 1fr;
    }

    footer {
        grid-template-columns: 1fr 1fr;
        padding: 50px 16px;
    }
    

    .hero-stats {
      gap: 40px;
    }
  }

  @media (max-width: 1024px) {
    .hamburger {
      display: flex !important;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      z-index: 10001;
      padding: 10px;
      margin-right: -10px;
      background: transparent;
      border: none;
      user-select: none;
      -webkit-tap-highlight-color: transparent;
    }

    .hamburger div {
      width: 25px;
      height: 3px;
      background-color: var(--white);
      transition: all 0.3s ease;
    }

    .nav-links {
      position: fixed;
      top: 0;
      left: 0;
      height: 100vh;
      height: 100dvh;
      width: 100%;
      background: rgba(10, 10, 10, 0.98);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      /* Use transform instead of display/right so transition works */
      transform: translateX(100%);
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 10000;
      gap: 30px;
      padding: 80px 40px;
      display: flex;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
    }

    .nav-links.nav-active {
      transform: translateX(0);
    }

    .nav-links a {
      font-size: 18px;
      letter-spacing: 3px;
    }

    .nav-cta {
      padding: 14px 36px;
      font-size: 15px !important;
    }

    .nav-phone {
      font-size: 15px;
      padding: 12px 20px;
    }

    /* Disable body scroll when menu is active */
    body.nav-open {
      overflow: hidden;
    }

    /* Dark backdrop behind nav menu */
    .nav-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.65);
      z-index: 9999;
      backdrop-filter: blur(2px);
      -webkit-backdrop-filter: blur(2px);
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .nav-overlay.show {
      display: none !important;
      opacity: 1;
    }

    .hamburger.toggle .bar1 {
      transform: translate(0, 8px) rotate(-45deg);
    }

    .hamburger.toggle .bar2 {
      opacity: 0;
    }

    .hamburger.toggle .bar3 {
      transform: translate(0, -8px) rotate(45deg);
    }
  }

  @media (max-width: 768px) {

    /* HERO */
    #hero {
      padding: 120px 16px 80px;
      min-height: 100svh;
    }

    .hero-title {
      font-size: clamp(52px, 15vw, 80px);
      letter-spacing: 1px;
    }

    .hero-sub {
      font-size: 16px;
      margin-top: 18px;
      padding: 0 4px;
    }

    .hero-actions {
      flex-direction: column;
      align-items: center;
      gap: 14px;
      margin-top: 32px;
    }

    .btn-primary,
    .btn-outline {
      width: 100%;
      max-width: 320px;
      text-align: center;
      padding: 16px 24px;
    }

    .hero-stats {
      gap: 16px;
      margin-top: 40px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .hero-stat {
      min-width: 70px;
    }

    .hero-stat-num {
      font-size: 36px;
    }

    .hero-stat-label {
      font-size: 9px;
      letter-spacing: 1.5px;
    }

    .hero-scroll {
      display: none;
    }

    .hero-eyebrow {
      font-size: 11px;
      letter-spacing: 3px;
    }

    /* CTA BANNER */
    #cta-banner {
      padding: 80px 20px;
    }

    .cta-bg-text {
      font-size: 120px;
    }

    #cta-banner .section-title {
      font-size: clamp(44px, 12vw, 70px);
    }

    .cta-actions {
      flex-direction: column;
      align-items: center;
      gap: 14px;
    }

    /* CONTACT */
    #contact {
      grid-template-columns: 1fr;
      gap: 48px;
      padding: 60px 20px;
    }

    .form-row {
      grid-template-columns: 1fr;
    }

    /* PROGRAMS */
    .programs-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .gallery-masonry {
      columns: 2;
    }

    footer {
      grid-template-columns: 1fr;
    }

    .footer-bottom {
      flex-direction: column;
      gap: 12px;
      text-align: center;
    }
  }

  @media (max-width: 480px) {
    #hero {
      padding: 100px 14px 60px;
    }

    .hero-title {
      font-size: clamp(46px, 14vw, 64px);
    }

    .hero-sub {
      font-size: 15px;
    }

    .hero-stats {
      gap: 12px;
    }

    .hero-stat-num {
      font-size: 28px;
    }

    .hero-stat-label {
      font-size: 8px;
    }

    .btn-primary,
    .btn-outline {
      max-width: 100%;
      padding: 14px 20px;
      font-size: 13px;
    }

    nav {
      padding: 10px 14px;
    }

    .nav-logo img {
      max-height: 26px;
    }

    #cta-banner {
      padding: 60px 16px;
    }

    .cta-bg-text {
      font-size: 80px;
    }

    #contact {
      padding: 50px 16px;
    }

    .programs-grid {
      grid-template-columns: 1fr 1fr;
    }
  }