/* ==========================================================================
   E-DEVER TECH & ODOO LANDING PAGE - STYLESHEET
   Clean, Corporate Technology, Minimal & Premium Theme
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700&display=swap');

:root {
  /* Edever Tech Blue Palette */
  --edever-blue-primary: #0056D2;
  --edever-blue-deep: #003B95;
  --edever-blue-hover: #0046b0;
  --edever-blue-light: #EBF3FF;
  --edever-blue-soft: #F0F6FF;
  --edever-blue-cyan: #00A3FF;
  --edever-blue-gradient: linear-gradient(135deg, #0056D2 0%, #0084FF 100%);
  --edever-geom-gradient: linear-gradient(135deg, #004fc7 0%, #0077ff 60%, #00b4d8 100%);
  
  /* Odoo Subtle Accent */
  --odoo-purple: #714B67;
  --odoo-purple-light: #8f5a82;
  --odoo-purple-soft: #FAF5F9;

  /* Neutral Corporate Tones */
  --tech-dark: #0f172a;
  --tech-heading: #1e293b;
  --tech-body: #64748b;
  --tech-body-light: #94a3b8;
  --tech-border: #e2e8f0;
  --tech-border-light: rgba(226, 232, 240, 0.8);
  --tech-card-bg: #ffffff;
  --tech-bg-light: #f8fafc;
  --tech-bg-subtle: #f1f5f9;

  /* Shadows & Glows */
  --tech-shadow-sm: 0 2px 8px rgba(0, 86, 210, 0.04);
  --tech-shadow-md: 0 10px 25px -5px rgba(0, 86, 210, 0.08), 0 8px 10px -6px rgba(0, 86, 210, 0.04);
  --tech-shadow-lg: 0 20px 40px -12px rgba(0, 86, 210, 0.12);
  --tech-shadow-card: 0 12px 30px rgba(15, 23, 42, 0.06);
  --tech-glow-blue: 0 0 40px rgba(0, 86, 210, 0.18);
}

/* ==========================================================================
   General & Reset
   ========================================================================== */
html, body {
  overflow-x: hidden;
  font-family: 'IBM Plex Sans Arabic', 'Montserrat-Arabic', sans-serif;
  color: var(--tech-body);
  background-color: #f6f9fd;
  background-image: 
    radial-gradient(1300px 750px at 85% 8%, rgba(0, 86, 210, 0.09), transparent 65%),
    radial-gradient(1100px 700px at 8% 28%, rgba(0, 163, 255, 0.09), transparent 60%),
    radial-gradient(1200px 750px at 92% 58%, rgba(0, 86, 210, 0.08), transparent 65%),
    radial-gradient(1000px 650px at 12% 88%, rgba(0, 163, 255, 0.1), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.7) 0%, rgba(240, 246, 255, 0.4) 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html[dir="ltr"] body {
  font-family: 'Outfit', sans-serif;
}

/* Header Adjustments for Odoo Page */
#header .nav-link,
#header .logo h1 a,
#header .btn-ask,
#header .nav-link i {
  color: var(--tech-heading) !important;
}

#header.header-transparent {
  background: rgba(255, 255, 255, 0.82) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 86, 210, 0.1);
}

#header.header-scrolled {
  background: #ffffff !important;
  box-shadow: 0 4px 25px rgba(0, 86, 210, 0.08) !important;
  border-bottom: 1px solid var(--tech-border);
}

#header .btn-ask {
  background: var(--edever-blue-primary) !important;
  color: #ffffff !important;
  border-radius: 8px;
  padding: 8px 20px !important;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

#header .btn-ask:hover {
  background: var(--edever-blue-hover) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 86, 210, 0.25);
}

/* ==========================================================================
   Hero Section - Odoo & Edever Tech
   ========================================================================== */
.odoo-hero-section {
  position: relative;
  min-height: 100vh;
  padding: 160px 0 60px 0;
  background-color: #f2f7fd;
  background-image: 
    radial-gradient(1200px 650px at 85% 15%, rgba(0, 86, 210, 0.14) 0%, transparent 60%),
    radial-gradient(1000px 600px at 15% 45%, rgba(0, 163, 255, 0.16) 0%, transparent 60%),
    linear-gradient(180deg, #eaf2fc 0%, #f4f8fe 60%, #e8f2fc 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

/* Subtle Tech Dot Grid Pattern */
.odoo-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(0, 86, 210, 0.18) 1.2px, transparent 1.2px);
  background-size: 30px 30px;
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}

.odoo-hero-container {
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   Glowing Tech Blue Section Divider
   ========================================================================== */
.tech-section-divider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 10px 20px;
  z-index: 5;
}

.tech-divider-line {
  flex-grow: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 86, 210, 0.4) 50%, rgba(0, 163, 255, 0.8) 100%);
  position: relative;
}

.tech-divider-line:last-child {
  background: linear-gradient(90deg, rgba(0, 163, 255, 0.8) 0%, rgba(0, 86, 210, 0.4) 50%, transparent 100%);
}

.tech-divider-node {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--edever-blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--edever-blue-primary);
  font-size: 1.2rem;
  box-shadow: 0 0 16px rgba(0, 86, 210, 0.35);
  margin: 0 16px;
  position: relative;
}

.tech-divider-node::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 86, 210, 0.3);
  animation: spinSlow 12s linear infinite;
}


/* ==========================================================================
   Co-Branding Header Badge (Top-Right of Hero)
   ========================================================================== */
.hero-cobranding-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 4px 14px;
  background: #ffffff;
  border: 1px solid var(--tech-border);
  border-radius: 100px;
  box-shadow: var(--tech-shadow-sm);
  transition: all 0.3s ease;
}

.hero-cobranding-badge:hover {
  border-color: rgba(0, 86, 210, 0.3);
  box-shadow: var(--tech-shadow-md);
}

.cobrand-logo-odoo {
  height: 16px;
  width: auto;
  object-fit: contain;
}

.cobrand-separator {
  width: 1px;
  height: 14px;
  background-color: #cbd5e1;
}

.cobrand-logo-edever {
  height: 14px;
  width: auto;
  object-fit: contain;
}

/* ==========================================================================
   Hero Content Area (Right Side - RTL)
   ========================================================================== */
.hero-text-content {
  padding-inline-end: 20px;
}

.hero-tagline {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--edever-blue-primary);
  margin-bottom: 16px;
  letter-spacing: normal;
  clear: both;
}

#hero.odoo-hero-section h1.odoo-hero-title,
#hero .odoo-hero-title,
.odoo-hero-title {
  font-size: 2.75rem !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  color: var(--tech-heading) !important;
  margin-bottom: 22px !important;
  letter-spacing: normal;
}

