/* =========================================================
   Rozy Decoration — Premium Frontend Theme
   ========================================================= */
:root {
  --rb-charcoal: #241f2b;
  --rb-charcoal-soft: #3a3242;
  --rb-cream: #faf6f2;
  --rb-blush: #f6dde3;
  --rb-blush-deep: #e8b8c6;
  --rb-purple: #6a4c93;
  --rb-purple-deep: #4b3369;
  --rb-gold: #c9a15a;
  --rb-gold-soft: #e7d3ad;
  --rb-text: #332b3a;
  --rb-muted: #7a7086;
  --rb-font-display: 'Cormorant Garamond', serif;
  --rb-font-body: 'Manrope', sans-serif;
  --rb-radius: 18px;
  --rb-shadow: 0 20px 45px -20px rgba(36, 31, 43, 0.25);
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--rb-font-body);
  color: var(--rb-text);
  background: var(--rb-cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.rb-display {
  font-family: var(--rb-font-body);
  color: var(--rb-charcoal);
  font-weight: 800;
  letter-spacing: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1240px;
}

/* ---------- Utility ---------- */
.rb-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rb-purple);
  font-weight: 700;
  margin-bottom: 10px;
  display: inline-block;
}

.rb-section {
  padding: 80px 0;
}

.rb-section-tight {
  padding: 56px 0;
}

.rb-max-w {
  max-width: 720px;
}

.rb-muted {
  color: var(--rb-muted);
}

.rb-divider {
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--rb-gold), var(--rb-blush-deep));
  border-radius: 3px;
  margin: 16px 0 24px;
}

/* ---------- Buttons ---------- */
.rb-btn-primary {
  background: var(--rb-charcoal);
  color: #fff !important;
  border: none;
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: .25s ease;
  gap: 10px;
}

.rb-btn-primary:hover {
  background: var(--rb-purple-deep);
  transform: translateY(-2px);
  color: #fff !important;
}

.rb-btn-explore {
  background: linear-gradient(135deg, #e83f72, #bd245c);
  box-shadow: 0 9px 18px -12px rgba(189, 36, 92, 0.85);
}

.rb-btn-explore:hover {
  background: linear-gradient(135deg, #d92f65, #a91d50);
  transform: translateY(-2px);
  color: #fff !important;
}

.rb-btn-outline {
  border: 1.5px solid var(--rb-charcoal);
  color: var(--rb-charcoal) !important;
  border-radius: 50px;
  padding: 11px 26px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: .25s ease;
  background: transparent;
}

.rb-btn-outline:hover {
  background: var(--rb-charcoal);
  color: #fff !important;
}

.rb-btn-whatsapp {
  background: #25D366;
  color: #fff !important;
  border-radius: 50px;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 0.9rem;
  gap: 10px;
}

.rb-btn-whatsapp:hover {
  background: #1ebc59;
  color: #fff !important;
}

.rb-btn-gold {
  background: linear-gradient(120deg, var(--rb-gold), var(--rb-gold-soft));
  color: var(--rb-charcoal) !important;
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 0.9rem;
}

/* ---------- Topbar / Header ---------- */
.rb-topbar {
  background: linear-gradient(90deg, var(--rb-charcoal), #312738);
  color: #f5edf6;
  font-size: 0.82rem;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.rb-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.rb-topbar .container {
  max-width: 1540px;
}

.rb-topbar-left,
.rb-topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.rb-topbar-left span,
.rb-topbar-right a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.rb-topbar i {
  color: var(--rb-gold-soft);
  font-size: 0.82rem;
}

.rb-topbar a {
  color: #f5edf6;
  margin-left: 0;
  font-weight: 700;
}

.rb-topbar a:hover {
  color: var(--rb-gold-soft);
}

@media (max-width: 767.98px) {
  .rb-topbar {
    padding: 7px 0;
    font-size: 0.72rem;
  }

  .rb-topbar .container {
    padding-inline: 12px;
  }

  .rb-topbar-inner {
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }

  .rb-topbar-left,
  .rb-topbar-right {
    width: 100%;
    justify-content: center;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .rb-topbar-left::-webkit-scrollbar,
  .rb-topbar-right::-webkit-scrollbar {
    display: none;
  }

  .rb-topbar-left span,
  .rb-topbar-right a {
    flex: 0 0 auto;
  }
}

@media (max-width: 390px) {
  .rb-topbar {
    font-size: 0.68rem;
  }

  .rb-topbar-left,
  .rb-topbar-right {
    gap: 9px;
  }
}

.rb-header {
  background: rgba(250, 246, 242, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(36, 31, 43, 0.06);
}

.rb-brand {
  display: flex;
  align-items: flex-start;
  line-height: 1;
  max-width: 270px;
}

.rb-brand-logo {
  width: clamp(170px, 20vw, 250px);
  height: auto;
  max-height: 66px;
  object-fit: contain;
}

.rb-header .nav-link {
  font-weight: 600;
  color: var(--rb-text);
  font-size: 0.94rem;
  padding: 10px 14px !important;
}

.rb-header .nav-link:hover {
  color: var(--rb-purple);
}

.rb-header .navbar-toggler {
  border: 1px solid rgba(36, 31, 43, 0.16);
  border-radius: 10px;
  padding: 8px 10px;
  box-shadow: none;
}

.rb-header .navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(106, 76, 147, 0.16);
}

.rb-dropdown {
  border: none;
  box-shadow: var(--rb-shadow);
  border-radius: 14px;
  padding: 10px;
}

.rb-dropdown .dropdown-item {
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.9rem;
}

.rb-dropdown .dropdown-item:hover {
  background: var(--rb-blush);
}

.rb-main-nav {
  gap: 2px;
}

.rb-main-nav .nav-link {
  white-space: nowrap;
}

.rb-mega-item {
  position: relative;
}

.rb-more-menu-item>.nav-link {
  color: var(--rb-purple);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-weight: 600;
}

.rb-more-menu-item>.nav-link:hover,
.rb-more-menu-item>.nav-link:focus {
  color: #e83f72;
  background: transparent;
}

.rb-mega-menu {
  width: min(360px, calc(100vw - 36px));
  right: 0;
  left: auto;
  top: calc(100% + 8px);
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(36, 31, 43, 0.08);
  background: #fff;
}

.rb-mega-menu::before {
  content: "";
  position: absolute;
  inset: -10px 0 auto;
  height: 10px;
}

.rb-mega-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}

.rb-mega-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  padding: 10px 11px;
  border-radius: 8px;
  color: var(--rb-text);
}

.rb-mega-links a::after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: rgba(36, 31, 43, 0.35);
  font-size: 0.74rem;
}

.rb-mega-links a:hover,
.rb-mega-links a:focus {
  background: var(--rb-cream);
  color: var(--rb-purple);
}

.rb-mega-links span {
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1.2;
}

.rb-mega-menu-compact {
  width: min(260px, calc(100vw - 36px));
}

.rb-mega-menu-compact .rb-mega-links {
  grid-template-columns: 1fr;
}

@media (min-width: 1200px) {
  .rb-header .container {
    max-width: 1540px;
  }

  .rb-brand {
    max-width: 220px;
  }

  .rb-brand-logo {
    width: clamp(175px, 16vw, 220px);
  }

  .rb-main-nav .nav-link {
    font-size: 0.86rem;
    padding: 10px 10px !important;
  }

  .rb-mega-item>.rb-mega-menu,
  .rb-mega-item>.rb-mega-menu[data-bs-popper] {
    left: auto;
    right: 0;
    top: calc(100% + 8px);
    margin-top: 0;
    transform: none;
  }

  .rb-mega-item:hover>.dropdown-menu,
  .rb-mega-item:focus-within>.dropdown-menu {
    display: block;
  }
}

@media (max-width: 1199.98px) {
  .rb-header .container {
    max-width: 100%;
    padding-inline: 24px;
  }

  .rb-header .navbar {
    min-height: 76px;
  }

  .rb-brand {
    max-width: 230px;
  }

  .rb-brand-logo {
    width: clamp(165px, 44vw, 225px);
    max-height: 58px;
  }

  .rb-header .navbar-collapse {
    background: #fff;
    border: 1px solid rgba(36, 31, 43, 0.08);
    border-radius: 14px;
    box-shadow: 0 24px 50px -34px rgba(36, 31, 43, 0.45);
    margin-top: 12px;
    padding: 14px;
    max-height: calc(100vh - 105px);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
  }

  .rb-header .nav-link {
    padding: 10px 12px !important;
    border-radius: 10px;
  }

  .rb-header .nav-link:hover,
  .rb-header .nav-link:focus {
    background: var(--rb-cream);
  }

  .rb-dropdown {
    box-shadow: none;
    border: 1px solid rgba(36, 31, 43, 0.08);
    margin: 4px 0 8px;
    max-height: none;
    overflow: visible;
  }

  .rb-main-nav {
    gap: 0;
    align-items: stretch !important;
    width: 100%;
  }

  .rb-mega-item {
    width: 100%;
  }

  .rb-mega-menu {
    position: static !important;
    inset: auto !important;
    transform: none !important;
    width: 100%;
    top: auto;
    padding: 8px;
    margin: 0 0 8px;
    border-radius: 10px;
    background: #fffdfc;
  }

  .rb-mega-menu::before {
    display: none;
  }

  .rb-mega-links a {
    min-height: 42px;
    padding: 10px;
  }

  .rb-mega-links span {
    font-size: 0.86rem;
  }

  .rb-mega-links {
    grid-template-columns: 1fr;
  }

  .rb-header-cta {
    padding-top: 12px;
    border-top: 1px solid rgba(36, 31, 43, 0.08);
  }

  .rb-header-cta .btn {
    flex: 1 1 0;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 10px 16px;
    border-radius: 999px;
  }
}

@media (min-width: 1200px) and (max-width: 1320px) {
  .rb-header .nav-link {
    font-size: 0.88rem;
    padding: 9px 9px !important;
  }

  .rb-header-cta {
    margin-left: 14px !important;
  }

  .rb-header-cta .btn {
    padding: 10px 16px;
    font-size: 0.86rem;
  }
}

@media (max-width: 520px) {
  .rb-header .container {
    padding-inline: 16px;
  }

  .rb-brand {
    max-width: calc(100vw - 102px);
  }

  .rb-brand-logo {
    width: min(200px, 100%);
    max-height: 52px;
  }

  .rb-header-cta {
    flex-direction: column;
  }
}

/* ---------- Hero Slider ---------- */
.rb-hero {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 20px 0 26px;
}

.rb-hero-shell {
  width: min(1504px, calc(100% - 32px));
  margin: 0 auto;
}

.rb-hero .carousel-item {
  position: relative;
  height: clamp(260px, 23.8vw, 452px);
  background: #f4edf3;
}

.rb-hero .carousel {
  overflow: hidden;
  border-radius: 10px;
}

.rb-hero .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.rb-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(36, 31, 43, 0.78) 0%, rgba(36, 31, 43, 0.35) 55%, rgba(36, 31, 43, 0.05) 100%);
  display: flex;
  align-items: center;
}

