/* =========================================================
   REGIBLOOM WELLNESS CENTRE — MAIN STYLESHEET
   ========================================================= */

:root{
  --rb-primary: #2f7b62;
  --rb-primary-dark: #235f4c;
  --rb-primary-light: #e8f4f2;
  --rb-secondary: #e8f4f2;
  --rb-white: #ffffff;
  --rb-text: #1f2937;
  --rb-text-soft: #5b6b68;
  --rb-bg-light: #f8fbfa;
  --rb-gold: #c8a96a;

  --rb-font-display: 'Playfair Display', serif;
  --rb-font-body: 'Poppins', sans-serif;

  --rb-radius-lg: 28px;
  --rb-radius-md: 18px;
  --rb-radius-sm: 12px;

  --rb-shadow-soft: 0 20px 50px -20px rgba(31, 41, 37, 0.18);
  --rb-shadow-card: 0 12px 30px -12px rgba(31, 41, 37, 0.15);
  --rb-transition: all 0.35s cubic-bezier(.25,.8,.25,1);
}

*{ box-sizing: border-box; }
.main{
    position: relative;
    z-index: 9999;
    overflow-x: hidden;
}
.rb-footer-contact h5{ color: #fff; font-size: 16px; margin-bottom: 10px;}
.rb-footer-contact span{ border: solid 1px #c8a96a; padding: 5px 15px; border-radius: 50px; font-size: 14px; margin-bottom: 10px; display: inline-block; color: #c8a96a;}

html{ scroll-behavior: smooth; }

body{
  font-family: var(--rb-font-body);
  color: var(--rb-text);
  background: var(--rb-white);
  overflow-x: hidden;
  font-weight: 400;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6{
  font-family: var(--rb-font-display);
  font-weight: 600;
  color: var(--rb-text);
  margin: 0;
}

p{ margin: 0; color: var(--rb-text-soft); }

a{ text-decoration: none; color: inherit; }

img{ max-width: 100%; display: block; }

::selection{ background: var(--rb-primary); color: #fff; }

/* Focus visibility for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible{
  outline: 2px solid var(--rb-primary);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* =========================================================
   PRELOADER
   ========================================================= */
.rb-preloader{
  position: fixed; inset: 0; z-index: 9999;
  background: var(--rb-white);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.rb-preloader.rb-hide{ opacity: 0; visibility: hidden; }
.rb-preloader-mark span{
  font-family: var(--rb-font-display);
  font-size: 3rem;
  color: var(--rb-primary);
  display: inline-block;
  animation: rbPulse 1.1s ease-in-out infinite;
}
@keyframes rbPulse{
  0%, 100%{ transform: scale(1); opacity: 0.6; }
  50%{ transform: scale(1.25); opacity: 1; }
}

/* =========================================================
   UTILITIES
   ========================================================= */
.rb-eyebrow{
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--rb-primary);
  background: var(--rb-primary-light);
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.rb-eyebrow-light{ background: rgba(255,255,255,0.14); color: #fff; }

.rb-section-title{
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.2;
  margin-bottom: 20px;
}
.rb-title-light{ color: #fff; }

.rb-section-text{ font-size: 1rem; max-width: 640px; }
.rb-section-head{ max-width: 720px; margin-left: auto; margin-right: auto; margin-bottom: 55px; }

.rb-glass{
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.5);
}

section{ padding: 60px 0; position: relative; }
@media (max-width: 768px){ section{ padding: 70px 0; } }

/* Buttons */
.rb-btn{
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--rb-font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 15px 32px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--rb-transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.rb-btn-primary{ background: var(--rb-primary); color: #fff; box-shadow: 0 14px 30px -10px rgba(47,123,98,0.55); }
.rb-btn-primary:hover{ background: var(--rb-primary-dark); transform: translateY(-3px); color: #fff; }
.rb-btn-outline{ border-color: rgba(255,255,255,0.6); color: #fff; }
.rb-btn-outline:hover{ background: #fff; color: var(--rb-primary); border-color: #fff; }
.rb-btn-ghost{ border-color: var(--rb-primary); color: var(--rb-primary); }
.rb-btn-ghost:hover{ background: var(--rb-primary); color: #fff; }
.rb-btn-light{ background: #fff; color: var(--rb-primary); }
.rb-btn-light:hover{ background: var(--rb-primary-light); transform: translateY(-3px); }
.rb-btn-outline-light{ border-color: rgba(255,255,255,0.5); color: #fff; }
.rb-btn-outline-light:hover{ background: rgba(255,255,255,0.14); }
.rb-btn-whatsapp{ background: #25D366; color: #fff; }
.rb-btn-whatsapp:hover{ background: #1ebd59; color: #fff; transform: translateY(-3px); }

.rb-hero-btns{ display: flex; flex-wrap: wrap; gap: 16px; margin: 34px 0; }
.rb-cta-btns{ display: flex; flex-wrap: wrap; gap: 14px; }

/* Ripple */
.rb-ripple{ position: relative; overflow: hidden; }
.rb-ripple-effect{
  position: absolute; border-radius: 50%; transform: scale(0);
  background: rgba(255,255,255,0.6); animation: rbRipple 0.6s linear; pointer-events: none;
}
@keyframes rbRipple{ to{ transform: scale(3); opacity: 0; } }

.rb-btn-sm{
  font-size: 0.8rem; font-weight: 600; padding: 9px 16px; border-radius: 50px;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  transition: var(--rb-transition);
}
.rb-btn-sm-primary{ background: var(--rb-primary); color: #fff; flex: 1; }
.rb-btn-sm-primary:hover{ background: var(--rb-primary-dark); color: #fff; }
.rb-btn-sm-outline{ border: 2px solid var(--rb-primary-light); color: var(--rb-primary); width: 40px; height: 40px; padding: 0; }
.rb-btn-sm-outline:hover{ background: var(--rb-primary); color: #fff; border-color: var(--rb-primary); }

/* =========================================================
   HEADER
   ========================================================= */
.rb-header{
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: transparent;
  transition: var(--rb-transition);
  padding: 14px 0;
}
.rb-header.rb-scrolled{
  background: #fff;
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px -15px rgba(0,0,0,0.15);
  padding: 8px 0;
}
.rb-navbar{ padding: 0; }

.rb-logo{
  font-family: var(--rb-font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  display: flex; flex-direction: column;
  transition: var(--rb-transition);
}
.rb-logo:hover{ color: #fff;}
.rb-header.rb-scrolled .rb-logo{ color: var(--rb-text); }
.rb-logo span{ color: var(--rb-gold); }
.rb-logo small{
  font-family: var(--rb-font-body);
  font-size: 12px;
  
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  margin-top: 5px;
}
.navbar-nav .nav-link.active{ color: #fff;}
.rb-header.rb-scrolled .rb-logo small{ color: var(--rb-text-soft); }
.rb-logo-footer{ color: var(--rb-text); margin-bottom: 18px; display: inline-flex; }
.rb-logo-footer small{ color: var(--rb-text-soft); }

.rb-nav .nav-link{
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  font-size: 0.92rem;
  margin: 0 14px;
  position: relative;
  padding: 8px 0 !important;
  transition: var(--rb-transition);
}
.rb-header.rb-scrolled .rb-nav .nav-link{ color: var(--rb-text); }
.rb-nav .nav-link::after{
  content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--rb-primary); transition: var(--rb-transition);
}
.rb-header.rb-scrolled .rb-nav .nav-link::after{ background: var(--rb-primary); }
.rb-nav .nav-link:hover::after, .rb-nav .nav-link.active::after{ width: 100%; }
.rb-nav .nav-link:hover{ color: #fff; }
.rb-header.rb-scrolled .rb-nav .nav-link:hover{ color: var(--rb-primary); }

.rb-header-actions{ display: flex; gap: 12px; margin-left: 20px; }
.rb-icon-btn{
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 600;
  padding: 10px 18px; border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff;
  transition: var(--rb-transition);
}
.rb-header.rb-scrolled .rb-icon-btn{ border-color: var(--rb-primary-light); color: var(--rb-primary); }
.rb-icon-btn:hover{ background: var(--rb-primary); border-color: #fff; color: #fff; }
.rb-whatsapp-btn{ background: #25D366; border-color: #25D366; color: #fff; }
.rb-whatsapp-btn:hover{ background: #1ebd59; }

.navbar-toggler{ border: none; box-shadow: none !important; color: #fff; }
.rb-header.rb-scrolled .navbar-toggler{ color: var(--rb-text); }
.rb-toggler-icon{ font-size: 1.4rem; }

@media (max-width: 991px){
  .rb-nav{ background: #fff; border-radius: var(--rb-radius-md); padding: 16px; margin-top: 14px; box-shadow: var(--rb-shadow-card); }
  .rb-nav .nav-link{ color: var(--rb-text) !important; margin: 4px 0; }
  .rb-header-actions{ flex-direction: column; margin: 12px 0 0; }
  .rb-icon-btn{ border-color: var(--rb-primary-light); color: var(--rb-primary); justify-content: center; }
}

/* =========================================================
   HERO
   ========================================================= */
.rb-hero{
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  padding-top: 140px;
  padding-bottom: 60px;
}
.rb-hero-bg{
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
}
.rb-hero-overlay{
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(21,40,33,0.88) 10%, rgba(31,58,49,0.55) 55%, rgba(47,123,98,0.35) 100%);
}
.rb-hero .container{ position: relative; z-index: 2; }

.rb-floating-el{
  position: absolute; z-index: 1;
  color: rgba(255,255,255,0.16);
  font-size: 3.5rem;
  animation: rbFloat 6s ease-in-out infinite;
}
.rb-float-1{ top: 18%; left: 6%; animation-delay: 0s; }
.rb-float-2{ top: 65%; left: 12%; font-size: 2.4rem; animation-delay: 1.2s; }
.rb-float-3{ top: 25%; right: 8%; animation-delay: 2s; }
.rb-float-4{ top: 70%; right: 14%; font-size: 2.8rem; animation-delay: 0.6s; }
@keyframes rbFloat{
  0%, 100%{ transform: translateY(0) rotate(0deg); }
  50%{ transform: translateY(-24px) rotate(8deg); }
}
@media (max-width: 767px){ 
    .rb-floating-el{ display: none; }
    .rb-appointment-card{ margin-top: 50px;}
}

.rb-hero-title{
  color: #fff;
  font-size: 40px;
  line-height: 1.15;
  margin-bottom: 22px;
}
.rb-hero-text{ color: #fff; font-size: 16px; max-width: 560px; line-height: 24px; }

.rb-hero-counters{
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-top: 20px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.2);
}
.rb-counter-item h3{ color: #fff; font-size: 1.9rem; margin-bottom: 4px; }
.rb-counter-item p{ color: rgba(255,255,255,0.7); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; }
@media (max-width: 576px){
  .rb-hero-counters{ grid-template-columns: repeat(2, 1fr); }
}

/* Appointment Card */
.rb-appointment-card{
  border-radius: var(--rb-radius-lg);
  padding: 36px;
  box-shadow: var(--rb-shadow-soft);
}
.rb-appointment-card h4{ font-size: 1.5rem; margin-bottom: 6px; }
.rb-appointment-card > p{ margin-bottom: 22px; font-size: 0.9rem; }

.rb-form .form-label{ font-size: 0.85rem; font-weight: 600; color: var(--rb-text); margin-bottom: 6px; }
.rb-form .form-control, .rb-form .form-select{
  border-radius: var(--rb-radius-sm);
  border: 1.5px solid #e3ece9;
  padding: 12px 16px;
  font-size: 0.92rem;
  background: #fff;
}
.rb-form .form-control:focus, .rb-form .form-select:focus{
  border-color: var(--rb-primary);
  box-shadow: 0 0 0 4px rgba(47,123,98,0.12);
}
.rb-form-success{
  display: none;
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--rb-radius-sm);
  background: var(--rb-primary-light);
  color: var(--rb-primary-dark);
  font-size: 0.88rem;
  font-weight: 500;
  text-align: center;
}
.rb-form-success.rb-show{ display: block; animation: rbFadeUp 0.5s ease; }
@keyframes rbFadeUp{ from{ opacity: 0; transform: translateY(10px);} to{ opacity: 1; transform: translateY(0);} }

/* =========================================================
   ABOUT
   ========================================================= */
.rb-about{ background: var(--rb-bg-light); }
.rb-about-img-wrap{ position: relative; }
.rb-about-img{ border-radius: var(--rb-radius-lg); box-shadow: var(--rb-shadow-soft); width: 100%; height: 520px; object-fit: cover; }
.rb-about-badge{
  position: absolute; bottom: -24px; left: -24px;
  background: #fff; border-radius: var(--rb-radius-md);
  padding: 18px 22px; box-shadow: var(--rb-shadow-card);
  display: flex; align-items: center; gap: 14px;
}
.rb-about-badge i{ font-size: 1.7rem; color: var(--rb-gold); }
.rb-about-badge strong{ display: block; font-family: var(--rb-font-display); font-size: 1rem; color: var(--rb-text); }
.rb-about-badge span{ font-size: 0.78rem; color: var(--rb-text-soft); }
@media (max-width: 576px){ .rb-about-badge{ left: 8px; bottom: -16px; padding: 12px 16px; } .rb-about-img{ height: 380px; } }

.rb-about-points{ margin-top: 10px; }
.rb-about-point{ display: flex; gap: 18px; margin-bottom: 24px; }
.rb-about-point i{
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 14px;
  background: var(--rb-primary-light); color: var(--rb-primary);
  display: flex; align-items: center; justify-content: center; font-size: 1.15rem;
}
.rb-about-point h5{ font-size: 1.08rem; margin-bottom: 6px; }
.rb-about-point p{ font-size: 0.92rem; }

/* =========================================================
   SERVICES
   ========================================================= */
.rb-services{ background: #fff; }
.rb-service-card{
  background: #fff;
  border-radius: var(--rb-radius-md);
  overflow: hidden;
  box-shadow: var(--rb-shadow-card);
  transition: var(--rb-transition);
  height: 100%;
  border: 1px solid #f0f4f2;
}
.rb-service-card:hover{ transform: translateY(-10px); box-shadow: var(--rb-shadow-soft); }
.rb-service-img{ position: relative; height: 190px; overflow: hidden; }
.rb-service-img img{ width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.rb-service-card:hover .rb-service-img img{ transform: scale(1.12); }
.rb-service-icon{
  position: absolute; top: 14px; right: 14px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(6px);
  color: var(--rb-primary);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.rb-service-body{ padding: 22px; }
.rb-service-body h5{ font-size: 1.05rem; margin-bottom: 10px; }
.rb-service-body p{ font-size: 0.85rem; margin-bottom: 18px; line-height: 19px; }
.rb-service-actions{ display: flex; gap: 8px; }

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.rb-why-us{ background: linear-gradient(180deg, var(--rb-bg-light) 0%, #fff 100%); }
.rb-why-card{
  background: #fff; border-radius: var(--rb-radius-md);
  padding: 34px 28px; height: 100%;
  box-shadow: var(--rb-shadow-card);
  transition: var(--rb-transition);
  border-bottom: 3px solid transparent;
}
.rb-why-card:hover{ border-bottom-color: var(--rb-primary); transform: translateY(-8px); }
.rb-why-icon{
  width: 60px; height: 60px; border-radius: 18px;
  background: var(--rb-primary-light); color: var(--rb-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
}
.rb-why-card h5{ font-size: 1.1rem; margin-bottom: 10px; }
.rb-why-card p{ font-size: 0.9rem; }

/* =========================================================
   PROCESS / TIMELINE
   ========================================================= */
.rb-process{ background: var(--rb-primary); position: relative; overflow: hidden; }
.rb-process::before{
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.06), transparent 45%);
}
.rb-process .rb-eyebrow{ background: rgba(255,255,255,0.14); color: #fff; }
.rb-process .rb-section-title{ color: #fff; }
.rb-timeline{
  display: flex; justify-content: space-between; gap: 20px;
  position: relative; z-index: 1; flex-wrap: wrap;
}
.rb-timeline-item{
  flex: 1; min-width: 180px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--rb-radius-md);
  padding: 30px 22px; text-align: center;
  transition: var(--rb-transition);
}
.rb-timeline-item:hover{ background: rgba(255,255,255,0.16); transform: translateY(-6px); }
.rb-timeline-num{
  font-family: var(--rb-font-display); font-size: 2.2rem; color: var(--rb-gold);
  margin-bottom: 12px;
}
.rb-timeline-item h5{ color: #fff; font-size: 1.05rem; margin-bottom: 10px; }
.rb-timeline-item p{ color: rgba(255,255,255,0.75); font-size: 0.85rem; }

/* =========================================================
   BENEFITS
   ========================================================= */
.rb-benefits{ background: #fff; }
.rb-benefit-card{
  background: var(--rb-bg-light);
  border-radius: var(--rb-radius-md);
  padding: 34px 20px; text-align: center;
  transition: var(--rb-transition);
  height: 100%;
    border: solid 1px #2f7b6229;
}
.rb-benefit-card:hover{ background: var(--rb-primary); transform: scale(1.05); }
.rb-benefit-card i{ font-size: 2rem; color: var(--rb-primary); margin-bottom: 16px; transition: var(--rb-transition); }
.rb-benefit-card:hover i{ color: #fff; }
.rb-benefit-card h6{ font-size: 0.95rem; transition: var(--rb-transition); }
.rb-benefit-card:hover h6{ color: #fff; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.rb-testimonials{ background: var(--rb-bg-light); }
.rb-testimonial-card{
  background: #fff; border-radius: var(--rb-radius-md);
  padding: 36px 30px; margin: 10px 14px 30px;
  box-shadow: var(--rb-shadow-card);
  min-height: 260px;
}
.rb-stars{ color: var(--rb-gold); font-size: 0.9rem; margin-bottom: 16px; }
.rb-testimonial-card p{ font-size: 0.95rem; font-style: italic; color: var(--rb-text); margin-bottom: 22px; }
.rb-testimonial-person{ display: flex; align-items: center; gap: 14px; }
.rb-testimonial-person img{ width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.rb-testimonial-person h6{ font-size: 0.95rem; margin-bottom: 2px; }
.rb-testimonial-person span{ font-size: 0.78rem; color: var(--rb-text-soft); }
.owl-carousel .owl-dots{ text-align: center; margin-top: 10px; }
.owl-carousel .owl-dot span{ background: #d6e5e1 !important; width: 10px !important; height: 10px !important; margin: 4px !important; }
.owl-carousel .owl-dot.active span{ background: var(--rb-primary) !important; }
.owl-carousel .owl-nav{ display: none; }

/* =========================================================
   EXPERT / DOCTOR
   ========================================================= */
.rb-expert{ background: #fff; }
.rb-expert-img-wrap{ position: relative; }
.rb-expert-img{ border-radius: var(--rb-radius-lg); box-shadow: var(--rb-shadow-soft); width: 100%; height: 480px; object-fit: cover; }
.rb-expert-name{ font-size: 1.4rem; margin-top: -4px; margin-bottom: 4px; }
.rb-expert-role{ color: var(--rb-primary); font-weight: 600; font-size: 0.9rem; margin-bottom: 18px; }

/* =========================================================
   GALLERY
   ========================================================= */
.rb-gallery{ background: var(--rb-bg-light); }
.rb-masonry{
  column-count: 3; column-gap: 18px;
}
.rb-masonry-item{
  margin-bottom: 18px; border-radius: var(--rb-radius-md); overflow: hidden;
  break-inside: avoid; box-shadow: var(--rb-shadow-card);
}
.rb-masonry-item img{ width: 100%; display: block; transition: transform 0.6s ease; height: 260px; object-fit: cover; }
.rb-masonry-item.rb-tall img{ height: 380px; }
.rb-masonry-item:hover img{ transform: scale(1.14); }
@media (max-width: 768px){ .rb-masonry{ column-count: 2; } }
@media (max-width: 480px){ .rb-masonry{ column-count: 1; } }

/* =========================================================
   FAQ
   ========================================================= */
.rb-faq{ background: #fff; }
.rb-accordion .accordion-item{
  border: none; margin-bottom: 14px; border-radius: var(--rb-radius-sm) !important; overflow: hidden;
  box-shadow: var(--rb-shadow-card);
}
.rb-accordion .accordion-button{
  font-family: var(--rb-font-body); font-weight: 600; font-size: 0.96rem;
  padding: 18px 22px; color: var(--rb-text); background: #fff;
  box-shadow: none !important;
}
.rb-accordion .accordion-button:not(.collapsed){ color: var(--rb-primary); background: var(--rb-primary-light); }
.rb-accordion .accordion-button::after{ flex-shrink: 0; }
.rb-accordion .accordion-body{ font-size: 0.9rem; padding: 4px 22px 22px; color: var(--rb-text-soft); }

/* =========================================================
   ENQUIRY
   ========================================================= */
.rb-enquiry{ position: relative; overflow: hidden; }
.rb-enquiry-bg{ position: absolute; inset: 0; background-size: cover; background-position: center; background-attachment: fixed; }
.rb-enquiry-overlay{ position: absolute; inset: 0; background: linear-gradient(160deg, rgba(21,40,33,0.92), rgba(47,123,98,0.82)); }
.rb-enquiry .container{ position: relative; z-index: 1; }
.rb-enquiry-form{ border-radius: var(--rb-radius-lg); padding: 40px; box-shadow: var(--rb-shadow-soft); }

/* =========================================================
   CTA
   ========================================================= */
.rb-cta{
  background: linear-gradient(120deg, var(--rb-primary-dark), var(--rb-primary));
  padding: 70px 0;
}
.rb-cta-title{ color: #fff; font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 12px; }
.rb-cta-text{ color: rgba(255,255,255,0.82); }

/* =========================================================
   FOOTER
   ========================================================= */
.rb-footer{ background: #16302a; color: rgba(255,255,255,0.75); padding-top: 90px; }
.rb-footer .rb-logo-footer{ color: #fff; }
.rb-footer .rb-logo-footer small{ color: rgba(255,255,255,0.55); }
.rb-footer-text{ color: rgba(255,255,255,0.6); font-size: 0.9rem; margin: 16px 0 22px; max-width: 320px; }
.rb-footer-heading{ color: #fff; font-family: var(--rb-font-display); font-size: 1.05rem; margin-bottom: 20px; }
.rb-footer-links{ list-style: none; padding: 0; margin: 0; }
.rb-footer-links li{ margin-bottom: 12px; }
.rb-footer-links a{ color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: var(--rb-transition); }
.rb-footer-links a:hover{ color: var(--rb-gold); padding-left: 4px; }
.rb-footer-contact{ list-style: none; padding: 0; margin: 0 0 18px; }
.rb-footer-contact li{ margin-bottom: 12px; font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.rb-footer-contact i{ width: 22px; color: var(--rb-gold); }
.rb-map-placeholder{
  border: 1px dashed rgba(255,255,255,0.25); border-radius: var(--rb-radius-sm);
  padding: 20px; display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.6); font-size: 0.85rem;
}
.rb-map-placeholder i{ color: var(--rb-gold); font-size: 1.1rem; }
.rb-social-icons{ display: flex; gap: 10px; }
.rb-social-icons a{
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
  color: #fff; transition: var(--rb-transition);
}
.rb-social-icons a:hover{ background: var(--rb-primary); transform: translateY(-3px); }
.rb-footer-bottom{ border-top: 1px solid rgba(255,255,255,0.1); margin-top: 60px; padding: 22px 0; text-align: center; }
.rb-footer-bottom p{ color: rgba(255,255,255,0.5); font-size: 0.82rem; margin: 0; }

/* =========================================================
   FLOATING BUTTONS
   ========================================================= */
.rb-float-btn{
  position: fixed; z-index: 998;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #fff;
  box-shadow: 0 10px 28px -8px rgba(0,0,0,0.35);
  transition: var(--rb-transition);
}
.rb-float-whatsapp{ background: #25D366; bottom: 28px; left: 28px; }
.rb-float-whatsapp:hover{ background: #1ebd59; transform: scale(1.1); }
.rb-float-call{ background: var(--rb-primary); bottom: 96px; left: 28px; }
.rb-float-call:hover{ background: var(--rb-primary-dark); transform: scale(1.1); }

.rb-back-top{
  position: fixed; z-index: 998; bottom: 28px; right: 28px;
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--rb-text); color: #fff; border: none;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  opacity: 0; visibility: hidden; transform: translateY(20px);
  transition: var(--rb-transition);
  cursor: pointer;
}
.rb-back-top.rb-show{ opacity: 1; visibility: visible; transform: translateY(0); }
.rb-back-top:hover{ background: var(--rb-primary); }

@media (max-width: 576px){
  .rb-float-btn{ width: 48px; height: 48px; font-size: 1.3rem; }
  .rb-float-whatsapp{ bottom: 20px; left: 20px; }
  .rb-float-call{ bottom: 78px; left: 20px; }
  .rb-back-top{ bottom: 20px; right: 20px; width: 44px; height: 44px; }
}

/* AOS init helper - avoid FOUC */
[data-aos]{ pointer-events: auto; }
