/* ================================================================
   ROTO ROOTER INDONESIA — Premium Design System
   Navy + Gold + Crisp White · Modern, Trust-driven, Professional
   ================================================================ */

/* ========== DESIGN TOKENS ========== */
:root {
  /* Brand colors */
  --rr-navy:         #0A2540;
  --rr-navy-deep:    #051832;
  --rr-navy-soft:    #1B3A6B;
  --rr-gold:         #D4A437;
  --rr-gold-soft:    #F5E6C3;
  --rr-gold-deep:    #A87F1F;

  /* Semantic */
  --rr-blue:         #2563EB;
  --rr-blue-soft:    #EFF6FF;
  --rr-green:        #059669;
  --rr-green-soft:   #ECFDF5;
  --rr-red:          #DC2626;
  --rr-red-soft:     #FEF2F2;
  --rr-orange:       #EA580C;
  --rr-orange-soft:  #FFF7ED;

  /* Neutrals */
  --rr-white:        #FFFFFF;
  --rr-bg:           #FAFBFC;
  --rr-bg-soft:      #F4F6F8;
  --rr-border:       #E5E7EB;
  --rr-border-soft:  #F3F4F6;
  --rr-text:         #0F172A;
  --rr-text-body:    #334155;
  --rr-text-muted:   #64748B;
  --rr-text-soft:    #94A3B8;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(10, 37, 64, 0.04);
  --shadow-sm: 0 2px 4px rgba(10, 37, 64, 0.06), 0 1px 2px rgba(10, 37, 64, 0.04);
  --shadow-md: 0 4px 12px rgba(10, 37, 64, 0.08), 0 2px 4px rgba(10, 37, 64, 0.04);
  --shadow-lg: 0 12px 32px rgba(10, 37, 64, 0.12), 0 4px 8px rgba(10, 37, 64, 0.06);
  --shadow-xl: 0 20px 50px rgba(10, 37, 64, 0.18);
  --shadow-gold: 0 8px 24px rgba(212, 164, 55, 0.3);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ========== BASE ========== */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--rr-text-body);
  background: var(--rr-white);
  padding-bottom: 70px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (min-width: 992px) { body { padding-bottom: 0; } }

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Serif Display', Georgia, serif;
  color: var(--rr-navy);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
strong, b { color: var(--rr-navy); font-weight: 700; }
a { color: var(--rr-blue); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--rr-navy); }
img, video, svg { max-width: 100%; height: auto; display: block; }
section { padding: 80px 0; }
@media (max-width: 768px) { section { padding: 56px 0; } }

.text-navy { color: var(--rr-navy) !important; }
.text-gold { color: var(--rr-gold) !important; }
.text-muted-rr { color: var(--rr-text-muted) !important; }
.bg-navy { background: var(--rr-navy) !important; }
.bg-gold { background: var(--rr-gold) !important; }

/* ========== TOPBAR ========== */
.topbar {
  background: linear-gradient(135deg, var(--rr-navy-deep) 0%, var(--rr-navy) 100%);
  color: rgba(255,255,255,.9);
  padding: 9px 0;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.topbar a { color: inherit; transition: color .2s; }
.topbar a:hover { color: var(--rr-gold); }
.emergency-badge {
  background: var(--rr-gold);
  color: var(--rr-navy-deep);
  padding: 3px 12px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.topbar-wa {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  color: #25D366 !important;
}

/* ========== NAVBAR ========== */
.navbar-rr {
  background: rgba(255,255,255,0.98);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--rr-border-soft);
  padding: 14px 0;
  transition: all .3s var(--ease);
}
.navbar-rr.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-sm);
}

.brand-logo { display: flex; align-items: center; gap: 12px; }
.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--rr-navy) 0%, var(--rr-navy-soft) 100%);
  color: var(--rr-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-sm);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: 'DM Serif Display', serif;
  font-size: 19px;
  font-weight: 400;
  color: var(--rr-navy);
  letter-spacing: 0.01em;
}
.brand-sub {
  font-size: 10px;
  color: var(--rr-gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-top: 2px;
}

.navbar-rr .nav-link {
  color: var(--rr-text-body) !important;
  font-weight: 600;
  font-size: 14.5px;
  padding: 8px 16px !important;
  border-radius: var(--radius-md);
  transition: all .2s var(--ease);
}
.navbar-rr .nav-link:hover {
  color: var(--rr-navy) !important;
  background: var(--rr-bg-soft);
}
.navbar-rr .nav-link.active {
  color: var(--rr-navy) !important;
  background: var(--rr-bg-soft);
}

.btn-nav-order {
  background: linear-gradient(135deg, var(--rr-gold) 0%, var(--rr-gold-deep) 100%);
  color: var(--rr-navy-deep) !important;
  border: none;
  padding: 10px 22px !important;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--shadow-sm);
  transition: all .25s var(--ease);
  letter-spacing: 0.01em;
}
.btn-nav-order:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-mobile-emergency {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--rr-red);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  animation: pulse-red 2s infinite;
}
@keyframes pulse-red {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220,38,38,.6); }
  50%      { box-shadow: 0 0 0 10px rgba(220,38,38,0); }
}
.navbar-toggler {
  border: none !important;
  padding: 6px !important;
  box-shadow: none !important;
}
.toggler-icon { display: flex; flex-direction: column; gap: 4px; }
.toggler-icon span {
  width: 22px; height: 2px;
  background: var(--rr-navy);
  border-radius: 1px;
  display: block;
}

@media (max-width: 991.98px) {
  .navbar-rr .navbar-collapse {
    background: var(--rr-white);
    border-radius: var(--radius-lg);
    padding: 16px 20px 20px;
    margin-top: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--rr-border);
  }
  .navbar-rr .nav-link {
    padding: 12px 8px !important;
    border-bottom: 1px solid var(--rr-border-soft);
    border-radius: 0;
  }
  .navbar-rr .nav-link:last-of-type { border-bottom: none; }
  .btn-nav-order {
    margin-top: 12px;
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 13px 24px !important;
  }
}

