/* ======= HEADER STYLES ======= */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800;900&display=swap');

:root {
    --rh-primary: #00d254;
    --rh-primary-dark: #00b147;
    --rh-dark-bg: #0d1b2a;
    --rh-glass-bg: rgba(13, 27, 42, 0.85);
    --rh-text-light: rgba(255,255,255,0.9);
}

.rh-header-overhaul {
    font-family: 'Cairo', sans-serif !important;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* TOPBAR */
.rh-topbar-new {
    background: #060e16;
    padding: 6px 0;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.rh-top-info a { color: inherit; text-decoration: none; transition: 0.3s; }
.rh-top-info a:hover { color: var(--rh-primary); }
.rh-top-info i { color: var(--rh-primary); margin-left: 5px; }

.rh-top-socials a {
    color: inherit;
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    font-size: 0.75rem;
    transition: 0.3s;
}
.rh-top-socials a:hover { background: var(--rh-primary); color: #fff; transform: translateY(-3px); }

/* MAIN NAV */
.rh-nav-main {
    height: 85px;
    background: var(--rh-glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: all 0.4s ease;
}
.rh-logo-img { width: 130px; transition: 0.3s; }

/* DESKTOP MENU */
.rh-menu-desktop ul { gap: 4px; }
.rh-menu-desktop a {
    color: var(--rh-text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 12px;
    border-radius: 8px;
    transition: 0.3s;
    display: flex; align-items: center; gap: 6px;
}
.rh-menu-desktop a i { font-size: 0.9em; opacity: 0.7; color: var(--rh-primary); }
.rh-menu-desktop a:hover { background: rgba(0, 210, 84, 0.1); color: var(--rh-primary); }

/* USER DROPDOWN */
.rh-glass-dropdown {
    background: rgba(13, 27, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 12px;
    padding: 10px 0;
    min-width: 220px;
}
.rh-glass-dropdown .dropdown-item {
    color: var(--rh-text-light);
    font-weight: 600;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
}
.rh-glass-dropdown .dropdown-item i {
    color: var(--rh-primary);
    opacity: 0.9;
}
.rh-glass-dropdown .dropdown-item.text-danger i {
    color: #dc3545;
}
.rh-glass-dropdown .dropdown-item:hover, .rh-glass-dropdown .dropdown-item:focus {
    background: rgba(255,255,255,0.05);
    color: #fff;
    transform: translateX(-5px); /* Gentle slide for RTL */
}

/* BUTTONS */
.rh-btn-login-new {
    background: linear-gradient(135deg, var(--rh-primary-dark), var(--rh-primary));
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: flex; align-items: center; gap: 8px;
    box-shadow: 0 8px 20px rgba(0, 210, 84, 0.3);
    transition: 0.3s;
}
.rh-btn-login-new:hover { transform: translateY(-3px); box-shadow: 0 12px 25px rgba(0, 210, 84, 0.5); }

/* USER BADGE (LOGGED IN) */
.rh-btn-logged-in {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--rh-text-light) !important;
    padding: 6px 16px 6px 6px; /* Less left padding for the avatar */
    border-radius: 50px;
    font-weight: 600; font-size: 0.95rem;
    text-decoration: none;
    display: flex; align-items: center; gap: 10px;
    transition: 0.3s;
}
.rh-btn-logged-in[dir="rtl"] { padding: 6px 6px 6px 16px; } /* RTL adjustment */
.rh-btn-logged-in:hover, .rh-btn-logged-in[aria-expanded="true"] {
    background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2);
}
.rh-avatar-circle {
    width: 32px; height: 32px;
    background: linear-gradient(135deg, var(--rh-primary-dark), var(--rh-primary));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(0, 210, 84, 0.3);
}
.rh-dropdown-caret { font-size: 0.75rem; opacity: 0.7; transition: transform 0.3s; }
.rh-btn-logged-in[aria-expanded="true"] .rh-dropdown-caret { transform: rotate(180deg); }

/* Hide Bootstrap default caret to fix empty box glitch */
.dropdown-toggle::after { display: none !important; }

/* MOBILE TOGGLE */
.rh-mobile-toggle {
    background: none; border: none;
    width: 32px; height: 26px;
    display: flex; flex-direction: column; justify-content: space-between;
    cursor: pointer; padding: 0;
}
.rh-mobile-toggle span {
    width: 100%; height: 2px; background: var(--rh-primary);
    border-radius: 4px; transition: 0.3s;
}

/* MOBILE MENU OVERLAY */
.rh-mobile-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px); visibility: hidden; opacity: 0;
    transition: 0.4s; z-index: 2000;
}
.rh-mobile-overlay.active { visibility: visible; opacity: 1; }

.rh-mobile-menu {
    position: absolute; right: -100%; top: 0; bottom: 0;
    width: 300px; background: var(--rh-dark-bg);
    padding: 30px; transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.rh-mobile-overlay.active .rh-mobile-menu { right: 0; }

.rh-mobile-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 40px;
}
.rh-close-menu { background: none; border: none; color: #fff; font-size: 1.5rem; }

.rh-mobile-links { list-style: none; padding: 0; }
.rh-mobile-links li { margin-bottom: 15px; }
.rh-mobile-links a {
    color: #fff; text-decoration: none; font-size: 1.1rem;
    font-weight: 600; display: flex; align-items: center; gap: 12px;
    padding: 12px; border-radius: 10px; transition: 0.3s;
}
.rh-mobile-links a i { color: var(--rh-primary); width: 20px; text-align: center; }
.rh-mobile-links a:hover { background: rgba(255,255,255,0.05); }

.rh-mobile-login-link { border: 1px solid var(--rh-primary); margin-top: 20px; justify-content: center !important; color: var(--rh-primary) !important; }

/* STICKY EFFECT */
.header-scrolled .rh-nav-main { height: 72px; background: rgba(13, 27, 42, 0.98); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.header-scrolled .rh-logo-img { width: 105px; }

/* RESPONSIVE */
@media (max-width: 1200px) {
    .rh-logo-img { width: 115px; }
    .rh-nav-main { height: 80px; }
}

/* ======= FOOTER STYLES ======= */
.rh-footer {
  font-family: 'Cairo', sans-serif !important;
  background: linear-gradient(160deg, #0d1b2a 0%, #0f2540 50%, #0d1b2a 100%);
}

.rh-footer-main { padding: 70px 0 50px; }

/* Brand */
.rh-footer-desc { color: rgba(255,255,255,0.6); line-height: 1.9; font-size: 0.92rem; margin-bottom: 22px; }
.rh-footer-social { display: flex; gap: 10px; }
.rh-footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.7);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.08);
}
.rh-footer-social a:hover { background: #00d254; color: #fff; border-color: #00d254; transform: translateY(-3px); }

/* Widget */
.rh-footer-title {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #00d254;
  display: inline-block;
}
.rh-footer-links { list-style: none; padding: 0; margin: 0; }
.rh-footer-links li { margin-bottom: 10px; }
.rh-footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}
.rh-footer-links a .fa { color: #00d254; font-size: 0.75rem; }
.rh-footer-links a:hover { color: #00d254; padding-right: 4px; }

/* Address */
.rh-footer-address { font-style: normal; }
.rh-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px; color: rgba(255,255,255,0.65); font-size: 0.88rem;
}
.rh-contact-item .fa { color: #00d254; font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.rh-contact-item a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
.rh-contact-item a:hover { color: #00d254; }

.rh-footer-store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px; padding: 12px 20px; margin-top: 6px;
  text-decoration: none; transition: all 0.3s ease;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.rh-footer-store-btn small { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.55); }
.rh-footer-store-btn strong { display: block; font-size: 0.95rem; color: #fff; }
.rh-footer-store-btn .fa, .rh-footer-store-btn i { font-size: 1.4rem; color: #00d254; }
.rh-footer-store-btn:hover { 
  background: rgba(0,210,84,0.15); 
  border-color: #00d254; 
  color: #fff; 
  transform: translateY(-3px); 
  box-shadow: 0 8px 25px rgba(0,210,84,0.25);
}

/* Sub Footer */
.rh-subfooter {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 18px 0;
}
.rh-subfooter-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.rh-copyright { margin: 0; font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.rh-copyright a { color: #00d254; text-decoration: none; font-weight: 700; }
.rh-copyright a:hover { text-decoration: underline; }
.rh-footer-legal { list-style: none; margin: 0; padding: 0; display: flex; gap: 20px; }
.rh-footer-legal a { font-size: 0.82rem; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.rh-footer-legal a:hover { color: #00d254; }

/* ======= CONTENT STYLES ======= */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;800;900&family=Tajawal:wght@300;400;500;700;800&display=swap');

#content, #content * {
  font-family: 'Cairo', 'Tajawal', sans-serif !important;
}
.rh-stat-micro-icon { font-size: 1.2rem; margin-bottom: 8px; color: #00d254; display: block; }
.rh-btn-primary i { margin-left: 6px; }
.rh-car-btn i { margin-left: 4px; }
.rh-feature-list i { color: #00d254 !important; }

/* ======= SLIDER ======= */
.rh-carousel {
  position: relative;
  width: 100%;
  background-color: #0d1b2a;
  height: 90vh; /* Premium desktop height */
  min-height: 600px;
  max-height: 1000px;
  overflow: hidden;
}

.rh-carousel .carousel-inner,
.rh-carousel .carousel-item {
  height: 100%;
}

.rh-slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* The overlay holding the text */
.rh-slide-mask {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 100%);
  display: flex;
  align-items: center;  /* Vertically center on desktop */
  justify-content: center;
}

.rh-slide-mask .container {
  padding-left: 8% !important;
  padding-right: 8% !important;
  max-width: 900px;
}

/* Typography Elements */
.rh-slide-tag {
  display: inline-block;
  background: linear-gradient(90deg, #00b147, #00d254);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 6px 22px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 177, 71, 0.3);
}

.rh-slide-title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 18px;
  text-shadow: 0 4px 25px rgba(0,0,0,0.5);
}

.rh-slide-sub {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.95);
  line-height: 1.7;
  margin-bottom: 25px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Button & Arrows */
.carousel-control-prev, .carousel-control-next { opacity: 1; width: 8%; z-index: 10; }
.rh-slider-arrow-icon {
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}
.carousel-control-prev:hover .rh-slider-arrow-icon, 
.carousel-control-next:hover .rh-slider-arrow-icon {
  background: #00d254; border-color: #00d254; transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(0,210,84,0.5);
}

/* ========================================================
   RESPONSIVE DESIGN (TABLET & MOBILE FULL-SCREEN)
   ======================================================== */
@media (max-width: 991px) {
  .rh-carousel {
    height: 90vh;
    min-height: 550px;
  }
  .rh-slide-title { font-size: 2.8rem; }
}

@media (max-width: 767px) {
  .rh-carousel { 
    height: 100vh !important;
  }
  
  .rh-carousel .carousel-inner {
    position: absolute;
    inset: 0;
    height: 100vh !important;
  }
  
  .rh-carousel .carousel-item {
    height: 100vh !important;
  }

  .rh-carousel .carousel-item.active,
  .rh-carousel .carousel-item-next,
  .rh-carousel .carousel-item-prev {
    display: block !important;
  }

  .rh-carousel picture {
    display: block;
    height: 100vh;
    width: 100%;
    position: absolute;
    top: 0; left: 0;
    z-index: 1; 
  }

  .rh-slider-img {
    height: 100vh !important;
    width: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    position: absolute;
    top: 0; left: 0;
    z-index: 1; 
  }

  .rh-slide-mask {
    position: absolute;
    inset: 0;
    z-index: 10 !important;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 50%, rgba(13, 27, 42, 1) 100%);
    display: flex;
    align-items: flex-end !important;
    justify-content: center;
    padding-bottom: 70px;
    pointer-events: auto;
  }

  .rh-slide-mask .container {
    position: relative;
    z-index: 20;
  }

  .rh-slide-tag {
    padding: 6px 18px; 
    font-size: 0.8rem; 
    margin-bottom: 12px; 
  }
  .rh-slide-title {
    font-size: 2rem;
    margin-bottom: 10px;
    line-height: 1.3;
  }
  .rh-slide-sub {
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  
  .rh-btn-primary { 
    width: 100%; 
    max-width: 300px; 
    justify-content: center; 
  }
  
  .carousel-control-prev, .carousel-control-next { display: none; } 
}

@media (max-width: 575px) {
  .rh-slide-title { font-size: 1.8rem; }
  .rh-slide-sub { font-size: 1rem; }
  .rh-slide-mask { padding-bottom: 40px; }
}
.rh-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #00b147, #00d254);
  color: #fff !important;
  border: none;
  border-radius: 50px;
  padding: 14px 36px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 177, 71, 0.4);
}
.rh-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(0, 177, 71, 0.55);
  background: linear-gradient(135deg, #00d254, #00b147);
}
.rh-btn-primary:active {
  transform: translateY(-1px);
}

/* ======= STATS BAR ======= */
.rh-stats-bar {
  background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 100%);
  padding: 30px 0;
}
.rh-stat-item { padding: 12px 20px; border-left: 1px solid rgba(255,255,255,0.1); }
.rh-stat-item:last-child { border-left: none; }
.rh-stat-item strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: #00d254;
  line-height: 1;
  margin-bottom: 4px;
}
.rh-stat-item span { font-size: 0.9rem; color: rgba(255,255,255,0.7); font-weight: 500; }

/* ======= SECTION HEADERS ======= */
.rh-section-header { margin-bottom: 60px; }
.rh-section-tag {
  display: inline-block;
  background: rgba(0, 177, 71, 0.12);
  color: #00b147;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.rh-section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: #0d1b2a;
  line-height: 1.3;
  margin-bottom: 12px;
}
.rh-section-sub { font-size: 1.05rem; color: #666; max-width: 600px; margin: 0 auto; line-height: 1.8; }

/* ======= FEATURES ======= */
.rh-features-section {
  padding: 90px 0;
  background: #f8faff;
}
.rh-feature-row { margin-bottom: 80px; }
.rh-feature-row:last-child { margin-bottom: 0; }

.rh-feature-img-wrap {
  position: relative;
  background: linear-gradient(135deg, #e8f0fe, #c8dcff);
  border-radius: 30px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  overflow: visible;
}
.rh-feature-img-green { background: linear-gradient(135deg, #e8f9ee, #b8f0cc); }
.rh-feature-img-orange { background: linear-gradient(135deg, #fff3e0, #ffe0b2); }

.rh-feature-img {
  max-width: 100%;
  max-height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
  transition: transform 0.5s ease;
}
.rh-feature-img-wrap:hover .rh-feature-img { transform: translateY(-8px) scale(1.03); }

.rh-feature-badge {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #0d6efd, #0a58ca);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  box-shadow: 0 8px 25px rgba(13,110,253,0.4);
}
.rh-badge-green { background: linear-gradient(135deg, #00b147, #00d254); box-shadow: 0 8px 25px rgba(0,177,71,0.4); }
.rh-badge-orange { background: linear-gradient(135deg, #ff6b35, #ff8c42); box-shadow: 0 8px 25px rgba(255,107,53,0.4); }

.rh-feature-content { padding: 20px 0 20px 40px; }
[dir="rtl"] .rh-feature-content { padding: 20px 40px 20px 0; }

.rh-feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0d6efd, #0a58ca);
  color: #fff;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(13,110,253,0.3);
}
.rh-icon-green { background: linear-gradient(135deg, #00b147, #00d254); box-shadow: 0 8px 20px rgba(0,177,71,0.3); }
.rh-icon-orange { background: linear-gradient(135deg, #ff6b35, #ff8c42); box-shadow: 0 8px 20px rgba(255,107,53,0.3); }

.rh-feature-title { font-size: 1.7rem; font-weight: 900; color: #0d1b2a; margin-bottom: 14px; }
.rh-feature-text { font-size: 1rem; color: #555; line-height: 2; margin-bottom: 20px; }
.rh-feature-list { list-style: none; padding: 0; margin: 0 0 28px; }
.rh-feature-list li { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 0.97rem; color: #444; font-weight: 600; }
.rh-feature-list li .fa-check-circle { color: #00b147; font-size: 1rem; }

.rh-btn-outline {
  display: inline-flex;
  align-items: center;
  border: 2px solid #0d6efd;
  color: #0d6efd;
  border-radius: 50px;
  padding: 11px 30px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}
.rh-btn-outline:hover { background: #0d6efd; color: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(13,110,253,0.3); }
.rh-btn-outline-green { border-color: #00b147; color: #00b147; }
.rh-btn-outline-green:hover { background: #00b147; color: #fff; box-shadow: 0 8px 20px rgba(0,177,71,0.3); }
.rh-btn-outline-orange { border-color: #ff6b35; color: #ff6b35; }
.rh-btn-outline-orange:hover { background: #ff6b35; color: #fff; box-shadow: 0 8px 20px rgba(255,107,53,0.3); }

/* ======= ABOUT ======= */
.rh-about-section { padding: 90px 0; background: #fff; }
.rh-about-img-wrap { position: relative; display: inline-block; width: 100%; text-align: center; }
.rh-about-blob {
  position: absolute;
  width: 85%;
  height: 85%;
  background: radial-gradient(circle, rgba(0,177,71,0.09) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.rh-about-img {
  max-width: 100%;
  max-height: 500px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.12));
}
.rh-about-floating-card {
  position: absolute;
  bottom: 30px;
  left: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  z-index: 2;
  font-family: 'Cairo', sans-serif;
}
.rh-about-floating-card strong { display: block; font-size: 1.1rem; font-weight: 900; color: #0d1b2a; }
.rh-about-floating-card small { font-size: 0.75rem; color: #888; }

.rh-about-text { font-size: 1.05rem; color: #555; line-height: 2; margin: 16px 0 28px; }
.rh-about-features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 10px; }
.rh-about-feature-item { display: flex; align-items: center; gap: 14px; }
.rh-af-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, #0d6efd, #0a58ca);
  color: #fff; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.rh-af-green { background: linear-gradient(135deg, #00b147, #00d254); }
.rh-af-orange { background: linear-gradient(135deg, #ff6b35, #ff8c42); }
.rh-about-feature-item h6 { font-weight: 800; color: #a4b2c0ff; margin: 0; font-size: 0.95rem; }
.rh-about-feature-item small { color: #888; }

.rh-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 14px;
  padding: 12px 22px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.rh-store-btn small { display: block; font-size: 10px; opacity: 0.75; }
.rh-store-btn strong { display: block; font-size: 1rem; }
.rh-store-dark { background: #1a1a2e; color: #fff; }
.rh-store-dark:hover { background: #0d1117; color: #fff; transform: translateY(-3px); }
.rh-store-green { background: linear-gradient(135deg, #00b147, #00d254); color: #fff; }
.rh-store-green:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0,177,71,0.4); }

/* ======= SERVICES ======= */
.rh-services-section { padding: 90px 0; background: #f8faff; }
.rh-service-card {
  border-radius: 24px;
  overflow: hidden;
  padding: 40px;
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  box-shadow: 0 10px 40px rgba(0,0,0,0.07);
}
.rh-service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.12); }
.rh-service-blue { background: linear-gradient(135deg, #e8f0fe 0%, #f0f5ff 100%); }
.rh-service-green { background: linear-gradient(135deg, #e8f9ee 0%, #f0fff4 100%); }
.rh-service-icon {
  width: 66px; height: 66px;
  background: linear-gradient(135deg, #0d6efd, #0a58ca);
  color: #fff; border-radius: 20px; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 22px; box-shadow: 0 8px 20px rgba(13,110,253,0.35);
}
.rh-sv-icon-green { background: linear-gradient(135deg, #00b147, #00d254); box-shadow: 0 8px 20px rgba(0,177,71,0.35); }
.rh-service-body h4 { font-weight: 900; font-size: 1.4rem; color: #0d1b2a; margin-bottom: 12px; }
.rh-service-body p { color: #555; line-height: 1.9; margin-bottom: 16px; }
.rh-sv-list { list-style: none; padding: 0; margin: 0 0 24px; }
.rh-sv-list li { display: flex; align-items: center; gap: 9px; margin-bottom: 8px; font-size: 0.93rem; color: #444; font-weight: 600; }
.rh-sv-list li .fa-check { color: #00b147; }
.rh-btn-service {
  display: inline-flex; align-items: center;
  border-radius: 50px;
  padding: 12px 26px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
}
.rh-btn-blue { background: linear-gradient(135deg, #0d6efd, #0a58ca); color: #fff; box-shadow: 0 8px 20px rgba(13,110,253,0.3); }
.rh-btn-blue:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(13,110,253,0.45); color: #fff; }
.rh-btn-green { background: linear-gradient(135deg, #00b147, #00d254); color: #fff; box-shadow: 0 8px 20px rgba(0,177,71,0.3); }
.rh-btn-green:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,177,71,0.45); color: #fff; }
.rh-service-img-wrap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex; justify-content: center;
  pointer-events: none;
  opacity: 0.15;
}
.rh-service-img { max-width: 100%; max-height: 180px; height: auto; object-fit: contain; }

/* ======= APP SCREENS ======= */
.rh-screens-section { padding: 90px 0; background: #0d1b2a; }
.rh-screens-section .rh-section-tag { background: rgba(0,210,84,0.15); color: #00d254; }
.rh-screens-section .rh-section-title { color: #fff; }
.rh-screens-section .rh-section-sub { color: rgba(255,255,255,0.65); }

/* Slider Navigation Arrows */
.rh-slider-arrow {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  width: 45px; height: 45px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}
.rh-slider-arrow:hover { 
    background: #00d254; border-color: #00d254; 
    transform: translateY(-50%) scale(1.1); 
    box-shadow: 0 5px 15px rgba(0,210,84,0.4); 
}
.rh-arrow-right { right: 15px; }
.rh-arrow-left { left: 15px; }

.rh-screens-scroll {
  display: flex;
  overflow-x: auto;
  gap: 24px;
  padding: 10px 30px 40px;
  scroll-snap-type: x mandatory;
  justify-content: center;
}
@media (max-width: 1199px) { 
    .rh-screens-scroll { justify-content: flex-start; } 
    .rh-arrow-right { right: 5px; }
    .rh-arrow-left { left: 5px; }
}
.rh-screen-item { flex: 0 0 auto; scroll-snap-align: center; }
.rh-screen-img {
  max-width: 100%;
  max-height: 420px;
  height: auto;
  width: auto;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
  transition: transform 0.4s ease;
  object-fit: contain;
}
.rh-screen-img:hover { transform: translateY(-12px) scale(1.02); }

/* ======= CAR MODELS ======= */
.rh-models-section { padding: 90px 0; background: #f8faff; }
.rh-car-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
  height: 100%;
}
.rh-car-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
.rh-car-img-wrap {
  position: relative;
  background: linear-gradient(135deg, #f0f5ff 0%, #e8f4f8 100%);
  padding: 28px;
  display: flex; align-items: center; justify-content: center;
  min-height: 180px;
}
.rh-car-img { max-width: 100%; max-height: 140px; height: 140px; object-fit: contain; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.12)); }
.rh-car-img-placeholder { min-height: 140px; display: flex; align-items: center; justify-content: center; color: #ccc; }
.rh-car-year-badge {
  position: absolute; top: 12px; right: 12px;
  background: #fff; color: #0d1b2a;
  border-radius: 50px; padding: 4px 12px; font-size: 0.78rem; font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.rh-car-hot-badge {
  position: absolute; top: 12px; left: 12px;
  background: linear-gradient(135deg, #ff6b35, #ff8c42); color: #fff;
  border-radius: 50px; padding: 4px 10px; font-size: 0.73rem; font-weight: 700;
}
.rh-car-body { padding: 20px; }
.rh-car-category {
  display: inline-block;
  background: rgba(13,110,253,0.1); color: #0d6efd;
  border-radius: 50px; padding: 4px 14px; font-size: 0.78rem; font-weight: 700;
  margin-bottom: 10px;
}
.rh-car-name { font-size: 1.1rem; font-weight: 800; color: #0d1b2a; margin-bottom: 10px; }
.rh-car-specs { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: #666; font-weight: 600; margin-bottom: 16px; }
.rh-spec-dot { width: 4px; height: 4px; background: #ccc; border-radius: 50%; }
.rh-car-footer { display: flex; align-items: center; justify-content: space-between; }
.rh-car-price { display: flex; align-items: baseline; gap: 4px; }
.rh-price-amount { font-size: 1.4rem; font-weight: 900; color: #0d6efd; }
.rh-price-unit { font-size: 0.8rem; color: #999; }
.rh-car-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, #0d6efd, #0a58ca); color: #fff !important;
  border-radius: 50px; padding: 8px 20px; font-size: 0.85rem; font-weight: 700;
  text-decoration: none; transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(13,110,253,0.25);
}
.rh-car-btn:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 8px 20px rgba(13,110,253,0.35); 
  background: linear-gradient(135deg, #0a58ca, #0d6efd);
}

/* ======= MODAL ======= */
.rh-modal-content {
  background: linear-gradient(145deg, #0d1b2a, #1a2c3d);
  color: #fff;
  border: 1px solid rgba(0,210,84,0.3);
  border-radius: 24px;
}
.rh-reg-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.rh-reg-card:hover {
  border-color: #00d254;
  background: rgba(0,210,84,0.08);
  transform: translateY(-4px);
}
.rh-reg-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, #00b147, #00d254);
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin: 0 auto 16px;
  box-shadow: 0 8px 20px rgba(0,177,71,0.35);
}
.rh-reg-card h5 { color: #fff; font-weight: 800; margin-bottom: 6px; }
.rh-btn-cancel {
  background: #00d254; color: #fff;
  border: none; border-radius: 50px;
  padding: 11px 40px; font-size: 1rem; font-weight: 700;
  transition: all 0.3s ease; cursor: pointer;
}
.rh-btn-cancel:hover { background: #00b147; transform: scale(1.04); }

/* ======= UTILITIES ======= */
.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

@media (max-width: 768px) {
  .rh-feature-content { padding: 30px 0 0 !important; }
  .rh-feature-row { margin-bottom: 50px; }
  .rh-screens-section { padding: 60px 0; }
  .rh-screen-img { height: 280px; }
  .rh-about-floating-card { display: none; }
  .rh-stat-item { border-left: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
  .rh-stat-item:last-child { border-bottom: none; }
  .rh-btn-primary { padding: 12px 28px; font-size: 0.95rem; }
  .rh-slide-title { font-size: 2.3rem; }
  .rh-slider-arrow { width: 40px; height: 40px; font-size: 0.95rem; }
}