.rb-hero-content {
  max-width: 600px;
  padding: 0 20px;
  color: #fff;
}

.rb-hero-content h1 {
  color: #fff;
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  margin-bottom: 16px;
}

.rb-hero-content p {
  color: #e9e2ee;
  font-size: 1.05rem;
  margin-bottom: 28px;
  max-width: 480px;
}

.rb-hero-slide-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.rb-hero .carousel-indicators [data-bs-target] {
  background: #fff;
  opacity: .72;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  margin: 0 5px;
  padding: 0;
  text-indent: -999px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(36, 31, 43, 0.16);
  transition: opacity .2s ease, transform .2s ease, background-color .2s ease;
}

.rb-hero .carousel-indicators .active {
  opacity: 1;
  background: var(--rb-purple);
  transform: scale(1.18);
}

.rb-hero .carousel-control-prev,
.rb-hero .carousel-control-next {
  width: 4.5%;
  opacity: 0;
  transition: opacity .2s ease;
}

.rb-hero .carousel-indicators,
.rb-hero .carousel-control-prev,
.rb-hero .carousel-control-next {
  z-index: 3;
}

.rb-hero .carousel-indicators {
  bottom: 12px;
  align-items: center;
  gap: 0;
}

.rb-hero .carousel:hover .carousel-control-prev,
.rb-hero .carousel:hover .carousel-control-next {
  opacity: .68;
}

.rb-hero-category-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 24px 28px;
  border: 1px solid rgba(106, 76, 147, 0.12);
  border-radius: 16px;
  background: linear-gradient(105deg, #fffaf7 0%, #fff 58%, #fff5f7 100%);
  box-shadow: 0 12px 30px -26px rgba(36, 31, 43, 0.55);
}

.rb-hero-category-heading h1,
.rb-hero-category-heading h2 {
  margin: 0;
  color: #07101f;
  font-family: var(--rb-font-body);
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  font-weight: 900;
  line-height: 1.25;
  max-width: 900px;
}

.rb-hero-category-heading span {
  display: block;
  width: 36px;
  height: 3px;
  margin: 9px 0 7px;
  border-radius: 3px;
  background: #e83f72;
}

.rb-hero-category-heading p {
  margin: 0;
  color: #6f6f7a;
  max-width: 780px;
  font-size: 0.92rem;
  line-height: 1.4;
}

.rb-hero-category-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  white-space: nowrap;
}

.rb-hero-category-actions .btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.rb-quick-service-heading {
  margin: 0 2px 18px;
}

.rb-quick-service-heading h2 {
  margin: 0;
  color: #07101f;
  font-family: var(--rb-font-body);
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  font-weight: 800;
  line-height: 1.2;
}

.rb-quick-service-heading h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  margin-top: 9px;
  border-radius: 3px;
  background: #e83f72;
}

.rb-quick-service-heading p {
  margin: 10px 0 0;
  color: #6f6f7a;
  font-size: 0.92rem;
  line-height: 1.5;
}

.rb-popular-services-heading {
  margin: 34px 2px 18px;
}

.rb-popular-services-heading h2 {
  margin: 0;
  color: #07101f;
  font-family: var(--rb-font-body);
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  font-weight: 800;
  line-height: 1.2;
}