/* ========== BUTTONS ========== */
.btn-primary-rr {
  background: linear-gradient(135deg, var(--rr-navy) 0%, var(--rr-navy-soft) 100%);
  color: #fff !important;
  border: none;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all .25s var(--ease);
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.btn-primary-rr:hover {
  background: linear-gradient(135deg, var(--rr-navy-deep) 0%, var(--rr-navy) 100%);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-primary-rr.btn-lg { padding: 16px 32px; font-size: 15.5px; }
.btn-primary-rr.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-primary-rr.btn-xs { padding: 6px 12px; font-size: 12px; }

.btn-gold {
  background: linear-gradient(135deg, var(--rr-gold) 0%, var(--rr-gold-deep) 100%);
  color: var(--rr-navy-deep) !important;
  border: none;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all .25s var(--ease);
  text-decoration: none;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--rr-navy-deep) !important;
}

.btn-outline-rr {
  background: transparent;
  color: var(--rr-navy) !important;
  border: 1.5px solid var(--rr-navy);
  padding: 12px 26px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  transition: all .25s var(--ease);
  text-decoration: none;
}
.btn-outline-rr:hover {
  background: var(--rr-navy);
  color: #fff !important;
  border-color: var(--rr-navy);
}

/* ========== HERO ========== */
.hero-section {
  position: relative;
  padding: 100px 0 80px;
  background:
    radial-gradient(circle at 20% 0%, rgba(212,164,55,0.08), transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(37,99,235,0.05), transparent 50%),
    linear-gradient(135deg, var(--rr-navy-deep) 0%, var(--rr-navy) 50%, var(--rr-navy-soft) 100%);
  color: #fff;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 164, 55, 0.12);
  color: var(--rr-gold);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(212, 164, 55, 0.3);
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
  font-weight: 400;
  letter-spacing: -0.015em;
}
.hero-title .text-gold {
  font-style: italic;
  background: linear-gradient(135deg, var(--rr-gold) 0%, #F5CF5E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 560px;
  font-weight: 400;
}
.hero-cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  color: var(--rr-gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}
.hero-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-xl);
  max-width: 420px;
  width: 100%;
}
.hero-card-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--rr-gold) 0%, var(--rr-gold-deep) 100%);
  color: var(--rr-navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-gold);
}
.hero-card-title {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.hero-card-desc {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.hero-trust-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  font-weight: 500;
}
.hero-trust-item i {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

@media (max-width: 575.98px) {
  .hero-section { padding: 60px 0 48px; }
  .hero-title { font-size: 30px; }
  .hero-subtitle { font-size: 15px; }
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn-primary-rr,
  .hero-cta-group .btn-outline-rr,
  .hero-cta-group .btn-gold { width: 100%; }
  .hero-stats { gap: 24px; }
  .hero-stat-number { font-size: 26px; }
}

/* ========== SECTION HEADER ========== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rr-gold-deep);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--rr-gold);
}
.section-title {
  font-size: clamp(26px, 4vw, 42px);
  color: var(--rr-navy);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-subtitle {
  font-size: 16px;
  color: var(--rr-text-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ========== SERVICE CARDS ========== */
.service-card {
  display: block;
  background: var(--rr-white);
  border: 1px solid var(--rr-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-decoration: none !important;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--rr-navy) 0%, var(--rr-navy-soft) 100%);
  opacity: 0;
  transition: opacity .3s var(--ease);
  z-index: 0;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--rr-navy);
}
.service-card:hover::before { opacity: 1; }
.service-card > * { position: relative; z-index: 1; }
.service-card:hover .service-card-icon {
  background: rgba(212, 164, 55, 0.15);
  color: var(--rr-gold);
}
.service-card:hover .service-card-title,
.service-card:hover .service-card-desc,
.service-card:hover .service-card-price,
.service-card:hover .service-card-cta { color: #fff; }
.service-card:hover .service-card-desc { color: rgba(255,255,255,0.85); }
.service-card:hover .service-card-price { color: var(--rr-gold); }

.service-card-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--rr-blue-soft);
  color: var(--rr-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: all .3s var(--ease);
}
.service-card-badge {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}
.badge-popular { background: var(--rr-gold); color: var(--rr-navy-deep); }
.badge-emergency { background: var(--rr-red); color: #fff; }
.badge-cepat, .badge-favorite { background: var(--rr-blue); color: #fff; }

.service-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--rr-navy);
  margin-bottom: 8px;
  transition: color .3s;
}
.service-card-desc {
  font-size: 14px;
  color: var(--rr-text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
  transition: color .3s;
}
.service-card-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--rr-navy);
  padding: 6px 0;
  border-top: 1px dashed var(--rr-border);
  margin-bottom: 12px;
  transition: all .3s;
}
.service-card-cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--rr-blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all .3s;
}
.service-card-cta i { transition: transform .3s; }
.service-card:hover .service-card-cta i { transform: translateX(4px); }

/* ========== WHY US ========== */
.why-section { background: var(--rr-bg); }
.why-card {
  background: var(--rr-white);
  border: 1px solid var(--rr-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  height: 100%;
  transition: all .3s var(--ease);
  position: relative;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--rr-gold);
}
.why-icon {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--rr-navy) 0%, var(--rr-navy-soft) 100%);
  color: var(--rr-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: var(--shadow-sm);
}
.why-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--rr-navy);
  margin-bottom: 10px;
}
.why-desc {
  font-size: 14px;
  color: var(--rr-text-muted);
  line-height: 1.6;
}

/* ========== PROCESS STEPS ========== */
.process-step {
  text-align: center;
  padding: 20px;
  position: relative;
}
.process-number {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rr-gold) 0%, var(--rr-gold-deep) 100%);
  color: var(--rr-navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  font-weight: 400;
  box-shadow: var(--shadow-gold);
}
.process-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--rr-navy);
  margin-bottom: 8px;
}
.process-desc {
  font-size: 13.5px;
  color: var(--rr-text-muted);
  line-height: 1.55;
}

/* ========== AREA CARDS ========== */
.area-card {
  display: block;
  background: var(--rr-white);
  border: 1px solid var(--rr-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-decoration: none;
  transition: all .3s var(--ease);
  height: 100%;
}
.area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--rr-navy);
}
.area-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--rr-navy);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.area-name i { color: var(--rr-gold); }
.area-cities {
  font-size: 13px;
  color: var(--rr-text-muted);
  line-height: 1.6;
}

/* ========== PROMO CARDS ========== */
.promo-card {
  background: var(--rr-white);
  border: 1px solid var(--rr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .3s var(--ease);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--rr-gold);
}
.promo-card-banner {
  height: 140px;
  background: linear-gradient(135deg, var(--rr-navy) 0%, var(--rr-navy-soft) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.promo-card-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(212,164,55,0.2), transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(37,99,235,0.15), transparent 50%);
}
.promo-card-value {
  font-family: 'DM Serif Display', serif;
  font-size: 44px;
  color: var(--rr-gold);
  font-style: italic;
  z-index: 1;
  position: relative;
}
.promo-card-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(255,255,255,0.95);
  color: var(--rr-navy);
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}
.promo-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.promo-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--rr-navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.promo-card-desc {
  font-size: 13.5px;
  color: var(--rr-text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}
.promo-code-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--rr-gold-soft);
  border: 1.5px dashed var(--rr-gold);
  border-radius: var(--radius-md);
  padding: 8px 12px;
  margin-bottom: 12px;
}
.promo-code {
  font-family: 'Courier New', monospace;
  font-weight: 700;
  color: var(--rr-navy);
  flex: 1;
  letter-spacing: 0.08em;
  font-size: 14px;
}
.promo-code-copy {
  color: var(--rr-gold-deep);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 4px;
  transition: background .2s;
}
.promo-code-copy:hover { background: rgba(212,164,55,0.15); }
.promo-card-date {
  font-size: 11.5px;
  color: var(--rr-text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ========== TESTIMONIALS ========== */
.testimonial-card {
  background: var(--rr-white);
  border: 1px solid var(--rr-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  height: 100%;
  transition: all .3s var(--ease);
  position: relative;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--rr-gold);
}
.testimonial-quote-mark {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: 'DM Serif Display', serif;
  font-size: 72px;
  color: var(--rr-gold);
  opacity: 0.25;
  line-height: 0.6;
}
.testimonial-rating {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}
.testimonial-rating i { color: var(--rr-gold); font-size: 14px; }
.testimonial-text {
  font-size: 14.5px;
  color: var(--rr-text-body);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--rr-border-soft);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rr-navy) 0%, var(--rr-navy-soft) 100%);
  color: var(--rr-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
}
.testimonial-name {
  font-weight: 700;
  color: var(--rr-navy);
  font-size: 14px;
  margin-bottom: 2px;
}
.testimonial-location {
  font-size: 12px;
  color: var(--rr-text-muted);
}