#hero.odoo-hero-section h1.odoo-hero-title span.text-tech-blue,
#hero .odoo-hero-title span.text-tech-blue,
#hero .odoo-hero-title .text-tech-blue,
.text-tech-blue {
  color: var(--edever-blue-primary) !important;
  position: relative;
  display: inline-block;
}

.odoo-hero-desc {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--tech-body);
  margin-bottom: 32px;
  max-width: 520px;
  font-weight: 400;
}

/* ==========================================================================
   CTA Button (Single Primary Button)
   ========================================================================== */
.hero-cta-wrapper {
  margin-bottom: 32px;
}

.btn-odoo-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--edever-blue-primary);
  color: #ffffff !important;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 12px 34px;
  border-radius: 10px;
  border: 1px solid var(--edever-blue-primary);
  box-shadow: 0 6px 18px rgba(0, 86, 210, 0.22);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  cursor: pointer;
}

.btn-odoo-primary:hover {
  background: var(--edever-blue-hover);
  border-color: var(--edever-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 86, 210, 0.3);
}

.btn-odoo-primary:active {
  transform: translateY(0);
}

/* ==========================================================================
   Hero Visual Area - Dynamic Orbit Ecosystem Hub (Left Side)
   ========================================================================== */
.hero-visual-container {
  position: relative;
  width: 100%;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ambient Radial Aura Glow */
.hero-tech-glow-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(0, 86, 210, 0.12) 0%, rgba(0, 163, 255, 0.06) 45%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(20px);
}

/* Tech Grid Atmosphere behind the Orbit */
.hero-tech-grid-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background-image: 
    radial-gradient(rgba(0, 86, 210, 0.15) 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: radial-gradient(circle, rgba(0,0,0,1) 40%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 40%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Tech Orbit Ecosystem Wrapper */
.orbit-ecosystem {
  position: relative;
  width: 440px;
  height: 440px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Orbit Concentric Rings */
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.orbit-ring-outermost {
  width: 420px;
  height: 420px;
  border: 1px solid rgba(0, 86, 210, 0.08);
}

.orbit-ring-outer {
  width: 350px;
  height: 350px;
  border: 1.5px dashed rgba(0, 86, 210, 0.22);
  animation: orbitRotate 70s linear infinite;
}

.orbit-ring-inner {
  width: 240px;
  height: 240px;
  border: 1px solid rgba(0, 86, 210, 0.16);
  animation: orbitRotateRev 50s linear infinite;
}

/* Orbit Glowing Pulsing Nodes */
.orbit-dot {
  position: absolute;
  border-radius: 50%;
}

.orbit-dot-1 {
  top: 10%;
  right: 25%;
  width: 10px;
  height: 10px;
  background: var(--edever-blue-primary);
  box-shadow: 0 0 14px rgba(0, 86, 210, 0.8);
  animation: dotPulse 3s infinite ease-in-out;
}

.orbit-dot-2 {
  bottom: 18%;
  left: 15%;
  width: 8px;
  height: 8px;
  background: var(--edever-blue-cyan);
  box-shadow: 0 0 12px rgba(0, 163, 255, 0.9);
  animation: dotPulse 3s infinite ease-in-out 1.5s;
}

.orbit-dot-3 {
  top: 60%;
  right: 5%;
  width: 6px;
  height: 6px;
  background: var(--edever-blue-primary);
  box-shadow: 0 0 8px rgba(0, 86, 210, 0.6);
}

/* Central Odoo Core Badge */
.odoo-center-badge {
  position: relative;
  width: 140px;
  height: 140px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 18px 40px rgba(0, 86, 210, 0.14),
    0 0 0 8px rgba(0, 86, 210, 0.05),
    0 0 0 16px rgba(0, 86, 210, 0.02);
  z-index: 6;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1.5px solid rgba(226, 232, 240, 0.8);
}

.odoo-center-badge:hover {
  transform: scale(1.06);
  box-shadow: 
    0 24px 50px rgba(0, 86, 210, 0.22),
    0 0 0 10px rgba(0, 86, 210, 0.08),
    0 0 0 20px rgba(0, 86, 210, 0.04);
}

.odoo-center-badge img {
  width: 88px;
  height: auto;
  object-fit: contain;
}

/* Orbit Floating Module Cards */
.orbit-app-card {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08), 0 2px 6px rgba(0, 86, 210, 0.04);
  border: 1.5px solid rgba(0, 86, 210, 0.12);
  z-index: 7;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.orbit-app-card i {
  font-size: 1.65rem;
  color: var(--edever-blue-primary);
  transition: all 0.3s ease;
}

.orbit-app-card:hover {
  transform: translateY(-6px) scale(1.14);
  border-color: var(--edever-blue-primary);
  background: #ffffff;
  box-shadow: 0 16px 32px rgba(0, 86, 210, 0.22);
}

.orbit-app-card:hover i {
  color: var(--edever-blue-primary);
  transform: scale(1.08);
}

/* Card Tooltip on Hover */
.orbit-app-card::after {
  content: attr(data-label);
  position: absolute;
  bottom: -30px;
  background: var(--tech-heading);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.orbit-app-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* Coordinates for the 6 Orbit Modules (Even 360-degree distribution) */
/* 1. Top (CRM) */
.app-pos-crm {
  top: 15px;
  left: calc(50% - 30px);
}

/* 2. Top-Left (Invoicing/Documents) */
.app-pos-docs {
  top: 95px;
  left: 25px;
}

/* 3. Bottom-Left (Analytics/Reports) */
.app-pos-reports {
  bottom: 95px;
  left: 25px;
}

/* 4. Bottom (E-Commerce) */
.app-pos-ecom {
  bottom: 15px;
  left: calc(50% - 30px);
}

/* 5. Bottom-Right (Inventory) */
.app-pos-inventory {
  bottom: 95px;
  right: 25px;
}

/* 6. Top-Right (Sales/Operations) */
.app-pos-sales {
  top: 95px;
  right: 25px;
}

/* Floating Micro-Badges (Corporate Tech Touch) */
.orbit-badge-float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 86, 210, 0.15);
  border-radius: 30px;
  box-shadow: 0 8px 20px rgba(0, 86, 210, 0.08);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--tech-heading);
  z-index: 8;
  animation: badgeFloat 4s ease-in-out infinite alternate;
}

.orbit-badge-float i {
  color: var(--edever-blue-primary);
  font-size: 1rem;
}

.orbit-badge-float .pulse-dot {
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 6px #10b981;
}

.orbit-badge-top {
  top: 10px;
  right: 0;
}

.orbit-badge-bottom {
  bottom: 10px;
  left: 0;
  animation-delay: 2s;
}

@keyframes badgeFloat {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-8px); }
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.4); opacity: 1; }
}