.rb-popular-services-heading h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  margin-top: 9px;
  border-radius: 3px;
  background: #e83f72;
}

.rb-hero-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 24px 22px;
  margin-top: 0;
}

.rb-hero-category {
  display: grid;
  gap: 10px;
  min-width: 0;
  text-align: center;
  color: var(--rb-charcoal);
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1.2;
}

.rb-hero-category-img {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 0;
  border-radius: 14px;
  background: #ffe1ef;
  box-shadow: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.rb-hero-category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.rb-hero-category-title {
  display: block;
  overflow-wrap: anywhere;
  padding: 0 4px;
}

.rb-hero-category:hover {
  color: var(--rb-purple);
}

.rb-hero-category:hover .rb-hero-category-img {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -20px rgba(36, 31, 43, 0.5);
}

.rb-category-strip {
  background: #fff;
  border-bottom: 1px solid rgba(36, 31, 43, 0.07);
  padding: 26px 0 22px;
}

.rb-category-strip-alt {
  background: #fffaf8;
}

.rb-category-strip-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.rb-category-strip-head h2 {
  margin: 3px 0 0;
  color: #07101f;
  font-family: var(--rb-font-body);
  font-size: clamp(1.35rem, 2.1vw, 1.95rem);
  font-weight: 900;
  line-height: 1.2;
}

.rb-category-strip-head p {
  margin: 8px 0 0;
  max-width: 760px;
  color: #686878;
  font-size: 0.92rem;
  line-height: 1.55;
}

.rb-category-strip-head>span {
  color: #5f6472;
  font-size: 0.92rem;
  white-space: nowrap;
}

.rb-category-scroll {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 166px));
  gap: 22px 24px;
  overflow: visible;
  padding: 2px 2px 8px;
}

.rb-category-tile {
  display: grid;
  grid-template-rows: auto minmax(34px, auto);
  gap: 10px;
  min-width: 0;
  color: #07101f;
  text-align: center;
}

.rb-category-tile-img {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
  background: #ffe1ef;
  border: 2px solid transparent;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.rb-category-tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.rb-category-tile strong {
  display: block;
  padding: 0 4px;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.rb-category-tile:hover,
.rb-category-tile.active {
  color: #e83f72;
}

.rb-category-tile:hover .rb-category-tile-img,
.rb-category-tile.active .rb-category-tile-img {
  border-color: #e83f72;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -22px rgba(36, 31, 43, 0.6);
}

.rb-service-content-wrap {
  width: 100%;
}

.rb-service-main-content {
  padding: 44px 0 52px;
  background: #fff;
}

.rb-service-content-wrap .rb-rich-content {
  max-width: 1110px;
  margin: 0 auto;
  padding: 0;
}

.rb-service-content-wrap .rb-rich-content>h2:first-child {
  margin-top: 0;
  margin-bottom: 12px;
  max-width: 920px;
  font-size: clamp(1.28rem, 1.8vw, 1.62rem);
  line-height: 1.22;
}

.rb-service-content-wrap .rb-rich-content>h2:first-child::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  margin-top: 10px;
  border-radius: 3px;
  background: #e83f72;
}

.rb-service-action-band {
  background: linear-gradient(105deg, #fffaf7 0%, #fff 58%, #fff5f7 100%);
  border-block: 1px solid rgba(36, 31, 43, 0.07);
  padding: 34px 0;
}

.rb-service-action-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.rb-service-action-copy h2,
.rb-service-area-head h2 {
  margin: 4px 0 0;
  color: #07101f;
  font-family: var(--rb-font-body);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 900;
  line-height: 1.22;
}

.rb-service-action-copy p,
.rb-service-area-head p {
  margin: 10px 0 0;
  max-width: 820px;
  color: #686878;
  font-size: 0.95rem;
  line-height: 1.58;
}

.rb-service-action-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.rb-service-action-buttons .btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.rb-service-area-band {
  background: #fff;
  border-bottom: 1px solid rgba(36, 31, 43, 0.07);
  padding: 34px 0;
}

.rb-service-area-head {
  margin-bottom: 18px;
}

.rb-service-area-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rb-service-area-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(106, 76, 147, 0.16);
  border-radius: 999px;
  background: #fffaf8;
  color: var(--rb-purple);
  font-size: 0.9rem;
  font-weight: 700;
}

.rb-service-area-links a:hover,
.rb-service-area-links a:focus {
  background: var(--rb-purple);
  border-color: var(--rb-purple);
  color: #fff;
}

@media (max-width: 767.98px) {
  .rb-hero {
    padding: 10px 0 18px;
  }

  .rb-hero-shell {
    width: min(100% - 20px, 1504px);
  }

  .rb-hero .carousel-item {
    height: clamp(140px, 44vw, 220px);
  }

  .rb-hero .carousel-indicators {
    bottom: 8px;
    margin-bottom: 0;
  }

  .rb-hero .carousel-indicators [data-bs-target] {
    width: 7px;
    height: 7px;
    margin: 0 3px;
    box-shadow: 0 0 0 1px rgba(36, 31, 43, 0.12);
  }

  .rb-hero .carousel-indicators .active {
    transform: scale(1.08);
  }

  .rb-hero .carousel-control-prev,
  .rb-hero .carousel-control-next {
    width: 9%;
    opacity: .62;
  }

  .rb-hero .carousel-control-prev-icon,
  .rb-hero .carousel-control-next-icon {
    width: 1rem;
    height: 1rem;
  }

  .rb-hero-categories {
    display: flex;
    gap: 16px;
    margin-top: 0;
    overflow-x: auto;
    padding: 0 2px 8px;
    scroll-snap-type: x proximity;
  }

  .rb-hero-category {
    flex: 0 0 118px;
    font-size: 0.78rem;
    scroll-snap-align: start;
  }

  .rb-hero-category-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 20px 18px;
    border-radius: 14px;
  }

  .rb-hero-category-heading h1 {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .rb-hero-category-heading p {
    font-size: 0.86rem;
  }

  .rb-hero-category-actions {
    width: 100%;
    flex-wrap: wrap;
    white-space: normal;
  }

  .rb-hero-category-actions .btn {
    flex: 1 1 180px;
  }

  .rb-quick-service-heading {
    margin-bottom: 14px;
  }

  .rb-hero-category-img {
    border-radius: 12px;
  }

  .rb-category-strip {
    padding: 22px 0 16px;
  }

  .rb-category-strip-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
  }

  .rb-category-scroll {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .rb-category-tile strong {
    font-size: 0.78rem;
  }

  .rb-service-action-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .rb-service-action-buttons {
    justify-content: stretch;
  }

  .rb-service-action-buttons .btn {
    flex: 1 1 180px;
  }

  .rb-service-area-links {
    gap: 8px;
  }

  .rb-service-area-links a {
    font-size: 0.82rem;
    min-height: 36px;
    padding: 8px 12px;
  }

  .rb-service-main-content {
    padding: 34px 0 40px;
  }

  .rb-review-slider-section {
    padding: 42px 0;
  }

  .rb-review-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 22px;
  }

  .rb-review-track {
    grid-auto-columns: minmax(270px, 86vw);
  }

  .rb-review-card {
    min-height: 220px;
    padding: 20px;
  }

  .rb-rich-content {
    font-size: 0.86rem;
    line-height: 1.68;
  }

  .rb-rich-content h2 {
    margin-top: 26px;
    padding-top: 0;
  }

  .rb-rich-content h3 {
    margin-top: 20px;
  }

  .rb-rich-content li {
    padding: 0;
  }

  .rb-rich-content li::before {
    content: none;
  }

  .rb-content-seo-links {
    gap: 7px 10px;
    margin-bottom: 18px;
    padding-bottom: 14px;
  }

  .rb-content-seo-links a {
    font-size: 0.8rem;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .rb-hero .carousel-item {
    height: 250px;
  }

  .rb-hero-categories {
    grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
    gap: 20px 16px;
  }
}

/* ---------- Intro / Why choose ---------- */
.rb-intro-figure {
  position: relative;
}

.rb-intro-figure img {
  border-radius: var(--rb-radius);
  box-shadow: var(--rb-shadow);
}

.rb-about-figure img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: center;
}

