:root {
  --bg-light: #f9f9fb;
  --bg-surface: #ffffff;
  --brand-gold: #c59200;
  --brand-gold-hover: #b87f15;
  --brand-dark: #1a1a1a;
  --text-main: #1c1d21;
  --text-muted: #6c757d;
  --border-color: #e5e7eb;

  --rx-gold: #c69214;
  --rx-gold-dark: #a8790c;
  --rx-gold-light: rgba(198, 146, 20, 0.08);
  --rx-dark: #0f1115;
  --rx-charcoal: #1c1f26;
  --rx-text-muted: #64748b;
  --rx-border-color: #e2e8f0;

  --rx-gold-hover: #d49520;
  --rx-dark-bg: #111111;
  --rx-card-bg: #ffffff;
  --rx-text-dark: #121315;
  --rx-ease: cubic-bezier(0.25, 1, 0.5, 1);

  --rx-gold-glow: rgba(244, 171, 0, 0.12);
  --rx-dark-surface: #111215;
  --rx-card-bg: #181a20;
  --rx-border-subtle: rgba(255, 255, 255, 0.08);
  --rx-text-muted: #94a3b8;
  --rx-ease-smooth: cubic-bezier(0.25, 1, 0.5, 1);
  --crimson: #8b1a2e;
  --crimson-d: #6b1223;
  --navy: #162740;
  --gold: #c9a84c;
  --gold-l: #e8cc7a;
  --font-body: "DM Sans", sans-serif;
  --rx-transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
  background-color: var(--bg-light);
  color: var(--text-main);
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}

/* Top Bar */
.top-bar {
  background-color: #f1f3f5;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.85rem;
  color: var(--text-muted);
}
.top-bar a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.top-bar a:hover {
  color: var(--brand-gold);
}

/* Navigation Header */
.navbar-roxia {
  background-color: var(--bg-surface);
  border-bottom: 1px solid var(--border-color);
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
.navbar-brand img {
  max-height: 75px;
  object-fit: contain;
}
.nav-link {
  color: var(--text-main) !important;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin: 0 0.8rem;
  transition: color 0.3s;
}
.nav-link:hover,
.nav-link.active {
  color: var(--brand-gold) !important;
}
.btn-gold {
  background-color: var(--brand-dark);
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  padding: 0.75rem 1.6rem;
  border-radius: 0;
  border: 1px solid var(--brand-dark);
  transition: all 0.3s ease;
}
.btn-gold:hover {
  background-color: var(--brand-gold);
  border-color: var(--brand-gold);
  color: #fff;
}

/* Desktop Multi-Level Dropdown Styling */
@media (min-width: 992px) {
  .dropdown-menu {
    border-radius: 0;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 0.5rem 0;
    margin-top: 0;
  }
  .dropdown-item {
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    color: var(--text-main);
    transition: all 0.2s ease;
  }
  .dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--brand-gold);
  }
  /* Nested Sub-Menu positioning */
  .dropdown-submenu {
    position: relative;
  }
  .dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    display: none;
  }
  .dropdown-submenu:hover > .dropdown-menu {
    display: block;
  }
  /* Hover trigger for desktop navbar */
  .navbar-nav .dropdown:hover > .dropdown-menu {
    display: block;
  }
}

/* Mobile Offcanvas Drawer (Slide in from Right) */
.offcanvas-end {
  width: 320px;
  border-left: 1px solid var(--border-color);
}
.mobile-nav-link {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--text-main);
  text-decoration: none;
  padding: 0.75rem 0;
  display: block;
  border-bottom: 1px solid #f1f1f1;
}
.mobile-submenu-link {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.5rem 1rem;
  display: block;
}
.mobile-submenu-link:hover {
  color: var(--brand-gold);
}

/* Hero Slider Section */
.hero-slider-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(to bottom, rgb(245 245 245 / 87%), rgb(237 237 237 / 80%)),
    url(https://img.stablecog.com/insecure/1920w/aHR0cHM6Ly9iLnN0YWJsZWNvZy5jb20vMTFmNjhmMTctYTM4Yy00ZDk4LTlhOTQtY2UyNmIxMTEyNjVhLmpwZWc.webp);
}
.side-social-bar {
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 10;
}
.side-social-bar a {
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: color 0.3s;
}
.side-social-bar a:hover {
  color: var(--brand-gold);
}

/* Hero Carousel Item styling */
.hero-slide-item {
  padding: 3rem 0;
}
.slide-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--brand-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.slide-subtitle {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-gold);
  margin-bottom: 0.5rem;
}
.slide-title {
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--brand-dark);
  margin-bottom: 1.5rem;
}
.slide-desc {
  color: #303030;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 480px;
  font-weight: 500;
}

/* Product Image Presentation */
.product-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.product-stage img {
  max-height: 500px;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.carousel-item.active .product-stage img {
  transform: scale(1.03);
}

/* Light Theme Geometric Accent */
.geometric-accent {
  position: absolute;
  top: 12px;
  right: 113px;
  width: 120px;
  height: 120px;
  border-right: 3px solid var(--brand-gold);
  border-top: 3px solid var(--brand-gold);
  pointer-events: none;
}

/* Carousel Controls */
.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #000000;
}
.carousel-indicators .active {
  background-color: var(--brand-gold);
  width: 25px;
  border-radius: 5px;
}
.custom-nav-btn {
  background: #ffffff;
  border: 1px solid var(--border-color);
  color: var(--brand-dark);
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}
.custom-nav-btn:hover {
  background-color: var(--brand-dark);
  color: #ffffff;
  border-color: var(--brand-dark);
}