/* ==========================================================================
   Bottom Feature Bar (Floating White Card with 4 Pillars)
   ========================================================================== */
.hero-bottom-bar-wrapper {
  position: relative;
  z-index: 10;
  margin-top: 40px;
}

.hero-bottom-bar {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--tech-border);
  border-radius: 18px;
  padding: 24px 36px;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.05), 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.hero-bottom-bar:hover {
  box-shadow: 0 20px 45px rgba(0, 86, 210, 0.08);
  border-color: rgba(0, 86, 210, 0.25);
}

.feature-pillar-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 6px 12px;
  position: relative;
  transition: transform 0.25s ease;
}

.feature-pillar-item:hover {
  transform: translateY(-2px);
}

/* Vertical divider between pillars on desktop */
html[dir="rtl"] .feature-pillar-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: var(--tech-border);
}

html[dir="ltr"] .feature-pillar-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: var(--tech-border);
}

html[dir="ltr"] .geom-tech-backdrop {
  right: auto;
  left: -5%;
  transform: rotate(12deg);
}

.pillar-icon-box {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--edever-blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--edever-blue-primary);
  font-size: 1.45rem;
  transition: all 0.3s ease;
}

.feature-pillar-item:hover .pillar-icon-box {
  background: var(--edever-blue-primary);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(0, 86, 210, 0.25);
}

.pillar-content {
  display: flex;
  flex-direction: column;
}

.pillar-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--tech-heading);
  margin-bottom: 2px;
}

.pillar-desc {
  font-size: 0.85rem;
  color: var(--tech-body);
  margin-bottom: 0;
  line-height: 1.4;
  white-space: nowrap;
}

@media (max-width: 1199px) {
  #hero.odoo-hero-section h1.odoo-hero-title,
  #hero .odoo-hero-title,
  .odoo-hero-title {
    font-size: 2.25rem !important;
    line-height: 1.35 !important;
  }
  .hero-visual-container {
    height: 460px;
  }
  .orbit-ecosystem {
    width: 380px;
    height: 380px;
  }
  .orbit-ring-outermost {
    width: 370px;
    height: 370px;
  }
  .orbit-ring-outer {
    width: 310px;
    height: 310px;
  }
  .orbit-ring-inner {
    width: 210px;
    height: 210px;
  }
  .feature-pillar-item:not(:last-child)::after {
    display: none;
  }
  .hero-bottom-bar {
    padding: 20px 24px;
  }
}

@media (max-width: 991px) {
  .odoo-hero-section {
    padding: 160px 0 45px 0;
  }
  .hero-text-content {
    text-align: center;
    padding-inline-end: 0;
    margin-top: 15px;
    margin-bottom: 12px;
  }
  .hero-cobranding-badge {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }
  .hero-tagline {
    display: block;
    margin-bottom: 16px;
    font-size: 0.98rem;
  }
  .odoo-hero-desc {
    margin-left: auto;
    margin-right: auto;
    line-height: 1.85;
    margin-bottom: 26px;
  }
  .hero-cta-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
  }
  .hero-visual-container {
    margin-top: 0;
  }
  .hero-bottom-bar {
    margin-top: 25px;
  }
  .feature-pillar-item {
    margin-bottom: 16px;
  }
}

@media (max-width: 767px) {
  .odoo-hero-section {
    padding: 145px 0 35px 0;
  }
  .hero-text-content {
    margin-top: 15px;
    margin-bottom: 8px;
  }
  .hero-cobranding-badge {
    padding: 3px 10px;
    gap: 8px;
    margin-bottom: 16px;
  }
  .cobrand-logo-odoo {
    height: 13.5px;
  }
  .cobrand-logo-edever {
    height: 12px;
  }
  .cobrand-separator {
    height: 11px;
  }
  .hero-tagline {
    display: block;
    margin-bottom: 16px;
    font-size: 0.95rem;
  }
  #hero.odoo-hero-section h1.odoo-hero-title,
  #hero .odoo-hero-title,
  .odoo-hero-title {
    font-size: clamp(1.6rem, 6vw, 2rem) !important;
    line-height: 1.35 !important;
    margin-bottom: 18px !important;
    word-break: normal;
    overflow-wrap: break-word;
    letter-spacing: normal;
  }
  .odoo-hero-desc {
    font-size: 0.92rem;
    line-height: 1.85;
    margin-bottom: 24px;
    padding: 0 6px;
  }
  .hero-cta-wrapper {
    margin-bottom: 5px;
  }
  .hero-visual-container {
    height: 290px;
    margin-top: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .orbit-ecosystem {
    width: 270px;
    height: 270px;
    transform: scale(0.92);
  }
  .orbit-ring-outermost {
    width: 260px;
    height: 260px;
  }
  .orbit-ring-outer {
    width: 210px;
    height: 210px;
  }
  .orbit-ring-inner {
    width: 140px;
    height: 140px;
  }
  .odoo-center-badge {
    width: 85px;
    height: 85px;
  }
  .odoo-center-badge img {
    width: 55px;
  }
  .orbit-app-card {
    width: 40px;
    height: 40px;
  }
  .orbit-app-card i {
    font-size: 1.15rem;
  }
  .app-pos-docs { top: 48px; left: 2px; }
  .app-pos-reports { bottom: 48px; left: 2px; }
  .app-pos-inventory { bottom: 48px; right: 2px; }
  .app-pos-sales { top: 48px; right: 2px; }
  
  .hero-float-badge-1 {
    top: 5px;
    right: 5px;
    font-size: 0.72rem;
    padding: 4px 10px;
  }
  .hero-float-badge-2 {
    bottom: 5px;
    left: 5px;
    font-size: 0.72rem;
    padding: 4px 10px;
  }

  .pillar-desc {
    white-space: normal;
  }
}

/* ==========================================================================
   Block 2: Methodology & Real Odoo Interface Section
   ========================================================================== */
.odoo-methodology-section {
  position: relative;
  padding: 110px 0 120px 0;
  background-color: #f7fafe;
  background-image: 
    radial-gradient(950px 500px at 90% 20%, rgba(0, 86, 210, 0.1) 0%, transparent 65%),
    radial-gradient(900px 480px at 10% 80%, rgba(0, 163, 255, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, #eaf3fd 0%, #f6fafe 50%, #edf5fd 100%);
  overflow: hidden;
  border-top: 1px solid rgba(0, 86, 210, 0.12);
}

/* Subtle Tech Corner Digital Accents */
.odoo-methodology-section::before {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  width: 140px;
  height: 140px;
  background-image: radial-gradient(#cbd5e1 1.2px, transparent 1.2px);
  background-size: 14px 14px;
  opacity: 0.45;
  pointer-events: none;
}

.odoo-methodology-section::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 140px;
  height: 140px;
  background-image: radial-gradient(rgba(0, 86, 210, 0.2) 1.2px, transparent 1.2px);
  background-size: 14px 14px;
  opacity: 0.3;
  pointer-events: none;
}

/* Section Header Typography */
.section-header-centered {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 54px auto;
  position: relative;
  z-index: 2;
}

.section-tagline {
  display: inline-block;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--edever-blue-primary);
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}

.section-main-title {
  font-size: 2.35rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--tech-heading);
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}

.section-main-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--tech-body);
  font-weight: 400;
  margin: 0;
}