.rb-intro-badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: #fff;
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: var(--rb-shadow);
  font-family: var(--rb-font-display);
  font-weight: 700;
  color: var(--rb-purple);
}

.rb-intro-badge span {
  display: block;
  font-family: var(--rb-font-body);
  font-size: 0.72rem;
  color: var(--rb-muted);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.rb-feature-row {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(36, 31, 43, 0.08);
}

.rb-feature-row:last-child {
  border-bottom: none;
}

.rb-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--rb-blush);
  color: var(--rb-purple-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.rb-feature-row h6 {
  font-weight: 700;
  margin-bottom: 4px;
}

/* ---------- Compact enquiry forms ---------- */
.rb-form-strip {
  position: relative;
  z-index: 4;
  background: linear-gradient(180deg, #fff 0%, var(--rb-cream) 100%);
  padding: 20px 0;
  border-bottom: 1px solid rgba(36, 31, 43, 0.08);
}

.rb-form-strip-page {
  background: var(--rb-cream);
  padding: 22px 0 0;
  border-bottom: 0;
}

.rb-auto-dismiss {
  transition: opacity .32s ease, transform .32s ease;
}

.rb-alert-hide {
  opacity: 0;
  transform: translateY(-6px);
}

.rb-booking-modal .modal-content {
  position: relative;
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px -34px rgba(36, 31, 43, 0.58);
}

.rb-booking-modal .modal-body {
  padding: 28px;
  background: linear-gradient(180deg, #fff 0%, #fff8fb 100%);
}

.rb-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 10px 24px -18px rgba(36, 31, 43, 0.7);
  opacity: 1;
}

.rb-modal-copy {
  max-width: 620px;
  margin-bottom: 18px;
  padding-right: 44px;
}

.rb-modal-copy h2 {
  margin: 0 0 8px;
  font-family: var(--rb-font-body);
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-weight: 800;
  color: #07101f;
}

.rb-modal-copy p {
  margin: 0;
  color: var(--rb-muted);
  font-size: 0.94rem;
}

.rb-booking-modal .rb-compact-enquiry {
  border-radius: 12px;
  box-shadow: none;
}

.rb-booking-modal .rb-compact-enquiry-title {
  display: none;
}

.rb-booking-modal .rb-compact-enquiry-fields {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rb-booking-modal .rb-compact-message-field {
  grid-column: span 1;
}

@media (max-width: 767.98px) {
  .rb-booking-modal .modal-dialog {
    margin: 12px;
  }

  .rb-booking-modal .modal-body {
    padding: 22px 16px 16px;
  }

  .rb-modal-copy {
    padding-right: 38px;
  }

  .rb-booking-modal .rb-compact-enquiry-fields {
    grid-template-columns: 1fr;
  }
}

/* ---------- Service subcategory showcase ---------- */
.rb-subcategory-showcase {
  background: #fff;
  padding: 38px 0 34px;
}

.rb-subcategory-shell {
  width: min(1504px, calc(100% - 32px));
  margin: 0 auto;
}

.rb-subcategory-block {
  margin-bottom: 22px;
  padding: 28px 24px 18px;
  border-radius: 0;
}

.rb-subcategory-block:nth-child(odd) {
  background: #fff8fb;
}

.rb-subcategory-block:nth-child(even) {
  background: #fff;
}

.rb-subcategory-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
}

.rb-subcategory-head h2 {
  margin: 0;
  color: #07101f;
  font-family: var(--rb-font-body);
  font-size: clamp(1.2rem, 2.2vw, 1.72rem);
  font-weight: 800;
  line-height: 1.2;
}

.rb-subcategory-head span {
  display: block;
  width: 36px;
  height: 3px;
  margin-top: 9px;
  border-radius: 3px;
  background: #e83f72;
}

.rb-subcategory-head>a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  color: #d73b67;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
}

.rb-subcategory-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 238px;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 2px 12px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(106, 76, 147, 0.4) rgba(36, 31, 43, 0.08);
}

.rb-subcategory-card {
  display: block;
  min-width: 0;
  color: #07101f;
  scroll-snap-align: start;
}

.rb-subcategory-img {
  display: block;
  aspect-ratio: 1.05 / 1;
  overflow: hidden;
  border-radius: 14px;
  background: #ffe7f1;
  box-shadow: 0 1px 9px rgba(36, 31, 43, 0.12);
}

.rb-subcategory-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .25s ease;
}

.rb-subcategory-name {
  display: block;
  min-height: 42px;
  margin: 12px 0 0;
  padding: 0 2px;
  color: #07101f;
  font-family: var(--rb-font-body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
}

.rb-subcategory-card:hover .rb-subcategory-img img {
  transform: scale(1.04);
}

.rb-subcategory-card:hover .rb-subcategory-name {
  color: var(--rb-purple);
}

@media (max-width: 767.98px) {
  .rb-subcategory-showcase {
    padding-top: 30px;
  }

  .rb-subcategory-shell {
    width: min(100% - 20px, 1504px);
  }

  .rb-subcategory-block {
    margin-bottom: 18px;
    padding: 22px 12px 14px;
  }

  .rb-subcategory-head {
    margin-bottom: 18px;
  }

  .rb-subcategory-head>a {
    font-size: 0.8rem;
  }

  .rb-subcategory-row {
    grid-auto-columns: 172px;
    gap: 14px;
  }

  .rb-subcategory-img {
    border-radius: 12px;
  }

  .rb-subcategory-name {
    min-height: 38px;
    font-size: 0.84rem;
  }
}

.rb-form-alert {
  margin-bottom: 14px;
}

/* ---------- Homepage background rhythm ---------- */
.rb-home-services,
.rb-home-gallery,
.rb-home-cta {
  background: #fff;
}

.rb-home-process,
.rb-home-faq {
  background: #fff8fb;
}

.rb-areas,
.rb-home-content {
  background: #faf6f2;
}

.rb-home-blogs {
  background: #f7f0fa;
}

.rb-home-seo {
  background: #fff;
}

.rb-compact-enquiry {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(106, 76, 147, 0.14);
  box-shadow: 0 22px 54px -34px rgba(36, 31, 43, 0.42);
  border-radius: 16px;
  padding: 14px 18px 16px;
}

.rb-compact-enquiry::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--rb-purple), var(--rb-blush-deep), var(--rb-gold));
}

