p:empty {
    display: none;
}
	.content {  margin-top: 0px;	}
  /* ===== Reset & Base ===== */
 
  /* img { max-width: 100%; display: block; }
  a { text-decoration: none; color: inherit; }
  ul { list-style: none; }
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  } */

  /* ===== Reusable Buttons ===== */
  .rb-btn-primary {
    display: inline-block;
    background: #17b2c9;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 7px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 21px;
    transition: background 0.25s ease;
  }
  .rb-btn-primary:hover { background: #128fa1; color:#fff; }

  .eyebrow-text {
   color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
  }
/* ===================================================== */
  /*background section                                */
  /* ===================================================== */
   .rac-wrap{
    max-width: var(--rac-maxw);
    margin: 0 auto;
    padding: 0 32px;
  }

  /* ================= HERO — single static background image, NO slider ================= */
  .rac-hero{
    position: relative;
    min-height: 415px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .rac-hero__bg{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  .rac-hero__overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,20,30,0.15) 0%, rgba(10,20,30,0.35) 100%);
    z-index: 1;
  }

  .rac-hero__title {
    position: relative;
    z-index: 2; 
    padding: 0 20px;
    margin: 0;
    color: #FFF;
    font-size: 48px;
    font-weight: 600;
}

  /* ================= SECTION SHELL — all prefixed rac- ================= */
  .rac-section{
    padding: 90px 0;
  }

  .rac-section--helf{
    background: #e9f8fc;
  }

  .rac-section--club{
    background: #fff;
  }

  .rac-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
  }

  .rac-eyebrow{
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
  }

  .rac-heading{
    color: #000;

    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-top:5px;
  }

  .rac-copy p{
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .rac-copy p:last-child{ margin-bottom: 0; }

  .rac-club-copy p{
   margin: 30px 0 0 0;
    color: #333B3B;
    font-family: Formata;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;

  }
  .rac-club-copy .p_space_bottom_2 {
    margin-top: 8px;
}
   .rac-club-copy ul{
          margin-left: 30px;
   }
  .rac-club-copy ul li{
    color: #333B3B;
    font-family: Formata;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
  }

  /* ================= CLUB SLIDER — scoped classes, does NOT reuse hero-* names ================= */
  .rac-club-slider{
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(20,33,61,0.15);
    min-height: 384px;
  }

  .rac-club-slider .club-slide{
   position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 384px;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 0;
  }

  .rac-club-slider .club-slide.active{
    opacity: 1;
    z-index: 1;
  }

  .rac-club-slider .club-dots{
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    z-index: 2;
  }

  .rac-club-slider .club-dot{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .rac-club-slider .club-dot.active{
    background: #00BCDF;
    transform: scale(1.15);
  }

  .rac-club-slider .club-arrow{
     /* width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
   background: rgba(14, 124, 158, 0.85); 
    color: #fff;*/
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;

  }
.rac-club-slider .club-arrow:first-child{
  margin-right:50px;
}
.rac-club-slider .club-arrow:last-child {
    margin-left: 50px;
}
  /* .rac-club-slider .club-arrow:hover{
    background: rgba(14, 124, 158, 1);
  } */

  /* .rac-club-slider .club-arrow::after{
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
  } */

  /* .rac-club-slider .club-arrow[data-club-prev]::after{
    transform: rotate(135deg);
    margin-left: 3px;
  } */

  /* .rac-club-slider .club-arrow[data-club-next]::after{
    transform: rotate(-45deg);
    margin-right: 3px;
  } */

  /* ================= RESPONSIVE ================= */
  @media (max-width: 900px){
    .rac-grid{
      grid-template-columns: 1fr;
      gap: 28px;
    }
    .rac-club-copy p{ max-width: 100%; }
    .rac-club-slider,
    .rac-club-slider .club-slide{ min-height: 300px; }
  }

  @media (max-width: 560px){
    .rac-wrap{ padding: 0 20px; }
    .rac-hero{ min-height: 300px; }
    .rac-section{ padding: 44px 0; }
    .rac-club-slider,
    .rac-club-slider .club-slide{ min-height: 240px; }
    .rac-club-slider .club-arrow{ width: 30px; height: 30px; }
  }
  /* ===================================================== */
  /* HEADER / HERO SECTION                                  */
  /* ===================================================== */
  .rb-hero-section {
    background: #E9F8FC;
    position: relative;
  }
  .rb-hero-section .rb-about-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    max-width: 1400px;
    margin: 0 auto;
  }
  .rb-hero-section .hero-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
    color: #00BCDF;
  }
  .rb-hero-section .hero-logo span.sub {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: #555;
  }
  .rb-hero-section .hero-phone {
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 700;
    color: #333;
  }
  .rb-hero-section .hero-menu-icon {
    font-size: 22px;
    cursor: pointer;
  }
  .rb-hero-section .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    /* max-width: 1400px; */
    margin: 0 auto;
    gap: 0;
  }
  .rb-hero-section.hero-rb-2 .hero-grid{
    grid-template-columns: 1fr 1fr;
  }
   .rb-hero-section.hero-rb-2 .hero-copy{
    max-width: 583px;
  }
   .rb-hero-section.hero-rb-2 .hero-copy h1{
      font-size: 42px;
      color:#28A8C8;
  }

  .rb-hero-section .hero-copy {
    padding: 100px 24px 0px 0px;
    margin-left: auto;
    max-width: 578px;
    width: 100%;
  }
  
  
  
 .rb-hero-section .hero-copy p {
    padding: 24px 0;
    color: #333B3B;
    font-family: Formata;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  
  .rb-hero-section .hero-copy p { 
    max-width: 468px;
    width: 100%;
  }

  .rb-hero-section.hero-rb-2 .hero-copy p{

  }
  .rb-hero-section .hero-copy h1 {
    margin-bottom:0;
    color: #00BCDF;
    font-family: Formata;
    font-size: 40px;
    font-weight: 700;
  }

  .rb-hero-section .hero-image-wrap {
    position: relative;
    height: 750px;
    overflow: hidden;
    /* border-radius: 4px; */
  }
    .rb-hero-section.hero-rb-2 .hero-image-wrap {
        position: relative;
        height: 475px;
        overflow: hidden;
    }
  .rb-hero-section .hero-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
    object-fit: cover;
  }
  .rb-hero-section .hero-slide.active {
    opacity: 1;
  }
  .rb-hero-section .hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 4px;
    /* background: rgba(255,255,255,0.5); */
    padding: 8px 16px;
    border-radius: 30px;
    z-index: 5;
  }
  .rb-hero-section .hero-dots .dot-arrow {
    /*
     background: #00BCDF;
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-right:45px;
    */
  }
  .rb-hero-section .hero-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    padding: 0;
    cursor: pointer;
  }
  .hero-dots .dot-arrow:first-child {
    margin-right: 45px;
        cursor: pointer;
  }

  .hero-dots .dot-arrow:last-child {
      margin-left: 45px;
          cursor: pointer;
  }
  .rb-hero-section .hero-dots .dot.active { background: #00BCDF; width: 12px; height: 12px; }
/* ////////////// */
.hero-section-2 .hero-image-wrap {
    position: relative;
    height: 537px;
    overflow: hidden;
    border-radius: 0;
}
  .hero-section-2 .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    align-items: center;
    margin: 0 auto;
    gap: 0;
}
.hero-section-2 .hero-copy {
    padding: 60px 24px 0px 0px;
    margin-left: auto;
    max-width: 440px;
}
  @media (max-width: 1100px) {
    .rb-hero-section .hero-copy {
    padding: 130px 24px 0px 10px;
    }
  }
  @media (max-width: 900px) {
    .rb-btn-primary {
      font-size: 16px;
    }
    .rb-hero-section .hero-grid, .rb-hero-section.hero-rb-2 .hero-grid { grid-template-columns: 1fr; }
    .rb-hero-section .hero-copy { padding: 170px 24px 40px }
    .rb-hero-section .hero-copy h1 { font-size: 30px; max-width: 100%;  margin-bottom: 45px;}
    .rb-hero-section .hero-image-wrap { height: 320px; }
  }
 @media (max-width: 630px) {
    .rb-hero-section.hero-rb-2 .hero-copy {
        padding: 40px 24px 40px;
    }
    .rb-hero-section .hero-copy {
        padding: 30px 20px 10px;
    }
    .rb-hero-section .hero-copy h1 {
        font-size: 30px;
        max-width: 100%;
        margin-bottom: 5px;
    }
    .rb-hero-section .hero-copy p{
      margin: 0;
    }
 }
  /* ===================================================== */
  /* INTRO / ABOUT STATS SECTION                            */
  /* ===================================================== */
  .rb-about-section {
    padding: 90px 0;
    background: #ffffff;
  }
  .rb-about-section .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .rb-about-section .about-heading h2 {
   /* margin-bottom: 66px; */
    color: #0F1818;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: normal;
  }
  .rb-about-section .about-stats {
    display: flex;
    gap: 50px;
  }
  .rb-about-section .about-stat .stat-number {
    color: #00BCDF;
    text-align: center;
   
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
  }
  .rb-about-section .about-stat .stat-label {
       color: #000;
   
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    text-transform: uppercase;
  }
  .rb-about-section .about-copy p {
   color: #333B3B;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 16px;
  }

  @media (max-width: 900px) {
    .rb-about-section .about-grid { grid-template-columns: 1fr; gap: 30px; }
    .rb-about-section .about-stats { gap: 30px; flex-wrap: wrap; }
  }

  /* ===================================================== */
  /* WAITLIST CTA (Don't wait until the doors open)         */
  /* ===================================================== */
  .rb-waitlist-section {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
   
    color: #fff;
  }
  .rb-waitlist-section .waitlist-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
  }
  .rb-waitlist-section .waitlist-heading h2 {
    color: #FFF;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
  
  .rb-waitlist-section  .gform_heading{
	display:none;
  }
  
  .rb-waitlist-section .waitlist-form-card {
   background: #ffffff;
    color: #666;
    border-radius: 15px;
    padding: 52px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  }
  /* #waitlist-form select{
    background-image: none;
  } */
  #waitlist-form select {
    background-image: url(data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='7' viewBox='0 0 14 7' fill='none'%3E%3Cpath d='M6.95809 6.72741C7.09964 6.71521 7.23387 6.65826 7.34126 6.5647L13.5527 1.192L13.5527 1.19282C13.6942 1.07811 13.7829 0.910508 13.7983 0.729086C13.8138 0.547665 13.7552 0.367865 13.6356 0.230387C13.516 0.0928969 13.346 0.00991513 13.1646 0.000959584C12.9824-0.008803 12.805 0.0562795 12.6716 0.179941L6.90026 5.16942L1.12894 0.17994L1.12975 0.17994C0.996331 0.0562811 0.818162-0.00880249 0.636739 0.000959037C0.454504 0.00990811 0.284473 0.0928901 0.164886 0.230387C0.0452938 0.367877-0.0132809 0.547663 0.00217625 0.729085C0.0176334 0.910506 0.106311 1.0781 0.247871 1.19282L6.45926 6.56551L6.45926 6.5647C6.59675 6.68429 6.77666 6.74287 6.95809 6.72741Z' fill='%2300BCDF'/%3E%3C/svg%3E);
    background-repeat: no-repeat;
    background-position: right;


}
.rb-waitlist-section .waitlist-form-card ul li {
  margin-bottom:2px !important;
}
  .rb-waitlist-section .waitlist-form-card h3 {
    color: #00BCDF;
    font-family: Formata;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom:20px;
    letter-spacing: normal;
  }
  .rb-waitlist-section .waitlist-form-card p.form-desc {
    color: #666;
    font-family: Formata;
    font-size: 16px;

    font-weight: 400;
    line-height: 18px;
    
  }
  
  .rb-waitlist-section .waitlist-form-card .privacy_policy_section p.form-desc { font-size: 12px;}
  
  .rb-waitlist-section .form-field {
    margin-bottom: 14px;
  }
  .rb-waitlist-section .form-field label {
    display: block;
    margin-bottom: 7px;
    color: #000;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    font-family: Formata;

  }
  form label .gfield_required
    {
        opacity: 0;
    }
  .rb-waitlist-section .form-field input,
  .rb-waitlist-section .form-field select,
  .rb-waitlist-section .form-field textarea {
    width: 100%;
    padding: 4px 12px;
    height: 29px;
    border-radius: 4px;
    font-size: 12px;
    font-family: inherit;
    border-radius: 2px;
    border: 0.5px solid #666;
    margin-bottom: 11px;
    color: #666;
  }
  .rb-waitlist-section .form-field textarea { resize: vertical; min-height: 70px; }
  .rb-waitlist-section .waitlist-submit-btn {
    width: 100%;
    margin-top: 8px;
  }
