/* ============================================================
   خدمات الغسيل المتنقل للأثاث والمنازل - Stylesheet
   Theme: Clean Blue Gradient (#0B5DC1)
   Direction: RTL (Arabic)
   Framework: Bootstrap 5 RTL Compatible
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800;900&family=Tajawal:wght@400;500;700;800;900&display=swap');

:root {
  /* Primary Brand Theme: #0B5DC1 and its Clean Logo Gradients */
  --clean-blue-light: #00a3ff;
  --clean-blue: #0b5dc1;
  --clean-blue-dark: #06439e;
  --clean-blue-deep: #05295f;
  --clean-blue-rgb: 11, 93, 193;

  /* The Signature "CLEAN" Gradient directly from the Logo */
  --clean-gradient: linear-gradient(135deg, #00a3ff 0%, #0b5dc1 55%, #06439e 100%);
  --clean-gradient-v: linear-gradient(180deg, #00a3ff 0%, #0b5dc1 55%, #06439e 100%);
  --clean-gradient-hover: linear-gradient(135deg, #1cb2ff 0%, #0e6fe6 55%, #084fb8 100%);

  /* Legacy primary compatibility mapped to clean blue */
  --primary-blue: var(--clean-blue);
  --primary-blue-dark: var(--clean-blue-dark);
  --primary-blue-light: var(--clean-blue-light);
  --primary-green: var(--clean-blue);
  --primary-green-dark: var(--clean-blue-dark);
  --primary-green-light: var(--clean-blue-light);
  --primary-green-rgb: var(--clean-blue-rgb);

  /* Hero Gradient */
  --hero-gradient-1: #05295f;
  --hero-gradient-2: #084399;
  --hero-gradient-3: #0b5dc1;
  --hero-gradient-4: #0099ff;

  /* Neutral & Dark Palette */
  --text-dark: #081a33;
  --text-body: #324968;
  --text-muted: #647d9e;

  --bg-light: #ffffff;
  --bg-soft: #f2f7fc;
  --bg-soft-blue: #e6f1fc;
  --bg-dark: #061833;
  --bg-dark-card: #0c254c;

  --border-light: #dae8f7;
  --border-dark: #12345f;

  --font-family-primary: 'Cairo', 'Tajawal', system-ui, -apple-system, sans-serif;
  --shadow-sm: 0 2px 10px rgba(11, 93, 193, 0.05);
  --shadow-md: 0 10px 30px rgba(11, 93, 193, 0.09);
  --shadow-lg: 0 20px 45px rgba(11, 93, 193, 0.15);
  --shadow-blue: 0 10px 30px rgba(11, 93, 193, 0.35);
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-primary);
  background-color: var(--bg-light);
  color: var(--text-dark);
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Navbar */
.site-navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition-smooth);
}

