/* ============================================
   Rabcode Infotech — Premium Homepage Styles
   ============================================ */

/* --- Base & Smooth Scroll --- */
html {
  scroll-behavior: smooth;
}

::selection {
  background: rgba(59, 159, 232, 0.2);
  color: #111;
}

/* --- Gradient Text --- */
.gradient-text {
  background: linear-gradient(135deg, #3B9FE8 0%, #8B5CF6 40%, #F97316 80%, #10B981 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

/* --- Navbar Blur --- */
#navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.03);
}

/* --- Button Glow --- */
.btn-glow {
  position: relative;
  overflow: hidden;
}

.btn-glow::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #3B9FE8, #8B5CF6, #F97316);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  filter: blur(12px);
}

.btn-glow:hover::after {
  opacity: 0.5;
}

/* --- Trust Badges --- */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #4B5563;
  font-weight: 500;
}

/* ============================================
   HERO
   ============================================ */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: orbFloat 12s ease-in-out infinite;
  pointer-events: none;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 159, 232, 0.3), transparent 70%);
  top: -10%;
  right: -5%;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.25), transparent 70%);
  bottom: 10%;
  left: -5%;
  animation-delay: -3s;
}

.hero-orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.2), transparent 70%);
  top: 30%;
  left: 30%;
  animation-delay: -6s;
}

.hero-orb-4 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.2), transparent 70%);
  bottom: 20%;
  right: 20%;
  animation-delay: -9s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* --- Ecosystem Illustration --- */
.hero-ecosystem {
  position: relative;
}

.eco-center {
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eco-center-ring {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 2px solid rgba(59, 159, 232, 0.15);
  animation: ringPulse 4s ease-in-out infinite;
}

.eco-center-ring::before {
  content: '';
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  border: 1px solid rgba(139, 92, 246, 0.1);
  animation: ringPulse 4s ease-in-out infinite reverse;
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.08); opacity: 1; }
}

.eco-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.02);
  font-size: 0.7rem;
  font-weight: 600;
  color: #374151;
  z-index: 10;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eco-card i {
  font-size: 1.1rem;
  color: var(--accent);
}

.eco-card:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.float-1 { animation: floatCard 6s ease-in-out infinite; }
.float-2 { animation: floatCard 7s ease-in-out infinite -1s; }
.float-3 { animation: floatCard 5.5s ease-in-out infinite -2s; }
.float-4 { animation: floatCard 6.5s ease-in-out infinite -0.5s; }
.float-5 { animation: floatCard 7.5s ease-in-out infinite -3s; }
.float-6 { animation: floatCard 5s ease-in-out infinite -1.5s; }
.float-7 { animation: floatCard 6.8s ease-in-out infinite -2.5s; }
.float-8 { animation: floatCard 7.2s ease-in-out infinite -0.8s; }
.float-9 { animation: floatCard 5.8s ease-in-out infinite -3.5s; }
.float-10 { animation: floatCard 6.3s ease-in-out infinite -1.2s; }
.float-11 { animation: floatCard 7.8s ease-in-out infinite -2.8s; }
.float-12 { animation: floatCard 5.3s ease-in-out infinite -4s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.eco-line {
  animation: lineDash 20s linear infinite;
}

@keyframes lineDash {
  to { stroke-dashoffset: -100; }
}

/* ============================================
   COUNTRY CARDS
   ============================================ */
.country-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.country-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.flag-illustration {
  width: 64px;
  height: 44px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.flag-india {
  background: linear-gradient(to bottom, #FF9933 33%, #FFFFFF 33%, #FFFFFF 66%, #138808 66%);
  position: relative;
}

.flag-india::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border: 2px solid #000080;
  border-radius: 50%;
}

.flag-uae {
  background: linear-gradient(to right, #FF0000 25%, #FFFFFF 25%, #FFFFFF 50%, #000000 50%, #007A3D 50%);
  position: relative;
}

.flag-uae::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 25%;
  background: #FF0000;
}

.flag-qatar {
  background: #8D1B3D;
  position: relative;
}

.flag-qatar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 30%;
  background: white;
  clip-path: polygon(0 0, 100% 15%, 100% 85%, 0 100%);
}

.flag-saudi {
  background: #006C35;
  position: relative;
}

.flag-saudi::after {
  content: '☪';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 18px;
}

/* ============================================
   PARTNER ILLUSTRATION
   ============================================ */
.partner-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(59, 159, 232, 0.1);
}