#waitlist-form .rb-btn-primary {
  color: #FFF;

font-size: 13px;

font-weight: 700;

text-transform: uppercase;
    padding: 12px;
}
  @media (max-width: 900px) {
    .rb-waitlist-section .waitlist-grid { grid-template-columns: 1fr; }
    .rb-waitlist-section .waitlist-heading h2 { font-size: 30px; margin-top: 0; }
    .rb-waitlist-section { padding: 60px 0; }
  }
 @media (max-width: 600px) {
  .rb-waitlist-section .waitlist-form-card{
        padding: 22px;
  }
 }
  /* ===================================================== */
  /* FEATURES SECTION (What sets us apart)                  */
  /* ===================================================== */
  .rb-features-section {
    background: #E9F8FC;
    padding: 80px 0;
    text-align: center;
  }
  .rb-features-section .features-title h2 {
    margin-bottom: 50px;
    color: #0F1818;
    text-align: center;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    margin-top: -13px;
  }
  .rb-features-section .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: left;
  }
 .rb-features-section .feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 26px;
  }
   .rb-features-section .feature-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  }
  .rb-features-section .feature-icon {
   width: 63px;
    height: 63px;
    border-radius: 50%;
    background: #00BCDF;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 18px;
  }
  .rb-features-section .feature-card h3 {
       color: #0F1818;
    font-size: 16px;

    font-weight: 400;
    line-height: normal;
  }
  .rb-features-section .feature-card p {
    color: #333B3B;
    font-family: Formata;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
  }

  @media (max-width: 900px) {
    .rb-features-section .features-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 600px) {
    .rb-features-section .features-grid { grid-template-columns: 1fr; }
  }
  /* ============================
   Mobile Carousel + Dots
   ============================ */