/* ========== FAQ ========== */
.faq-item {
  background: var(--rr-white);
  border: 1px solid var(--rr-border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all .25s var(--ease);
}
.faq-item:hover { border-color: var(--rr-navy); }
.faq-item.open {
  border-color: var(--rr-navy);
  box-shadow: var(--shadow-sm);
}
.faq-question {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-weight: 700;
  color: var(--rr-navy);
  font-size: 15px;
  user-select: none;
}
.faq-question i {
  transition: transform .3s var(--ease);
  color: var(--rr-gold);
  flex-shrink: 0;
}
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--rr-text-body);
  font-size: 14.5px;
  line-height: 1.7;
  border-top: 1px solid var(--rr-border-soft);
}
.faq-answer > :first-child { padding-top: 16px; }

/* ========== EMERGENCY CTA BANNER ========== */
.emergency-cta {
  background:
    radial-gradient(circle at 20% 50%, rgba(220,38,38,0.5), transparent 40%),
    linear-gradient(135deg, var(--rr-navy-deep) 0%, var(--rr-navy) 100%);
  color: #fff;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.emergency-cta-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.emergency-cta-title {
  font-size: clamp(24px, 3vw, 36px);
  color: #fff;
  margin-bottom: 8px;
}
.emergency-cta-text {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  line-height: 1.6;
  max-width: 520px;
}
.emergency-pulse-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--rr-red);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  animation: pulse-red-big 2s infinite;
  margin-bottom: 16px;
}
@keyframes pulse-red-big {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220,38,38,.7); transform: scale(1); }
  50%      { box-shadow: 0 0 0 18px rgba(220,38,38,0); transform: scale(1.05); }
}

/* ========== ORDER FORM ========== */
.page-hero {
  background:
    radial-gradient(circle at top right, rgba(212,164,55,0.05), transparent 60%),
    linear-gradient(180deg, var(--rr-bg) 0%, var(--rr-white) 100%);
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--rr-border);
}
.page-hero-title {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--rr-navy);
  margin-bottom: 12px;
  line-height: 1.15;
}
.page-hero-title .text-gold { font-style: italic; }
.page-hero-subtitle {
  font-size: 16px;
  color: var(--rr-text-muted);
  max-width: 600px;
}
.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 13px;
}
.breadcrumb a { color: var(--rr-text-muted); }
.breadcrumb a:hover { color: var(--rr-navy); }
.breadcrumb-item.active { color: var(--rr-navy); font-weight: 600; }

.order-form-wrap {
  background: var(--rr-white);
  border: 1px solid var(--rr-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.form-step-indicator {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  margin-bottom: 36px;
  padding: 0 4px;
}
.form-step-indicator::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: var(--rr-border);
  z-index: 0;
}
.step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  position: relative;
  z-index: 1;
}
.step-dot-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--rr-white);
  border: 2px solid var(--rr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--rr-text-muted);
  transition: all .3s var(--ease);
}
.step-dot.active .step-dot-num {
  background: var(--rr-navy);
  border-color: var(--rr-navy);
  color: var(--rr-gold);
  box-shadow: 0 0 0 4px rgba(10,37,64,0.1);
}
.step-dot.done .step-dot-num {
  background: var(--rr-green);
  border-color: var(--rr-green);
  color: #fff;
}
.step-dot-label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--rr-text-muted);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.step-dot.active .step-dot-label { color: var(--rr-navy); }
.step-dot.done .step-dot-label { color: var(--rr-green); }

.form-step { display: none; }
.form-step.active { display: block; animation: fadeSlide .35s var(--ease); }
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-weight: 600;
  color: var(--rr-navy);
  font-size: 13.5px;
  margin-bottom: 6px;
}
.form-label .req { color: var(--rr-red); margin-left: 2px; }

.form-control-rr, .form-select-rr {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--rr-border);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-family: inherit;
  color: var(--rr-text);
  background: var(--rr-white);
  transition: all .2s var(--ease);
}
.form-control-rr:focus, .form-select-rr:focus {
  outline: none;
  border-color: var(--rr-navy);
  box-shadow: 0 0 0 3px rgba(10,37,64,0.1);
}
.form-control-rr::placeholder { color: var(--rr-text-soft); }
textarea.form-control-rr { resize: vertical; min-height: 100px; }

.urgency-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.urgency-card {
  background: var(--rr-white);
  border: 2px solid var(--rr-border);
  border-radius: var(--radius-md);
  padding: 16px 12px;
  text-align: center;
  cursor: pointer;
  transition: all .2s var(--ease);
  position: relative;
}
.urgency-card input { position: absolute; opacity: 0; }
.urgency-card:hover { border-color: var(--rr-navy); }
.urgency-card.selected {
  border-color: var(--rr-navy);
  background: var(--rr-bg-soft);
  box-shadow: 0 0 0 3px rgba(10,37,64,0.08);
}
.urgency-card.selected.emergency {
  border-color: var(--rr-red);
  background: var(--rr-red-soft);
  box-shadow: 0 0 0 3px rgba(220,38,38,0.08);
}
.urgency-card.selected.urgent {
  border-color: var(--rr-orange);
  background: var(--rr-orange-soft);
}
.urgency-icon {
  font-size: 22px;
  margin-bottom: 8px;
}
.urgency-card[data-urgency="normal"] .urgency-icon { color: var(--rr-blue); }
.urgency-card[data-urgency="urgent"] .urgency-icon { color: var(--rr-orange); }
.urgency-card[data-urgency="emergency"] .urgency-icon { color: var(--rr-red); }
.urgency-label {
  font-weight: 700;
  color: var(--rr-navy);
  font-size: 13px;
  margin-bottom: 2px;
}
.urgency-desc { font-size: 11px; color: var(--rr-text-muted); }

.photo-upload-zone {
  border: 2px dashed var(--rr-border);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: all .2s var(--ease);
  background: var(--rr-bg);
}
.photo-upload-zone:hover {
  border-color: var(--rr-navy);
  background: var(--rr-bg-soft);
}
.photo-upload-zone i {
  font-size: 34px;
  color: var(--rr-text-muted);
  margin-bottom: 8px;
  display: block;
}
.photo-upload-zone-text {
  font-weight: 600;
  color: var(--rr-navy);
  font-size: 14px;
}
.photo-upload-zone-hint {
  font-size: 12px;
  color: var(--rr-text-muted);
  margin-top: 4px;
}

.order-summary-box {
  background: var(--rr-bg);
  border: 1px solid var(--rr-border);
  border-radius: var(--radius-md);
  padding: 20px;
  margin: 24px 0;
}
.order-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed var(--rr-border);
  font-size: 13.5px;
}
.order-summary-row:last-child { border-bottom: none; }
.order-summary-label { color: var(--rr-text-muted); }
.order-summary-value { color: var(--rr-navy); font-weight: 600; text-align: right; }

@media (max-width: 575.98px) {
  .order-form-wrap { padding: 24px 20px; }
  .urgency-cards { grid-template-columns: 1fr; }
  .step-dot-num { width: 34px; height: 34px; font-size: 12px; }
  .step-dot-label { font-size: 10px; }
  .form-step-indicator::before { top: 17px; }
}