.ring-1 { width: 300px; height: 300px; animation: ringRotate 20s linear infinite; }
.ring-2 { width: 380px; height: 380px; animation: ringRotate 30s linear infinite reverse; }
.ring-3 { width: 460px; height: 460px; animation: ringRotate 40s linear infinite; }

@keyframes ringRotate {
  to { transform: rotate(360deg); }
}

.partner-core {
  display: flex;
  gap: 24px;
  position: relative;
  z-index: 5;
}

.partner-pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 24px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  animation: pillarFloat 4s ease-in-out infinite;
  animation-delay: calc(var(--i) * -1.3s);
}

.partner-pillar i {
  font-size: 1.5rem;
  background: linear-gradient(135deg, #3B9FE8, #8B5CF6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.partner-pillar span {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}

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

.partner-orbit {
  position: absolute;
  width: 44px;
  height: 44px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  font-size: 0.9rem;
  color: #3B9FE8;
}

.orbit-1 { top: 10%; right: 15%; animation: orbitFloat 5s ease-in-out infinite; }
.orbit-2 { bottom: 15%; left: 10%; animation: orbitFloat 6s ease-in-out infinite -2s; }
.orbit-3 { top: 20%; left: 20%; animation: orbitFloat 7s ease-in-out infinite -4s; }

@keyframes orbitFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(10px, -10px); }
}

/* ============================================
   EXPERTISE SECTIONS
   ============================================ */