.rb-compact-enquiry-title {
  min-width: 0;
  max-width: 720px;
  margin: 0 auto 12px;
  padding: 0;
  text-align: center;
}

.rb-compact-enquiry-title h3 {
  font-size: 1.12rem;
  line-height: 1.15;
  margin: 2px 0 0;
}

.rb-compact-enquiry-fields {
  display: grid;
  grid-template-columns: minmax(140px, 0.78fr) minmax(140px, 0.78fr) minmax(220px, 1.34fr) minmax(120px, 0.52fr) minmax(112px, 0.46fr);
  gap: 10px;
  align-items: center;
  min-width: 0;
}

.rb-compact-field {
  min-width: 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 0 13px;
  border: 1px solid rgba(36, 31, 43, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.rb-compact-message-field {
  grid-column: auto;
}

.rb-compact-field:focus-within {
  background: #fff;
  border-color: rgba(106, 76, 147, 0.42);
  box-shadow: 0 0 0 4px rgba(106, 76, 147, 0.08);
}

.rb-compact-field i {
  color: var(--rb-purple);
  font-size: 0.92rem;
  flex: 0 0 auto;
}

.rb-captcha-field {
  gap: 7px;
  padding-inline: 10px;
}

.rb-captcha-label {
  flex: 0 0 auto;
  color: var(--rb-purple);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.rb-captcha-field .form-control {
  text-align: center;
  min-width: 28px;
}

.rb-captcha-box {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0 13px;
  border: 1px solid rgba(36, 31, 43, 0.12);
  border-radius: 12px;
  background: #fff;
}

.rb-captcha-box i {
  color: var(--rb-purple);
}

.rb-captcha-box .rb-captcha-label {
  font-size: 0.88rem;
}

.rb-captcha-box .form-control {
  min-height: 44px;
  width: 70px;
  padding: 0;
  border: 0;
  box-shadow: none;
  text-align: center;
}

.rb-compact-enquiry .form-control {
  min-height: 42px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 0.92rem;
  box-shadow: none;
}

.rb-compact-enquiry .form-control:focus {
  background: transparent;
  box-shadow: none;
}

.rb-compact-enquiry-inline {
  display: block;
}

.rb-compact-enquiry-panel {
  display: block;
}

.rb-compact-enquiry .btn {
  min-height: 44px;
  border-radius: 12px;
  padding-left: 20px;
  padding-right: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  white-space: nowrap;
  width: 100%;
}

@media (max-width: 1199.98px) {
  .rb-compact-enquiry-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rb-compact-message-field {
    grid-column: span 1;
  }
}

@media (max-width: 767.98px) {
  .rb-compact-enquiry-fields {
    grid-template-columns: 1fr;
  }

  .rb-compact-message-field {
    grid-column: span 1;
  }

  .rb-compact-enquiry .btn {
    width: 100%;
  }
}

/* ---------- Custom scrollbars ---------- */
.rb-sticky-sidebar,
.rb-header .navbar-collapse,
.rb-dropdown {
  scrollbar-width: thin;
  scrollbar-color: rgba(106, 76, 147, 0.55) rgba(36, 31, 43, 0.08);
}

.rb-sticky-sidebar::-webkit-scrollbar,
.rb-header .navbar-collapse::-webkit-scrollbar,
.rb-dropdown::-webkit-scrollbar {
  width: 8px;
}

.rb-sticky-sidebar::-webkit-scrollbar-track,
.rb-header .navbar-collapse::-webkit-scrollbar-track,
.rb-dropdown::-webkit-scrollbar-track {
  background: rgba(36, 31, 43, 0.06);
  border-radius: 999px;
}

.rb-sticky-sidebar::-webkit-scrollbar-thumb,
.rb-header .navbar-collapse::-webkit-scrollbar-thumb,
.rb-dropdown::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--rb-purple), var(--rb-gold));
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.7);
}

/* ---------- Services (editorial, non-card-grid) ---------- */
.rb-service-row {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 52px 0;
  border-bottom: 1px solid rgba(36, 31, 43, 0.08);
}

.rb-service-row:last-child {
  border-bottom: none;
}

.rb-service-row.reverse {
  flex-direction: row-reverse;
}

.rb-service-media {
  flex: 0 0 44%;
}

.rb-service-media img {
  border-radius: var(--rb-radius);
  box-shadow: var(--rb-shadow);
  aspect-ratio: 5/3;
  transition: transform .25s ease, filter .25s ease;
}

.rb-service-media a {
  display: block;
  overflow: hidden;
  border-radius: var(--rb-radius);
}

.rb-service-media a:hover img {
  transform: scale(1.018);
  filter: brightness(0.96);
}

.rb-service-body {
  flex: 1;
}

.rb-service-body h3 a {
  color: inherit;
}

.rb-service-body h3 a:hover {
  color: var(--rb-purple);
}

.rb-service-index {
  font-family: var(--rb-font-display);
  font-size: 3rem;
  color: var(--rb-blush-deep);
  font-weight: 700;
  line-height: 1;
}

.rb-service-subtypes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 22px;
}

.rb-chip {
  border: 1px solid rgba(36, 31, 43, 0.15);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.82rem;
  color: var(--rb-text);
  background: #fff;
  transition: .2s;
}

.rb-chip:hover {
  background: var(--rb-charcoal);
  color: #fff;
  border-color: var(--rb-charcoal);
}

.rb-service-index-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(250, 246, 242, 0.96)),
    var(--rb-cream);
}

.rb-category-intro {
  max-width: 820px;
  margin: 0 auto 42px;
}

.rb-category-intro p {
  max-width: 700px;
  font-size: 1rem;
}

.rb-category-list {
  position: relative;
  border-top: 1px solid rgba(36, 31, 43, 0.12);
}

.rb-category-line {
  display: grid;
  grid-template-columns: 72px minmax(240px, 0.95fr) minmax(0, 1.35fr);
  gap: 28px;
  padding: 28px 22px;
  border-bottom: 1px solid rgba(36, 31, 43, 0.12);
  align-items: center;
  transition: background-color .2s ease;
}

.rb-category-line:nth-child(even) {
  background: rgba(255, 255, 255, 0.52);
}

.rb-category-line:hover {
  background: rgba(246, 221, 227, 0.32);
}

.rb-category-num {
  font-family: var(--rb-font-display);
  font-size: 2.3rem;
  line-height: 1;
  color: var(--rb-blush-deep);
  font-weight: 700;
  position: relative;
}

.rb-category-num::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--rb-gold);
  margin-top: 12px;
}

.rb-category-main>a {
  font-family: var(--rb-font-display);
  color: var(--rb-charcoal);
  font-size: clamp(1.32rem, 1.8vw, 1.75rem);
  font-weight: 700;
  line-height: 1.15;
}

.rb-category-main>a:hover {
  color: var(--rb-purple);
}

.rb-category-main p {
  color: var(--rb-muted);
  margin: 10px 0 0;
  max-width: 560px;
}

.rb-category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  justify-content: flex-start;
}