/* ========== TRACKING PAGE ========== */
.tracking-form-card, .tracking-status-card {
  background: var(--rr-white);
  border: 1px solid var(--rr-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.tracking-progress {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 20px 0;
  margin-bottom: 30px;
  overflow-x: auto;
  gap: 8px;
}
.tracking-progress::-webkit-scrollbar { height: 0; }
.tracking-step {
  flex: 1;
  min-width: 80px;
  text-align: center;
  position: relative;
}
.tracking-step-dot {
  width: 32px; height: 32px;
  margin: 0 auto 6px;
  border-radius: 50%;
  background: var(--rr-border);
  color: var(--rr-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  position: relative;
  z-index: 1;
  border: 3px solid var(--rr-white);
  box-shadow: 0 0 0 1px var(--rr-border);
}
.tracking-step.active .tracking-step-dot {
  background: var(--rr-navy);
  color: var(--rr-gold);
  box-shadow: 0 0 0 1px var(--rr-navy), 0 0 0 5px rgba(10,37,64,0.15);
}
.tracking-step.done .tracking-step-dot {
  background: var(--rr-green);
  color: #fff;
  box-shadow: 0 0 0 1px var(--rr-green);
}
.tracking-step-label {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--rr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.tracking-step.active .tracking-step-label,
.tracking-step.done .tracking-step-label { color: var(--rr-navy); }

.tracking-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 20px;
  background: var(--rr-bg);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}
.tracking-info-label {
  font-size: 11px;
  color: var(--rr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-bottom: 3px;
}
.tracking-info-value {
  font-size: 14px;
  color: var(--rr-navy);
  font-weight: 600;
}

.tracking-timeline { position: relative; padding-left: 32px; }
.tracking-timeline::before {
  content: '';
  position: absolute;
  left: 11px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--rr-navy), var(--rr-border));
}
.tracking-event {
  position: relative;
  margin-bottom: 20px;
  padding: 14px 16px;
  background: var(--rr-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--rr-border);
}
.tracking-event::before {
  content: '';
  position: absolute;
  left: -26px; top: 18px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--rr-navy);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--rr-navy);
}
.tracking-event.latest { border-color: var(--rr-gold); background: rgba(212,164,55,0.04); }
.tracking-event.latest::before { background: var(--rr-gold); box-shadow: 0 0 0 2px var(--rr-gold); }

@media (max-width: 575.98px) {
  .tracking-form-card, .tracking-status-card { padding: 20px; }
  .tracking-info-grid { grid-template-columns: 1fr; padding: 16px; }
}

/* ========== CATEGORY FILTERS ========== */
.category-filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-bottom: 4px;
  margin-bottom: 32px;
}
.category-tab {
  padding: 10px 20px;
  background: var(--rr-white);
  border: 1.5px solid var(--rr-border);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--rr-text-body);
  cursor: pointer;
  transition: all .2s var(--ease);
  white-space: nowrap;
}
.category-tab:hover { border-color: var(--rr-navy); color: var(--rr-navy); }
.category-tab.active {
  background: var(--rr-navy);
  color: #fff;
  border-color: var(--rr-navy);
}

/* ========== COMMERCIAL ========== */
.commercial-form-wrap {
  background: var(--rr-white);
  border: 1px solid var(--rr-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.advantage-item {
  padding: 20px;
  background: var(--rr-bg);
  border: 1px solid var(--rr-border);
  border-radius: var(--radius-md);
  transition: all .2s var(--ease);
}
.advantage-item:hover { border-color: var(--rr-gold); background: var(--rr-white); }
.advantage-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--rr-navy);
  color: var(--rr-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
}
.advantage-title {
  font-weight: 700;
  color: var(--rr-navy);
  font-size: 15px;
  margin-bottom: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.advantage-desc {
  font-size: 13px;
  color: var(--rr-text-muted);
  line-height: 1.55;
}

/* ========== FLOATING WA BUTTON ========== */
.float-wa-btn {
  position: fixed;
  bottom: 90px; right: 20px;
  z-index: 1040;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  text-decoration: none;
  transition: transform .2s var(--ease);
}
.float-wa-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37,211,102,0.3);
  animation: pulse-green 2s infinite;
  z-index: -1;
}
@keyframes pulse-green {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.3); opacity: 0; }
}
.float-wa-btn:hover { transform: scale(1.08); color: #fff; }
@media (min-width: 992px) {
  .float-wa-btn { bottom: 28px; right: 28px; width: 60px; height: 60px; font-size: 28px; }
}

/* ========== STICKY MOBILE CTA ========== */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1035;
  padding: 10px 16px;
  background: var(--rr-white);
  border-top: 1px solid var(--rr-border);
  display: flex;
  gap: 10px;
  transform: translateY(100%);
  transition: transform .3s var(--ease);
  box-shadow: 0 -4px 20px rgba(10,37,64,0.1);
}
.sticky-mobile-cta.visible { transform: translateY(0); }
.sticky-mobile-cta .btn-primary-rr,
.sticky-mobile-cta .btn-outline-rr {
  flex: 1;
  padding: 12px 8px;
  font-size: 13px;
}
@media (min-width: 992px) { .sticky-mobile-cta { display: none !important; } }

/* ========== FOOTER ========== */
.footer-main {
  background: var(--rr-navy-deep);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand-box .brand-logo { margin-bottom: 16px; }
.footer-brand-box .brand-name { color: #fff; font-size: 22px; }
.footer-brand-box .brand-sub { color: var(--rr-gold); }
.footer-brand-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s var(--ease);
  font-size: 14px;
}
.footer-social a:hover {
  background: var(--rr-gold);
  color: var(--rr-navy-deep);
  transform: translateY(-2px);
}

.footer-heading {
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 13.5px;
  transition: color .2s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--rr-gold); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
}
.footer-contact-item i {
  color: var(--rr-gold);
  padding-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.7); }
.footer-bottom a:hover { color: var(--rr-gold); }

@media (max-width: 991.98px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 575.98px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ========== ADMIN PANEL ========== */
.admin-body {
  background: #F1F4F8;
  font-family: 'Plus Jakarta Sans', sans-serif;
  padding-bottom: 0;
}

.admin-sidebar {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 260px;
  background: linear-gradient(180deg, var(--rr-navy-deep) 0%, var(--rr-navy) 100%);
  color: rgba(255,255,255,0.8);
  display: flex;
  flex-direction: column;
  z-index: 1020;
  transition: transform .3s var(--ease);
}
.sidebar-brand {
  padding: 22px 22px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-rr {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--rr-gold) 0%, var(--rr-gold-deep) 100%);
  color: var(--rr-navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 16px;
  font-weight: 400;
}
.logo-title {
  font-weight: 700;
  color: #fff;
  font-size: 14px;
  line-height: 1.1;
}
.logo-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
}
.sidebar-close {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 18px;
  padding: 4px 8px;
  cursor: pointer;
}