/* ==========================================================================
   Methodology Journey Cards (Right Side - RTL)
   ========================================================================== */
.methodology-journey-track {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 2;
}

/* Vertical Connection Line / Nodes */
.methodology-journey-track::before {
  content: '';
  position: absolute;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    var(--edever-blue-primary) 0,
    var(--edever-blue-primary) 6px,
    transparent 6px,
    transparent 12px
  );
  opacity: 0.35;
  z-index: 1;
}

html[dir="rtl"] .methodology-journey-track::before {
  right: 36px;
}

html[dir="ltr"] .methodology-journey-track::before {
  left: 36px;
}

/* Individual Step Card */
.methodology-step-card {
  position: relative;
  z-index: 2;
  background: #ffffff;
  border: 1.5px solid rgba(0, 86, 210, 0.08);
  border-radius: 18px;
  padding: 22px 26px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.methodology-step-card:hover {
  border-color: var(--edever-blue-primary);
  box-shadow: 0 16px 36px rgba(0, 86, 210, 0.12);
}

html[dir="rtl"] .methodology-step-card:hover {
  transform: translateX(-6px);
}

html[dir="ltr"] .methodology-step-card:hover {
  transform: translateX(6px);
}

/* Step Number Box */
.step-number-box {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--edever-blue-gradient);
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(0, 86, 210, 0.28);
}

/* Step Content */
.step-content-area {
  flex-grow: 1;
}

.step-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--tech-heading);
  margin-bottom: 5px;
}

.step-card-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--tech-body);
  margin: 0;
}

/* Step Icon Circle */
.step-icon-circle {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--edever-blue-soft);
  border: 1px solid rgba(0, 86, 210, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--edever-blue-primary);
  font-size: 1.45rem;
  transition: all 0.3s ease;
}

.methodology-step-card:hover .step-icon-circle {
  background: var(--edever-blue-primary);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(0, 86, 210, 0.25);
  transform: scale(1.05);
}

/* ==========================================================================
   Real Odoo Software Window (Left Side - RTL)
   ========================================================================== */
.software-window-container {
  position: relative;
  z-index: 2;
}

.odoo-software-window {
  background: #ffffff;
  border-radius: 20px;
  border: 1.5px solid rgba(226, 232, 240, 0.9);
  box-shadow: 
    0 24px 55px rgba(0, 86, 210, 0.09),
    0 0 0 1px rgba(0, 86, 210, 0.03);
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}

.odoo-software-window:hover {
  box-shadow: 
    0 30px 65px rgba(0, 86, 210, 0.14),
    0 0 0 1px rgba(0, 86, 210, 0.1);
}

/* Software Top Bar */
.software-window-topbar {
  background: #f8fafc;
  border-bottom: 1px solid var(--tech-border);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.topbar-logo-odoo {
  height: 18px;
  width: auto;
  object-fit: contain;
}

.topbar-search-box {
  background: #ffffff;
  border: 1px solid var(--tech-border);
  border-radius: 8px;
  padding: 4px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--tech-body-light);
  min-width: 140px;
}

.topbar-search-box i {
  font-size: 0.9rem;
  color: var(--tech-body);
}

.topbar-right-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--tech-body);
}

.topbar-notif-badge {
  position: relative;
  display: inline-flex;
}

.notif-count {
  position: absolute;
  top: -4px;
  right: -6px;
  background: #ef4444;
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 1px 4px;
  border-radius: 10px;
}

.topbar-company-tag {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--tech-heading);
  background: var(--edever-blue-soft);
  padding: 2px 8px;
  border-radius: 6px;
}

/* Real Odoo Apps Grid Body */
.software-window-body {
  padding: 24px 20px 28px 20px;
  background: #ffffff;
}

.odoo-native-apps-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px 10px;
}

.odoo-grid-app-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  cursor: pointer;
  transition: transform 0.25s ease;
}

.odoo-grid-app-item:hover {
  transform: translateY(-4px);
}

.app-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease;
}

.odoo-grid-app-item:hover .app-icon-badge {
  transform: scale(1.08);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
}

.app-title-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: #475569;
  line-height: 1.2;
}