.site-navbar.scrolled {
  position: fixed;
  top: 0;
  background: rgba(11, 93, 193, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 0;
  box-shadow: 0 6px 25px rgba(5, 41, 95, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-brand-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.nav-link-custom {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.nav-link-custom:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 15px rgba(0, 163, 255, 0.3);
}

.btn-nav-action {
  background: #ffffff;
  color: var(--clean-blue);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 9px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 18px rgba(11, 93, 193, 0.25);
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-nav-action i {
  color: var(--clean-blue);
  font-size: 1.1rem;
}

.btn-nav-action:hover {
  background: #f0f7ff;
  color: var(--clean-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(11, 93, 193, 0.35);
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #05295f 0%, #0b5dc1 50%, #0099ff 100%);
  color: #ffffff;
  padding-top: 130px;
  padding-bottom: 90px;
  /* border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px; */
  overflow: hidden;
}

/* Ambient glow with clean blue lighting */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 80% 20%, rgba(0, 163, 255, 0.25) 0%, transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(11, 93, 193, 0.3) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

@media (min-width: 992px) {
  .hero-section {
    padding-top: 150px;
    padding-bottom: 110px;
    /* border-bottom-left-radius: 70px;
    border-bottom-right-radius: 70px; */
  }
}

/* Background Decorators in Hero */
.hero-decorator-glow.g {
  position: absolute;
  top: -60px;
  left: -60px;
  width: 350px;
  height: 350px;
  background-image: url('../images/app-header-decorator-1.webp');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.15 !important;
  pointer-events: none;
  z-index: 1;
  animation: pulseGlow 6s ease-in-out infinite alternate;
}

.hero-decorator-ring {
  position: absolute;
  top: 35px;
  left: 35px;
  width: 140px;
  height: 140px;
  background-image: url('../images/app-header-decorator-0.webp');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.55;
  pointer-events: none;
  z-index: 2;
  animation: floatRing 7s ease-in-out infinite alternate;
}

@media (min-width: 992px) {
  .hero-decorator-ring {
    width: 180px;
    height: 180px;
    top: 50px;
    left: 70px;
  }
}

/* Hero Content (Right Column in RTL) */
.hero-content {
  position: relative;
  z-index: 5;
}

.hero-title {
  font-size: clamp(1.18rem, 5.2vw, 2.9rem);
  font-weight: 900;
  line-height: 1.34;
  margin-bottom: 24px;
  color: #ffffff;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  font-weight: 500;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.94);
  margin-bottom: 36px;
  max-width: 580px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.15);
}

.hero-btn-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.btn-hero-white {
  background: #ffffff;
  color: #0b5dc1;
  font-size: 1.05rem;
  font-weight: 800;
  padding: 14px 34px;
  border-radius: 50px;
  border: 2px solid #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(5, 41, 95, 0.3);
  transition: var(--transition-smooth);
}

.btn-hero-white i {
  color: #0b5dc1;
  font-size: 1.25rem;
}

.btn-hero-white:hover {
  background: #f0f7ff;
  color: #06439e;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(5, 41, 95, 0.4);
}

.btn-hero-outline {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: var(--transition-smooth);
}

.btn-hero-outline i {
  color: #ffffff;
  font-size: 1.25rem;
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(0, 163, 255, 0.4);
}

/* Small screens: keep buttons in one row side-by-side */
@media (max-width: 767.98px) {
  .hero-btn-group {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: clamp(6px, 2vw, 12px);
    width: 100%;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .btn-hero-white,
  .btn-hero-outline {
    flex: 1 1 0;
    min-width: 0;
    padding: 12px clamp(6px, 2.5vw, 16px);
    font-size: clamp(0.78rem, 2.8vw, 0.92rem);
    gap: clamp(5px, 1.8vw, 8px);
    justify-content: center;
    white-space: nowrap;
    text-align: center;
  }

  .btn-hero-white i,
  .btn-hero-outline i {
    font-size: clamp(0.95rem, 3.2vw, 1.15rem);
    flex-shrink: 0;
  }
}

/* Hero Phone & Badges Container (Left Column in RTL) */
.hero-visual-wrapper {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

@media (min-width: 992px) {
  .hero-visual-wrapper {
    margin-top: 0;
  }
}

.hero-phone-container {
  position: relative;
  display: inline-block;
  max-width: 330px;
  width: 100%;
}

@media (min-width: 1200px) {
  .hero-phone-container {
    max-width: 360px;
  }
}

.hero-phone-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.35));
  animation: floatPhone 6s ease-in-out infinite alternate;
}

/* Hero Floating Badges */
.hero-stat-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 14px 22px;
  box-shadow: 0 15px 35px rgba(7, 37, 92, 0.14);
  border: 1.5px solid rgba(11, 93, 193, 0.18);
  min-width: 190px;
  z-index: 10;
  transition: var(--transition-smooth);
}

.hero-stat-badge:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 20px 45px rgba(11, 93, 193, 0.25);
  border-color: #0b5dc1;
}

.hero-stat-badge-top {
  top: 18%;
  right: -35px;
  left: auto;
  animation: floatBadgeTop 5s ease-in-out infinite alternate;
}

.hero-stat-badge-bottom {
  bottom: 24%;
  right: -50px;
  left: auto;
  animation: floatBadgeBottom 5.5s ease-in-out infinite alternate;
}

@media (max-width: 1199px) and (min-width: 992px) {
  .hero-stat-badge-top {
    right: -20px;
  }
  .hero-stat-badge-bottom {
    right: -30px;
  }
}

@media (max-width: 991px) and (min-width: 576px) {
  .hero-stat-badge {
    min-width: 155px;
    padding: 10px 16px;
  }
  .hero-stat-badge-top {
    right: -15px;
    top: 12%;
  }
  .hero-stat-badge-bottom {
    right: -20px;
    bottom: 18%;
  }
}

@media (max-width: 575px) {
  .hero-stat-badge {
    position: relative;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    min-width: auto;
    width: 48%;
    margin-top: 15px;
    display: inline-block;
  }
  .mobile-badges-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: -30px;
    position: relative;
    z-index: 20;
  }
}

