: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);
}


/* Section Container */
    .rx-hero-section {
        position: relative;
        width: 100%;
        min-height: 90vh;
        display: flex;
        align-items: center;
        overflow: hidden;
        background-color: var(--rx-dark);
        border-bottom: 1px solid var(--border-color);
    }

    /* Background Video & Overlay */
    .rx-hero-video {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        transform: translate(-50%, -50%);
        object-fit: cover;
        z-index: 1;
        filter: brightness(0.65) contrast(1.05);
    }

    /*.rx-hero-overlay {*/
    /*    position: absolute;*/
    /*    inset: 0;*/
    /*    background: radial-gradient(circle at 20% 50%, rgba(249, 249, 251, 0.4) 0%, transparent 60%),*/
    /*                linear-gradient(to right, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.25) 100%);*/
    /*    z-index: 2;*/
    /*    pointer-events: none;*/
    /*}*/

    /* Ambient Glow behind the box */
    .rx-hero-glow {
        position: absolute;
        top: 20%;
        left: 5%;
        width: 450px;
        height: 450px;
        background: radial-gradient(circle, var(--rx-gold-light) 0%, transparent 70%);
        z-index: 2;
        pointer-events: none;
    }

    /* Creative Glassmorphism Content Box (Light-Themed) */
    .rx-hero-card {
        /*background: rgba(255, 255, 255, 0.82);*/
        /*backdrop-filter: blur(5px);*/
        /*-webkit-backdrop-filter: blur(16px);*/
        /*border: 1px solid var(--border-color);*/
        /*border-radius: 20px;*/
        padding: .5rem 1rem;
        max-width: 650px;
        /*box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);*/
        position: absolute;
        /*top: 125px;*/
        left: 0%;
        z-index: 3;
        transition: var(--rx-transition);
        animation: rxHeroFadeUp 1s var(--rx-ease-smooth);
    }

    .rx-hero-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background-color: var(--brand-gold);
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
    }

    /* Badge & Titles */
    .rx-hero-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: #fff;
        background: var(--rx-gold-light);
        padding: 0.4rem 1.1rem;
        border-radius: 50px;
        border: 1px solid var(--border-color);
        margin-bottom: 1.25rem;
    }

    .rx-hero-title {
        font-family: 'Playfair Display', Georgia, serif;
        font-size: 3.2rem;
        font-weight: 800;
        color: #fff;
        line-height: 1.15;
        margin-bottom: 1.25rem;
    }

    .rx-hero-title span {
        color: var(--brand-gold);
        background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-hover) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .rx-hero-subtitle {
        font-size: 1.05rem;
        line-height: 1.7;
        color: #fff;
        /*margin-bottom: 2rem;*/
    }

 

    /* CTA Button Group */
    .rx-hero-cta-group {
        display: flex;
        align-items: center;
        gap: 1.25rem;
    }

    .rx-hero-btn-primary {
        background: transparent;
        border:1px solid var(--brand-gold);
        color: var(--bg-surface);
        padding: 1rem 2rem;
        border-radius: 10px;
        font-weight: 700;
        font-size: 0.95rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        box-shadow: 0 10px 25px rgba(212, 149, 32, 0.25);
        transition: var(--rx-transition);
    }

    .rx-hero-btn-primary:hover {
        background: var(--brand-gold-hover);
        color: var(--bg-surface);
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(212, 149, 32, 0.35);
    }

    .rx-hero-btn-secondary {
        background: var(--bg-surface);
        color: var(--text-main);
        border: 1px solid var(--border-color);
        padding: 1rem 1.75rem;
        border-radius: 10px;
        font-weight: 700;
        font-size: 0.95rem;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        transition: var(--rx-transition);
    }

    .rx-hero-btn-secondary:hover {
        border-color: var(--brand-gold);
        color: var(--brand-gold-hover);
        transform: translateY(-3px);
        background: var(--bg-surface);
    }

    /* Floating Status Indicator Badge */
    .rx-hero-floating-stat {
        position: absolute;
        right: -30px;
        bottom: 30px;
        background: var(--bg-surface);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        padding: 1rem 1.25rem;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
        display: flex;
        align-items: center;
        gap: 0.85rem;
        animation: rxHeroFloat 4s ease-in-out infinite;
    }

    .rx-stat-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--rx-gold-light);
        color: var(--brand-gold);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
    }

    /* Keyframe Animations */
    @keyframes rxHeroFadeUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes rxHeroFloat {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }

    /* Responsive Breakdown */
    @media (max-width: 991px) {
        .rx-hero-card {
            max-width: 100%;
            padding: 2.5rem 2rem;
        }
        .rx-hero-floating-stat {
            display: none;
        }
        .rx-hero-title {
            font-size: 2.5rem;
        }
    }

    @media (max-width: 575px) {
        .rx-hero-cta-group {
            flex-direction: column;
            align-items: stretch;
        }
    }

