/* ==================================================
   ROOT + GLOBAL
================================================== */
:root {
  --accent-yellow: #FDB714;
  --gold: #d4af37;
  --dark-blue: #0f1c3f;
  --dark-overlay: rgba(0,0,0,.65);
  --text-white: #fff;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

body {
  background: linear-gradient(135deg,#0a0e1a,#1a1f2e,#0f1419);
  background-attachment: fixed;
  position: relative;
}

/* subtle texture */
body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
body::before {
  background:
    radial-gradient(circle at 20% 50%,rgba(253,183,20,.03),transparent 50%),
    radial-gradient(circle at 80% 80%,rgba(212,175,55,.03),transparent 50%);
}
body::after {
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
}

/* ==================================================
   HERO SECTION - FIXED TEXT VISIBILITY
================================================== */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 60px 0;
}

/* video - FULL WIDTH EDGE TO EDGE */
.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none;
  object-fit: cover;
}

/* Ensure video covers entire width with proper aspect ratio */
@media (min-aspect-ratio: 16/9) {
  .hero-video-wrapper iframe {
    height: 300%;
    top: -100%;
  }
}

@media (max-aspect-ratio: 16/9) {
  .hero-video-wrapper iframe {
    width: 300%;
    left: -100%;
  }
}

/* overlay - LOCKED AND VISIBLE */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
  pointer-events: none;
}

/* accent bar */
.accent-bar {
  position: absolute;
  left: 0;
  top: 45%;
  width: 180px;
  height: 5px;
  background: linear-gradient(90deg, #C41E3A, transparent);
  z-index: 2;
}

/* content - LOCKED AND ALWAYS VISIBLE */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  padding: 0 60px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* WELCOME LABEL - NOW VISIBLE */
.welcome-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 15px;
  opacity: 1;
  display: block;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* HERO TITLE - REDUCED SIZE */
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 8vw, 85px);
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 3px 6px rgba(0,0,0,0.6);
  opacity: 1;
}

.hero-title .highlight { 
  color: var(--accent-yellow);
}

/* HERO DESCRIPTION - VISIBLE */
.hero-description {
  max-width: 650px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 35px;
  opacity: 1;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* BUTTONS - VISIBLE */
.hero-bottom {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.btn-primary-hero,
.btn-book-hero {
  padding: 18px 40px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 1;
  z-index: 10;
}

.btn-primary-hero {
  background: var(--accent-yellow);
  color: #111;
  box-shadow: 0 4px 12px rgba(253, 183, 20, 0.3);
}

.btn-primary-hero:hover {
  background: #e5a313;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(253, 183, 20, 0.4);
}

.btn-book-hero {
  background: linear-gradient(135deg, var(--gold), #f5d76e);
  color: #000;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-book-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
}

/* STATS - VISIBLE */
.hero-stats {
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin-top: 15px;
  opacity: 1;
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--accent-yellow);
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  cursor: pointer;
}

.scroll-text {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* ==================================================
   SECTIONS (FEATURES + CTA)
================================================== */
.section {
  padding: 90px 0;
  background: rgba(255,255,255,.02);
  position: relative;
  clear: both;
  width: 100%;
}

.features-section {
  z-index: 2;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem,5vw,4rem);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 60px;
}
.section-title span { color: var(--accent-yellow); }

/* FEATURES */
.feature {
  margin-bottom: 80px;
  background: rgba(255,255,255,.03);
  border-radius: 8px;
  overflow: hidden;
}

.feature-content {
  padding: 60px;
}
.feature-content h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem,3vw,3rem);
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 15px;
}
.feature-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,.8);
}

/* slider */
.feature-slider {
  position: relative;
  height: 500px;
  overflow: hidden;
}
.feature-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .8s ease;
}
.feature-slider img.active { opacity: 1; }