/* Genuine Odoo Apps Color Theming */
.bg-odoo-discuss { background: linear-gradient(135deg, #f97316 0%, #ea580c 100%); }
.bg-odoo-calendar { background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); }
.bg-odoo-contacts { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }
.bg-odoo-crm { background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%); }
.bg-odoo-sales { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }
.bg-odoo-dashboards { background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%); }
.bg-odoo-pos { background: linear-gradient(135deg, #ec4899 0%, #db2777 100%); }
.bg-odoo-accounting { background: linear-gradient(135deg, #714B67 0%, #54374d 100%); }
.bg-odoo-website { background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%); }
.bg-odoo-purchase { background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%); }
.bg-odoo-inventory { background: linear-gradient(135deg, #0284c7 0%, #0056D2 100%); }
.bg-odoo-manufacturing { background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%); }
.bg-odoo-shopfloor { background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%); }
.bg-odoo-quality { background: linear-gradient(135deg, #06b6d4 0%, #0284c7 100%); }
.bg-odoo-barcode { background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%); }
.bg-odoo-plm { background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%); }
.bg-odoo-employees { background: linear-gradient(135deg, #a855f7 0%, #7e22ce 100%); }
.bg-odoo-payroll { background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%); }
.bg-odoo-attendances { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }
.bg-odoo-recruitment { background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%); }
.bg-odoo-whatsapp { background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%); }
.bg-odoo-apps { background: linear-gradient(135deg, #714B67 0%, #8f5a82 100%); }
.bg-odoo-settings { background: linear-gradient(135deg, #64748b 0%, #475569 100%); }
.bg-odoo-expenses { background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%); }

/* Window Floating Micro-Badges */
.window-badge-float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(0, 86, 210, 0.15);
  border-radius: 30px;
  box-shadow: 0 10px 25px rgba(0, 86, 210, 0.1);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--tech-heading);
  z-index: 10;
  transition: all 0.3s ease;
}

.window-badge-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 30px rgba(0, 86, 210, 0.18);
  border-color: var(--edever-blue-primary);
}

.window-badge-float i {
  color: var(--edever-blue-primary);
  font-size: 1.15rem;
}

/* Badge positions */
html[dir="rtl"] .window-badge-left {
  top: 25%;
  right: -25px;
}

html[dir="rtl"] .window-badge-bottom {
  bottom: -15px;
  left: 25px;
}

html[dir="ltr"] .window-badge-left {
  top: 25%;
  left: -25px;
}

html[dir="ltr"] .window-badge-bottom {
  bottom: -15px;
  right: 25px;
}

/* ==========================================================================
   Responsive Breakpoints for Block 2
   ========================================================================== */
@media (max-width: 1199px) {
  .odoo-native-apps-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 991px) {
  .odoo-methodology-section {
    padding: 80px 0;
  }
  .section-main-title {
    font-size: 2rem;
  }
  .software-window-container {
    margin-bottom: 50px;
  }
  .window-badge-float {
    position: static;
    margin: 10px auto;
    display: inline-flex;
  }
}

@media (max-width: 767px) {
  .section-main-title {
    font-size: 1.7rem;
  }
  .section-main-desc {
    font-size: 0.95rem;
  }
  .odoo-native-apps-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px 6px;
  }
  .app-icon-badge {
    width: 38px;
    height: 38px;
    font-size: 1.25rem;
  }
  .methodology-step-card {
    padding: 16px 18px;
    gap: 14px;
  }
  .step-number-box {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }
  .step-icon-circle {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .step-card-title {
    font-size: 1.05rem;
  }
}

/* ==========================================================================
   Block 3: Why Odoo? / All Your Business in One Place Section
   ========================================================================== */
.odoo-why-section {
  position: relative;
  padding: 110px 0 120px 0;
  background-color: #e3effd;
  background-image: 
    radial-gradient(1100px 600px at 15% 15%, rgba(0, 86, 210, 0.16) 0%, transparent 65%),
    radial-gradient(1000px 550px at 85% 85%, rgba(0, 163, 255, 0.18) 0%, transparent 60%),
    linear-gradient(180deg, #dceaff 0%, #e9f2ff 50%, #dfedff 100%);
  overflow: hidden;
  border-top: 1.5px solid rgba(0, 86, 210, 0.14);
  border-bottom: 1.5px solid rgba(0, 86, 210, 0.14);
}

/* Digital Pattern Accents for Block 3 */
.odoo-why-section::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 20px;
  width: 160px;
  height: 160px;
  background-image: radial-gradient(rgba(0, 86, 210, 0.25) 1.2px, transparent 1.2px);
  background-size: 16px 16px;
  opacity: 0.35;
  pointer-events: none;
}

.odoo-why-section::after {
  content: '';
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 140px;
  height: 140px;
  background-image: radial-gradient(#cbd5e1 1.2px, transparent 1.2px);
  background-size: 14px 14px;
  opacity: 0.4;
  pointer-events: none;
}

/* ==========================================================================
   5 Feature Cards (Right Side - RTL)
   ========================================================================== */
.why-features-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 2;
  position: relative;
}

.why-feature-card {
  background: #ffffff;
  border: 1.5px solid rgba(0, 86, 210, 0.08);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.03);
  display: flex;
  align-items: center;
  gap: 18px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.why-feature-card:hover {
  border-color: var(--edever-blue-primary);
  box-shadow: 0 12px 30px rgba(0, 86, 210, 0.12);
  background: #ffffff;
}

html[dir="rtl"] .why-feature-card:hover {
  transform: translateX(-6px);
}

html[dir="ltr"] .why-feature-card:hover {
  transform: translateX(6px);
}

.why-card-icon-wrap {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--edever-blue-soft);
  border: 1px solid rgba(0, 86, 210, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--edever-blue-primary);
  font-size: 1.55rem;
  transition: all 0.3s ease;
}

.why-feature-card:hover .why-card-icon-wrap {
  background: var(--edever-blue-primary);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(0, 86, 210, 0.28);
  transform: scale(1.06);
}

.why-card-body {
  flex-grow: 1;
}

.why-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--edever-blue-primary);
  margin-bottom: 4px;
}

.why-card-desc {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--tech-body);
  margin: 0;
}

/* ==========================================================================
   Multi-Device Showcase (Left Side - RTL)
   ========================================================================== */