/* 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;
  /*height:120px;*/
}

.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;
  }
}

/* 1. PARENT FIX: Ensures sticky works even inside existing template wrappers */
  .rx-why-section-wrapper {
    overflow: visible !important;
    position: relative;
    width: 100%;
  }

  .rx-why-section {
    padding: 100px 0;
    background-color: var(--bg-light, #f9f9fb);
    position: relative;
  }

  /* Left Side Sticky Container */
  .rx-sticky-left-box {
    position: -webkit-sticky;
    position: sticky;
    top: 120px; /* Adjusts automatically if header exists */
    z-index: 5;
    will-change: transform;
  }

  .rx-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brand-gold-hover, #b87f15);
    background: var(--rx-gold-light, rgba(198, 146, 20, 0.08));
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    border: 1px solid var(--border-color, #e5e7eb);
    margin-bottom: 1.25rem;
  }

  .rx-sticky-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-main, #1c1d21);
    line-height: 1.2;
    margin-bottom: 1.25rem;
  }

  .rx-sticky-title span {
    color: var(--brand-gold, #c59200);
  }

  .rx-sticky-desc {
    color: var(--text-muted, #6c757d);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
  }

  /* Step Indicators */
  .rx-scroll-progress-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .rx-nav-step {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-muted, #6c757d);
    transition: var(--rx-transition, all 0.4s ease);
    cursor: pointer;
    text-decoration: none;
  }

  .rx-nav-step .rx-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-color, #e5e7eb);
    background: var(--bg-surface, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: var(--rx-transition, all 0.4s ease);
  }

  .rx-nav-step.active {
    color: var(--text-main, #1c1d21);
  }

  .rx-nav-step.active .rx-step-num {
    background-color: var(--brand-gold, #c59200);
    border-color: var(--brand-gold, #c59200);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(197, 146, 0, 0.3);
  }

  /* Timeline Container */
  .rx-scroll-cards-wrapper {
    position: relative;
    padding-left: 28px;
    border-left: 2px dashed var(--border-color, #e5e7eb);
  }

  /* Scroll Cards */
  .rx-scroll-card {
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border-color, #e5e7eb);
    border-radius: 16px;
    padding: 40px 36px;
    margin-bottom: 60px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    opacity: 0.35;
    transform: translateY(15px);
    transition: var(--rx-transition, all 0.4s ease);
    will-change: opacity, transform;
    scroll-margin-top: 140px;
  }

  .rx-scroll-card:last-child {
    margin-bottom: 0;
  }

  .rx-scroll-card.active-scroll {
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    border-color: var(--brand-gold, #c59200);
  }

  /* Timeline Nodes */
  .rx-scroll-card::before {
    content: '';
    position: absolute;
    left: -41px;
    top: 45px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bg-surface, #ffffff);
    border: 3px solid var(--border-color, #e5e7eb);
    transition: var(--rx-transition, all 0.4s ease);
  }

  .rx-scroll-card.active-scroll::before {
    border-color: var(--brand-gold, #c59200);
    background: var(--brand-gold, #c59200);
    box-shadow: 0 0 0 6px var(--rx-gold-light, rgba(198, 146, 20, 0.15));
  }

  .rx-card-icon-box {
    width: 58px;
    height: 58px;
    background: var(--rx-gold-light, rgba(198, 146, 20, 0.08));
    color: var(--brand-gold, #c59200);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    transition: var(--rx-transition, all 0.4s ease);
  }

  .rx-scroll-card.active-scroll .rx-card-icon-box {
    background: var(--brand-gold, #c59200);
    color: #ffffff;
    transform: scale(1.05);
  }

  .rx-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-main, #1c1d21);
    margin-bottom: 12px;
  }

  .rx-card-text {
    color: var(--text-muted, #6c757d);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 0;
  }

  @media (max-width: 991px) {
    .rx-sticky-left-box {
      position: relative !important;
      top: 0 !important;
      margin-bottom: 40px;
    }
    .rx-scroll-card {
      opacity: 1 !important;
      transform: none !important;
    }
  }

/* 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:10px 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-image:url('../image/img/img.webp') ;
  background-size:cover;
  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: .8fr 1.2fr;
  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: 1rem 0;
}

/* 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%);
  }
}


/* Section Base Setup */
    .rx-showcase-section {
        background-color: var(--bg-light);
        padding-bottom: 1rem; 
        padding-top: 1rem;
        position: relative;
    }

    /* Grid Layout */
    .rx-showcase-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    /* Individual Showcase Card */
    .rx-showcase-card {
        position: relative;
        height: 680px;
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid var(--rx-border-color);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
        transition: var(--rx-transition);
    }

    .rx-showcase-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
        border-color: var(--brand-gold);
    }

    /* Card Background Image */
    .rx-showcase-bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s var(--rx-ease-smooth);
    }

    .rx-showcase-card:hover .rx-showcase-bg {
        transform: scale(1.05);
    }

    /* Soft Gradient Overlay for Readability */
    .rx-showcase-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.65) 0%,
            rgba(0, 0, 0, 0.2) 50%,
            rgba(0, 0, 0, 0) 100%
        );
        z-index: 1;
    }

    /* Glassmorphism Content Box at Bottom */
    .rx-showcase-content {
        position: absolute;
        bottom: 2.5rem;
        left: 2.5rem;
        right: 2.5rem;
        z-index: 2;
        background: #fff0;
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(12px);
        padding: 2rem 2.25rem; 
        transition: var(--rx-transition);
    }

    .rx-showcase-badge {
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: #fff;
        margin-bottom: 0.4rem;
        display: block;
    }

    .rx-showcase-title {
        font-family: 'Playfair Display', Georgia, serif;
        font-size: 2rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 0.75rem;
        line-height: 1.2;
    }

    .rx-showcase-desc {
        font-size: 0.92rem;
        color: var(--text-muted);
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    /* Creative Action Button */
    .rx-showcase-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        font-size: 0.85rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #fff;
        text-decoration: none;
        padding: 0.6rem 1.25rem;
        border-radius: 50px;
        background: var(--rx-gold-light);
        border: 1px solid var(--border-color);
        transition: var(--rx-transition);
    }

    .rx-showcase-btn i {
        color: #fff;
        transition: transform 0.3s var(--rx-ease);
    }

     

    .rx-showcase-card:hover .rx-showcase-btn i {
        color: var(--bg-surface);
        transform: translateX(4px);
    }

    /* Responsive Breakdown */
    @media (max-width: 991px) {
        .rx-showcase-grid {
            grid-template-columns: 1fr;
        }
        .rx-showcase-card {
            height: 480px;
        }
    }

    @media (max-width: 575px) {
        .rx-showcase-content {
            bottom: 1.25rem;
            left: 1.25rem;
            right: 1.25rem;
            padding: 1.5rem;
        }
        .rx-showcase-title {
            font-size: 1.6rem;
        }
    }
    
    /* Main Dark Container Base */
    .rx-pillar-section-dark {
        background-color: #1e1e1e;
        color: #ffffff;
        padding: 5rem 0 6rem 0;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    }

    /* Grid Layout for Title + 4 Features */
    .rx-pillar-grid {
        display: grid;
        grid-template-columns: 1.1fr 2.9fr;
        gap: 3.5rem;
        align-items: center;
    }

    /* Left Heading Styling */
    .rx-pillar-main-title {
        font-family: 'Playfair Display', Georgia, serif;
        font-size: 2.75rem;
        font-weight: 700;
        color: #ffffff;
        line-height: 1.25;
        letter-spacing: -0.5px;
    }

    /* Right 4-Column Feature Container */
    .rx-features-row {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        position: relative;
    }

    /* Individual Column Item */
    .rx-feature-col {
        padding: 0 1.5rem;
        position: relative;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Subtle Vertical Border Dividers */
    .rx-feature-col:not(:first-child)::before {
        content: "";
        position: absolute;
        left: 0;
        top: 10%;
        height: 80%;
        width: 1px;
        background-color: rgba(255, 255, 255, 0.15);
    }

    /* Icon Box */
    .rx-feature-icon-wrapper {
        width: 64px;
        height: 64px;
        margin-bottom: 1.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-size: 2rem;
        transition: transform 0.3s ease, color 0.3s ease;
    }

    .rx-feature-col:hover .rx-feature-icon-wrapper {
        transform: translateY(-5px);
        color: var(--brand-gold, #d49520);
    }

    /* Column Typography */
    .rx-feature-title {
        font-size: 1.05rem;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 0.85rem;
        line-height: 1.35;
    }

    .rx-feature-desc {
        font-size: 0.88rem;
        color: rgba(255, 255, 255, 0.65);
        line-height: 1.6;
        margin: 0;
    }

    /* Responsive Breakdown for Tablets & Mobile */
    @media (max-width: 1199px) {
        .rx-pillar-grid {
            grid-template-columns: 1fr;
            gap: 3rem;
        }
        .rx-pillar-main-title {
            text-align: center;
            font-size: 2.25rem;
        }
    }

    @media (max-width: 767px) {
        .rx-features-row {
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem 0;
        }
        
        .rx-feature-col:nth-child(3)::before {
            display: none;
        }
    }

    @media (max-width: 575px) {
        .rx-features-row {
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }
        
        .rx-feature-col::before {
            display: none !important;
        }

        .rx-pillar-section-dark {
            padding: 4rem 0;
        }
    }
    
    .rx-about-section {
        position: relative;
        background-color: var(--bg-light);
        padding: 6.5rem 0;
        overflow: hidden;
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
    }

    /* Asymmetrical Dual Image Composition */
    .rx-about-image-wrapper {
        position: relative;
        padding-bottom: 3rem;
        padding-right: 3rem;
    }

    .rx-about-img-main {
        width: 100%;
        height: 520px;
        object-fit: cover;
        border-radius: 16px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        border: 1px solid var(--border-color);
        position: relative;
        z-index: 1;
    }

    .rx-about-img-secondary {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 40%;
        /*height: 320px;*/
        object-fit: cover;
        border-radius: 16px;
        border: 6px solid var(--bg-surface);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        z-index: 2;
    }

    /* Floating Legacy Pill */
    .rx-about-floating-badge {
        position: absolute;
        top: 2rem;
        left: -1.5rem;
        z-index: 3;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid var(--border-color);
        border-left: 4px solid var(--brand-gold);
        border-radius: 12px;
        padding: 1rem 1.5rem;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .rx-badge-number {
        font-family: 'Playfair Display', Georgia, serif;
        font-size: 2.2rem;
        font-weight: 800;
        color: var(--brand-gold);
        line-height: 1;
    }

    .rx-badge-text {
        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--text-main);
        line-height: 1.3;
    }

    /* Typography & Content */
    .rx-about-tag {
        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 1.1rem;
        border-radius: 50px;
        border: 1px solid var(--border-color);
        margin-bottom: 1.25rem;
    }

    .rx-about-title {
        font-family: 'Playfair Display', Georgia, serif;
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--text-main);
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .rx-about-title span {
        color: var(--brand-gold);
    }

    .rx-about-lead {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--text-main);
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }

    .rx-about-body {
        font-size: 0.98rem;
        color: var(--text-muted);
        line-height: 1.8;
        margin-bottom: 2.25rem;
    }

    /* Grid Stats Footer */
    .rx-about-stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid var(--border-color);
    }

    .rx-stat-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }

    .rx-stat-icon {
        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;
        flex-shrink: 0;
    }

    .rx-stat-title {
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--text-main);
        margin-bottom: 0.25rem;
    }

    .rx-stat-desc {
        font-size: 0.82rem;
        color: var(--text-muted);
        line-height: 1.4;
    }

    /* Responsive Adjustments */
    @media (max-width: 991px) {
        .rx-about-image-wrapper {
            margin-bottom: 2.5rem;
            padding-right: 1.5rem;
        }
        .rx-about-img-main {
            width: 90%;
            height: 400px;
        }
        .rx-about-img-secondary {
            width: 60%;
            height: 240px;
        }
        .rx-about-floating-badge {
            left: 0;
            top: 1rem;
        }
        .rx-about-title {
            font-size: 2.2rem;
        }
    }

    @media (max-width: 575px) {
        .rx-about-stats-grid {
            grid-template-columns: 1fr;
        }
    }
    
    .rx-full-cta-section {
        position: relative;
        width: 100%;
        min-height: 520px;
        display: flex;
        align-items: center;
        background-image: url('../image/img/bg.webp');
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        overflow: hidden;
        font-family: var(--font-body, "DM Sans", sans-serif);
    }

    /* Gradient overlay: transparent on left, dark overlay on right matching reference image */
    .rx-cta-gradient-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to right, 
            rgba(0, 0, 0, 0.25) 0%, 
            rgba(15, 17, 21, 0.65) 45%, 
            rgba(15, 17, 21, 0.92) 80%,
            rgba(15, 17, 21, 0.96) 100%
        );
        z-index: 1;
    }

    /* Main Container & Positioning */
    .rx-cta-content-wrapper {
        position: relative;
        z-index: 2;
        width: 100%;
    }

    .rx-cta-inner-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    /* Right-aligned Content Box */
    .rx-cta-text-box {
        grid-column: 2;
        padding-left: 2rem;
        max-width: 520px;
    }

    .rx-cta-heading {
        font-family: 'Playfair Display', Georgia, serif;
        font-size: 3.25rem;
        font-weight: 500;
        color: #ffffff;
        line-height: 1.15;
        margin-bottom: 1.25rem;
        letter-spacing: -0.5px;
    }

    .rx-cta-subtext {
        font-size: 1.05rem;
        color: rgba(255, 255, 255, 0.82);
        line-height: 1.6;
        margin-bottom: 2.25rem;
        font-weight: 400;
    }

    /* Pill-Shaped Ghost Button matching reference */
    .rx-cta-pill-btn {
        display: inline-block;
        padding: 0.85rem 2.25rem;
        border: 1px solid rgba(255, 255, 255, 0.7);
        border-radius: 50px;
        color: #ffffff;
        font-size: 0.95rem;
        font-weight: 500;
        text-decoration: none;
        letter-spacing: 0.5px;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .rx-cta-pill-btn:hover {
        background: #ffffff;
        color: var(--brand-dark, #1a1a1a);
        border-color: #ffffff;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        transform: translateY(-2px);
    }

    /* Responsive Breakdown */
    @media (max-width: 991px) {
        .rx-full-cta-section {
            min-height: 460px;
        }

        .rx-cta-gradient-overlay {
            background: linear-gradient(
                to bottom,
                rgba(15, 17, 21, 0.3) 0%,
                rgba(15, 17, 21, 0.85) 60%,
                rgba(15, 17, 21, 0.95) 100%
            );
        }

        .rx-cta-inner-grid {
            grid-template-columns: 1fr;
        }

        .rx-cta-text-box {
            grid-column: 1;
            padding-left: 0;
            max-width: 100%;
            text-align: center;
        }

        .rx-cta-heading {
            font-size: 2.5rem;
        }
    }

    @media (max-width: 575px) {
        .rx-full-cta-section {
            padding: 4rem 0;
        }

        .rx-cta-heading {
            font-size: 2.1rem;
        }

        .rx-cta-subtext {
            font-size: 0.95rem;
        }
    }
    
    .rx-catalogue-section {
    background-color: var(--rx-dark-bg);
    color: #ffffff;
    padding: 100px 0;
    font-family: var(--font-body);
    overflow: hidden;
  }

  /* Left Column Styling */
  .rx-catalogue-info {
    padding-right: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .rx-catalogue-title {
    font-family: var(--font-body);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
  }

  .rx-catalogue-btn {
    display: inline-block;
    padding: 0.75rem 2.25rem;
    border: 1px solid var(--rx-border-subtle);
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.5px;
    background: transparent;
    transition: var(--rx-transition);
  }

  .rx-catalogue-btn:hover {
    background: var(--brand-gold);
    color: #ffffff;
    border-color: var(--brand-gold);
    box-shadow: 0 4px 20px var(--rx-gold-glow);
    transform: translateY(-2px);
  }

  /* Catalogue Poster Cards */
  .rx-catalogue-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: var(--rx-card-bg);
    border: 1px solid var(--rx-border-subtle);
    transition: var(--rx-transition);
  }

  .rx-catalogue-card:hover {
    border-color: var(--brand-gold);
    /*transform: translateY(-6px);*/
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  }

  .rx-card-media {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
  }

  .rx-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--rx-ease-smooth);
  }

  .rx-catalogue-card:hover .rx-card-media img {
    transform: scale(1.05);
  }

  .rx-card-overlay {
    position: absolute;
    inset: 0;
    /*background: linear-gradient(to top, rgba(17, 18, 21, 0.95) 0%, rgba(17, 18, 21, 0.2) 60%, rgba(0,0,0,0) 100%);*/
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.75rem 1.5rem;
  }

  .rx-card-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--brand-gold);
    margin-bottom: 0.4rem;
  }

  .rx-card-heading {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
  }

  /* Owl Carousel Custom Pagination Dots */
  .rx-catalogue-section .owl-dots {
    margin-top: 2.5rem !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .rx-catalogue-section .owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    margin: 0;
    background: transparent;
    border: 1px solid var(--rx-text-muted);
    border-radius: 50%;
    transition: var(--rx-transition);
  }

  .rx-catalogue-section .owl-theme .owl-dots .owl-dot.active span,
  .rx-catalogue-section .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--brand-gold);
    border-color: var(--brand-gold);
    transform: scale(1.2);
  }

  @media (max-width: 991px) {
    .rx-catalogue-info {
      padding-right: 0;
      margin-bottom: 2.5rem;
    }
    .rx-catalogue-title {
      font-size: 2.25rem;
    }
  }
  
  .rx-logo-trail-section {
    background-color: var(--rx-dark-surface);
    border-top: 1px solid var(--rx-border-subtle);
    border-bottom: 1px solid var(--rx-border-subtle);
    padding: 50px 0;
    font-family: var(--font-body);
    overflow: hidden;
  }

  .rx-logo-trail-header {
    text-align: center;
    margin-bottom: 2rem;
  }

  .rx-logo-trail-subtitle {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brand-gold);
    margin: 0;
  }

  .rx-logo-card {
    background: var(--rx-card-bg);
    border: 1px solid var(--rx-border-subtle);
    border-radius: 8px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    transition: var(--rx-transition);
  }

  .rx-logo-card img {
    max-height: 40px;
    width: auto !important;
    max-width: 100%;
    /*filter: grayscale(100%) opacity(0.5);*/
    transition: var(--rx-transition);
  }

 

  /* Force smooth linear ticker animation in Owl Carousel */
  .rx-logo-trail-carousel .owl-stage {
    transition-timing-function: linear !important;
  }
  
  .process-section {
  background-color: var(--rx-dark-bg);
  color: #ffffff;
  font-family: var(--font-body);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.process-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.badge-tag {
  display: inline-block;
  padding: 6px 16px;
  background-color: var(--rx-gold-light);
  border: 1px solid var(--rx-gold);
  border-radius: 30px;
  color: var(--gold-l);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.process-title {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.process-title span {
  color: var(--gold-l);
}

.process-subtitle {
  color: var(--rx-text-muted);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Flow Line Container */
.process-flow-wrapper {
  position: relative;
  z-index: 2;
}

/* Connecting SVG Line behind cards on Desktop */
.connector-svg {
  position: absolute;
  top: 30%;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 1;
  pointer-events: none;
}

.connector-svg path {
  stroke: var(--brand-gold);
  stroke-width: 2;
  stroke-dasharray: 8 6;
  fill: none;
  opacity: 0.4;
  animation: strokeMove 20s linear infinite;
}

@keyframes strokeMove {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -200; }
}

.step-col {
  position: relative;
  z-index: 2;
}

.step-card {
  /*background: var(--rx-card-bg);*/
  /*border: 1px solid var(--rx-border-subtle);*/
  border-radius: 20px;
  padding: 24px 20px;
  text-align: center;
  position: relative;
  transition: var(--rx-transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);*/
}

.step-card:hover {
  transform: translateY(-12px);
  /*border-color: var(--gold);*/
  /*box-shadow: 0 15px 35px var(--rx-gold-glow);*/
}

.step-circle-wrapper {
  position: relative;
  width: 180px;
  height: 180px;
  margin-bottom: 24px;
}

.step-img-outer {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  padding: 5px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--navy) 100%);
  transition: var(--rx-transition);
}

.process-card:hover .step-img-outer,
.step-card:hover .step-img-outer {
  background: linear-gradient(135deg, var(--gold-l) 0%, var(--brand-gold) 100%);
  transform: rotate(180deg);
}

.step-img-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  background: var(--rx-dark-surface);
}