/* Carousel text layout transitions */
.carousel-item .slide-number,
.carousel-item .slide-subtitle,
.carousel-item .slide-title,
.carousel-item .slide-desc,
.carousel-item .btn-gold {
  transition:
    transform 0.6s ease,
    opacity 0.6s ease;
}

.carousel-item:not(.active) .slide-number,
.carousel-item:not(.active) .slide-subtitle,
.carousel-item:not(.active) .slide-title,
.carousel-item:not(.active) .slide-desc,
.carousel-item:not(.active) .btn-gold {
  opacity: 0;
  transform: translateY(20px);
}

.carousel-item.active .slide-number,
.carousel-item.active .slide-subtitle,
.carousel-item.active .slide-title,
.carousel-item.active .slide-desc,
.carousel-item.active .btn-gold {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .side-social-bar {
    display: none;
  }
  .slide-title {
    font-size: 2.2rem;
  }
  .hero-slider-section {
    padding: 2rem 0;
  }
}

/* Outer Section Wrapper */
.rx-luxury-about {
  position: relative;
  background-color: #ffffff;
  padding: 6rem 0;
  overflow: hidden;
}

/* Ambient Wave Lines Background */
.rx-ambient-waves {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  pointer-events: none;
  opacity: 0.6;
  z-index: 1;
}

/* Category Sub-badge */
.rx-meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rx-gold);
  background: var(--rx-gold-light);
  padding: 0.4rem 1rem;
  border-radius: 4px;
  margin-bottom: 1.25rem;
}
.rx-meta-tag span {
  width: 6px;
  height: 6px;
  background-color: var(--rx-gold);
  border-radius: 50%;
  display: inline-block;
}

/* Simulated Main Title (No H1-H6) */
.rx-display-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--rx-dark);
  line-height: 1.15;
  margin-bottom: 2.5rem;
  letter-spacing: -0.5px;
}

/* ===================================================
       FLOATING IMAGE COLLAGE (FLOATED LEFT)
       =================================================== */
.rx-collage-wrapper {
  float: left;
  width: 500px;
  margin-right: 3.5rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}

/* Left Aesthetic Accent Strip */
.rx-accent-strip {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 60px;
  height: 60px;
  border-top: 3px solid var(--rx-gold);
  border-left: 3px solid var(--rx-gold);
  z-index: 1;
}

/* Media Box Frame */
.rx-frame {
  position: relative;
  overflow: hidden;
  background: var(--rx-charcoal);
  box-shadow: 0 20px 40px rgba(15, 17, 21, 0.08);
  border-radius: 2px;
}

.rx-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Water Flow / Wave Shimmer Effect on Hover */
.rx-water-overlay {
  position: absolute;
  top: 0;
  left: -150%;
  width: 75%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  pointer-events: none;
  z-index: 3;
}

.rx-frame:hover img {
  transform: scale(1.05);
}

.rx-frame:hover .rx-water-overlay {
  animation: rxWaterRipple 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes rxWaterRipple {
  0% {
    left: -150%;
    opacity: 1;
  }
  100% {
    left: 200%;
    opacity: 0;
  }
}

/* Primary Image Dimensions */
.rx-frame-primary {
  width: 100%;
  height: 440px;
}

/* Secondary Image Overlay */
.rx-frame-secondary {
  position: absolute;
  bottom: -30px;
  right: -25px;
  width: 240px;
  height: 200px;
  border: 8px solid #ffffff;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  z-index: 4;
}

/* Floating Architectural Badge */
.rx-floating-badge {
  position: absolute;
  top: 30px;
  right: -15px;
  background: var(--rx-dark);
  color: #ffffff;
  padding: 1rem 1.25rem;
  z-index: 5;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-left: 3px solid var(--rx-gold);
}

.rx-badge-number {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--rx-gold);
  line-height: 1;
}

.rx-badge-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.3;
  color: #cbd5e1;
}

/* Clearfix Utility */
.rx-clearfix::after {
  content: "";
  clear: both;
  display: table;
}

/* ===================================================
       DYNAMIC CKEDITOR CONTENT STYLING
       =================================================== */
.ck-editor-content {
  color: #334155;
  font-size: 1.02rem;
  line-height: 1.85;
  position: relative;
  z-index: 2;
}

.ck-editor-content p {
  margin-bottom: 1.5rem;
  color: #475569;
}

/* Simulated Headings inside CKEditor */
.ck-editor-content .editor-heading-lg {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--rx-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

/* Clean Styled List */
.ck-editor-content ul {
  margin: 1.5rem 0;
  padding-left: 0;
}

.ck-editor-content ul li {
  list-style: none;
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  color: var(--rx-dark);
  font-weight: 500;
}

.ck-editor-content ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--rx-gold);
  font-weight: 700;
}

/* Styled Specification Table */
.ck-editor-content table {
  width: 100%;
  margin: 2rem 0;
  border-collapse: collapse;
  background: #ffffff;
  border: 1px solid var(--rx-border-color);
}