.stat-badge-number {
  display: block;
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 4px;
  background: linear-gradient(135deg, #00a3ff 0%, #0b5dc1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-badge-text {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ============================================================
   Feature Sections
   ============================================================ */
.feature-section {
  padding: 85px 0;
  position: relative;
}

@media (min-width: 992px) {
  .feature-section {
    padding: 105px 0;
  }
}

.feature-section.bg-alt {
  background: linear-gradient(180deg, var(--bg-soft) 0%, #f6fbfe 100%);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.feature-heading {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 22px;
  letter-spacing: -0.3px;
}

/* Clean Blue Accent Keyword */
.accent-keyword {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #00a3ff 0%, #0b5dc1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.accent-keyword::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 100%;
  height: 4.5px;
  background: linear-gradient(90deg, #00a3ff 0%, #0b5dc1 100%);
  border-radius: 4px;
}

.feature-description {
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  font-weight: 500;
  line-height: 1.95;
  color: var(--text-body);
  max-width: 530px;
}

.feature-img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.feature-img-wrapper::before {
  content: '';
  position: absolute;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(11, 93, 193, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.feature-img {
  max-width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  transition: var(--transition-smooth);
}

.hover-lift:hover .feature-img {
  transform: translateY(-8px) scale(1.02);
  filter: drop-shadow(0 15px 30px rgba(11, 93, 193, 0.2));
}

/* ============================================================
   CTA (Call to Action) Section
   ============================================================ */
.cta-section {
  padding: 100px 0 60px 0;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #f0f6fc 55%, #e4effb 100%);
  position: relative;
}

.cta-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: var(--text-body);
  max-width: 650px;
  margin: 0 auto 38px auto;
  line-height: 1.85;
}

.cta-btn-group {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.btn-cta-green {
  background: linear-gradient(135deg, #00a3ff 0%, #0b5dc1 50%, #06439e 100%);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
  padding: 14px 38px;
  border-radius: 50px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(11, 93, 193, 0.35);
  transition: var(--transition-smooth);
}

.btn-cta-green:hover {
  background: linear-gradient(135deg, #17aeff 0%, #0e6ce0 50%, #084eb5 100%);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(11, 93, 193, 0.45);
}

.btn-cta-dark {
  background: #08234a;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 50px;
  border: 2px solid #0b5dc1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(7, 37, 92, 0.2);
  transition: var(--transition-smooth);
}

.btn-cta-dark:hover {
  background: #0b5dc1;
  border-color: #0b5dc1;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(11, 93, 193, 0.4);
}

.cta-note {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 10px;
}

/* Decorative Wireframe Wave */
.cta-wave-svg {
  width: 100%;
  max-width: 980px;
  margin: 40px auto 0 auto;
  display: block;
  opacity: 0.85;
}

/* ============================================================
   Footer Section
   ============================================================ */
.site-footer {
  background: linear-gradient(180deg, #081e3d 0%, #040f21 100%);
  color: #94a3b8;
  padding-top: 80px;
  padding-bottom: 40px;
  font-size: 0.95rem;
  border-top: 1px solid rgba(0, 163, 255, 0.15);
}

.footer-brand-logo {
  height: 36px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-brand-desc {
  color: #8da4be;
  line-height: 1.8;
  font-size: 0.92rem;
  margin-bottom: 24px;
  max-width: 320px;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-link-item {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition-smooth);
  font-size: 1rem;
}

.social-link-item:hover {
  background: linear-gradient(135deg, #00a3ff 0%, #0b5dc1 100%);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 18px rgba(11, 93, 193, 0.5);
}

.footer-col-title {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 0;
  width: 28px;
  height: 3px;
  background: linear-gradient(90deg, #00a3ff, #0b5dc1);
  border-radius: 2px;
}

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

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  color: #94a3b8;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.footer-links-list a:hover {
  color: #60a5fa;
  padding-right: 4px;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 60px;
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.88rem;
  color: #64748b;
}

@media (min-width: 768px) {
  .footer-bottom-bar {
    flex-direction: row;
  }
}

.footer-bottom-links a {
  color: #64748b;
  text-decoration: none;
  margin-left: 18px;
  transition: var(--transition-smooth);
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

/* ============================================================
   Keyframe Animations
   ============================================================ */
@keyframes floatPhone {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-14px);
  }
}

@keyframes floatBadgeTop {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(-10px) rotate(1deg);
  }
}

@keyframes floatBadgeBottom {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(12px) rotate(-1deg);
  }
}

@keyframes floatRing {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(-18px) rotate(12deg);
  }
}

@keyframes pulseGlow {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.05);
    opacity: 0.95;
  }
}

/* Scroll to top button */
.scroll-top-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00a3ff 0%, #0b5dc1 100%);
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 6px 22px rgba(11, 93, 193, 0.4);
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  background: linear-gradient(135deg, #0b5dc1 0%, #06439e 100%);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(11, 93, 193, 0.5);
}

/* Download Modal & Contact Modal Customization */
.custom-modal .modal-content {
  border-radius: 24px;
  border: none;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.custom-modal .modal-header {
  background: linear-gradient(135deg, #05295f 0%, #0b5dc1 60%, #00a3ff 100%);
  color: #ffffff;
  border-bottom: none;
  padding: 24px 28px;
}

.custom-modal .btn-close {
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.custom-modal .form-control:focus {
  border-color: #0b5dc1;
  box-shadow: 0 0 0 0.25rem rgba(11, 93, 193, 0.22);
}

.store-badge-btn {
  display: inline-block;
  transition: var(--transition-smooth);
}

.store-badge-btn:hover {
  transform: scale(1.05);
}

.store-badge-img {
  height: 48px;
  width: auto;
}

/* ============================================================
   Section: خدمات تصنع الفرق (Services + Before & After Results)
   Combined VIP Comparison Section
   ============================================================ */
.services-results-section {
  position: relative;
  padding: 100px 0 95px 0;
  background-color: #ffffff;
  background-image: 
    radial-gradient(circle at 10% 15%, rgba(0, 163, 255, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 85%, rgba(11, 93, 193, 0.04) 0%, transparent 40%);
  overflow: hidden;
}

/* Background Atmosphere Layer */
.services-results-decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
  user-select: none;
  overflow: hidden;
  z-index: 0;
}

/* Translucent Curved Ribbon SVGs */
.services-results-ribbon-tl {
  position: absolute;
  top: -30px;
  left: -40px;
  width: 340px;
  height: 250px;
  opacity: 0.65;
  filter: drop-shadow(0 8px 25px rgba(0, 163, 255, 0.15));
}

.services-results-ribbon-tr {
  position: absolute;
  top: 10px;
  right: -50px;
  width: 360px;
  height: 260px;
  opacity: 0.55;
  filter: drop-shadow(0 8px 25px rgba(0, 163, 255, 0.12));
}

.services-results-ribbon-br {
  position: absolute;
  bottom: -30px;
  left: -50px;
  width: 380px;
  height: 260px;
  opacity: 0.5;
  filter: drop-shadow(0 -8px 25px rgba(11, 93, 193, 0.12));
}

/* Glossy 3D Water Bubbles */
.bubble-item {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.3) 30%, rgba(0, 163, 255, 0.15) 60%, rgba(11, 93, 193, 0.1) 82%, rgba(0, 163, 255, 0.35) 100%);
  box-shadow: 
    inset -4px -4px 10px rgba(0, 163, 255, 0.25),
    inset 4px 4px 12px rgba(255, 255, 255, 0.85),
    0 10px 25px rgba(11, 93, 193, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.bubble-item::after {
  content: '';
  position: absolute;
  top: 15%;
  left: 20%;
  width: 28%;
  height: 18%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  transform: rotate(-35deg);
  filter: blur(0.5px);
}

.bubble-tl-1 {
  width: 105px;
  height: 105px;
  top: 40px;
  left: 30px;
  animation: floatBubble 7s ease-in-out infinite alternate;
}

.bubble-tl-2 {
  width: 48px;
  height: 48px;
  top: 140px;
  left: 135px;
  opacity: 0.85;
}

.bubble-tl-3 {
  width: 26px;
  height: 26px;
  top: 85px;
  left: 145px;
  opacity: 0.7;
}

.bubble-tr-1 {
  width: 110px;
  height: 110px;
  top: 75px;
  right: -25px;
  opacity: 0.85;
  animation: floatBubble 8s ease-in-out infinite alternate-reverse;
}

.bubble-tr-2 {
  width: 52px;
  height: 52px;
  top: 30px;
  right: 100px;
  opacity: 0.75;
}

.bubble-tr-3 {
  width: 24px;
  height: 24px;
  top: 115px;
  right: 70px;
  opacity: 0.65;
}

.bubble-mid-1 {
  width: 40px;
  height: 40px;
  top: 60px;
  left: 25%;
  opacity: 0.75;
}

.bubble-br-1 {
  width: 42px;
  height: 42px;
  bottom: 80px;
  left: 45px;
  opacity: 0.75;
}

@keyframes floatBubble {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-10px) rotate(3deg); }
}

@media (prefers-reduced-motion: reduce) {
  .bubble-item {
    animation: none !important;
  }
}

/* Header Area */
.services-results-header {
  position: relative;
  z-index: 2;
  margin-bottom: 45px;
}

.services-results-title {
  font-size: clamp(2.2rem, 4.2vw, 3.5rem);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.services-results-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 600;
  color: #556c88;
  margin: 0 auto;
  max-width: 650px;
  line-height: 1.8;
}

/* Container & Cards */
.services-results-container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
}

.service-result-card {
  /* background: #ffffff; */
  border-radius: 30px;
  /* border: 1px solid rgba(11, 93, 193, 0.12); */
  box-shadow: 0 16px 45px rgba(11, 93, 193, 0.08);
  padding: 30px;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.service-result-card:last-child {
  margin-bottom: 0;
}

@media (hover: hover) {
  .service-result-card:hover {
    box-shadow: 0 22px 55px rgba(11, 93, 193, 0.13);
    border-color: rgba(11, 93, 193, 0.24);
  }
}

/* Slider Column (Right in RTL) */
.service-result-slider-col {
  flex: 0 0 60%;
  max-width: 60%;
}

/* Info Column (Left in RTL) */
.service-result-info {
  flex: 0 0 40%;
  max-width: 40%;
  padding-right: 28px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
  justify-content: center;
}

/* Main Row: Icon on Right, Text Column on Left in RTL */
.service-result-main-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  margin-bottom: 22px;
}

.service-result-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8f4fc 0%, #d8ecf8 100%);
  border: 2px solid rgba(0, 163, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  box-shadow: 0 6px 18px rgba(11, 93, 193, 0.08);
  transition: var(--transition-smooth);
}

.service-result-card:hover .service-result-icon {
  transform: scale(1.06);
  border-color: rgba(0, 163, 255, 0.5);
}

.service-result-icon svg {
  width: 32px;
  height: 32px;
}

/* Text Column: Title, Accent Bar, and Description */
.service-result-text-col {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
}

.service-result-title {
  font-size: clamp(1.35rem, 1.9vw, 1.65rem);
  font-weight: 900;
  color: #081a33;
  margin-bottom: 8px;
  line-height: 1.35;
  text-align: right;
  width: 100%;
}

.service-result-accent-bar {
  width: 44px;
  height: 3.5px;
  background: linear-gradient(90deg, #00a3ff 0%, #0b5dc1 100%);
  border-radius: 2px;
  margin-bottom: 12px;
  margin-right: 0;
  margin-left: auto;
  align-self: flex-start;
}

.service-result-description {
  font-size: 0.98rem;
  color: #4b627f;
  line-height: 1.8;
  margin-bottom: 0;
  text-align: right;
  width: 100%;
}

/* Divider between text and buttons (hidden on desktop, used in tablet/mobile) */
.service-result-divider {
  display: none;
}

/* Action Buttons */
.service-result-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  margin-top: auto;
}

.btn-card-primary {
  background: linear-gradient(135deg, #00a3ff 0%, #0b5dc1 55%, #06439e 100%);
  color: #ffffff !important;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 11px 20px;
  border-radius: 50px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 22px rgba(11, 93, 193, 0.35);
  transition: var(--transition-smooth);
  text-decoration: none;
  min-height: 46px;
  flex: 1 1 auto;
  white-space: nowrap;
}

.btn-card-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(11, 93, 193, 0.45);
  background: linear-gradient(135deg, #1cb2ff 0%, #0e6fe6 55%, #084fb8 100%);
}

.btn-card-primary i {
  font-size: 1.15rem;
}

.btn-card-outline {
  background: #ffffff;
  color: #0b5dc1 !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 18px;
  border-radius: 50px;
  border: 1.5px solid #0b5dc1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition-smooth);
  text-decoration: none;
  min-height: 46px;
  flex: 1 1 auto;
  white-space: nowrap;
}

.btn-card-outline:hover {
  background: #f0f7ff;
  color: #06439e !important;
  border-color: #06439e;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(11, 93, 193, 0.12);
}

.btn-card-outline i {
  font-size: 0.95rem;
  transition: transform 0.25s ease;
}

.btn-card-outline:hover i {
  transform: translateX(-3px);
}

/* ============================================================
   Interactive Before / After Slider Component
   ============================================================ */
.before-after-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  cursor: ew-resize;
  background-color: #0d1e38;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  --pos: 50%;
}

.before-after-slider img.ba-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  display: block;
}

.ba-layer-before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0);
  -webkit-clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0);
  will-change: clip-path;
}

/* Divider Line */
.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos, 50%);
  width: 2.5px;
  background: #ffffff;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 5;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.45);
}