.accent-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.accent-blue { background: rgba(59, 159, 232, 0.1); color: #3B9FE8; }
.accent-orange { background: rgba(249, 115, 22, 0.1); color: #F97316; }
.accent-purple { background: rgba(139, 92, 246, 0.1); color: #8B5CF6; }
.accent-cyan { background: rgba(6, 182, 212, 0.1); color: #06B6D4; }
.accent-emerald { background: rgba(16, 185, 129, 0.1); color: #10B981; }
.accent-pink { background: rgba(236, 72, 153, 0.1); color: #EC4899; }

.feature-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #F9FAFB;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.3s ease;
}

.feature-pill:hover {
  background: rgba(59, 159, 232, 0.08);
}

/* --- Software Dashboard Illustration --- */
.sw-dashboard {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.sw-header {
  display: flex;
  gap: 6px;
  padding: 14px 16px;
  background: #F3F4F6;
}

.sw-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #D1D5DB;
}

.sw-header span:first-child { background: #EF4444; }
.sw-header span:nth-child(2) { background: #FBBF24; }
.sw-header span:nth-child(3) { background: #10B981; }

.sw-body {
  display: flex;
  min-height: 280px;
}

.sw-sidebar {
  width: 60px;
  background: #1F2937;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sw-nav-item {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
}

.sw-nav-item.active {
  background: #3B9FE8;
}

.sw-main {
  flex: 1;
  padding: 20px;
}

.sw-stat-row {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.sw-stat {
  flex: 1;
}

.sw-stat-val {
  font-size: 0.7rem;
  font-weight: 700;
  color: #6B7280;
  display: block;
  margin-bottom: 6px;
}

.sw-stat-bar {
  display: block;
  height: 6px;
  background: linear-gradient(90deg, #3B9FE8, #8B5CF6);
  border-radius: 3px;
}

.sw-chart {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 120px;
  margin-bottom: 20px;
}

.sw-bar {
  flex: 1;
  background: linear-gradient(to top, #3B9FE8, rgba(59, 159, 232, 0.3));
  border-radius: 6px 6px 0 0;
  animation: barGrow 2s ease-out;
}

@keyframes barGrow {
  from { height: 0 !important; }
}

.sw-modules {
  display: flex;
  gap: 8px;
}

.sw-modules span {
  padding: 6px 12px;
  background: #F3F4F6;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #4B5563;
}

/* --- Marketing Section --- */
.marketing-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(249, 115, 22, 0.08), transparent 70%);
  pointer-events: none;
}

.marketing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.marketing-card {
  background: white;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.marketing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(249, 115, 22, 0.1);
}

.mc-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.marketing-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.marketing-card p {
  font-size: 0.85rem;
  color: #6B7280;
  line-height: 1.6;
}

/* --- Marketing Workflow --- */
.marketing-workflow {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.workflow-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  min-width: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workflow-step:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(249, 115, 22, 0.12);
}

.wf-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #F97316;
  background: rgba(249, 115, 22, 0.1);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wf-label {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
}

.wf-final {
  background: linear-gradient(135deg, #F97316, #FB923C);
  color: white;
  border: none;
}

.wf-final .wf-num {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.workflow-arrow {
  color: #F97316;
  opacity: 0.4;
  padding: 0 4px;
  font-size: 0.75rem;
}

/* --- AI Illustration --- */
.ai-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.ai-brain {
  position: relative;
  width: 320px;
  height: 320px;
}

.ai-node {
  position: absolute;
  width: 56px;
  height: 56px;
  background: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.15);
  font-size: 1.2rem;
  color: #8B5CF6;
  animation: aiFloat 5s ease-in-out infinite;
}

.ai-node-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #8B5CF6, #A78BFA);
  color: white;
  font-size: 1.5rem;
  z-index: 5;
  animation: none;
}

.ai-node-1 { top: 5%; left: 40%; animation-delay: 0s; }
.ai-node-2 { top: 20%; right: 5%; animation-delay: -1s; }
.ai-node-3 { bottom: 20%; right: 10%; animation-delay: -2s; }
.ai-node-4 { bottom: 5%; left: 35%; animation-delay: -3s; }
.ai-node-5 { bottom: 25%; left: 0; animation-delay: -4s; }
.ai-node-6 { top: 25%; left: 5%; animation-delay: -2.5s; }

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

.ai-capabilities {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ai-cap {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: white;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ai-cap:hover {
  transform: translateX(6px);
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.1);
}

.ai-cap i {
  width: 40px;
  height: 40px;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8B5CF6;
  flex-shrink: 0;
}

.ai-cap strong {
  display: block;
  font-size: 0.9rem;
}

.ai-cap span {
  font-size: 0.8rem;
  color: #6B7280;
}

/* --- Browser Mockup --- */
.browser-mockup {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: #F3F4F6;
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser-bar span:nth-child(1) { background: #EF4444; }
.browser-bar span:nth-child(2) { background: #FBBF24; }
.browser-bar span:nth-child(3) { background: #10B981; }

.browser-url {
  flex: 1;
  margin-left: 12px;
  padding: 6px 14px;
  background: white;
  border-radius: 8px;
  font-size: 0.75rem;
  color: #9CA3AF;
}

.browser-content {
  padding: 24px;
}

.web-hero-block {
  height: 100px;
  background: linear-gradient(135deg, #06B6D4, #3B9FE8);
  border-radius: 12px;
  margin-bottom: 16px;
}

.web-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.web-card {
  height: 80px;
  background: #F3F4F6;
  border-radius: 10px;
}

.web-types {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.web-types span {
  padding: 10px 18px;
  background: rgba(6, 182, 212, 0.08);
  color: #0891B2;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.3s ease;
}

.web-types span:hover {
  background: rgba(6, 182, 212, 0.15);
}

/* --- Phone Mockups --- */
.phone-mockups {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone {
  width: 180px;
  height: 360px;
  background: #1F2937;
  border-radius: 32px;
  padding: 8px;
  position: absolute;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.phone-1 {
  left: 10%;
  transform: rotate(-8deg);
  z-index: 2;
  animation: phoneFloat 6s ease-in-out infinite;
}

.phone-2 {
  right: 10%;
  transform: rotate(8deg);
  z-index: 1;
  animation: phoneFloat 6s ease-in-out infinite -3s;
}

@keyframes phoneFloat {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50% { transform: rotate(-8deg) translateY(-12px); }
}

.phone-2 {
  animation-name: phoneFloat2;
}

@keyframes phoneFloat2 {
  0%, 100% { transform: rotate(8deg) translateY(0); }
  50% { transform: rotate(8deg) translateY(-12px); }
}

.phone-notch {
  width: 60px;
  height: 6px;
  background: #374151;
  border-radius: 3px;
  margin: 8px auto;
}

.phone-screen {
  background: white;
  border-radius: 24px;
  height: calc(100% - 30px);
  overflow: hidden;
  padding: 12px;
}

.phone-header {
  height: 40px;
  background: linear-gradient(135deg, #10B981, #34D399);
  border-radius: 10px;
  margin-bottom: 12px;
}

.phone-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.phone-card {
  height: 50px;
  background: #F3F4F6;
  border-radius: 8px;
}

.phone-nav {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  height: 30px;
  background: #F3F4F6;
  border-radius: 8px;
}

.phone-chart {
  height: 120px;
  background: linear-gradient(to top, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.05));
  border-radius: 10px;
  margin-bottom: 12px;
  position: relative;
}

.phone-chart::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  height: 60%;
  background: linear-gradient(to top, #10B981, transparent);
  border-radius: 6px;
  clip-path: polygon(0 100%, 20% 60%, 40% 80%, 60% 30%, 80% 50%, 100% 10%, 100% 100%);
}

.phone-stats {
  display: flex;
  gap: 8px;
}

.phone-stat {
  flex: 1;
  height: 40px;
  background: #F3F4F6;
  border-radius: 8px;
}

.mobile-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mobile-tech {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #059669;
}

.mobile-tech i {
  font-size: 1.1rem;
}

/* --- Brand Illustration --- */
.brand-canvas {
  position: relative;
  width: 100%;
  height: 400px;
  background: #FAFAFA;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.brand-logo-mark {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #EC4899, #F472B6);
  border-radius: 20px;
}

.brand-color-swatch {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--c);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.brand-color-swatch:nth-of-type(2) { top: 40px; right: 120px; }
.brand-color-swatch:nth-of-type(3) { top: 40px; right: 60px; }
.brand-color-swatch:nth-of-type(4) { top: 100px; right: 90px; }
.brand-color-swatch:nth-of-type(5) { top: 70px; right: 30px; }

.brand-type-sample {
  position: absolute;
  bottom: 100px;
  left: 30px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #E5E7EB;
}

.brand-poster {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 140px;
  height: 180px;
  background: linear-gradient(135deg, #EC4899, #8B5CF6);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(236, 72, 153, 0.2);
}

.brand-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.brand-services span {
  padding: 10px 18px;
  background: rgba(236, 72, 153, 0.08);
  color: #DB2777;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ============================================
   SOLUTIONS
   ============================================ */
.solution-row {
  display: flex;
  gap: 24px;
  background: white;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.solution-row:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.solution-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: color-mix(in srgb, var(--c) 12%, white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--c);
  flex-shrink: 0;
}

.solution-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.solution-grid strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9CA3AF;
  margin-bottom: 6px;
}

.solution-grid p {
  font-size: 0.875rem;
  color: #4B5563;
  line-height: 1.6;
}

/* ============================================
   WHY RABCODE
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: #FAFAFA;
  border-radius: 24px;
  padding: 36px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
  background: white;
}

.why-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #3B9FE8, #8B5CF6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}

.why-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.875rem;
  color: #6B7280;
  line-height: 1.7;
}

/* ============================================
   SUCCESS STORIES
   ============================================ */
.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}

.story-reverse {
  direction: rtl;
}

.story-reverse > * {
  direction: ltr;
}

.story-visual {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease;
}

.story-visual:hover {
  transform: scale(1.02);
}

.story-visual-1 { background: linear-gradient(135deg, #EFF6FF, #DBEAFE); }
.story-visual-2 { background: linear-gradient(135deg, #FFF7ED, #FFEDD5); }
.story-visual-3 { background: linear-gradient(135deg, #F5F3FF, #EDE9FE); }
.story-visual-4 { background: linear-gradient(135deg, #ECFDF5, #D1FAE5); }
.story-visual-5 { background: linear-gradient(135deg, #FDF2F8, #FCE7F3); }

.story-mock {
  width: 80%;
  max-width: 360px;
}

.story-tag {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(59, 159, 232, 0.1);
  color: #3B9FE8;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.story-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.story-content p {
  color: #6B7280;
  line-height: 1.7;
  margin-bottom: 24px;
}

.story-metrics {
  display: flex;
  gap: 32px;
}

.story-metrics strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.story-metrics span {
  font-size: 0.8rem;
  color: #9CA3AF;
}

/* Story mockups */
.skillbot-mock {
  background: white;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.sb-header {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 16px;
  color: #3B9FE8;
}

.sb-courses {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sb-course {
  height: 48px;
  background: #F3F4F6;
  border-radius: 10px;
  border-left: 3px solid #3B9FE8;
}

.jm-tracker {
  background: white;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.jm-map {
  height: 120px;
  background: linear-gradient(135deg, #FFF7ED, #FED7AA);
  border-radius: 12px;
  margin-bottom: 12px;
  position: relative;
}

.jm-map::after {
  content: '';
  position: absolute;
  top: 30%;
  left: 20%;
  width: 60%;
  height: 2px;
  background: #F97316;
  border-radius: 1px;
}

.jm-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #059669;
}

.jm-dot {
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.ev-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: white;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.ev-item {
  height: 70px;
  background: #F3F4F6;
  border-radius: 10px;
}

.ev-featured {
  background: linear-gradient(135deg, #8B5CF6, #A78BFA);
}

.bm-portal {
  background: white;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.bm-nav {
  height: 30px;
  background: linear-gradient(90deg, #10B981, #34D399);
  border-radius: 8px;
  margin-bottom: 16px;
}

.bm-appt {
  height: 36px;
  background: #F3F4F6;
  border-radius: 8px;
  margin-bottom: 8px;
  border-left: 3px solid #10B981;
}

.oc-feed {
  background: white;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.oc-post {
  height: 60px;
  background: #F3F4F6;
  border-radius: 10px;
  margin-bottom: 10px;
}

.oc-highlight {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(139, 92, 246, 0.1));
  border: 1px solid rgba(236, 72, 153, 0.2);
}

/* ============================================
   TECH STACK
   ============================================ */
.tech-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.tech-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 32px;
  background: white;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 120px;
}

.tech-card:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.tech-card i {
  font-size: 2rem;
  color: var(--tc);
}

.tech-card span {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
}

/* ============================================
   STATISTICS
   ============================================ */
.stats-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(59, 159, 232, 0.15), transparent 70%);
  pointer-events: none;
}

.stat-item {
  position: relative;
}

.stat-item .stat-number,
.stat-item .stat-suffix {
  display: inline;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
  color: #FBBF24;
  font-size: 0.85rem;
  margin-bottom: 16px;
  display: flex;
  gap: 4px;
}

.testimonial-card p {
  color: #4B5563;
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3B9FE8, #8B5CF6);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: #9CA3AF;
}

/* ============================================
   CTA
   ============================================ */
.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.cta-glow-1 {
  width: 500px;
  height: 500px;
  background: rgba(59, 159, 232, 0.12);
  top: -20%;
  left: -10%;
  animation: orbFloat 10s ease-in-out infinite;
}

.cta-glow-2 {
  width: 400px;
  height: 400px;
  background: rgba(139, 92, 246, 0.1);
  bottom: -20%;
  right: -10%;
  animation: orbFloat 12s ease-in-out infinite -4s;
}

/* ============================================
   FOOTER
   ============================================ */
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
  background: rgba(59, 159, 232, 0.3);
  transform: translateY(-2px);
}

/* ============================================
   TILT CARD
   ============================================ */
.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
}

/* ============================================
   FADE UP (initial state)
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .solution-grid {
    grid-template-columns: 1fr;
  }

  .story-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .story-reverse {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  .hero-ecosystem {
    height: 400px;
    margin-top: 20px;
  }

  .eco-card {
    padding: 8px 10px;
    font-size: 0.6rem;
  }

  .eco-card i {
    font-size: 0.85rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .solution-row {
    flex-direction: column;
  }

  .partner-core {
    flex-direction: column;
    align-items: center;
  }

  .partner-illustration {
    height: 360px;
  }

  .phone-mockups {
    height: 360px;
  }

  .phone {
    width: 150px;
    height: 300px;
  }

  .phone-1 { left: 5%; }
  .phone-2 { right: 5%; }

  .marketing-grid {
    grid-template-columns: 1fr;
  }

  .workflow-step {
    min-width: 240px;
    padding: 16px 28px;
  }

  .marketing-workflow {
    flex-direction: column;
  }

  .workflow-arrow i {
    transform: rotate(90deg);
  }

  .mkt-dash-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .contact-phone {
    font-size: 2rem;
  }

  .why-editorial-item {
    grid-template-columns: 60px 1fr;
    gap: 20px;
    padding: 28px 0;
  }

  .cloud-layer-2,
  .cloud-layer-3,
  .cloud-layer-4 {
    margin-left: 0;
  }

  .float-contact {
    bottom: 16px;
    right: 16px;
  }
}

@media (max-width: 480px) {
  .hero-ecosystem {
    height: 320px;
  }

  .eco-card span {
    display: none;
  }

  .eco-card {
    padding: 10px;
  }
}

/* ============================================
   SERVICE DETAIL GRID
   ============================================ */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-detail {
  padding: 20px;
  background: #FAFAFA;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-detail h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #3B9FE8;
  margin-bottom: 8px;
}

.service-detail p {
  font-size: 0.85rem;
  color: #6B7280;
  line-height: 1.6;
}

/* ============================================
   GLOBAL VISUAL
   ============================================ */
.global-visual {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  pointer-events: none;
  opacity: 0.4;
}

.global-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(59, 159, 232, 0.15);
}

.global-ring-1 { animation: ringRotate 40s linear infinite; }
.global-ring-2 { inset: 40px; animation: ringRotate 50s linear infinite reverse; }

.global-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3B9FE8;
  box-shadow: 0 0 12px rgba(59, 159, 232, 0.5);
}

.global-dot-india { top: 55%; left: 62%; background: #FF9933; }
.global-dot-uae { top: 48%; left: 58%; background: #007A3D; }
.global-dot-qatar { top: 50%; left: 57%; background: #8D1B3D; }
.global-dot-saudi { top: 52%; left: 56%; background: #006C35; }

/* ============================================
   MARKETING DASHBOARD
   ============================================ */
.marketing-dashboard-wrap {
  max-width: 720px;
  margin: 0 auto 48px;
}

.mkt-dashboard {
  background: white;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.mkt-dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.mkt-dash-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

.mkt-dash-badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 12px;
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
  border-radius: 100px;
}

.mkt-dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.mkt-dash-stat {
  text-align: center;
}

.mkt-dash-label {
  display: block;
  font-size: 0.75rem;
  color: #9CA3AF;
  margin-bottom: 4px;
}

.mkt-dash-value {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.mkt-val-blue { color: #3B9FE8; }
.mkt-val-purple { color: #8B5CF6; }
.mkt-val-orange { color: #F97316; }
.mkt-val-emerald { color: #10B981; }

.mkt-dash-change {
  font-size: 0.7rem;
  color: #10B981;
  font-weight: 600;
}

.mkt-dash-chart {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 80px;
}

.mkt-bar {
  flex: 1;
  height: var(--h);
  background: linear-gradient(to top, #3B9FE8, rgba(139, 92, 246, 0.4));
  border-radius: 6px 6px 0 0;
}

.marketing-card-featured {
  grid-column: span 1;
}

/* ============================================
   CLOUD SECTION
   ============================================ */
.cloud-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cloud-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(59, 159, 232, 0.08);
  color: #3B9FE8;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
}

.cloud-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 360px;
  margin: 0 auto;
}

.cloud-layer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.cloud-layer:hover {
  transform: translateX(8px);
}

.cloud-layer i {
  font-size: 1.3rem;
  color: #3B9FE8;
  width: 32px;
  text-align: center;
}

.cloud-layer-1 { margin-left: 0; }
.cloud-layer-2 { margin-left: 24px; }
.cloud-layer-3 { margin-left: 48px; }
.cloud-layer-4 { margin-left: 72px; }

/* ============================================
   WHY EDITORIAL
   ============================================ */
.why-editorial {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-editorial-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  align-items: start;
  transition: padding-left 0.3s ease;
}

.why-editorial-item:hover {
  padding-left: 8px;
}

.why-editorial-item:last-child {
  border-bottom: none;
}

.why-editorial-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #3B9FE8, #8B5CF6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.why-editorial-item h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-editorial-item p {
  color: #6B7280;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-info {
  padding: 32px;
  background: #FAFAFA;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9CA3AF;
  margin-bottom: 8px;
}

.contact-phone-block {
  margin-bottom: 32px;
}

.contact-phone {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #3B9FE8;
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1.2;
}

.contact-phone:hover {
  color: #2563EB;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 1rem;
}

.contact-detail i {
  color: #9CA3AF;
  width: 20px;
}

.contact-detail a {
  color: #374151;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-detail a:hover {
  color: #3B9FE8;
}

.contact-country-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-country-tags span {
  padding: 8px 16px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #4B5563;
}

/* Contact Form */
.contact-form-wrap {
  background: white;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}

.contact-form .required {
  color: #EF4444;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  color: #111;
  background: #FAFAFA;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #3B9FE8;
  box-shadow: 0 0 0 3px rgba(59, 159, 232, 0.1);
  background: white;
}

.contact-form input.error,
.contact-form select.error,
.contact-form textarea.error {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.form-error {
  display: block;
  font-size: 0.75rem;
  color: #EF4444;
  margin-top: 4px;
  min-height: 18px;
}

.form-status {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.9rem;
  margin-bottom: 16px;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-status.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  color: #DC2626;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.btn-loading.hidden,
.btn-text.hidden {
  display: none;
}

/* ============================================
   FLOATING CONTACT WIDGET
   ============================================ */
.float-contact {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
}

.float-contact-toggle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #111;
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.float-contact-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.2);
}

.float-contact-menu {
  position: absolute;
  bottom: 64px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 140px;
}

.float-contact-menu.hidden {
  display: none;
}

.float-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.float-contact-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.float-contact-item i {
  width: 18px;
  text-align: center;
}

.float-contact-item:nth-child(1) i { color: #3B9FE8; }
.float-contact-item:nth-child(2) i { color: #25D366; }
.float-contact-item:nth-child(3) i { color: #8B5CF6; }

.footer-country-tag {
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  font-size: 0.75rem;
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