.ck-editor-content table th,
.ck-editor-content table td {
  padding: 0.9rem 1.2rem;
  text-align: left;
  font-size: 0.9rem;
}

.ck-editor-content table th {
  background-color: var(--rx-dark);
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
}

.ck-editor-content table td {
  border-top: 1px solid var(--rx-border-color);
  color: #475569;
}

/* Action Buttons Area */
.rx-action-container {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  clear: both;
}

.rx-btn-primary {
  background-color: var(--rx-dark);
  color: #ffffff;
  padding: 1rem 2.25rem;
  font-size: 0.825rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  border-radius: 2px;
  transition: var(--rx-transition);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.rx-btn-primary:hover {
  background-color: var(--rx-gold);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(198, 146, 20, 0.25);
}

.rx-btn-outline {
  background-color: transparent;
  color: var(--rx-dark);
  padding: 1rem 2.25rem;
  font-size: 0.825rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  border: 1px solid var(--rx-dark);
  border-radius: 2px;
  transition: var(--rx-transition);
}

.rx-btn-outline:hover {
  background-color: var(--rx-dark);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Responsive Adaptation */
@media (max-width: 991px) {
  .rx-collage-wrapper {
    float: none;
    width: 100%;
    max-width: 480px;
    margin: 0 auto 3.5rem auto;
  }
  .rx-display-title {
    font-size: 2.25rem;
  }
  .rx-ambient-waves {
    display: none;
  }
}

/* Section Wrapper */
.rx-products-section {
  position: relative;
  background-color: var(--rx-dark-bg);
  padding: 6rem 0 7rem 0;
  overflow: hidden;
}

/* Ambient Gold Wave Background Art */
.rx-products-bg-waves {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.15;
  z-index: 1;
}

/* Header Container Styling */
.rx-products-header {
  text-align: center;
  position: relative;
  z-index: 2;
  margin-bottom: 3.5rem;
}

/* Sub-badge Header Tag */
.rx-product-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--rx-gold);
  margin-bottom: 0.8rem;
}

.rx-product-badge i {
  font-size: 0.85rem;
}

/* Main Section Title (No H1-H6) */
.rx-products-title {
  font-family: "Montserrat", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin: 0;
}

/* ===================================================
       OWL CAROUSEL & PRODUCT CARDS
       =================================================== */
.rx-carousel-container {
  position: relative;
  z-index: 2;
  padding: 0 1rem;
}

/* Card Wrapper */
.rx-product-card {
  background-color: var(--rx-card-bg);
  border-radius: 4px;
  overflow: hidden;
  transition:
    transform 0.4s var(--rx-ease),
    box-shadow 0.4s var(--rx-ease);
  margin: 15px 10px 25px 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
}

.rx-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(244, 171, 0, 0.15);
}

/* Image Display Area */
.rx-product-img-box {
  position: relative;
  width: 100%;
  height: 330px;
  overflow: hidden;
  background-color: #e5e5e5;
}

.rx-product-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--rx-ease);
}

.rx-product-card:hover .rx-product-img-box img {
  transform: scale(1.06);
}

/* Water Wave Ripple Effect on Hover */
.rx-water-ripple {
  position: absolute;
  top: 0;
  left: -130%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  pointer-events: none;
  z-index: 3;
}

.rx-product-card:hover .rx-water-ripple {
  animation: rxWaterFlow 1.1s var(--rx-ease);
}

@keyframes rxWaterFlow {
  0% {
    left: -130%;
  }
  100% {
    left: 230%;
  }
}

/* Card Content Area */
.rx-product-info {
  padding: 1.5rem 1.25rem;
  background-color: #ffffff;
  background-image: radial-gradient(
    circle at 100% 100%,
    rgba(244, 171, 0, 0.08) 0%,
    transparent 60%
  );
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f0f0f0;
}

.rx-brand-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--rx-gold);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.rx-brand-tag::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 2px;
  background-color: var(--rx-gold);
}

.rx-product-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--rx-text-dark);
  margin-bottom: 0.2rem;
  line-height: 1.3;
}

.rx-product-finish {
  font-size: 0.82rem;
  color: var(--rx-text-muted);
  font-weight: 500;
}

/* Explore Circle Button (Matches Screenshot) */
.rx-explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--rx-text-dark);
  font-size: 0.82rem;
  font-weight: 700;
  transition: all 0.3s var(--rx-ease);
  padding-left: 0.5rem;
}

.rx-explore-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--rx-gold);
  color: var(--rx-text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition:
    transform 0.3s var(--rx-ease),
    background-color 0.3s var(--rx-ease),
    color 0.3s;
}

.rx-product-card:hover .rx-explore-icon {
  transform: translateX(4px);
  background-color: var(--rx-text-dark);
  color: var(--rx-gold);
}

/* ===================================================
       CUSTOM OWL CAROUSEL NAV & DOTS
       =================================================== */
.rx-products-carousel .owl-nav {
  position: absolute;
  top: -90px;
  right: 15px;
  display: flex;
  gap: 0.6rem;
}

.rx-products-carousel .owl-nav button.owl-prev,
.rx-products-carousel .owl-nav button.owl-next {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: #222222 !important;
  color: #ffffff !important;
  font-size: 1rem !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--rx-ease);
  border: 1px solid #333333 !important;
}