.rb-category-links a {
  color: var(--rb-charcoal);
  font-weight: 700;
  font-size: 0.88rem;
  border: 1px solid rgba(36, 31, 43, 0.12);
  border-radius: 999px;
  padding: 7px 13px;
  background: rgba(255, 255, 255, 0.72);
}

.rb-category-links a:hover {
  color: #fff;
  background: var(--rb-charcoal);
  border-color: var(--rb-charcoal);
}

.rb-category-note {
  max-width: 540px;
  color: var(--rb-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  padding-left: 18px;
  border-left: 3px solid rgba(208, 164, 104, 0.72);
}

.rb-category-note span {
  display: block;
}

@media (max-width: 860px) {

  .rb-service-row,
  .rb-service-row.reverse {
    flex-direction: column;
  }

  .rb-service-media {
    flex: 0 0 auto;
    width: 100%;
  }

  .rb-category-line {
    grid-template-columns: 52px 1fr;
    gap: 14px 18px;
    padding: 24px 0;
  }

  .rb-category-links {
    grid-column: 2;
  }

  .rb-category-note {
    grid-column: 2;
  }

  .rb-category-num {
    font-size: 1.8rem;
  }
}

@media (max-width: 560px) {
  .rb-category-line {
    grid-template-columns: 1fr;
  }

  .rb-category-links {
    grid-column: auto;
  }

  .rb-category-note {
    grid-column: auto;
  }
}

/* ---------- Why choose us ---------- */
.rb-why-section {
  background: #fff;
}

.rb-why-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
}

.rb-why-lead {
  position: sticky;
  top: 120px;
}

.rb-why-lead p {
  color: var(--rb-muted);
  max-width: 560px;
}

.rb-why-stats {
  margin-top: 34px;
  border-top: 1px solid rgba(36, 31, 43, 0.1);
}

.rb-why-stats div {
  padding: 18px 0;
  border-bottom: 1px solid rgba(36, 31, 43, 0.1);
}

.rb-why-stats strong {
  display: block;
  font-family: var(--rb-font-display);
  color: var(--rb-charcoal);
  font-size: 1.35rem;
  line-height: 1.15;
}

.rb-why-stats span {
  display: block;
  color: var(--rb-muted);
  margin-top: 4px;
}

.rb-why-points {
  border-top: 1px solid rgba(36, 31, 43, 0.1);
}

.rb-why-point {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(36, 31, 43, 0.1);
}

.rb-why-point>span {
  font-family: var(--rb-font-display);
  color: var(--rb-blush-deep);
  font-size: 2.15rem;
  font-weight: 700;
  line-height: 1;
}

.rb-why-point h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.rb-why-point p {
  color: var(--rb-muted);
  margin: 0;
}

@media (max-width: 960px) {
  .rb-why-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .rb-why-lead {
    position: static;
  }
}

@media (max-width: 560px) {
  .rb-why-point {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* ---------- About mission / vision ---------- */
.rb-mission-vision-section {
  background:
    linear-gradient(90deg, rgba(233, 196, 106, 0.14) 0 1px, transparent 1px) 0 0 / 84px 84px,
    linear-gradient(180deg, #fff 0%, var(--rb-cream) 100%);
}

.rb-mission-header {
  max-width: 820px;
  margin-bottom: 44px;
}

.rb-mission-header p {
  color: var(--rb-muted);
  font-size: 1.04rem;
}

.rb-mission-vision-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(36, 31, 43, 0.12);
  border-bottom: 1px solid rgba(36, 31, 43, 0.12);
}

.rb-mission-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 34px;
  padding: 38px 0;
  border-bottom: 1px solid rgba(36, 31, 43, 0.12);
}

.rb-mission-item:last-child {
  border-bottom: 0;
}

.rb-mission-count {
  font-family: var(--rb-font-display);
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.9;
  color: rgba(112, 73, 158, 0.22);
}

.rb-mission-item h3 {
  margin-bottom: 14px;
}

.rb-mission-item p {
  color: var(--rb-muted);
  font-size: 1.01rem;
  line-height: 1.8;
  max-width: 960px;
}

@media (max-width: 767.98px) {
  .rb-mission-header {
    margin-bottom: 26px;
  }

  .rb-mission-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 30px 0;
  }

  .rb-mission-count {
    font-size: 3rem;
  }
}

/* ---------- Areas / Localities ---------- */
.rb-areas {
  background: var(--rb-charcoal);
  color: #efe9f4;
}

.rb-areas h2 {
  color: #fff;
}

.rb-area-pill {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  padding: 9px 18px;
  font-size: 0.86rem;
  color: #efe9f4;
  display: inline-block;
  margin: 5px;
  transition: .2s;
}

.rb-area-pill:hover {
  background: var(--rb-gold);
  color: var(--rb-charcoal);
  border-color: var(--rb-gold);
}

/* ---------- Process ---------- */
.rb-process-step {
  position: relative;
  padding-left: 64px;
  margin-bottom: 34px;
}

.rb-process-num {
  position: absolute;
  left: 0;
  top: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--rb-blush);
  color: var(--rb-purple-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--rb-font-display);
  font-weight: 700;
  font-size: 1.2rem;
}

/* ---------- Gallery ---------- */
.rb-gallery-grid {
  column-count: 3;
  column-gap: 16px;
}

.rb-gallery-grid img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 16px;
  cursor: pointer;
  transition: .3s;
}

.rb-gallery-grid img:hover {
  transform: scale(1.015);
  filter: brightness(0.94);
}

@media (max-width:860px) {
  .rb-gallery-grid {
    column-count: 2;
  }
}

@media (max-width:520px) {
  .rb-gallery-grid {
    column-count: 1;
  }
}

/* ---------- Testimonials ---------- */
.rb-testimonial {
  background: #fff;
  border-radius: var(--rb-radius);
  padding: 34px;
  box-shadow: var(--rb-shadow);
  height: 100%;
}

.rb-testimonial .fa-star {
  color: var(--rb-gold);
  font-size: 0.85rem;
}

.rb-testimonial-quote {
  font-family: var(--rb-font-display);
  font-size: 1.15rem;
  margin: 14px 0;
}

.rb-testimonial-name {
  font-weight: 700;
}

.rb-review-slider-section {
  background: #fff;
  border-block: 1px solid rgba(36, 31, 43, 0.07);
  padding: 58px 0;
}

.rb-review-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.rb-review-score {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--rb-gold);
  font-size: 0.88rem;
  margin-bottom: 8px;
}

.rb-review-score strong {
  color: #5f6472;
  font-size: 0.9rem;
  margin-left: 4px;
}

.rb-review-head h2 {
  margin: 0;
  color: #07101f;
  font-family: var(--rb-font-body);
  font-size: clamp(1.55rem, 2.7vw, 2.2rem);
  font-weight: 900;
  line-height: 1.2;
}

.rb-review-head h2::after {
  content: '';
  display: block;
  width: 38px;
  height: 3px;
  margin-top: 10px;
  border-radius: 3px;
  background: #e83f72;
}

.rb-review-head p {
  margin: 14px 0 0;
  max-width: 800px;
  color: #686878;
  font-size: 0.95rem;
  line-height: 1.58;
}

.rb-review-controls {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}