.step-img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--rx-transition);
}

.step-card:hover .step-img-inner img {
  transform: scale(1.15) rotate(-180deg);
}

.step-number {
  position: absolute;
  top: -6px;
  left: -6px;
  width: 38px;
  height: 38px;
  background: var(--brand-gold);
  color: var(--rx-dark);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  border: 2px solid var(--rx-card-bg);
  z-index: 3;
  transition: var(--rx-transition);
}

.step-card:hover .step-number {
  background: var(--gold-l);
  transform: scale(1.15);
}

.icon-badge {
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 40px;
  height: 40px;
  background: var(--navy);
  border: 1px solid var(--gold);
  color: var(--gold-l);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  z-index: 3;
  transition: var(--rx-transition);
}

.step-card:hover .icon-badge {
  background: var(--crimson);
  border-color: var(--gold-l);
  color: #ffffff;
  transform: scale(1.1);
}

.card-heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  transition: var(--rx-transition);
}

.step-card:hover .card-heading {
  color: var(--gold-l);
}

.card-text {
  color: var(--rx-text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
}

/* Staggered arrangement for alternating flow look on wide screens */
@media (min-width: 992px) {
  .step-col:nth-child(even) {
    margin-top: 60px;
  }
}

/* Responsive Hide Connector Line on Mobile/Tablet */
@media (max-width: 991.98px) {
  .connector-svg {
    display: none;
  }
  .process-section {
    padding: 60px 0;
  }
}


.phero-wrap {
  --phero-blue: #3b82f6;
  --phero-blue-light: rgba(59,130,246,0.18);
  --phero-white: #ffffff;
  --phero-muted: rgba(255,255,255,0.65);
  --phero-sep: rgba(255,255,255,0.4);

  font-family: 'DM Sans', sans-serif;
  position: relative;
  width: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background image */
.phero-bg {
  position: absolute;
  inset: 0;
  /*background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1400&q=80');*/
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Dark + blue overlay */
.phero-overlay {
  position: absolute;
  inset: 0;
 background: linear-gradient(135deg, rgb(211 173 62) 0%, rgb(197 146 0) 100%);
  z-index: 1;
}

/* Blue accent line at bottom */
.phero-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--phero-blue), #60a5fa, var(--phero-blue));
  z-index: 3;
}

/* Content */
.phero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 52px 24px 48px;
}