.rx-products-carousel .owl-nav button.owl-prev:hover,
.rx-products-carousel .owl-nav button.owl-next:hover {
  background: var(--rx-gold) !important;
  color: var(--rx-text-dark) !important;
  border-color: var(--rx-gold) !important;
}

.rx-products-carousel .owl-dots {
  margin-top: 2rem;
  text-align: center;
}

.rx-products-carousel .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: #333333 !important;
  display: inline-block;
  border-radius: 50%;
  transition: all 0.3s var(--rx-ease);
}

.rx-products-carousel .owl-dot.active span {
  width: 28px;
  border-radius: 10px;
  background: var(--rx-gold) !important;
}

@media (max-width: 768px) {
  .rx-products-carousel .owl-nav {
    position: relative;
    top: 0;
    right: 0;
    justify-content: center;
    margin-top: 1.5rem;
  }
  .rx-products-title {
    font-size: 2.1rem;
  }
}

/* Section Wrapper */
.rx-wcu-section {
  position: relative;
  background-color: var(--rx-dark-surface);
  padding: 6rem 0;
  color: #ffffff;
  overflow: hidden;
}

/* Ambient Organic Background Curves */
.rx-wcu-bg-glow {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(244, 171, 0, 0.06) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  pointer-events: none;
  z-index: 1;
}

/* Main Grid Layout (2-Column Flex/Grid) */
.rx-wcu-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ===================================================
       LEFT COLUMN: CREATIVE MEDIA & OVERLAYS
       =================================================== */
.rx-wcu-media-wrapper {
  position: relative;
}

.rx-wcu-image-frame {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--rx-border-subtle);
}

.rx-wcu-image-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--rx-ease-smooth);
}

.rx-wcu-image-frame:hover img {
  transform: scale(1.04);
}

/* Shimmer / Liquid Ripple Overlay */
.rx-wcu-shimmer {
  position: absolute;
  top: 0;
  left: -150%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  pointer-events: none;
  z-index: 3;
}

.rx-wcu-image-frame:hover .rx-wcu-shimmer {
  animation: rxWaterRipple 1.2s var(--rx-ease-smooth);
}

@keyframes rxWaterRipple {
  0% {
    left: -150%;
  }
  100% {
    left: 220%;
  }
}