.rb-review-nav {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(36, 31, 43, 0.12);
  border-radius: 10px;
  background: #fff;
  color: var(--rb-text);
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.rb-review-nav:hover,
.rb-review-nav:focus {
  background: var(--rb-purple);
  border-color: var(--rb-purple);
  color: #fff;
}

.rb-review-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(290px, 370px);
  gap: 16px;
  overflow-x: auto;
  padding: 2px 2px 14px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: thin;
}

.rb-review-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(36, 31, 43, 0.08);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 42px -34px rgba(36, 31, 43, 0.55);
  scroll-snap-align: start;
}

.rb-review-stars {
  color: var(--rb-gold);
  font-size: 0.86rem;
  letter-spacing: 1px;
}

.rb-review-card p {
  margin: 0;
  color: #202033;
  font-size: 0.94rem;
  line-height: 1.6;
}

.rb-review-person {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(36, 31, 43, 0.08);
}

.rb-review-person img,
.rb-review-person span {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
}

.rb-review-person img {
  object-fit: cover;
}

.rb-review-person span {
  display: inline-grid;
  place-items: center;
  background: #ffe3ed;
  color: #e83f72;
  font-weight: 800;
  font-size: 0.82rem;
}

.rb-review-person strong {
  display: block;
  color: #07101f;
  font-size: 0.92rem;
  line-height: 1.2;
}

.rb-review-person small {
  display: block;
  color: #7b7b88;
  font-size: 0.8rem;
  margin-top: 2px;
}

/* ---------- FAQ ---------- */
.rb-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid rgba(36, 31, 43, 0.1);
  background: transparent;
}

.rb-accordion .accordion-button {
  background: transparent;
  font-weight: 800;
  color: var(--rb-charcoal);
  box-shadow: none;
  padding: 20px 0;
  font-family: var(--rb-font-body);
  font-size: 1rem;
  line-height: 1.45;
  letter-spacing: 0;
}

.rb-accordion .accordion-button:not(.collapsed) {
  color: var(--rb-purple);
}

.rb-accordion .accordion-button::after {
  background-size: 1.1rem;
}

.rb-accordion .accordion-body {
  padding: 0 0 22px;
  color: #51475b;
  font-size: 0.95rem;
  line-height: 1.72;
}