.sidebar-nav {
  flex: 1;
  overflow-y: auto;
  padding: 14px 12px;
}
.nav-section-label {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 16px 12px 6px;
  font-weight: 700;
}
.sidebar-nav-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  color: rgba(255,255,255,0.7);
  font-size: 13.5px;
  font-weight: 600;
  border-radius: var(--radius-md);
  margin-bottom: 2px;
  text-decoration: none;
  transition: all .2s var(--ease);
  position: relative;
}
.sidebar-nav-item i:first-child {
  width: 18px;
  font-size: 14px;
  text-align: center;
  color: rgba(255,255,255,0.5);
}
.sidebar-nav-item:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
}
.sidebar-nav-item:hover i:first-child { color: var(--rr-gold); }
.sidebar-nav-item.active {
  background: rgba(212, 164, 55, 0.12);
  color: #fff;
}
.sidebar-nav-item.active i:first-child { color: var(--rr-gold); }
.sidebar-nav-item.active::before {
  content: '';
  position: absolute;
  left: -12px; top: 50%;
  transform: translateY(-50%);
  width: 3px; height: 20px;
  background: var(--rr-gold);
  border-radius: 0 3px 3px 0;
}
.nav-badge {
  margin-left: auto;
  background: var(--rr-red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  min-width: 20px;
  text-align: center;
}

.sidebar-footer {
  padding: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 10px;
}
.sidebar-user {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}
.su-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rr-gold), var(--rr-gold-deep));
  color: var(--rr-navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.su-name {
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.1;
  margin-bottom: 2px;
}
.su-role {
  font-size: 10.5px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.btn-logout {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all .2s var(--ease);
}
.btn-logout:hover { background: var(--rr-red); color: #fff; }

.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1015;
  backdrop-filter: blur(2px);
}
.sidebar-overlay.active { display: block; }

.admin-main {
  margin-left: 260px;
  min-height: 100vh;
}
.admin-topbar {
  background: #fff;
  border-bottom: 1px solid var(--rr-border);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.btn-sidebar-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--rr-navy);
  font-size: 20px;
  padding: 6px 10px;
  cursor: pointer;
}
.topbar-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--rr-navy);
  flex: 1;
}
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-content {
  padding: 28px;
}
.page-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--rr-navy);
  margin: 0;
}

@media (max-width: 991.98px) {
  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.sidebar-open { transform: translateX(0); box-shadow: var(--shadow-xl); }
  .admin-main { margin-left: 0; }
  .btn-sidebar-toggle { display: block; }
  .admin-content { padding: 20px 16px; }
  .admin-topbar { padding: 14px 16px; }
}

/* ========== ADMIN CARDS ========== */
.admin-card {
  background: #fff;
  border: 1px solid var(--rr-border);
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}
.admin-card-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--rr-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--rr-navy);
  font-size: 15px;
  margin: 0;
}
.admin-card-body { padding: 20px; }
.admin-card-body.p-0 { padding: 0; }

/* ========== STAT CARDS ========== */
.dashboard-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.stat-card {
  background: #fff;
  border: 1px solid var(--rr-border);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: all .2s var(--ease);
}
.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.stat-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  margin-bottom: 12px;
}
.stat-card-icon.bg-warning-soft { background: var(--rr-orange-soft); color: var(--rr-orange); }
.stat-card-icon.bg-info-soft    { background: var(--rr-blue-soft);   color: var(--rr-blue); }
.stat-card-icon.bg-primary-soft { background: rgba(10,37,64,0.08);   color: var(--rr-navy); }
.stat-card-icon.bg-success-soft { background: var(--rr-green-soft);  color: var(--rr-green); }

.stat-card-value {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  color: var(--rr-navy);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-card-label {
  font-size: 12.5px;
  color: var(--rr-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.stat-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--rr-blue);
  text-decoration: none;
}
.stat-link:hover { color: var(--rr-navy); }

@media (max-width: 991.98px) {
  .dashboard-stat-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ========== ADMIN TABLES ========== */
.table-responsive-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  min-width: 680px;
}
.admin-table thead th {
  background: var(--rr-bg);
  color: var(--rr-text-muted);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--rr-border);
}
.admin-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--rr-border-soft);
  color: var(--rr-text-body);
  vertical-align: middle;
}
.admin-table tbody tr:hover { background: var(--rr-bg); }
.admin-table tbody tr:last-child td { border-bottom: none; }

.status-badge, .inq-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.status-pending, .inq-status-new { background: var(--rr-orange-soft); color: var(--rr-orange); }
.status-reviewing, .inq-status-contacted { background: var(--rr-blue-soft); color: var(--rr-blue); }
.status-estimated, .status-waiting_approval { background: #FEF3C7; color: #92400E; }
.status-scheduled, .inq-status-ongoing { background: rgba(10,37,64,0.08); color: var(--rr-navy); }
.status-on_the_way { background: #E0E7FF; color: #4338CA; }
.status-in_progress { background: #DBEAFE; color: #1E40AF; }
.status-completed, .inq-status-closed { background: var(--rr-green-soft); color: var(--rr-green); }
.status-cancelled, .inq-status-cancelled { background: var(--rr-red-soft); color: var(--rr-red); }

.btn-xs {
  padding: 4px 10px;
  font-size: 11.5px;
  font-weight: 600;
  border-radius: 6px;
}

/* ========== LOGIN PAGE ========== */
.admin-login-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 20%, rgba(212,164,55,0.08), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(37,99,235,0.06), transparent 50%),
    linear-gradient(135deg, var(--rr-navy-deep) 0%, var(--rr-navy) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.admin-login-wrapper {
  width: 100%;
  max-width: 420px;
}
.admin-login-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-xl);
}
.login-brand {
  text-align: center;
  margin-bottom: 32px;
}
.login-logo {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--rr-navy) 0%, var(--rr-navy-soft) 100%);
  color: var(--rr-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-sm);
}
.login-title {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  color: var(--rr-navy);
  margin: 0 0 4px;
}
.login-subtitle {
  color: var(--rr-text-muted);
  font-size: 13px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.login-footer-note {
  text-align: center;
  margin-top: 24px;
  font-size: 12px;
  color: var(--rr-text-muted);
  padding-top: 20px;
  border-top: 1px solid var(--rr-border-soft);
}
.btn-toggle-pw {
  cursor: pointer;
  background: #fff !important;
  border-left: 0 !important;
  color: var(--rr-text-muted);
}

/* ========== BADGES & CHIPS ========== */
.badge-popular-lbl { background: var(--rr-gold-soft); color: var(--rr-gold-deep); }

/* ========== UTILITY ========== */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s var(--ease-out);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.divider-text {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--rr-text-muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 20px 0;
}
.divider-text::before, .divider-text::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rr-border);
}

/* Form iOS zoom prevention */
.form-control-rr, .form-select-rr, .form-control, .form-select {
  font-size: 16px;
}
@media (min-width: 576px) {
  .form-control-rr, .form-select-rr { font-size: 15px; }
}