/* Floating Glassmorphic Quality Badge */
.rx-wcu-glass-badge {
  position: absolute;
  bottom: -25px;
  right: -25px;
  background: rgba(24, 26, 32, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(244, 171, 0, 0.3);
  padding: 1.25rem 1.75rem;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  z-index: 4;
}

.rx-wcu-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--rx-gold);
  color: var(--rx-dark-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.rx-wcu-badge-title {
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.rx-wcu-badge-sub {
  font-size: 0.75rem;
  color: var(--rx-gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

/* Decorative Gold Corner Strip */
.rx-wcu-corner-accent {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 70px;
  height: 70px;
  border-top: 3px solid var(--rx-gold);
  border-left: 3px solid var(--rx-gold);
  z-index: 1;
}

/* ===================================================
       RIGHT COLUMN: INTERACTIVE FEATURE CARDS
       =================================================== */
.rx-wcu-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--rx-gold);
  background: rgba(244, 171, 0, 0.08);
  padding: 0.4rem 1rem;
  border-radius: 4px;
  border: 1px solid rgba(244, 171, 0, 0.2);
  margin-bottom: 1rem;
}

.rx-wcu-title-text {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 2.5rem;
}

/* Feature Items List */
.rx-wcu-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.rx-wcu-feature-card {
  background: var(--rx-card-bg);
  border: 1px solid var(--rx-border-subtle);
  padding: 1.5rem 1.75rem;
  border-radius: 6px;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: all 0.4s var(--rx-ease-smooth);
  position: relative;
  overflow: hidden;
}

.rx-wcu-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background-color: transparent;
  transition: background-color 0.4s var(--rx-ease-smooth);
}

.rx-wcu-feature-card:hover {
  transform: translateX(8px);
  border-color: rgba(244, 171, 0, 0.3);
  background: linear-gradient(
    90deg,
    rgba(244, 171, 0, 0.04) 0%,
    var(--rx-card-bg) 100%
  );
}

.rx-wcu-feature-card:hover::before {
  background-color: var(--rx-gold);
}

.rx-wcu-feature-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: var(--rx-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  transition: all 0.4s var(--rx-ease-smooth);
}

.rx-wcu-feature-card:hover .rx-wcu-feature-icon {
  background: var(--rx-gold);
  color: var(--rx-dark-surface);
  border-color: var(--rx-gold);
  transform: rotateY(180deg);
}

.rx-wcu-feature-heading {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.rx-wcu-feature-desc {
  font-size: 0.9rem;
  color: var(--rx-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Responsive Breakdown */
@media (max-width: 991px) {
  .rx-wcu-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .rx-wcu-glass-badge {
    bottom: -15px;
    right: 10px;
  }
  .rx-wcu-title-text {
    font-size: 2.2rem;
  }
}

/* Section Wrapper */
.rx-counter-section-light {
  position: relative;
  background-color: var(--bg-light);
  background-image: radial-gradient(
    circle at 50% 0%,
    var(--rx-gold-light) 0%,
    transparent 60%
  );
  padding: 5.5rem 0;
  overflow: hidden;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

/* Ambient Background Glows */
.rx-counter-glow-left {
  position: absolute;
  top: 50%;
  left: -10%;
  transform: translateY(-50%);
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, var(--rx-gold-light) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.rx-counter-glow-right {
  position: absolute;
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, var(--rx-gold-light) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Counter Grid Layout */
.rx-counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

/* Individual Light Counter Card */
.rx-counter-card {
  background: var(--bg-surface);
  border: 1px solid var(--rx-border-color);
  border-radius: 8px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition:
    transform 0.4s var(--rx-ease),
    border-color 0.4s var(--rx-ease),
    box-shadow 0.4s var(--rx-ease);
}

/* Water-like Shimmer Sweep on Hover */
.rx-counter-shimmer {
  position: absolute;
  top: 0;
  left: -150%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent 0%,
    var(--rx-gold-light) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  pointer-events: none;
  z-index: 3;
}

.rx-counter-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-gold);
  box-shadow: 0 18px 40px rgba(212, 149, 32, 0.12);
}

.rx-counter-card:hover .rx-counter-shimmer {
  animation: rxCounterShimmer 1.1s var(--rx-ease);
}

@keyframes rxCounterShimmer {
  0% {
    left: -150%;
  }
  100% {
    left: 220%;
  }
}

/* Icon Box */
.rx-counter-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 1.25rem auto;
  background: var(--rx-gold-light);
  border: 1px solid var(--rx-gold-light);
  border-radius: 50%;
  color: var(--rx-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition:
    transform 0.4s var(--rx-ease),
    background 0.4s,
    color 0.4s;
}

.rx-counter-card:hover .rx-counter-icon {
  transform: scale(1.1) rotate(8deg);
  background: var(--brand-gold);
  color: var(--bg-surface);
}

/* Number Display */
.rx-counter-number-wrap {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.rx-counter-symbol {
  color: var(--rx-gold-dark);
}

/* Title & Description */
.rx-counter-label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--text-muted);
  margin: 0;
}

/* Bottom Gold Accent Bar */
.rx-card-bottom-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 3px;
  background: var(--brand-gold);
  transition: width 0.4s var(--rx-ease);
}

.rx-counter-card:hover .rx-card-bottom-line {
  width: 80%;
}

/* Responsive Breakdown */
@media (max-width: 991px) {
  .rx-counter-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 575px) {
  .rx-counter-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================================================
       1. LIGHT TESTIMONIAL SECTION
       =================================================== */
.rx-testimonial-section-light {
  position: relative;
  background-color: var(--bg-light);
  color: var(--text-main);
  padding: 6rem 0 7rem 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

.rx-light-glow {
  position: absolute;
  top: 0;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--rx-gold-light) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.rx-badge-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--brand-gold-hover);
  background: var(--rx-gold-light);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  margin-bottom: 1rem;
}

.rx-title-light {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 3.5rem;
}

/* Testimonial Stage Grid */
.rx-tst-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Primary Hero Showcase Card */
.rx-tst-hero-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 3.5rem 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  transition: var(--rx-transition);
}

.rx-tst-hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--brand-gold);
}

.rx-tst-rating {
  display: flex;
  gap: 0.3rem;
  color: var(--brand-gold);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.rx-tst-quote-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-main);
  font-weight: 500;
  margin-bottom: 2rem;
}

.rx-tst-user-info {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.rx-tst-avatar-wrap {
  position: relative;
  width: 60px;
  height: 60px;
}

.rx-tst-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--brand-gold);
}

.rx-tst-author {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 0;
}

.rx-tst-role {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Interactive Side Selectors */
.rx-tst-select-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.rx-tst-thumb-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 1.25rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  cursor: pointer;
  transition: var(--rx-transition);
  position: relative;
}

.rx-tst-thumb-item:hover,
.rx-tst-thumb-item.active {
  border-color: var(--brand-gold);
  transform: translateX(8px);
  box-shadow: 0 10px 25px rgba(212, 149, 32, 0.1);
}

.rx-tst-thumb-item.active::after {
  content: "";
  position: absolute;
  right: 1.25rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--brand-gold);
}

.rx-tst-thumb-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.rx-tst-thumb-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.2rem;
}

.rx-tst-thumb-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===================================================
       2. DARK FAQ SECTION
       =================================================== */
.rx-faq-section-dark {
  position: relative;
  background-color: var(--rx-dark-surface);
  color: var(--bg-surface);
  padding: 6.5rem 0 7.5rem 0;
  overflow: hidden;
}

.rx-dark-glow {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, var(--rx-gold-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.rx-badge-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--brand-gold);
  background: var(--rx-gold-light);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  border: 1px solid var(--rx-border-subtle);
  margin-bottom: 1rem;
}

.rx-title-dark {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--bg-surface);
  line-height: 1.2;
  margin-bottom: 2.5rem;
}

/* Category Filter Tabs */
.rx-faq-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--rx-border-subtle);
  padding-bottom: 1rem;
  z-index: 2;
  position: relative;
}

.rx-faq-tab-btn {
  background: transparent;
  border: none;
  color: var(--rx-text-muted);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.5rem 1.25rem;
  cursor: pointer;
  border-radius: 4px;
  transition: var(--rx-transition);
}