/* ---------- CTA band ---------- */
.rb-cta-band {
  background: linear-gradient(120deg, var(--rb-purple), var(--rb-purple-deep));
  border-radius: 28px;
  padding: 56px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.rb-cta-band h2 {
  color: #fff;
}

.rb-cta-band::after {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  right: -80px;
  top: -80px;
}

/* ---------- SEO content block ---------- */
.rb-seo-content {
  max-width: 900px;
}

.rb-seo-content h2 {
  margin-top: 0.4em;
}

.rb-seo-content p {
  color: var(--rb-text);
}

.rb-home-seo {
  background: linear-gradient(180deg, #fff 0%, var(--rb-cream) 100%);
}

.rb-seo-flow {
  margin-top: 42px;
  border-top: 1px solid rgba(36, 31, 43, 0.1);
}

.rb-seo-flow>div {
  display: grid;
  grid-template-columns: 80px minmax(220px, 0.45fr) minmax(0, 1fr);
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(36, 31, 43, 0.1);
  align-items: start;
}

.rb-seo-flow span {
  font-family: var(--rb-font-display);
  color: var(--rb-blush-deep);
  font-size: 2.1rem;
  line-height: 1;
  font-weight: 700;
}

.rb-seo-flow h3,
.rb-seo-split h3 {
  font-size: 1.35rem;
  margin: 0;
}

.rb-seo-flow p,
.rb-seo-split p {
  color: var(--rb-muted);
  margin: 0;
}

.rb-seo-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 46px;
  margin-top: 42px;
  padding-top: 36px;
  border-top: 1px solid rgba(36, 31, 43, 0.1);
}

.rb-seo-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.rb-seo-keywords a {
  border: 1px solid rgba(36, 31, 43, 0.14);
  border-radius: 50px;
  padding: 8px 16px;
  background: #fff;
  color: var(--rb-purple);
  font-weight: 700;
  font-size: 0.86rem;
}

.rb-seo-keywords a:hover {
  background: var(--rb-charcoal);
  color: #fff;
  border-color: var(--rb-charcoal);
}

@media (max-width: 760px) {
  .rb-seo-flow>div,
  .rb-seo-split {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ---------- Rich content (TinyMCE output) ---------- */
.rb-rich-content {
  color: #202033;
  font-size: 0.88rem;
  line-height: 1.72;
}

.rb-rich-content h2 {
  margin: 30px 0 10px;
  padding-top: 0;
  border-top: 0;
  color: #07101f;
  font-family: var(--rb-font-body);
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  font-weight: 850;
  line-height: 1.28;
  letter-spacing: 0;
}

.rb-rich-content h3 {
  margin: 24px 0 8px;
  color: #111827;
  font-family: var(--rb-font-body);
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0;
}

.rb-rich-content p {
  max-width: 1080px;
  margin: 0 0 14px;
  color: #2d3142;
}

.rb-rich-content h2:first-child+p,
.rb-rich-content>p:first-child {
  color: #4e5366;
  font-size: 0.9rem;
  line-height: 1.72;
}

.rb-rich-content ul,
.rb-rich-content ol {
  display: block;
  max-width: 980px;
  margin: 10px 0 18px;
  padding-left: 1.2rem;
  list-style: disc;
}

.rb-rich-content li {
  margin: 0 0 6px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #2d3142;
}

.rb-rich-content li::before {
  content: none;
}

.rb-rich-content a {
  color: #e83f72;
  font-weight: 650;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.rb-content-seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  max-width: 1050px;
  margin: 0 0 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(36, 31, 43, 0.08);
}

.rb-content-seo-links a {
  color: #e83f72;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.rb-content-seo-links a:hover,
.rb-content-seo-links a:focus {
  color: var(--rb-purple);
}

.rb-rich-content img {
  border-radius: 12px;
  margin: 24px 0;
  box-shadow: 0 18px 40px -32px rgba(36, 31, 43, 0.55);
}

.rb-rich-content table {
  width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 10px;
}

.rb-rich-content table td,
.rb-rich-content table th {
  border: 1px solid #e4dde6;
  padding: 12px 14px;
  vertical-align: top;
}

.rb-rich-content table th {
  background: #fff;
  color: #07101f;
  font-weight: 800;
}

.rb-info-panel {
  background: var(--rb-cream);
  border: 1px solid rgba(36, 31, 43, 0.08);
  border-radius: var(--rb-radius);
  padding: 28px;
  height: 100%;
}

.rb-two-col-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.rb-two-col-list div {
  background: #fff;
  border: 1px solid rgba(36, 31, 43, 0.08);
  border-radius: 14px;
  padding: 16px 18px;
  font-weight: 600;
}

.rb-two-col-list i {
  color: var(--rb-purple);
  margin-right: 8px;
}

.rb-faq-section {
  background: #fff;
}

@media (max-width: 720px) {
  .rb-two-col-list {
    grid-template-columns: 1fr;
  }
}

/* ---------- Footer ---------- */
.rb-footer {
  background: var(--rb-charcoal);
  color: #c9c1d1;
  padding: 72px 0 24px;
}

.rb-footer .rb-brand {
  max-width: 300px;
}

.rb-footer-logo {
  width: min(280px, 100%);
  max-height: none;
}

.rb-footer-heading {
  color: #fff;
  font-weight: 700;
  margin-bottom: 18px;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.rb-footer-text {
  font-size: 0.9rem;
  color: #b3aac0;
}

.rb-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rb-footer-links li {
  margin-bottom: 10px;
}

.rb-footer-links a {
  font-size: 0.88rem;
  color: #c9c1d1;
}

.rb-footer-links a:hover {
  color: var(--rb-gold-soft);
}

.rb-footer-areas {
  columns: 1;
}

.rb-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}

.rb-social a:hover {
  background: var(--rb-gold);
  border-color: var(--rb-gold);
  color: var(--rb-charcoal);
}

.rb-footer-divider {
  border-color: rgba(255, 255, 255, 0.12);
  margin: 44px 0 22px;
}

.rb-footer-contact span {
  display: inline-block;
  margin-right: 22px;
  font-size: 0.85rem;
  color: #b3aac0;
}

.rb-footer-legal a {
  margin-left: 18px;
  font-size: 0.85rem;
  color: #b3aac0;
}

.rb-footer-legal a:hover {
  color: #fff;
}

.rb-footer-copy {
  font-size: 0.8rem;
  color: #8b8195;
  margin-top: 22px;
}

.rb-footer-credit {
  margin-top: 6px;
  font-size: 0.82rem;
  color: #a89cb5;
}

.rb-footer-credit a {
  color: #f0c66b;
  font-weight: 800;
}

.rb-footer-credit a:hover {
  color: #fff;
}

/* ---------- Float WhatsApp (mobile) ---------- */
.rb-float-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 1000;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* ---------- Breadcrumb ---------- */
.rb-breadcrumb {
  padding: 18px 0;
  font-size: 0.86rem;
}

.rb-breadcrumb .breadcrumb-item a {
  color: var(--rb-purple);
}

.rb-breadcrumb .breadcrumb-item.active {
  color: var(--rb-muted);
}

/* ---------- Sticky sidebars ---------- */
.rb-sticky-sidebar {
  width: 100%;
}

.rb-sticky-sidebar > :last-child {
  margin-bottom: 0 !important;
}

@media (min-width: 992px) {
  .rb-sticky-sidebar {
    position: sticky;
    top: 104px;
    padding-right: 4px;
  }
}

@media (max-width: 991.98px) {
  .rb-sticky-sidebar {
    position: static;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }
}

/* ---------- Reveal animation ---------- */
.rb-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.rb-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .rb-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Page header band (interior pages) ---------- */
.rb-page-header {
  background: linear-gradient(120deg, var(--rb-blush) 0%, var(--rb-cream) 100%);
  padding: 64px 0 40px;
}

.rb-page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.62fr);
  align-items: center;
  gap: 42px;
}

.rb-page-hero-copy {
  min-width: 0;
}

.rb-page-header h1 {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  margin-bottom: 6px;
}

.rb-page-hero-image {
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: #ffe1ef;
  box-shadow: 0 22px 48px -34px rgba(36, 31, 43, 0.65);
  border: 1px solid rgba(36, 31, 43, 0.08);
}

.rb-page-hero-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-position: center;
}

@media (max-width: 991.98px) {
  .rb-page-hero-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .rb-page-hero-image img {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 575.98px) {
  .rb-page-header {
    padding: 42px 0 30px;
  }

  .rb-page-hero-image {
    border-radius: 12px;
  }
}

/* ---------- Blog ---------- */
.rb-blog-featured {
  display: flex;
  gap: 36px;
  align-items: center;
  background: #fff;
  border-radius: var(--rb-radius);
  overflow: hidden;
  box-shadow: var(--rb-shadow);
  margin-bottom: 44px;
}

.rb-blog-featured img {
  width: 46%;
  height: 340px;
  object-fit: cover;
}

.rb-blog-featured-body {
  padding: 30px 34px 30px 0;
}

.rb-blog-list-item {
  display: flex;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(36, 31, 43, 0.08);
}

.rb-blog-list-item img {
  width: 230px;
  height: 150px;
  border-radius: 12px;
  flex-shrink: 0;
}

.rb-blog-meta {
  font-size: 0.78rem;
  color: var(--rb-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.rb-blog-share {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(106, 76, 147, 0.14);
  border-radius: 18px;
  background: linear-gradient(120deg, #fff 0%, rgba(246, 221, 227, 0.55) 100%);
  box-shadow: 0 18px 40px -28px rgba(36, 31, 43, 0.36);
}

.rb-share-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.rb-share-btn {
  min-width: 42px;
  height: 42px;
  padding: 0 13px;
  border: 1px solid rgba(36, 31, 43, 0.12);
  border-radius: 999px;
  background: #fff;
  color: var(--rb-purple);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.rb-share-btn:hover,
.rb-share-btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -18px rgba(36, 31, 43, 0.42);
  background: var(--rb-purple);
  color: #fff;
}

.rb-copy-share {
  min-width: 86px;
}

.rb-share-status {
  position: absolute;
  right: 20px;
  bottom: -26px;
  color: var(--rb-purple);
  font-size: 0.82rem;
  font-weight: 800;
}

.rb-share-actions-side {
  justify-content: flex-start;
}

.rb-home-blogs {
  background: #fff;
}

.rb-home-blog-list {
  border-top: 1px solid rgba(36, 31, 43, 0.1);
}

.rb-home-blog-item {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(36, 31, 43, 0.1);
  align-items: center;
}

.rb-home-blog-image {
  display: block;
  overflow: hidden;
  border-radius: 14px;
}

.rb-home-blog-image img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform .25s ease, filter .25s ease;
}

.rb-home-blog-image:hover img {
  transform: scale(1.02);
  filter: brightness(0.96);
}

.rb-home-blog-body h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.rb-home-blog-body h3 a {
  color: inherit;
}

.rb-home-blog-body h3 a:hover {
  color: var(--rb-purple);
}

.rb-text-link {
  color: var(--rb-purple);
  font-weight: 700;
  font-size: 0.92rem;
}

.rb-text-link:hover {
  color: var(--rb-charcoal);
}

@media (max-width:760px) {
  .rb-blog-featured {
    flex-direction: column;
  }

  .rb-blog-featured img {
    width: 100%;
    height: 220px;
  }

  .rb-blog-featured-body {
    padding: 0 24px 26px;
  }

  .rb-blog-list-item {
    flex-direction: column;
  }

  .rb-blog-list-item img {
    width: 100%;
    height: 180px;
  }

  .rb-blog-share {
    display: block;
  }

  .rb-share-actions {
    justify-content: flex-start;
    margin-top: 14px;
  }

  .rb-share-status {
    position: static;
    display: block;
    margin-top: 8px;
  }

  .rb-home-blog-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ---------- 404 ---------- */
.rb-404 {
  text-align: center;
  padding: 120px 0;
}

.rb-404 h1 {
  font-size: 6rem;
  color: var(--rb-blush-deep);
}