/* Alerts */
.alert {
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 14px;
}
.alert-success { background: var(--rr-green-soft); border-color: rgba(5,150,105,0.2); color: #065F46; }
.alert-danger  { background: var(--rr-red-soft);   border-color: rgba(220,38,38,0.2); color: #991B1B; }
.alert-warning { background: var(--rr-orange-soft); border-color: rgba(234,88,12,0.2); color: #9A3412; }
.alert-info    { background: var(--rr-blue-soft);  border-color: rgba(37,99,235,0.2); color: #1E40AF; }

/* Bootstrap modal tweaks */
.modal-content { border-radius: var(--radius-lg); border: none; box-shadow: var(--shadow-xl); }
.modal-header { border-bottom: 1px solid var(--rr-border); padding: 20px 24px; }
.modal-title { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--rr-navy); font-weight: 700; }
.modal-body { padding: 24px; }
.modal-footer { border-top: 1px solid var(--rr-border); padding: 16px 24px; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--rr-border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--rr-text-muted); }

/* Print */
@media print {
  .sticky-mobile-cta, .float-wa-btn, .admin-sidebar,
  .admin-topbar, .navbar-rr, .topbar { display: none !important; }
  body { padding: 0 !important; }
}

/* Focus accessibility */
*:focus-visible {
  outline: 2px solid var(--rr-gold);
  outline-offset: 2px;
}
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline-offset: 2px;
}

/* ========== BACKWARD COMPAT ALIAS ========== */
:root {
  --rr-off-white: var(--rr-bg);
  --rr-gray-50:   var(--rr-bg);
  --rr-gray-100:  var(--rr-border-soft);
  --rr-gray-200:  var(--rr-border);
  --rr-gray-300:  var(--rr-border);
  --rr-gray-400:  var(--rr-text-muted);
  --rr-gray-500:  var(--rr-text-muted);
}

/* ================================================================
   MISSING COMPONENTS — Appended patch
   ================================================================ */

/* ========== UTILITY / GENERIC ========== */
.section-padding { padding: 80px 0; }
@media (max-width: 768px) { .section-padding { padding: 56px 0; } }
.font-display { font-family: 'DM Serif Display', Georgia, serif !important; }
.table-row-muted { opacity: .55; }
.admin-flash-wrap { }
.order-number { font-family: 'Courier New', monospace; font-size: 12.5px; font-weight: 700; color: var(--rr-navy); }
.urgency-badge {
  display: inline-flex; align-items: center;
  padding: 4px 10px; border-radius: var(--radius-full);
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
}
.urgency-normal { background: var(--rr-blue-soft); color: var(--rr-blue); }
.urgency-urgent { background: var(--rr-orange-soft); color: var(--rr-orange); }
.urgency-emergency { background: var(--rr-red-soft); color: var(--rr-red); }

/* ========== ADMIN CARD FOOTER ========== */
.admin-card-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--rr-border);
  background: var(--rr-bg);
  font-size: 13px;
  color: var(--rr-text-muted);
}

/* ========== ADMIN DASHBOARD ========== */
.dashboard-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.stat-card-warning { border-left: 4px solid var(--rr-orange); }
.stat-card-info    { border-left: 4px solid var(--rr-blue); }
.stat-card-primary { border-left: 4px solid var(--rr-navy); }
.stat-card-danger  { border-left: 4px solid var(--rr-red); }
.stat-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin-bottom: 12px;
  background: var(--rr-bg); color: var(--rr-navy);
}
.stat-card-warning .stat-icon { background: var(--rr-orange-soft); color: var(--rr-orange); }
.stat-card-info    .stat-icon { background: var(--rr-blue-soft);   color: var(--rr-blue); }
.stat-card-primary .stat-icon { background: rgba(10,37,64,.08);    color: var(--rr-navy); }
.stat-card-danger  .stat-icon { background: var(--rr-red-soft);    color: var(--rr-red); }
.stat-value {
  font-family: 'DM Serif Display', serif; font-size: 30px;
  color: var(--rr-navy); line-height: 1; margin-bottom: 4px;
}
.stat-label {
  font-size: 12px; color: var(--rr-text-muted);
  font-weight: 600; text-transform: uppercase; letter-spacing: .04em;
}
.stat-link { display: inline-block; margin-top: 8px; font-size: 12px; font-weight: 600; color: var(--rr-blue); }
.stat-card-sm {
  background: #fff; border: 1px solid var(--rr-border);
  border-radius: var(--radius-md); padding: 16px 18px;
  text-align: center; height: 100%;
}
.sc-val { font-family: 'DM Serif Display', serif; font-size: 26px; color: var(--rr-navy); line-height: 1; }
.sc-lbl { font-size: 11.5px; color: var(--rr-text-muted); font-weight: 600; margin-top: 4px; }
.top-service-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--rr-border-soft);
  font-size: 13.5px;
}
.top-service-item:last-child { border-bottom: none; }
.ts-rank {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--rr-bg); color: var(--rr-text-muted);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 12px; flex-shrink: 0;
}
.ts-name { flex: 1; font-weight: 600; color: var(--rr-navy); }
.ts-count { font-size: 12px; color: var(--rr-text-muted); font-weight: 600; }

/* ========== ADMIN ORDER DETAIL ========== */
.detail-field { margin-bottom: 4px; }
.detail-field label {
  display: block; font-size: 11px; font-weight: 700; color: var(--rr-text-muted);
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px;
}
.detail-field span, .detail-field div { color: var(--rr-text-body); font-size: 14px; }
.problem-desc-box {
  background: var(--rr-bg); border: 1px solid var(--rr-border);
  border-radius: var(--radius-md); padding: 14px 16px;
  font-size: 13.5px; line-height: 1.7; color: var(--rr-text-body);
  white-space: pre-wrap; word-break: break-word;
}
.estimation-value { font-size: 18px; font-weight: 700; color: var(--rr-green); }
.order-photo-thumb {
  max-width: 280px; max-height: 200px; width: 100%; height: auto;
  border-radius: var(--radius-md); border: 1px solid var(--rr-border);
  object-fit: cover;
}

/* Admin timeline (order detail) */
.timeline-item-admin {
  display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start;
}
.tia-dot {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: var(--rr-bg); border: 2px solid var(--rr-border);
  display: flex; align-items: center; justify-content: center;
}
.tia-dot.status-completed { background: var(--rr-green-soft); border-color: var(--rr-green); }
.tia-dot.status-scheduled, .tia-dot.status-on_the_way { background: var(--rr-blue-soft); border-color: var(--rr-blue); }
.tia-dot.status-pending, .tia-dot.status-reviewing { background: var(--rr-orange-soft); border-color: var(--rr-orange); }
.tia-dot.status-cancelled { background: var(--rr-red-soft); border-color: var(--rr-red); }
.tia-content { flex: 1; }
.tia-status { font-weight: 700; color: var(--rr-navy); font-size: 14px; margin-bottom: 2px; }
.tia-note { font-size: 13px; color: var(--rr-text-body); margin-bottom: 4px; }
.tia-meta { font-size: 12px; color: var(--rr-text-muted); }

/* ========== ORDER SUCCESS PAGE ========== */
.order-success-icon {
  width: 80px; height: 80px; margin: 0 auto 24px;
  border-radius: 50%; background: var(--rr-green-soft);
  border: 3px solid var(--rr-green);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; color: var(--rr-green);
}
.tracking-code-display {
  background: var(--rr-bg); border: 1.5px solid var(--rr-border);
  border-radius: var(--radius-md); padding: 18px; text-align: center; margin-bottom: 16px;
}
.tracking-code-val {
  font-family: 'Courier New', monospace; font-size: 28px; font-weight: 700;
  color: var(--rr-navy); letter-spacing: .12em; word-break: break-all;
}

/* ========== TRACKING PAGE — Result section ========== */
.tracking-result {
  background: var(--rr-white); border: 1px solid var(--rr-border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); margin-top: 24px;
}
.tracking-result-header {
  background: linear-gradient(135deg, var(--rr-navy) 0%, var(--rr-navy-soft) 100%);
  color: #fff; padding: 20px 28px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.tracking-result-body { padding: 24px 28px; }
.tracking-status-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  color: #fff; padding: 6px 14px; border-radius: var(--radius-full);
  font-size: 13px; font-weight: 700; letter-spacing: .02em;
}
@media (max-width: 575.98px) { .tracking-result-header, .tracking-result-body { padding: 16px 18px; } }