.rx-faq-tab-btn:hover,
.rx-faq-tab-btn.active {
  color: var(--brand-gold);
  background: var(--rx-gold-light);
}

/* Split Screen Interactive FAQ Grid */
.rx-faq-split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: start;
  position: relative;
  z-index: 2;
}

/* Accordion Column */
.rx-dark-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rx-dark-faq-card {
  background: var(--rx-card-bg);
  border: 1px solid var(--rx-border-subtle);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--rx-transition);
}

.rx-dark-faq-card.active {
  border-color: var(--brand-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.rx-dark-faq-head {
  padding: 1.5rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.rx-dark-faq-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bg-surface);
  margin: 0;
}

.rx-dark-faq-card.active .rx-dark-faq-title {
  color: var(--brand-gold);
}

.rx-dark-faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--rx-dark);
  border: 1px solid var(--rx-border-subtle);
  color: var(--brand-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: var(--rx-transition);
}

.rx-dark-faq-card.active .rx-dark-faq-icon {
  transform: rotate(180deg);
  background: var(--brand-gold);
  color: var(--rx-dark-bg);
}

.rx-dark-faq-body {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s var(--rx-ease-smooth),
    padding 0.4s var(--rx-ease-smooth);
  padding: 0 1.75rem;
}

.rx-dark-faq-card.active .rx-dark-faq-body {
  padding: 0 1.75rem 1.5rem 1.75rem;
}

.rx-dark-faq-text {
  font-size: 0.95rem;
  color: var(--rx-text-muted);
  line-height: 1.7;
  margin: 0;
  border-top: 1px solid var(--rx-border-subtle);
  padding-top: 1rem;
}

/* Live Preview Panel Column */
.rx-faq-preview-panel {
  background: linear-gradient(
    145deg,
    var(--rx-card-bg) 0%,
    var(--rx-charcoal) 100%
  );
  border: 1px solid var(--rx-border-subtle);
  border-radius: 12px;
  padding: 2.5rem;
  position: sticky;
  top: 140px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.rx-preview-badge {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--brand-gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.rx-preview-topic {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem;
  color: var(--bg-surface);
  margin-bottom: 1rem;
}

.rx-preview-snippet {
  font-size: 0.95rem;
  color: var(--rx-text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.rx-preview-support-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed var(--rx-border-subtle);
  padding: 1.25rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rx-preview-support-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand-gold);
  color: var(--rx-dark-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .rx-tst-grid,
  .rx-faq-split-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .rx-faq-preview-panel {
    display: none; /* Hide side panel on small mobile screens */
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

/* optional variants */
.reveal-left {
  transform: translateX(-60px);
}
.reveal-left.reveal-active {
  transform: translateX(0);
}

.reveal-right {
  transform: translateX(60px);
}
.reveal-right.reveal-active {
  transform: translateX(0);
}

.reveal-zoom {
  transform: scale(0.9);
}
.reveal-zoom.reveal-active {
  transform: scale(1);
}

/* Section Wrapper & Floating Decorative Gradients */
.roxia-cta-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    var(--bg-surface) 0%,
    var(--bg-light) 100%
  );
}

.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.6;
  animation: floatBlob 10s infinite alternate ease-in-out;
}

.bg-blob-1 {
  top: -50px;
  right: -50px;
  width: 400px;
  height: 400px;
  background: var(--rx-gold-light);
}

.bg-blob-2 {
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: rgba(212, 149, 32, 0.05);
}

@keyframes floatBlob {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-30px, 40px) scale(1.1);
  }
}

/* Glassmorphism Card Wrapper */
.glass-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  box-shadow:
    0 25px 50px -12px rgba(15, 17, 21, 0.08),
    0 0 0 1px var(--border-color);
  overflow: hidden;
  transition: var(--rx-transition);
}

.glass-card:hover {
  box-shadow:
    0 35px 60px -15px rgba(198, 146, 20, 0.12),
    0 0 0 1px rgba(212, 149, 32, 0.3);
}

/* Header Styling */
.cta-subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-gold);
  display: inline-block;
  margin-bottom: 8px;
}

.cta-title {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--rx-text-dark);
  margin-bottom: 25px;
}

/* Floating Field Input Wrappers */
.form-floating > .form-control,
.form-floating > .form-select {
  background-color: var(--bg-light);
  border: 1.5px solid var(--border-color);
  border-radius: 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  color: var(--text-main);
  transition: var(--rx-transition);
}

.form-floating > label {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-family: "Montserrat", sans-serif;
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
  background-color: var(--bg-surface);
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 4px var(--rx-gold-glow);
}

/* Custom Select Tag Styling */
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23d49520' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

/* Animated Gold Button */
.btn-roxia-animated {
  position: relative;
  background: var(--brand-dark);
  color: #ffffff;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  overflow: hidden;
  transition: var(--rx-transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  z-index: 1;
}

.btn-roxia-animated::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--brand-gold) 0%,
    var(--brand-gold-hover) 100%
  );
  opacity: 0;
  z-index: -1;
  transition: var(--rx-transition);
}

.btn-roxia-animated:hover {
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(212, 149, 32, 0.3);
}

.btn-roxia-animated:hover::before {
  opacity: 1;
}

.btn-roxia-animated i {
  transition: transform 0.3s ease;
}