/* Handle Center Button */
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.28),
    0 0 0 2px rgba(11, 93, 193, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  cursor: ew-resize;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.before-after-slider:hover .ba-handle {
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow: 0 8px 24px rgba(11, 93, 193, 0.35), 0 0 0 2.5px #0b5dc1;
}

.before-after-slider.is-dragging .ba-handle {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 10px 28px rgba(11, 93, 193, 0.45), 0 0 0 3px #00a3ff;
}

.ba-handle-arrows {
  width: 22px;
  height: 22px;
  display: block;
}

/* Corner Badges */
.ba-badge {
  position: absolute;
  top: 14px;
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
  z-index: 6;
  pointer-events: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ba-badge--before {
  left: 14px;
  background: rgba(8, 26, 51, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.ba-badge--after {
  right: 14px;
  background: linear-gradient(135deg, rgba(0, 163, 255, 0.92) 0%, rgba(11, 93, 193, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

/* Responsive Media Queries */
@media (max-width: 1199px) {
  .service-result-info {
    padding-left: 24px;
  }
}

@media (max-width: 991px) {
  .services-results-section {
    padding: 70px 0 60px 0;
  }
  .service-result-card {
    flex-direction: column;
    padding: 24px;
    border-radius: 26px;
    gap: 20px;
    width: 100%;
    align-items: stretch;
  }

  /* Top Section: Info Box (Right: Text & Icon, Middle: Divider, Left: Buttons) */
  .service-result-info {
    order: 1;
    width: 100%;
    max-width: 100%;
    flex: 0 0 auto;
    padding-right: 0;
    padding-left: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 0;
  }

  .service-result-main-row {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 0;
  }

  .service-result-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }

  .service-result-icon svg {
    width: 26px;
    height: 26px;
  }

  .service-result-text-col {
    flex: 1 1 auto;
    min-width: 0;
  }

  .service-result-title {
    font-size: 1.25rem;
    line-height: 1.3;
    margin-bottom: 6px;
  }

  .service-result-accent-bar {
    width: 36px;
    height: 3px;
    margin-bottom: 8px;
  }

  .service-result-description {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .service-result-divider {
    display: block;
    width: 1px;
    min-height: 75px;
    align-self: stretch;
    background: rgba(11, 93, 193, 0.14);
    flex-shrink: 0;
    margin: 0 4px;
  }

  .service-result-actions {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 150px;
    max-width: 180px;
    margin-top: 0;
  }

  .btn-card-outline,
  .btn-card-primary {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    padding: 8px 14px;
    font-size: 0.88rem;
  }

  /* Bottom Section: Full Width Slider */
  .service-result-slider-col {
    order: 2;
    width: 100%;
    max-width: 100%;
    flex: 0 0 auto;
    display: block;
  }

  .before-after-slider {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 220px;
    display: block;
    border-radius: 18px;
  }
}

/* On Small Mobile Screens (< 575px): Keep the exact same 2-column division with scaled fonts */
@media (max-width: 575px) {
  .services-results-section {
    padding: 50px 0 40px 0;
  }
  .service-result-card {
    padding: 14px 12px;
    border-radius: 20px;
    gap: 14px;
  }
  .service-result-info {
    gap: 8px;
  }
  .service-result-main-row {
    gap: 8px;
  }
  .service-result-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-width: 1.5px;
    margin-top: 2px;
  }
  .service-result-icon svg {
    width: 20px;
    height: 20px;
  }
  .service-result-title {
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 3px;
  }
  .service-result-accent-bar {
    width: 26px;
    height: 2px;
    margin-bottom: 4px;
  }
  .service-result-description {
    font-size: 0.72rem;
    line-height: 1.45;
  }
  .service-result-divider {
    display: block !important;
    width: 1px;
    min-height: 60px;
    margin: 0 2px;
    background: rgba(11, 93, 193, 0.12);
  }
  .service-result-actions {
    flex: 0 0 auto;
    flex-direction: column;
    gap: 6px;
    min-width: 96px;
    max-width: 110px;
  }
  .btn-card-outline,
  .btn-card-primary {
    width: 100%;
    min-height: 32px;
    padding: 5px 6px;
    font-size: 0.74rem;
    border-radius: 25px;
    gap: 4px;
  }
  .btn-card-outline i {
    font-size: 0.75rem;
  }
  .btn-card-primary i {
    font-size: 0.85rem;
  }
  .service-result-slider-col {
    width: 100%;
    max-width: 100%;
    flex: 0 0 auto;
    display: block;
  }
  .before-after-slider {
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 175px;
    border-radius: 14px;
  }
  .ba-handle {
    width: 36px;
    height: 36px;
  }
  .ba-handle-arrows {
    width: 16px;
    height: 16px;
  }
  .ba-badge {
    top: 8px;
    padding: 3px 10px;
    font-size: 0.72rem;
  }
  .ba-badge--before {
    left: 8px;
  }
  .ba-badge--after {
    right: 8px;
  }
  .bubble-tl-1 {
    width: 75px;
    height: 75px;
    left: 10px;
  }
  .bubble-tr-1 {
    width: 75px;
    height: 75px;
    right: -15px;
  }
  .bubble-mid-1, .bubble-tl-3, .bubble-tr-3 {
    display: none;
  }
}

/* ============================================================
   Section 4: باقات تناسب احتياجك (Pricing Section)
   Mockup Replica: Desktop (Image 2) & Mobile (Image 3)
   ============================================================ */
.pricing-section {
  padding: 85px 0 75px 0;
  background: radial-gradient(circle at 50% 15%, #f1f7ff 0%, #fbfdff 65%, #f4f8fe 100%);
  position: relative;
  overflow: hidden;
}

/* Background Floating Bubble Accents */
.pricing-ambient-bubble {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), rgba(186, 230, 253, 0.35) 60%, rgba(14, 165, 233, 0.15) 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  box-shadow: inset -4px -4px 10px rgba(14, 165, 233, 0.1), 0 8px 24px rgba(14, 165, 233, 0.08);
  z-index: 1;
}

.pricing-bubble-1 {
  width: 55px;
  height: 55px;
  top: 60px;
  right: 6%;
}

.pricing-bubble-2 {
  width: 32px;
  height: 32px;
  top: 130px;
  right: 12%;
}

.pricing-bubble-3 {
  width: 65px;
  height: 65px;
  top: 80px;
  left: 5%;
}

.pricing-bubble-4 {
  width: 28px;
  height: 28px;
  top: 170px;
  left: 11%;
}

.pricing-bubble-5 {
  width: 46px;
  height: 46px;
  bottom: 70px;
  right: 4%;
}

.pricing-header {
  margin-bottom: 38px;
  position: relative;
  z-index: 2;
}

.pricing-top-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ebf4ff;
  color: #015afc;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
  border: 1px solid #d0e6ff;
}

.pricing-top-badge i {
  font-size: 1rem;
}

.pricing-main-title {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 900;
  color: #0b1e36;
  line-height: 1.3;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.pricing-title-accent {
  color: #015afc;
}

.pricing-main-subtitle {
  font-size: 1rem;
  font-weight: 500;
  color: #64748b;
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Stacked Wide Horizontal Cards Container */
.pricing-cards-container {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  z-index: 2;
}

/* Base Card */
.pricing-wide-card {
  background: #ffffff;
  border: 1.2px solid rgba(1, 90, 252, 0.09);
  border-radius: 26px;
  box-shadow: 0 10px 30px rgba(0, 45, 110, 0.04), 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.pricing-wide-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 70, 180, 0.09);
}

.card-plan-blue:hover {
  border-color: rgba(1, 90, 252, 0.3);
}

.card-plan-green:hover {
  border-color: rgba(5, 151, 58, 0.3);
}

/* Visual Orb Image */
.pricing-card-visual {
  flex: 0 0 auto;
}

.pricing-card-visual img {
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 70, 180, 0.08));
  transition: transform 0.3s ease;
}

.pricing-wide-card:hover .pricing-card-visual img {
  transform: scale(1.04);
}

/* Titles and Typography */
.pricing-card-title-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.pricing-plan-title {
  font-size: 1.32rem;
  font-weight: 800;
  color: #0b1e36;
  margin: 0;
  white-space: nowrap;
}

.sparkle-icon {
  font-size: 1.15rem;
  line-height: 1;
  display: inline-block;
}

.sparkle-blue {
  color: #015afc;
}

.sparkle-green {
  color: #05973a;
}

.pricing-plan-desc {
  font-size: 0.88rem;
  color: #64748b;
  margin: 0;
  line-height: 1.45;
  font-weight: 500;
}

/* Feature Items */
.pricing-col-item {
  display: flex;
  align-items: center;
}

.feat-icon-circle {
  font-size: 0.95rem;
  line-height: 1;
}

.icon-blue {
  color: #015afc;
}

.icon-green {
  color: #05973a;
}

.col-label {
  font-size: 0.86rem;
  font-weight: 600;
  color: #334155;
  white-space: nowrap;
}

.v-divider {
  width: 1px;
  background-color: #e2e8f0;
  display: inline-block;
  flex-shrink: 0;
}

/* Price Block */
.pricing-price-col {
  text-align: center;
}

.price-from-label {
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
}

.price-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
}

.price-big-number {
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.5px;
}

.price-currency {
  font-size: 1rem;
  font-weight: 800;
}

.price-blue .price-big-number,
.price-blue .price-currency {
  color: #015afc;
}

.price-green .price-big-number,
.price-green .price-currency {
  color: #05973a;
}

/* Buttons */
.btn-order-pill {
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-pill-blue {
  background: #015afc;
  box-shadow: 0 4px 14px rgba(1, 90, 252, 0.32);
}

.btn-pill-blue:hover {
  background: #0047d4;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(1, 90, 252, 0.42);
}

.btn-pill-green {
  background: #05973a;
  box-shadow: 0 4px 14px rgba(5, 151, 58, 0.32);
}

.btn-pill-green:hover {
  background: #047d30;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(5, 151, 58, 0.42);
}

.btn-order-pill i {
  font-size: 1rem;
}

/* Trust Badges Bottom Bar */
.pricing-trust-bar {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.trust-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
}

.trust-bar-item i {
  color: #015afc;
  font-size: 1.05rem;
}

.trust-bar-divider {
  width: 1px;
  height: 18px;
  background-color: #cbd5e1;
  display: inline-block;
}

/* ============================================================
   Desktop Layout (min-width: 768px) -> Image 2 Replica
   ============================================================ */
@media (min-width: 768px) {
  .pricing-wide-card {
    display: grid;
    grid-template-columns: 140px 1fr 140px;
    grid-template-rows: auto auto;
    column-gap: 24px;
    row-gap: 12px;
    align-items: center;
    padding: 22px 32px;
  }

  .pricing-top-block {
    display: contents;
  }

  .pricing-card-visual {
    grid-column: 1;
    grid-row: 1 / span 2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 140px;
  }

  .pricing-card-visual img {
    max-width: 140px;
  }

  .pricing-card-heading {
    grid-column: 2;
    grid-row: 1;
  }

  .pricing-card-h-divider {
    display: none;
  }

  .pricing-mid-bar {
    display: contents;
  }

  .pricing-features-group {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .pricing-col-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex-direction: row;
  }

  .br-mob {
    display: none;
  }

  .v-divider {
    height: 16px;
  }

  .v-divider-price {
    display: none;
  }

  .pricing-price-col {
    grid-column: 3;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .pricing-btn-block {
    grid-column: 3;
    grid-row: 2;
    display: flex;
    justify-content: center;
  }

  .btn-order-pill {
    padding: 10px 24px;
    width: auto;
  }
}

/* ============================================================
   Mobile Layout (max-width: 767.98px) -> Image 3 Replica
   ============================================================ */
@media (max-width: 767.98px) {
  .pricing-section {
    padding: 50px 0 40px 0;
  }

  .pricing-header {
    margin-bottom: 22px;
  }

  .pricing-ambient-bubble {
    display: none;
  }

  .pricing-cards-container {
    gap: 16px;
  }

  .pricing-wide-card {
    display: flex;
    flex-direction: column;
    padding: 20px 18px 18px 18px;
    border-radius: 24px;
    gap: 14px;
    box-shadow: 0 8px 25px rgba(0, 45, 110, 0.05);
  }

  /* Top Row: Orb on Right, Title & Description on Left */
  .pricing-top-block {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
  }

  .pricing-card-heading {
    flex: 1 1 auto;
    min-width: 0;
  }

  .pricing-plan-title {
    font-size: 1.25rem;
    font-weight: 800;
  }

  .pricing-plan-desc {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.45;
    margin-top: 4px;
  }

  .pricing-card-visual {
    width: 90px;
    height: 90px;
    flex: 0 0 90px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pricing-card-visual img {
    max-width: 90px;
    width: 100%;
  }

  /* Thin Horizontal Divider */
  .pricing-card-h-divider {
    display: block;
    width: 100%;
    height: 1px;
    background: #eef2f6;
    margin: 2px 0 0 0;
  }

  /* Middle 4-Column Bar (3 Features + 1 Price) */
  .pricing-mid-bar {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    padding: 6px 0;
  }

  .pricing-features-group {
    display: flex;
    flex: 3 1 0;
    align-items: stretch;
    justify-content: space-around;
  }

  .pricing-col-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 6px;
    flex: 1 1 0;
    padding: 0 2px;
  }

  .feat-icon-circle {
    font-size: 1.05rem;
  }

  .col-label {
    font-size: 0.76rem;
    font-weight: 600;
    color: #334155;
    line-height: 1.25;
    white-space: normal;
  }

  .br-mob {
    display: block;
  }

  .v-divider {
    width: 1px;
    height: 100%;
    min-height: 38px;
    background-color: #eef2f6;
    margin: 0 3px;
  }

  .v-divider-price {
    display: block;
  }

  .pricing-price-col {
    display: flex;
    flex: 1.2 1 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2px;
  }

  .price-from-label {
    font-size: 0.72rem;
    margin-bottom: 2px;
  }

  .price-big-number {
    font-size: 1.75rem;
    line-height: 1;
  }

  .price-currency {
    font-size: 0.82rem;
  }

  /* Bottom Full-Width Button */
  .pricing-btn-block {
    width: 100%;
    margin-top: 2px;
  }

  .btn-order-pill {
    width: 100%;
    padding: 11px 0;
    font-size: 0.95rem;
    border-radius: 50px;
    gap: 8px;
  }

  /* Trust Bar on Mobile */
  .pricing-trust-bar {
    margin-top: 22px;
    gap: 8px 12px;
  }

  .trust-bar-item {
    font-size: 0.75rem;
    gap: 5px;
  }

  .trust-bar-item i {
    font-size: 0.9rem;
  }

  .trust-bar-divider {
    display: none;
  }
}