/* ================= CTA SECTION ================= */
.cta-section {
  background: linear-gradient(135deg, #0f1c3f 0%, #1a2a4e 100%) !important;
  text-align: center;
  padding: 120px 20px !important;
  color: #fff;
  width: 100%;
  clear: both;
  position: relative;
  z-index: 10;
  margin: 0;
  min-height: 400px;
}

.cta-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  text-transform: uppercase;
  margin-bottom: 30px;
  color: var(--text-white);
}

.cta-section h2 span {
  color: var(--accent-yellow);
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: rgba(255,255,255,.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #f5d76e);
  padding: 22px 60px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: #000;
  display: inline-block;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-lg {
  font-size: 16px;
}

/* ==================================================
   MOBILE RESPONSIVE
================================================== */
@media (max-width: 768px) {

  /* HERO */
  .hero-section {
    min-height: 85vh;
    align-items: flex-end;
    padding-bottom: 70px;
  }
  
  .hero-content {
    padding: 0 20px;
    text-align: center;
  }
  
  .hero-title {
    font-size: clamp(36px,10vw,54px);
    letter-spacing: 1.5px;
  }
  
  .hero-bottom {
    flex-direction: column;
  }
  
  .btn-primary-hero,
  .btn-book-hero {
    width: 100%;
    padding: 18px 0;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .accent-bar { width: 100px; }

  /* FEATURES */
  .features-section .row {
    flex-direction: column !important;
  }
  
  .feature-slider {
    height: 280px;
    margin-bottom: 20px;
  }
  
  .feature-content {
    padding: 30px 20px;
    text-align: center;
  }

  /* CTA */
  .cta-section {
    padding: 80px 20px !important;
  }
  
  .btn-gold {
    width: 90%;
    max-width: 400px;
    padding: 18px 30px;
  }
}

@media (max-width: 480px) {
  .feature-slider { height: 220px; }
  
  .cta-section {
    padding: 60px 15px !important;
  }
}


/* ==================================================
   FORCE MOBILE FEATURE STACK
================================================== */
@media (max-width: 768px) {

  /* Kill Bootstrap row side spacing */
  .features-section .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* Force vertical stacking */
  .features-section .row {
    flex-direction: column !important;
  }

  /* Reset columns completely */
  .features-section [class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Image block */
  .feature-slider {
    width: 100%;
    height: 260px;
    margin-bottom: 20px;
    border-radius: 6px;
    overflow: hidden;
  }

  .feature-slider img {
    object-fit: cover;
  }

  /* Text block */
  .feature-content {
    padding: 20px 16px !important;
    text-align: center;
  }

  .feature-content h4 {
    font-size: 20px;
    letter-spacing: 1px;
  }

  .feature-content p {
    font-size: 14px;
    line-height: 1.6;
  }

  /* Remove desktop zig-zag */
  .order-md-2 {
    order: unset !important;
  }
}

/* Extra small phones */
@media (max-width: 480px) {
  .feature-slider {
    height: 220px;
  }
}

/* ==================== ABOUT STRIP SECTION (CLEAN PRO DESIGN) ==================== */
.about-strip {
  background: #0f1c3f;
  padding: 80px 0;
  margin-top: -2px;
}

/* Grid control */
.about-strip .row {
  align-items: center;
}

/* IMAGE */
.about-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(0,0,0,.55);
}

/* CONTENT */
.about-content {
  padding: 10px 10px;
}

.about-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}

.about-content p {
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(255,255,255,.9);
  margin-bottom: 20px;
  max-width: 520px;
}

/* BUTTON */
.about-content .btn-gold {
  padding: 16px 42px;
  font-size: 13px;
  letter-spacing: 1.5px;
}

/* ================= MOBILE FIRST ================= */
@media (max-width: 768px) {

  .about-strip {
    padding: 60px 16px;
    text-align: center;
  }

  .about-content {
    padding: 0;
  }

  .about-content h2 {
    font-size: 30px;
  }

  .about-content p {
    font-size: 14.5px;
    max-width: 100%;
  }

  .about-content .btn-gold {
    width: 100%;
  }
}


/* ==================================================
   RC PERFORM STYLE PROGRAM GRID
================================================== */

.programs-section {
  background: linear-gradient(180deg, #0b1020 0%, #0f1c3f 100%);
  padding: 100px 0;
}

.section-subtitle {
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,.75);
}

/* GRID */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

/* CARD */
.program-card {
  background: #141d34;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 40px rgba(0,0,0,.45);
  transition: .35s ease;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,.65);
}

/* IMAGE */
.program-image {
  height: 230px;
  overflow: hidden;
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.program-card:hover .program-image img {
  transform: scale(1.06);
}

/* CONTENT */
.program-content {
  padding: 28px 26px 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.program-content h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 12px;
}

.program-content p {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255,255,255,.75);
  margin-bottom: 26px;
  flex-grow: 1;
}

/* BUTTON */
.btn-program {
  background: #1f4cff;
  color: #fff;
  padding: 14px 0;
  border-radius: 8px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.3px;
  transition: .3s ease;
}

.btn-program:hover {
  background: #1741db;
  transform: translateY(-2px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .programs-grid {
    grid-template-columns: 1fr;
  }

  .program-image {
    height: 200px;
  }

  .program-content h3 {
    font-size: 20px;
  }
}

/* ==================================================
   CLEAN PROFESSIONAL PROGRAM GRID
================================================== */

.programs-section {
  background: linear-gradient(180deg,#0b1020,#0f1c3f);
  padding: 100px 0;
}

/* Subtitle */
.section-subtitle {
  max-width: 720px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,.75);
}

/* GRID */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

/* CARD */
.program-card {
  background: #141d34;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,.45);
  transition: .35s ease;
  display: flex;
  flex-direction: column;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}

/* IMAGE */
.program-image {
  height: 230px;
  overflow: hidden;
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.program-card:hover img {
  transform: scale(1.06);
}

/* CONTENT */
.program-content {
  padding: 28px 26px 32px;
  text-align: left;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.program-content h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 1.4px;
  margin-bottom: 10px;
  color: #fff;
}

.program-content p {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255,255,255,.75);
  margin-bottom: 22px;
  flex-grow: 1;
}

/* BUTTON */
.btn-program {
  background: linear-gradient(135deg,#1f4cff,#1741db);
  color: #fff;
  padding: 14px 0;
  border-radius: 8px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.3px;
  transition: .3s ease;
}

.btn-program:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(31,76,255,.4);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .programs-grid {
    grid-template-columns: 1fr;
  }

  .program-image {
    height: 200px;
  }

  .program-content h3 {
    font-size: 20px;
  }
}

/* ================= FACILITY SECTION ================= */
.facility-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;

  /* Match main page background */
  background: linear-gradient(135deg,#0a0e1a,#1a1f2e,#0f1419);
}

/* subtle texture like main page */
.facility-section::before,
.facility-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.facility-section::before {
  background:
    radial-gradient(circle at 20% 50%, rgba(253,183,20,.03), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(212,175,55,.03), transparent 50%);
}

.facility-section::after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
}

/* Ensure cards and overlay sit above the texture */
.facility-grid,
.facility-card,
.facility-overlay {
  position: relative;
  z-index: 1;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.facility-card {
  height: 360px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 15px 40px rgba(0,0,0,.6);
  transition: transform .45s ease, box-shadow .45s ease;
}

.facility-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0,0,0,.75);
}

.facility-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.facility-card:hover img {
  transform: scale(1.15);
}

.facility-overlay {
  inset: 0;
  background: linear-gradient(to top, rgba(6,10,30,.95), rgba(6,10,30,.25));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0;
  transition: .45s ease;
}

.facility-card:hover .facility-overlay {
  opacity: 1;
}

.facility-overlay h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}

.facility-overlay p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.85);
}

/* Mobile */
@media(max-width:768px){
  .facility-card { height: 260px; }
  .facility-overlay h4 { font-size: 20px; }
  .facility-overlay p { font-size: 13px; }
}