.multi-device-wrapper {
  position: relative;
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* Background Orbit Connection Curve */
.devices-orbit-arc {
  position: absolute;
  top: 10%;
  left: 5%;
  right: 5%;
  height: 380px;
  border: 1.5px dashed rgba(0, 86, 210, 0.22);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

/* 1. Large Desktop Monitor (Center / Back) */
.device-desktop-monitor {
  position: relative;
  width: 440px;
  background: #ffffff;
  border-radius: 16px;
  border: 4px solid #1e293b;
  box-shadow: 0 25px 50px -10px rgba(0, 86, 210, 0.16);
  z-index: 2;
  overflow: hidden;
  margin-bottom: 20px;
}

.monitor-stand {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: linear-gradient(to bottom, #94a3b8, #cbd5e1);
  clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
  z-index: 1;
}

.monitor-base {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 6px;
  background: #64748b;
  border-radius: 4px;
  z-index: 1;
}

.desktop-screen-header {
  background: #f8fafc;
  border-bottom: 1px solid var(--tech-border);
  padding: 6px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
}

.desktop-screen-body {
  display: flex;
  height: 220px;
  background: #ffffff;
}

.desktop-sidebar {
  width: 100px;
  background: #f1f5f9;
  border-inline-end: 1px solid var(--tech-border);
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.68rem;
  color: var(--tech-heading);
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 3px 6px;
  border-radius: 4px;
  white-space: nowrap;
}

.sidebar-item.active {
  background: var(--edever-blue-primary);
  color: #ffffff;
  font-weight: 600;
}

.desktop-main-dash {
  flex-grow: 1;
  padding: 10px 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dash-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.dash-kpi-card {
  background: #f8fafc;
  border: 1px solid var(--tech-border);
  border-radius: 6px;
  padding: 4px 6px;
  text-align: center;
}

.dash-kpi-label {
  font-size: 0.62rem;
  color: var(--tech-body-light);
  margin-bottom: 2px;
}

.dash-kpi-val {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--tech-heading);
}

.dash-kpi-val.highlight {
  color: var(--edever-blue-primary);
}

.dash-charts-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  flex-grow: 1;
}

.dash-mini-chart-card {
  background: #ffffff;
  border: 1px solid var(--tech-border);
  border-radius: 6px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dash-card-head {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--tech-heading);
  display: flex;
  justify-content: space-between;
}

.chart-svg-wrap {
  width: 100%;
  height: 45px;
}

.dash-mini-task-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.task-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.6rem;
  padding: 2px 0;
  border-bottom: 1px solid #f1f5f9;
}

.task-badge {
  font-size: 0.55rem;
  padding: 1px 4px;
  border-radius: 4px;
}
.task-high { background: #fee2e2; color: #ef4444; }
.task-med { background: #e0f2fe; color: #0284c7; }
.task-low { background: #f1f5f9; color: #64748b; }

/* 2. Laptop (Front Left in RTL) */
.device-laptop-frame {
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 260px;
  background: #ffffff;
  border-radius: 10px 10px 2px 2px;
  border: 3px solid #334155;
  box-shadow: 0 20px 40px rgba(0, 86, 210, 0.2);
  z-index: 4;
  overflow: hidden;
}

.laptop-base {
  position: absolute;
  bottom: 8px;
  left: -15px;
  width: 290px;
  height: 8px;
  background: #94a3b8;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  z-index: 3;
}

.laptop-screen-header {
  background: #f8fafc;
  border-bottom: 1px solid var(--tech-border);
  padding: 3px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.6rem;
}

.laptop-screen-body {
  padding: 6px;
  background: #ffffff;
  height: 135px;
  overflow: hidden;
}

.odoo-invoice-table {
  width: 100%;
  font-size: 0.55rem;
  text-align: right;
  border-collapse: collapse;
}

.odoo-invoice-table th {
  color: var(--tech-body-light);
  padding: 2px 4px;
  border-bottom: 1px solid var(--tech-border);
  font-weight: 500;
}

.odoo-invoice-table td {
  padding: 3px 4px;
  border-bottom: 1px solid #f8fafc;
  color: var(--tech-heading);
}

.inv-status {
  padding: 1px 4px;
  border-radius: 4px;
  font-size: 0.52rem;
  font-weight: 600;
}
.inv-paid { background: #dcfce7; color: #16a34a; }
.inv-unpaid { background: #fee2e2; color: #dc2626; }
.inv-draft { background: #f1f5f9; color: #64748b; }

/* 3. Tablet (Back Right in RTL) */
.device-tablet-frame {
  position: absolute;
  bottom: 45px;
  right: 60px;
  width: 160px;
  height: 230px;
  background: #ffffff;
  border-radius: 16px;
  border: 4px solid #1e293b;
  box-shadow: 0 16px 36px rgba(0, 86, 210, 0.15);
  z-index: 3;
  overflow: hidden;
  padding: 8px 6px;
}

.tablet-top-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-align: center;
  color: var(--tech-heading);
  margin-bottom: 6px;
}

.tablet-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px 4px;
}

.tablet-app-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.tablet-app-icon {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.85rem;
}

.tablet-app-label {
  font-size: 0.5rem;
  color: var(--tech-body);
}

/* 4. Smartphone (Front Right in RTL) */
.device-phone-frame {
  position: absolute;
  bottom: 10px;
  right: 0;
  width: 105px;
  height: 195px;
  background: #ffffff;
  border-radius: 18px;
  border: 3.5px solid #0f172a;
  box-shadow: 0 20px 40px rgba(0, 86, 210, 0.22);
  z-index: 5;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-notch {
  width: 36px;
  height: 4px;
  background: #0f172a;
  border-radius: 0 0 4px 4px;
  margin: 0 auto 4px auto;
}

.phone-screen-body {
  padding: 4px 6px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #ffffff;
}

.phone-kpi-box {
  background: #f8fafc;
  border: 1px solid var(--tech-border);
  border-radius: 6px;
  padding: 3px 4px;
}

.phone-kpi-title {
  font-size: 0.52rem;
  color: var(--tech-body-light);
}

.phone-kpi-val {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--edever-blue-primary);
}

/* Floating Micro-Tags around Devices */
.device-tag-float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 86, 210, 0.16);
  border-radius: 30px;
  box-shadow: 0 8px 20px rgba(0, 86, 210, 0.1);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--tech-heading);
  z-index: 10;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.device-tag-float i {
  color: var(--edever-blue-primary);
  font-size: 1rem;
}

.device-tag-float:hover {
  transform: translateY(-3px) scale(1.04);
  border-color: var(--edever-blue-primary);
  box-shadow: 0 12px 26px rgba(0, 86, 210, 0.2);
}

/* Tag Coordinates (RTL) */
html[dir="rtl"] .tag-pos-device-top {
  top: 35px;
  right: 0;
}

html[dir="rtl"] .tag-pos-device-sync {
  top: 40%;
  left: 0;
}

html[dir="rtl"] .tag-pos-device-cloud {
  bottom: -15px;
  right: 25%;
}

/* Tag Coordinates (LTR) */
html[dir="ltr"] .tag-pos-device-top {
  top: 35px;
  left: 0;
}

html[dir="ltr"] .tag-pos-device-sync {
  top: 40%;
  right: 0;
}

html[dir="ltr"] .tag-pos-device-cloud {
  bottom: -15px;
  left: 25%;
}

/* LTR Device positioning adjustments */
html[dir="ltr"] .device-laptop-frame {
  left: auto;
  right: 0;
}

html[dir="ltr"] .laptop-base {
  left: auto;
  right: -15px;
}

html[dir="ltr"] .device-tablet-frame {
  right: auto;
  left: 60px;
}

html[dir="ltr"] .device-phone-frame {
  right: auto;
  left: 0;
}

html[dir="ltr"] .odoo-invoice-table {
  text-align: left;
}

/* ==========================================================================
   Responsive Breakpoints for Block 3
   ========================================================================== */
@media (max-width: 1199px) {
  .device-desktop-monitor {
    width: 380px;
  }
  .device-laptop-frame {
    width: 220px;
  }
  .device-tablet-frame {
    width: 140px;
    height: 200px;
    right: 40px;
  }
  html[dir="ltr"] .device-tablet-frame {
    left: 40px;
    right: auto;
  }
}

@media (max-width: 991px) {
  .odoo-why-section {
    padding: 80px 0;
  }
  .multi-device-wrapper {
    min-height: 420px;
    margin-bottom: 50px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }
  .device-tag-float {
    position: absolute;
  }
}

@media (max-width: 767px) {
  .multi-device-wrapper {
    min-height: 330px;
    max-width: 320px;
    margin: 0 auto 40px auto;
    position: relative;
  }
  .devices-orbit-arc {
    height: 280px;
    top: 5%;
  }
  .device-desktop-monitor {
    width: 240px;
    border-width: 3px;
    border-radius: 12px;
    margin-bottom: 12px;
  }
  .monitor-stand {
    width: 65px;
    height: 16px;
    bottom: -16px;
  }
  .monitor-base {
    width: 100px;
    height: 4px;
    bottom: -20px;
  }
  .desktop-screen-header {
    padding: 4px 8px;
    font-size: 0.62rem;
  }
  .desktop-screen-body {
    height: 135px;
  }
  .desktop-sidebar {
    width: 55px;
    padding: 4px 3px;
    gap: 2px;
    font-size: 0.55rem;
  }
  .sidebar-item {
    padding: 2px 3px;
    font-size: 0.55rem;
  }
  .desktop-main-dash {
    padding: 6px 8px;
    gap: 5px;
  }
  .dash-kpi-card {
    padding: 2px 3px;
  }
  .dash-kpi-label {
    font-size: 0.52rem;
  }
  .dash-kpi-val {
    font-size: 0.6rem;
  }
  .dash-card-head {
    font-size: 0.55rem;
  }
  .chart-svg-wrap {
    height: 32px;
  }
  .task-item-row {
    font-size: 0.52rem;
  }

  .device-laptop-frame {
    width: 145px;
    bottom: 8px;
    left: -12px;
    border-width: 2.5px;
  }
  html[dir="ltr"] .device-laptop-frame {
    left: auto;
    right: -12px;
  }
  .laptop-base {
    width: 165px;
    left: -10px;
    height: 6px;
  }
  html[dir="ltr"] .laptop-base {
    left: auto;
    right: -10px;
  }
  .laptop-screen-body {
    height: 80px;
    padding: 3px 4px;
  }
  .odoo-invoice-table {
    font-size: 0.48rem;
  }
  .odoo-invoice-table th, 
  .odoo-invoice-table td {
    padding: 1px 2px;
  }

  .device-tablet-frame {
    width: 95px;
    height: 140px;
    bottom: 25px;
    right: 5px;
    border-width: 3px;
    padding: 4px;
  }
  html[dir="ltr"] .device-tablet-frame {
    right: auto;
    left: 5px;
  }
  .tablet-top-label {
    font-size: 0.55rem;
    margin-bottom: 4px;
  }
  .tablet-app-icon {
    width: 18px;
    height: 18px;
    font-size: 0.65rem;
    border-radius: 5px;
  }
  .tablet-app-label {
    font-size: 0.42rem;
  }

  .device-phone-frame {
    width: 70px;
    height: 125px;
    bottom: 5px;
    right: -12px;
    border-width: 2.5px;
    border-radius: 12px;
  }
  html[dir="ltr"] .device-phone-frame {
    right: auto;
    left: -12px;
  }
  .phone-notch {
    width: 24px;
    height: 3px;
  }
  .phone-screen-body {
    padding: 2px 3px;
    gap: 3px;
  }
  .phone-kpi-box {
    padding: 2px 3px;
  }
  .phone-kpi-title {
    font-size: 0.45rem;
  }
  .phone-kpi-val {
    font-size: 0.55rem;
  }

  /* Floating tags nicely placed around devices on mobile */
  .device-tag-float {
    position: absolute;
    padding: 3px 8px;
    font-size: 0.66rem;
    gap: 4px;
    box-shadow: 0 4px 12px rgba(0, 86, 210, 0.12);
  }
  .device-tag-float i {
    font-size: 0.8rem;
  }

  html[dir="rtl"] .tag-pos-device-top {
    top: -5px;
    right: -10px;
  }
  html[dir="rtl"] .tag-pos-device-sync {
    top: 38%;
    left: -18px;
  }
  html[dir="rtl"] .tag-pos-device-cloud {
    bottom: -15px;
    right: 18%;
  }

  html[dir="ltr"] .tag-pos-device-top {
    top: -5px;
    left: -10px;
  }
  html[dir="ltr"] .tag-pos-device-sync {
    top: 38%;
    right: -18px;
  }
  html[dir="ltr"] .tag-pos-device-cloud {
    bottom: -15px;
    left: 18%;
  }

  .why-feature-card {
    padding: 14px 16px;
    gap: 12px;
  }
  .why-card-icon-wrap {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }
}

/* ==========================================================================
   Block 4: Services Section (Our Services - 3x2 Grid)
   ========================================================================== */
.odoo-services-section {
  position: relative;
  padding: 110px 0 125px 0;
  background-color: #f1f7fe;
  background-image: 
    radial-gradient(1200px 650px at 85% 15%, rgba(0, 86, 210, 0.12) 0%, transparent 60%),
    radial-gradient(1000px 550px at 15% 85%, rgba(0, 163, 255, 0.14) 0%, transparent 60%),
    linear-gradient(180deg, #e9f3fd 0%, #f4f9fe 50%, #e6f1fc 100%);
  overflow: hidden;
  border-top: 1.5px solid rgba(0, 86, 210, 0.12);
  border-bottom: 1.5px solid rgba(0, 86, 210, 0.12);
}

/* Top-Left Geometric Tech Ribbon (Edever Brand Identity) */
.services-geom-accent {
  position: absolute;
  top: -60px;
  right: auto;
  left: -80px;
  width: 360px;
  height: 360px;
  background: var(--edever-geom-gradient);
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  border-radius: 40px;
  opacity: 0.85;
  transform: rotate(-15deg);
  z-index: 1;
  pointer-events: none;
  filter: blur(1px);
}

html[dir="ltr"] .services-geom-accent {
  left: auto;
  right: -80px;
  transform: rotate(15deg);
}

/* Section Header Typography */
.services-header-wrap {
  text-align: center;
  position: relative;
  z-index: 2;
  margin-bottom: 55px;
}

.services-main-title {
  font-size: 2.7rem;
  font-weight: 800;
  color: var(--tech-heading);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

/* Glowing Blue Underline Accent */
.title-tech-underline {
  display: block;
  width: 80px;
  height: 4px;
  background: var(--edever-blue-gradient);
  border-radius: 4px;
  margin: 0 auto;
  box-shadow: 0 0 12px rgba(0, 86, 210, 0.6);
  position: relative;
}

.title-tech-underline::before,
.title-tech-underline::after {
  content: '';
  position: absolute;
  top: 1px;
  width: 6px;
  height: 2px;
  background: var(--edever-blue-cyan);
  border-radius: 2px;
}

.title-tech-underline::before { left: -12px; }
.title-tech-underline::after { right: -12px; }

/* ==========================================================================
   Services Grid & Cards (3x2 Layout)
   ========================================================================== */
.services-cards-grid {
  position: relative;
  z-index: 2;
}

.service-card-item {
  position: relative;
  background: #ffffff;
  border: 1.5px solid rgba(0, 86, 210, 0.1);
  border-radius: 22px;
  padding: 38px 28px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.service-card-item:hover {
  transform: translateY(-8px);
  border-color: var(--edever-blue-primary);
  box-shadow: 0 20px 45px rgba(0, 86, 210, 0.14);
}

/* Service Card Icon */
.service-icon-wrap {
  position: relative;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px dashed rgba(0, 86, 210, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(0, 86, 210, 0.08);
}

.service-icon-wrap i {
  font-size: 2rem;
  color: var(--edever-blue-primary);
  transition: all 0.3s ease;
}

.service-card-item:hover .service-icon-wrap {
  border-color: var(--edever-blue-primary);
  transform: scale(1.08);
  box-shadow: 0 8px 22px rgba(0, 86, 210, 0.2);
}

.service-card-item:hover .service-icon-wrap i {
  transform: scale(1.05);
}

/* Service Card Typography */
.service-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--tech-heading);
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}

.service-card-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--tech-body);
  margin: 0;
}

/* ==========================================================================
   Featured Card (تنفيذ وتخصيص نظام Odoo)
   ========================================================================== */
.service-card-featured {
  border: 2px solid var(--edever-blue-primary);
  box-shadow: 0 16px 40px rgba(0, 86, 210, 0.16);
  background: #ffffff;
}

.service-card-featured:hover {
  box-shadow: 0 24px 55px rgba(0, 86, 210, 0.22);
}

/* Star Ribbon Badge at Top Corner */
.featured-ribbon-badge {
  position: absolute;
  top: 0;
  width: 32px;
  height: 42px;
  background: var(--edever-blue-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 50% 80%, 0% 100%);
  box-shadow: 0 4px 10px rgba(0, 86, 210, 0.3);
  z-index: 5;
}

html[dir="rtl"] .featured-ribbon-badge {
  left: 28px;
}

html[dir="ltr"] .featured-ribbon-badge {
  right: 28px;
}

/* Curved Blue Corner Accent Ribbon at Bottom Corner */
.featured-corner-accent {
  position: absolute;
  bottom: 0;
  width: 90px;
  height: 90px;
  background: var(--edever-geom-gradient);
  z-index: 1;
  pointer-events: none;
}

html[dir="rtl"] .featured-corner-accent {
  left: 0;
  clip-path: polygon(100% 100%, 0% 100%, 0% 0%, 100% 100%);
  border-bottom-left-radius: 20px;
}

html[dir="ltr"] .featured-corner-accent {
  right: 0;
  clip-path: polygon(0% 100%, 100% 100%, 100% 0%, 0% 100%);
  border-bottom-right-radius: 20px;
}

/* ==========================================================================
   Responsive Breakpoints for Block 4
   ========================================================================== */
@media (max-width: 991px) {
  .odoo-services-section {
    padding: 80px 0 90px 0;
  }
  .services-main-title {
    font-size: 2.2rem;
  }
  .service-card-item {
    padding: 30px 22px;
  }
}

@media (max-width: 767px) {
  .services-main-title {
    font-size: 1.85rem;
  }
  .service-card-item {
    padding: 26px 18px;
  }
  .service-icon-wrap {
    width: 58px;
    height: 58px;
    margin-bottom: 16px;
  }
  .service-icon-wrap i {
    font-size: 1.7rem;
  }
  .service-card-title {
    font-size: 1.15rem;
  }
  .service-card-desc {
    font-size: 0.88rem;
  }
}

/* ==========================================================================
   Clean Contact Section (Odoo Tech Theme)
   ========================================================================== */
.contact-clean {
  padding: 100px 0 110px 0;
  background-color: #eaf3fe;
  background-image: 
    radial-gradient(1000px 500px at 50% 50%, rgba(0, 86, 210, 0.09) 0%, transparent 60%),
    linear-gradient(180deg, #e4effc 0%, #f0f7fe 100%);
  position: relative;
  overflow: hidden;
}

.contact-wrap {
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0, 86, 210, 0.08);
  border: 1.5px solid rgba(0, 86, 210, 0.1);
  overflow: hidden;
  display: flex;
}

.contact-info-side {
  background: linear-gradient(135deg, #0b192c 0%, #003380 50%, #0056D2 100%);
  color: #ffffff;
  padding: 55px 45px;
  flex: 1;
  position: relative;
  overflow: hidden;
  text-align: right;
}

html[dir="ltr"] .contact-info-side {
  text-align: left;
}

.contact-info-side h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #ffffff;
}

.contact-info-side p {
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 40px;
}

.contact-info-side .contact-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 22px;
  font-size: 1.05rem;
}

.contact-row i {
  font-size: 22px;
  margin-inline-end: 14px;
  color: #38bdf8;
}

.contact-info-side::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(0, 163, 255, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-form-side {
  padding: 55px 45px;
  flex: 1.4;
  background: #ffffff;
}

.contact-form-side .form-control {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.95rem;
  color: var(--tech-heading);
  transition: all 0.3s ease;
}

.contact-form-side .form-control:focus {
  border-color: var(--edever-blue-primary);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(0, 86, 210, 0.1);
}

.btn-submit-clean {
  background: var(--edever-blue-gradient);
  color: #ffffff;
  border: none;
  padding: 15px 30px;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  width: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 86, 210, 0.25);
  cursor: pointer;
}

.btn-submit-clean:hover {
  background: var(--edever-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 86, 210, 0.35);
}

@media (max-width: 991px) {
  .contact-wrap {
    flex-direction: column;
  }
  .contact-info-side {
    padding: 35px 25px;
    text-align: center;
  }
  html[dir="ltr"] .contact-info-side {
    text-align: center;
  }
  .contact-info-side .contact-row {
    justify-content: center;
  }
  .contact-form-side {
    padding: 35px 25px;
  }
}

@media (max-width: 767px) {
  .contact-clean {
    padding: 70px 0;
  }
  .contact-info-side h3 {
    font-size: 26px;
  }
}