.btn-roxia-animated:hover i {
  transform: translateX(6px);
}

/* Right Side Info Panel */
.contact-info-panel {
  background: var(--bg-light);
  border-left: 1px solid var(--border-color);
  height: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-card-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  background: var(--bg-surface);
  border: 1px solid var(--rx-border-color);
  border-radius: 14px;
  margin-bottom: 16px;
  transition: var(--rx-transition);
}

.contact-card-item:hover {
  transform: translateX(6px);
  border-color: var(--brand-gold);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.icon-box-animated {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--rx-gold-light);
  color: var(--brand-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--rx-transition);
}

.contact-card-item:hover .icon-box-animated {
  background: var(--brand-gold);
  color: #ffffff;
}

/* Map Box Styling */
.map-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  height: 180px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Live Badge Indicator */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--bg-surface);
  border: 1px solid var(--rx-border-color);
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
}

.pulse-dot-green {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

@media (max-width: 991px) {
  .contact-info-panel {
    border-left: none;
    border-top: 1px solid var(--border-color);
  }
}

/* Main Footer Container */
.roxia-footer {
  background-color: var(--rx-dark);
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  border-top: 1px solid var(--rx-border-subtle);
}

/* Ambient Background Glow */
.roxia-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 200px;
  background: radial-gradient(
    circle,
    var(--rx-gold-glow) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  pointer-events: none;
}

/* Newsletter Card Header */
.footer-newsletter-card {
  background: var(--rx-charcoal);
  border: 1px solid var(--rx-border-subtle);
  border-radius: 20px;
  padding: 35px 40px;
  margin-bottom: 60px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.newsletter-title {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #ffffff;
}

.newsletter-input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.newsletter-input {
  background: var(--rx-dark-surface);
  border: 1px solid var(--rx-border-subtle);
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 12px;
  width: 100%;
  outline: none;
  transition: var(--rx-transition);
}

.newsletter-input:focus {
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 3px var(--rx-gold-glow);
}

.newsletter-btn {
  position: absolute;
  right: 6px;
  background: var(--brand-gold);
  color: #ffffff;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--rx-transition);
}

.newsletter-btn:hover {
  background: var(--brand-gold-hover);
  transform: translateY(-1px);
}

/* Titles & Headlines */
.footer-heading {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 24px;
  position: relative;
}

.footer-heading::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: var(--brand-gold);
  margin-top: 8px;
}

/* Links & Lists */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--rx-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--rx-transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--brand-gold);
  transform: translateX(5px);
}

/* Logo & Description */
.footer-logo {
  max-width: 170px;
  height: auto;
  margin-bottom: 20px;
  filter: brightness(10);
}

.brand-desc {
  color: var(--rx-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Social Icons Circle */
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--rx-charcoal);
  border: 1px solid var(--rx-border-subtle);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  text-decoration: none;
  transition: var(--rx-transition);
}

.social-link:hover {
  background: var(--brand-gold);
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 8px 15px rgba(212, 149, 32, 0.3);
}

/* Contact Details List */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 16px;
  color: var(--rx-text-muted);
  font-size: 0.9rem;
}

.footer-contact-item i {
  color: var(--brand-gold);
  margin-top: 4px;
}

/* Bottom Copyright Bar */
.footer-bottom {
  border-top: 1px solid var(--rx-border-subtle);
  padding: 25px 0;
  margin-top: 60px;
  background-color: var(--rx-dark-surface);
}

.copyright-text {
  color: var(--rx-text-muted);
  font-size: 0.85rem;
  margin: 0;
}

.footer-legal-links a {
  color: var(--rx-text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  margin-left: 20px;
  transition: var(--rx-transition);
}

.footer-legal-links a:hover {
  color: var(--brand-gold);
}

/* ══════════════════════════════════════════════
       CALL NOW — LEFT BOTTOM (stacked above WhatsApp)
    ══════════════════════════════════════════════ */
.call-float {
  position: fixed;
  left: 24px;
  bottom: 104px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

/* Main Call button */
.call-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
  text-decoration: none;
}

/* Outer animated ring */
.call-ring {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(139, 26, 46, 0.35);
  animation: wa-spin-ring 6s linear infinite;
  pointer-events: none;
}
.call-ring::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--crimson);
  box-shadow: 0 0 6px var(--crimson);
}

/* Second pulse ring */
.call-pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(139, 26, 46, 0.15);
  animation: wa-pulse 2.4s ease-out infinite;
  pointer-events: none;
}

/* Circle core */
.call-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-d) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 6px 24px rgba(139, 26, 46, 0.5),
    0 2px 8px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s;
  position: relative;
  z-index: 2;
}
.call-btn:hover .call-circle {
  transform: scale(1.1) rotate(8deg);
  box-shadow:
    0 10px 36px rgba(139, 26, 46, 0.65),
    0 4px 12px rgba(0, 0, 0, 0.2);
}
.call-circle i {
  font-size: 1.4rem;
  color: #fff;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.2));
}

/* "Call" label pill that slides out on hover */
.call-label-pill {
  background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-d) 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0 0 0 0;
  border-radius: 0 50px 50px 0;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  margin-left: -10px;
  height: 40px;
  display: flex;
  align-items: center;
  transition:
    max-width 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s,
    padding 0.28s,
    margin 0.28s;
  box-shadow: 0 4px 18px rgba(139, 26, 46, 0.35);
}
.call-btn:hover .call-label-pill {
  max-width: 130px;
  opacity: 1;
  padding: 0 16px 0 14px;
  margin-left: -8px;
}