/* ========== SERVICES PAGE ========== */
.sticky-tabs { position: sticky; top: 72px; z-index: 99; background: var(--rr-bg) !important; }
.category-tabs { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; flex-wrap: nowrap; }
.category-tabs::-webkit-scrollbar { height: 0; }
.btn-tab {
  padding: 9px 20px; background: var(--rr-white); border: 1.5px solid var(--rr-border);
  border-radius: var(--radius-full); font-size: 13px; font-weight: 600;
  color: var(--rr-text-body); cursor: pointer; white-space: nowrap;
  transition: all .2s var(--ease);
}
.btn-tab:hover  { border-color: var(--rr-navy); color: var(--rr-navy); }
.btn-tab.active { background: var(--rr-navy); color: #fff; border-color: var(--rr-navy); }
.service-category-block { margin-bottom: 48px; }
.section-label-row {
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px;
}
.section-label-icon {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--rr-navy) 0%, var(--rr-navy-soft) 100%);
  color: var(--rr-gold); display: flex; align-items: center; justify-content: center;
  font-size: 22px; box-shadow: var(--shadow-sm);
}
.section-cat-title {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 22px; font-weight: 700;
  color: var(--rr-navy); margin: 0 0 4px;
}
.service-card-item { }
.service-icon-wrap {
  width: 54px; height: 54px; border-radius: 14px; margin-bottom: 18px;
  background: var(--rr-blue-soft); color: var(--rr-blue);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.service-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 17px; font-weight: 700; color: var(--rr-navy); margin-bottom: 8px; }
.service-desc { font-size: 13.5px; color: var(--rr-text-muted); line-height: 1.6; margin-bottom: 14px; }
.service-benefits { list-style: none; padding: 0; margin: 0 0 16px; }
.service-benefits li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; color: var(--rr-text-body); padding: 5px 0;
  border-bottom: 1px solid var(--rr-border-soft);
}
.service-benefits li:last-child { border-bottom: none; }
.service-benefits li i { color: var(--rr-gold); margin-top: 2px; flex-shrink: 0; }
.service-price-note { font-size: 12.5px; color: var(--rr-text-muted); font-style: italic; margin-bottom: 12px; }
.service-card-footer { padding-top: 16px; border-top: 1px solid var(--rr-border-soft); margin-top: auto; display: flex; flex-direction: column; gap: 8px; }
.service-badge {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  font-size: 10px; font-weight: 700; padding: 3px 10px;
  border-radius: var(--radius-full); text-transform: uppercase; letter-spacing: .05em;
}
.service-badge.badge-popular, .service-badge.badge-Populer  { background: var(--rr-gold); color: var(--rr-navy-deep); }
.service-badge.badge-emergency                              { background: var(--rr-red);  color: #fff; }
.service-badge.badge-favorite, .service-badge.badge-Cepat   { background: var(--rr-blue); color: #fff; }
.service-badge-inline {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; padding: 4px 12px;
  border-radius: var(--radius-full); text-transform: uppercase; letter-spacing: .04em;
  margin-bottom: 14px;
}
.why-us-strip { background: var(--rr-navy); padding: 40px 0; }
.why-strip-item { color: rgba(255,255,255,.85); }
.why-strip-item i { font-size: 28px; color: var(--rr-gold); margin-bottom: 12px; display: block; }
.why-strip-item p { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin: 0; }
.cta-section-bottom {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--rr-navy-deep) 0%, var(--rr-navy) 100%);
  color: #fff;
}
.cta-section-bottom h2 { color: #fff; }
.cta-section-bottom p { color: rgba(255,255,255,.8); }

/* ========== SERVICE DETAIL PAGE ========== */
.service-detail-hero {
  background:
    radial-gradient(circle at top right, rgba(212,164,55,.08), transparent 60%),
    linear-gradient(180deg, var(--rr-navy-deep) 0%, var(--rr-navy) 100%);
  padding: 70px 0 50px; color: #fff;
}
.service-detail-hero .breadcrumb a { color: rgba(255,255,255,.6); }
.service-detail-hero .breadcrumb-item.active { color: rgba(255,255,255,.9); }
.service-detail-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }
.service-detail-hero .page-hero-title { color: #fff; }
.service-detail-hero .page-hero-subtitle { color: rgba(255,255,255,.8); }
.service-detail-icon-hero {
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,.06); border: 2px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 80px; color: var(--rr-gold);
}
.content-card {
  background: var(--rr-white); border: 1px solid var(--rr-border);
  border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-xs);
}
.content-section-title {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 700;
  color: var(--rr-navy); margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 1px solid var(--rr-border-soft);
}
.content-body { font-size: 15px; line-height: 1.75; color: var(--rr-text-body); }
.benefit-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 14px 16px; background: var(--rr-bg);
  border: 1px solid var(--rr-border); border-radius: var(--radius-md);
  font-size: 13.5px; font-weight: 600; color: var(--rr-text-body);
  transition: all .2s var(--ease);
}
.benefit-item:hover { border-color: var(--rr-gold); background: var(--rr-gold-soft); }
.benefit-item i { color: var(--rr-gold); margin-top: 2px; flex-shrink: 0; }
.process-steps-detail { display: flex; flex-direction: column; gap: 0; }
.process-step-item {
  display: flex; gap: 16px; padding: 16px 0;
  border-bottom: 1px solid var(--rr-border-soft);
}
.process-step-item:last-child { border-bottom: none; }
.ps-num {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--rr-gold) 0%, var(--rr-gold-deep) 100%);
  color: var(--rr-navy-deep); display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif; font-size: 18px;
}
.ps-content { flex: 1; }
.ps-content strong { display: block; color: var(--rr-navy); font-size: 14px; margin-bottom: 4px; }
.ps-content p { font-size: 13px; color: var(--rr-text-muted); margin: 0; line-height: 1.55; }
.pricing-note-card {
  background: var(--rr-gold-soft); border: 1px solid rgba(212,164,55,.3);
  border-radius: var(--radius-md); padding: 18px 20px;
}
.sidebar-cta-card {
  background: var(--rr-white); border: 1px solid var(--rr-border);
  border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-md);
}
.sidebar-icon {
  width: 70px; height: 70px; border-radius: 18px; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--rr-navy) 0%, var(--rr-navy-soft) 100%);
  color: var(--rr-gold); display: flex; align-items: center; justify-content: center;
  font-size: 30px;
}
.sidebar-price { font-size: 15px; font-weight: 700; color: var(--rr-gold-deep); margin-bottom: 20px; }
.sidebar-guarantee { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--rr-text-muted); }