@media (max-width: 767px) {
  .rb-features-section .features-grid {
    display: flex !important;
    grid-template-columns: unset;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .rb-features-section .features-grid::-webkit-scrollbar {
    display: none;
  }

  .rb-features-section .feature-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
  }

  .rb-features-section .carousel-dots {
    display: flex;
  }
}

.rb-features-section .carousel-dots {
  /* display: none; */
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}

.rb-features-section .carousel-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c3d8e0;
  transition: background 0.2s;
  cursor: pointer;
}

.rb-features-section .carousel-dots span.active {
  background: #00BCDF;
}

  /* ===================================================== */
  /* MEET THE GM SECTION                                    */
  /* ===================================================== */
  .rb-gm-section {
    padding: 90px 0 50px 0;
    background: #ffffff;
  }
  .rb-gm-section .gm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .rb-gm-section .gm-copy h2 {
    margin: 8px 0 18px;
    color: #0F1818;
  
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;

  }
  .rb-gm-section .gm-copy p { 
    color: #333B3B;
   
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-bottom:0;
   }
  .rb-gm-section .gm-video-wrap {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
  }
  .rb-gm-section .gm-video-wrap img { width: 100%;}
  .rb-gm-section .gm-play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60px; height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
  }

  @media (max-width: 900px) {
    .rb-gm-section .gm-grid { grid-template-columns: 1fr; gap: 30px; }
    .rb-gm-section { padding: 60px 0 50px 0; }
  }

  /* ===================================================== */
  /* REGIS CLUB SECTION                                     */
  /* ===================================================== */
  .rb-club-section {
    padding:30px 0 90px 0;
    background: #ffffff;
    text-align: center;
  }
  .rb-club-section h2{
    color: #0F1818;
 
    font-size: 30px;
 
    font-weight: 700;
    line-height: normal;
    margin: 20px 0 !important;

  }
  .rb-club-section .club-title h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 14px;
    color: #1a1a1a;
  }
  .rb-club-section .club-intro {
    max-width: 700px;
    margin: 0 auto 50px;
    color: #333B3B;
    text-align: center;
    font-family: Formata;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%
  }
  .rb-club-section .club-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: left;
  }
  .rb-club-section .club-card img {
   width: 100%;
    height: 339px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
  }
  .rb-club-section .club-card h3 {
    margin-top:0;
    margin-bottom: 50px;
    color: #00BCDF;
   
    font-size: 20px;
  
    font-weight: 500;
    line-height: normal;
  }
  .rb-club-section .club-card p {
    color: #666;
  
    font-size: 14px;
  
    font-weight: 400;
    line-height: normal;
  }

  @media (max-width: 900px) {
    .rb-club-section .club-grid { grid-template-columns: 1fr; }
  }

  /* ===================================================== */
  /* SPACES SECTION (Our Spaces)                            */
  /* ===================================================== */
  .rb-spaces-section {
    padding: 70px 0;
    background: #E9F8FC;
  }
  .rb-spaces-section .spaces-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    /* gap: 20px; */
  }
  .rb-spaces-section .spaces-header h2 {
    max-width: 590px;
    color: #000;
    font-size: 32px;
    font-weight: 600;
    line-height: normal;
    margin-top: 33px;
  }
  .rb-spaces-section .spaces-header p{
    color: #000;
    font-family: Formata;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25.2px;
    max-width: 820px;
  }
  .rb-spaces-section .spaces-nav {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
        margin-left: auto;
  }
  .rb-spaces-section .spaces-nav button {
    width: 41px; height: 41px;
    border-radius: 50%;
    border: none;
    background: #00BCDF;
    color: #fff;
    cursor: pointer;
    font-size: 15px;
  }
    .rb-spaces-section .spaces-nav button {
    background: transparent;
    color: #00BCDF;
    cursor: poinrgb(255, 255, 255)
    font-size: 15px;
  }
  .rb-spaces-section .spaces-viewport {
    overflow: hidden;
  }
  .rb-spaces-section .spaces-track {
    display: flex;
    gap: 26px;
    transition: transform 0.5s ease;
  }
  .rb-spaces-section .space-card {
    flex: 0 0 calc((100% - 52px) / 3);
  }
  .rb-spaces-section .space-card img {
    width: 100%;
    height: 304px;
    object-fit: cover;
    border-radius: 25px;
    /* margin-bottom: 16px; */
  }
  .rb-spaces-section .space-card h3 {
    color: #000;
    font-size: 30px;
    font-weight: 700;
    line-height: normal;
    margin: 25px 0 15px 0;
    letter-spacing: normal;

  }
  .rb-spaces-section .space-card p {
    color: #000;
    font-family: Formata;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    line-height: 20.8px;
  }

  @media (max-width: 900px) {
    .rb-spaces-section .space-card { flex: 0 0 calc((100% - 26px) / 2); }
    .rb-spaces-section .spaces-header { flex-direction: column; align-items: flex-start; }
  }
  @media (max-width: 600px) {
    .rb-spaces-section .spaces-nav{
      position: absolute;
    bottom: 10px;
    z-index: 9;
    margin: auto;
    left: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    }

    .rb-spaces-section {
        padding: 50px 10px 90px 10px;
        position: relative;
    }

    .rb-spaces-section .spaces-header {
      margin-bottom: 0px;
    }
    .rb-spaces-section .space-card { 
      flex: 0 0 100%; 
    }
  }

  /* ===================================================== */
  /* CONTACT SECTION                                        */
  /* ===================================================== */
  .contact-section {
    padding: 100px 0 68px 0;
    background: #ffffff;
  }
  .contact-section .contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
    align-items: start;
  }
  .contact-section .contact-info h2 {
    margin-bottom: 32px;
    color: #000;
    font-size: 30px;
    font-weight: 700;
    line-height: normal;
  }
  .contact-section .contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
    color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
  }
  .contact-section .contact-info .contact-item .icon-badge {
    color: #00BCDF;
    font-size: 18px;
  }
  .contact-section .contact-info .rb-btn-primary{
    margin-top: 10px;
    font-size: 16px;
  }
  .contact-section .contact-map img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius:20px;
  }

  @media (max-width: 900px) {
    .contact-section .contact-grid { grid-template-columns: 1fr; }
  }

  /* ===================================================== */
  /* FOOTER SECTION                                         */
  /* ===================================================== */
  .site-footer {
    background: #4d4d4d;
    color: #f1f1f1;
    padding: 60px 0 0;
  }
  .site-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  .site-footer .footer-col h4 {
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 18px;
    color: #fff;
  }
  .site-footer .footer-col li {
    margin-bottom: 10px;
  }
  .site-footer .footer-col a {
    font-size: 13.5px;
    color: #d8d8d8;
    transition: color 0.2s ease;
  }
  .site-footer .footer-col a:hover { color: #00BCDF; }
  .site-footer .footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 16px;
  }
  .site-footer .footer-socials a {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
  }
  .site-footer .footer-bottom {
    text-align: center;
    font-size: 12.5px;
    color: #cfcfcf;
    padding: 20px 0;
  }
  .site-footer .footer-acknowledgement {
    text-align: center;
    font-size: 12px;
    color: #cfcfcf;
    padding: 0 20px 24px;
    max-width: 800px;
    margin: 0 auto;
  }

  @media (max-width: 900px) {
    .site-footer .footer-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 500px) {
    .site-footer .footer-grid { grid-template-columns: 1fr; }
  }
  
  
   .rc-page *,
  .rc-page *::before,
  .rc-page *::after {
    box-sizing: inherit;
  }
  
  .rc-page img { max-width: 100%; display: block; }

  .rc-page a.rc-link {
    color: inherit;
    text-decoration: none;
  }
  .rc-page .rc-topbar {
    position: absolute;
    top: 20px;
    left: 24px;
    z-index: 3;
  }
  .rc-page .rc-logo-badge {
    background: rgba(255, 255, 255, 0.92);
    padding: 8px 18px;
    border-radius: 4px;
    font-weight: 700;
    font-size: clamp(0.85rem, 1vw, 1rem);
    letter-spacing: 0.02em;
    color: var(--rc-teal-dark);
  }
  .rc-page .rc-hero {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .rc-page .rc-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    z-index: 0;
  }

  .rc-page .rc-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(20,20,20,0.55) 10%, rgba(20,20,20,0.02) 60%);
    z-index: 1;
  }

  .rc-page .rc-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width:1200px;
    margin: 0 auto;
    padding: 0;
  }

  .rc-page .rc-hero-heading {
    color: #ffffff;
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    max-width: 560px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.25);
  }
  .rc-page .rc-section-title {
    /* font-size: clamp(1.3rem, 2vw, 1.75rem);
    font-weight: 800;
    margin: 0 0 28px; */
    color: #000;

    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align:left;
    margin-bottom: 35px;
  }
  
  section.rc-section.rc-care-section {
    padding: 30px 10px 95px 10px;
}
  
  .rc-page .rc-care-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
  }

  .rc-page .rc-care-card {
    overflow: hidden;
    border-radius: 25px;
    background: #FFF;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .rc-page .rc-care-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  }

  .rc-page .rc-care-media {
    width: 100%;
    /* aspect-ratio: 4 / 3; */
    overflow: hidden;
  }

  .rc-page .rc-care-media img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    object-position: center;
  }

  .rc-page .rc-care-body {
    padding: 20px 10px 2px 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .rc-page .rc-care-title {
    /* font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    font-weight: 800;*/
    margin: 0; 
    color: #000;
    font-family: Formata;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  .rc-page .rc-care-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 0;
  }

  .rc-page .rc-care-desc {
    /* font-size: 0.9rem;
    color: var(--rc-ink-soft);*/
    margin: 0; 
    max-width: 75%;
    color: #666;
    font-family: Formata;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  .rc-page .rc-care-arrow {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--rc-teal);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
  }

  .rc-page .rc-care-arrow:hover {
    background: var(--rc-teal-dark);
  }

  /* ---------- About / welcome text ---------- */
  .rc-page .rc-about {
       /* max-width: 890px; */
    margin: 0 auto;
    text-align: center;
    padding: 10px 6vw 72px;
  }

  .rc-page .rc-about-copy {
    font-size: 0.95rem;
    color: #666666;
    margin: 0 0 20px;
  }

  .rc-page .rc-about-cta {
    font-size: 0.95rem;
    font-weight: 600;    
    color: #666666 !important;
    text-decoration: underline;
  }
  
  .form-desc {
	color: black!important;
}

  /* ---------- Responsive ---------- */
  @media (max-width: 980px) {
    .rc-page .rc-care-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 560px) {
    .rc-page .rc-hero {
      min-height: 340px;
    }
    .rc-page .rc-care-grid {
      grid-template-columns: 1fr;
    }
    .rc-page .rc-care-desc {
      max-width: 65%;
    }
    .rb-about-section {
      padding: 40px 10px;
    }
    .rb-waitlist-section {
        padding: 60px 10px;
    }
    .rb-features-section {
      padding: 60px 10px;
    }
    .rac-section {
        padding: 44px 10px;
    }
    /* .rb-spaces-section{
      padding: 60px 10px;
      
    } */
    .rb-gm-section {
        padding: 60px 10px;
    }
    .contact-section {
        padding: 50px 10px 68px 10px;
    }
  
  }