.phero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  color: var(--phero-white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

/* Breadcrumb nav */
.phero-nav {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 7px 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.phero-item {
  display: flex;
  align-items: center;
  gap: 2px;
}

.phero-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--phero-muted);
  text-decoration: none;
  padding: 3px 8px;
  border-radius: 999px;
  transition: color 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

.phero-link:hover {
  color: var(--phero-white);
  background: var(--phero-blue-light);
}

.phero-home {
  display: flex;
  align-items: center;
  color: var(--phero-muted);
  padding: 3px 8px;
  border-radius: 999px;
  text-decoration: none;
  transition: color 0.18s ease, background 0.18s ease;
}
.phero-home:hover {
  color: var(--phero-white);
  background: var(--phero-blue-light);
}

.phero-sep {
  color: var(--phero-sep);
  font-size: 0.78rem;
  user-select: none;
  padding: 0 1px;
}

.phero-active {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--phero-white);
  background: var(--phero-blue);
  padding: 3px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.sitemap-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .sitemap-title {
            color: #2b2a28;
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.5rem;
            font-weight: 700;
            letter-spacing: -0.5px;
        }
        
        .sitemap-card {
            background-color: white;
            border: 2px solid #d59e06;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            display: block;
            color: #2b2a28;
        }
        
        .sitemap-card:hover {
            background-color: #d59e06;
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(213, 158, 6, 0.3);
            text-decoration: none;
        }
        
        .card-label {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .card-description {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        .sitemap-card:hover .card-description {
            opacity: 1;
        }
        
        .category-section {
            margin-bottom: 40px;
        }
        
        .category-header {
            color: #d59e06;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #d59e06;
        }
        
        .main-links {
            margin-bottom: 50px;
        }
        
        @media (max-width: 768px) {
            .sitemap-title {
                font-size: 1.8rem;
                margin-bottom: 30px;
            }
            
            .category-header {
                font-size: 1.2rem;
                margin-bottom: 15px;
            }
            
            .sitemap-card {
                padding: 15px;
            }
            
            .card-label {
                font-size: 1rem;
            }
        }