/* ========== PROMOS PAGE ========== */
.promos-hero {
  background:
    radial-gradient(circle at top right, rgba(212,164,55,.12), transparent 50%),
    linear-gradient(180deg, var(--rr-navy-deep) 0%, var(--rr-navy) 100%);
  padding: 80px 0 60px; color: #fff;
}
.promos-hero .page-hero-title { color: #fff; }
.promos-hero .page-hero-subtitle { color: rgba(255,255,255,.8); }
.promo-card-urgent { border-color: var(--rr-red) !important; }
.promo-card-urgent:hover { box-shadow: 0 12px 32px rgba(220,38,38,.15) !important; }
.promo-urgent-ribbon {
  background: var(--rr-red); color: #fff;
  font-size: 11px; font-weight: 700; padding: 6px 16px;
  text-align: center; letter-spacing: .04em;
}
.promo-banner {
  width: 100%; height: 160px; overflow: hidden; position: relative;
  background: linear-gradient(135deg, var(--rr-navy) 0%, var(--rr-navy-soft) 100%);
}
.promo-banner img { width: 100%; height: 100%; object-fit: cover; }
.promo-banner-default {
  display: flex; align-items: center; justify-content: center;
  font-size: 56px; color: var(--rr-gold); opacity: .3;
}
.promo-target-badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  color: var(--rr-text-muted); margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: .04em;
}
.promo-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 700; color: var(--rr-navy); margin-bottom: 8px; line-height: 1.3; }
.promo-desc { font-size: 13.5px; color: var(--rr-text-muted); line-height: 1.55; margin-bottom: 14px; flex: 1; }
.promo-code-block {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  background: var(--rr-gold-soft); border: 1.5px dashed var(--rr-gold);
  border-radius: var(--radius-md); padding: 10px 14px; margin-bottom: 12px;
}
.code-label { font-size: 10px; font-weight: 700; color: var(--rr-text-muted); text-transform: uppercase; display: block; }
.promo-code-block .promo-code { font-size: 18px; display: flex; flex-direction: column; }
.btn-copy-code {
  background: rgba(212,164,55,.15); border: none; cursor: pointer;
  padding: 6px 10px; border-radius: var(--radius-sm); color: var(--rr-gold-deep);
  font-size: 13px; transition: background .2s;
}
.btn-copy-code:hover { background: var(--rr-gold); color: #fff; }
.promo-validity { font-size: 12.5px; color: var(--rr-text-muted); margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
.days-left { font-weight: 700; color: var(--rr-navy); }
.days-left.urgent { color: var(--rr-red); }
.promo-card-actions { margin-top: 12px; }

/* ========== COMMERCIAL PAGE ========== */
.commercial-hero {
  background:
    radial-gradient(circle at top right, rgba(37,99,235,.08), transparent 50%),
    linear-gradient(180deg, var(--rr-navy-deep) 0%, var(--rr-navy) 100%);
  padding: 80px 0 60px; color: #fff;
}
.commercial-hero .page-hero-title { color: #fff; }
.commercial-hero .page-hero-subtitle { color: rgba(255,255,255,.8); }
.commercial-advantage-card {
  background: var(--rr-white); border: 1px solid var(--rr-border);
  border-radius: var(--radius-lg); padding: 24px;
  display: flex; align-items: flex-start; gap: 16px;
  transition: all .25s var(--ease); height: 100%;
}
.commercial-advantage-card:hover { border-color: var(--rr-gold); box-shadow: var(--shadow-md); }
.ca-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--rr-navy) 0%, var(--rr-navy-soft) 100%);
  color: var(--rr-gold); display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.commercial-service-list { list-style: none; padding: 0; margin: 0; }
.commercial-service-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 0; border-bottom: 1px solid var(--rr-border-soft);
  font-size: 14px; color: var(--rr-text-body);
}
.commercial-service-list li:last-child { border-bottom: none; }
.commercial-service-list li i { color: var(--rr-gold); flex-shrink: 0; margin-top: 3px; }
.inquiry-form-card {
  background: var(--rr-white); border: 1px solid var(--rr-border);
  border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow-md);
}
@media (max-width: 575.98px) { .inquiry-form-card { padding: 24px 20px; } }
.inquiry-success { }
.success-icon {
  width: 90px; height: 90px; margin: 0 auto 24px;
  border-radius: 50%; background: var(--rr-green-soft); border: 3px solid var(--rr-green);
  display: flex; align-items: center; justify-content: center;
  font-size: 42px; color: var(--rr-green);
}
.contact-strip-section {
  background: var(--rr-bg); border-top: 1px solid var(--rr-border);
  border-bottom: 1px solid var(--rr-border); padding: 40px 0;
}
.form-section-block { margin-bottom: 32px; }
.form-block-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 700; color: var(--rr-navy); margin-bottom: 20px; }
.form-section-title { font-family: 'DM Serif Display', serif; font-size: 26px; color: var(--rr-navy); margin-bottom: 0; }

/* ========== SETUP PAGE ========== */
.setup-card { max-width: 600px; margin: 60px auto; background: #fff; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); overflow: hidden; }
.setup-header { background: linear-gradient(135deg, var(--rr-navy-deep) 0%, var(--rr-navy) 100%); color: #fff; padding: 32px; text-align: center; }
.setup-logo { font-family: 'DM Serif Display', serif; font-size: 2.5rem; font-weight: 400; color: var(--rr-gold); }
.setup-body { padding: 32px; }
.warning-box { background: #fff3cd; border: 1px solid #ffc107; border-radius: var(--radius-md); padding: 16px; margin-bottom: 24px; }

/* ========== ADMIN ORDER LIST — urgency & number ========== */
.urgency-card-icon { font-size: 24px; }
.urgency-card-label { font-weight: 700; color: var(--rr-navy); font-size: 13px; margin-bottom: 2px; }
.urgency-card-desc  { font-size: 11px; color: var(--rr-text-muted); }

/* ========== REMAINING MISSING CLASSES (patch 2) ========== */

/* Admin sidebar — su-info (user info block) */
.su-info { flex: 1; min-width: 0; }
.su-info .su-name  { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Admin promo form — city group label */
.city-region-label {
  font-size: 10px; font-weight: 700; color: rgba(255,255,255,.45);
  text-transform: uppercase; letter-spacing: .1em;
  padding: 10px 4px 4px; margin-top: 6px;
}
/* (Inside a white card context) */
.admin-card .city-region-label { color: var(--rr-text-muted); }

/* Commercial page — property type item */
.property-type-item {
  background: var(--rr-bg); border: 1px solid var(--rr-border);
  border-radius: var(--radius-md); padding: 12px 14px;
  font-size: 13.5px; font-weight: 600; color: var(--rr-navy);
  display: flex; align-items: center;
  transition: all .2s var(--ease);
}
.property-type-item:hover { border-color: var(--rr-gold); background: var(--rr-gold-soft); }

/* Tracking page — log timeline (public) */
.timeline-item {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 2px 12px;
  padding: 14px 16px;
  background: var(--rr-bg); border: 1px solid var(--rr-border);
  border-radius: var(--radius-md); margin-bottom: 10px;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute; left: -26px; top: 18px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--rr-navy); border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--rr-navy);
}
.timeline-item:first-child { border-color: var(--rr-gold); background: rgba(212,164,55,.04); }
.timeline-item:first-child::before { background: var(--rr-gold); box-shadow: 0 0 0 2px var(--rr-gold); }
.timeline-status {
  grid-column: 1; font-weight: 700; font-size: 14px; color: var(--rr-navy);
}
.timeline-time {
  grid-column: 2; grid-row: 1;
  font-size: 11.5px; color: var(--rr-text-muted); font-weight: 600;
  white-space: nowrap; text-align: right;
}
.timeline-note {
  grid-column: 1 / -1; font-size: 13px; color: var(--rr-text-muted); line-height: 1.5;
}
.timeline-dot {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--rr-border); display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--rr-text-muted); margin-right: 4px; flex-shrink: 0;
}
.timeline-dot-done   { background: var(--rr-green-soft); color: var(--rr-green); }
.timeline-dot-active { background: var(--rr-navy); color: var(--rr-gold); }
.timeline-dot-cancel { background: var(--rr-red-soft); color: var(--rr-red); }