/* ══════════════════════════════════════════════
       WHATSAPP — LEFT BOTTOM
    ══════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  left: 24px;
  bottom: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

/* Main WA button */
.wa-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
  text-decoration: none;
}

/* Outer animated ring */
.wa-ring {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.35);
  animation: wa-spin-ring 6s linear infinite;
  pointer-events: none;
}
.wa-ring::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 6px #25d366;
}
@keyframes wa-spin-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Second pulse ring */
.wa-pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.15);
  animation: wa-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

/* Circle core */
.wa-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c4e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 6px 24px rgba(37, 211, 102, 0.5),
    0 2px 8px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s;
  position: relative;
  z-index: 2;
}
.wa-btn:hover .wa-circle {
  transform: scale(1.1) rotate(-8deg);
  box-shadow:
    0 10px 36px rgba(37, 211, 102, 0.65),
    0 4px 12px rgba(0, 0, 0, 0.2);
}
.wa-circle i {
  font-size: 1.55rem;
  color: #fff;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.2));
}

/* "Chat" label pill that slides out on hover */
.wa-label-pill {
  background: linear-gradient(135deg, #25d366 0%, #128c4e 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0 0 0 0;
  border-radius: 0 50px 50px 0;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  margin-left: -10px;
  height: 40px;
  display: flex;
  align-items: center;
  transition:
    max-width 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s,
    padding 0.28s,
    margin 0.28s;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
}
.wa-btn:hover .wa-label-pill {
  max-width: 130px;
  opacity: 1;
  padding: 0 16px 0 14px;
  margin-left: -8px;
}

/* Notification badge */
.wa-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--crimson);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  z-index: 3;
  animation: badge-bounce 0.6s 0.5s ease both;
}
@keyframes badge-bounce {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
}

/* ══════════════════════════════════════════════
       GO TO TOP — RIGHT BOTTOM
    ══════════════════════════════════════════════ */
.gtt-float {
  position: fixed;
  right: 24px;
  bottom: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition:
    opacity 0.35s,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.gtt-float.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Circular progress track */
.gtt-btn {
  position: relative;
  width: 54px;
  height: 54px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SVG progress ring */
.gtt-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.gtt-track {
  fill: none;
  stroke: rgba(22, 39, 64, 0.1);
  stroke-width: 2.5;
}
.gtt-progress {
  fill: none;
  stroke: var(--crimson);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 150.8;
  stroke-dashoffset: 150.8;
  transition: stroke-dashoffset 0.1s linear;
}

/* Inner circle */
.gtt-inner {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.82rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 18px rgba(22, 39, 64, 0.35);
  transition:
    background 0.25s,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.gtt-btn:hover .gtt-inner {
  background: var(--crimson);
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(139, 26, 46, 0.45);
}
.gtt-btn:hover .gtt-inner i {
  animation: arrow-up 0.4s ease both;
}
@keyframes arrow-up {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  45% {
    transform: translateY(-6px);
    opacity: 0;
  }
  46% {
    transform: translateY(6px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Tiny % label below */
.gtt-pct {
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--muted, #6b7a8d);
  letter-spacing: 0.06em;
  text-align: center;
  line-height: 1;
}

/* ── Responsive tweak ── */
@media (max-width: 480px) {
  .wa-float {
    left: 16px;
    bottom: 20px;
  }
  .call-float {
    left: 16px;
    bottom: 92px;
  }
  .gtt-float {
    right: 16px;
    bottom: 20px;
  }
  .wa-circle,
  .call-circle {
    width: 52px;
    height: 52px;
  }
  .wa-circle i,
  .call-circle i {
    font-size: 1.25rem;
  }

  .rx-tst-avatar-wrap {
    position: relative;
    width: 120px;
    height: 60px;
  }
}

/* Outer Wrapper with Fade Edges */
.roxia-marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--rx-dark);
  border-top: 1px solid rgba(212, 149, 32, 0.2);
  border-bottom: 1px solid rgba(212, 149, 32, 0.2);
  padding: 18px 0;
  display: flex;
}

/* Edge Masks for Soft Vignette Fade */
.roxia-marquee-wrapper::before,
.roxia-marquee-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.roxia-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--rx-dark) 0%, transparent 100%);
}

.roxia-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--rx-dark) 0%, transparent 100%);
}

/* Main Flex Track Container */
.marquee-track {
  display: flex;
  width: max-content;
  animation: infiniteMarquee 30s linear infinite;
}

/* Pause animation on hover */
.roxia-marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

/* Individual Content Block Group */
.marquee-content {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-right: 40px;
}

/* Item Styles */
.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: var(--rx-transition);
  cursor: default;
}

.marquee-item:hover {
  color: var(--brand-gold);
}

.marquee-item i {
  color: var(--brand-gold);
  font-size: 1.1rem;
}

.marquee-divider {
  color: var(--rx-gold);
  opacity: 0.4;
  font-size: 0.6rem;
}

/* Seamless Infinite Keyframe Loop */
@keyframes infiniteMarquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
