/* Local custom fonts */ @font-face { font-family: 'SuisseIntl'; src: url('../fonts/ArbFONTS-SuisseIntl-Bold.otf') format('opentype'); font-weight: 700 800 900; font-style: normal; font-display: swap; } @font-face { font-family: 'SuisseIntl'; src: url('../fonts/ArbFONTS-SuisseIntl-Light.otf') format('opentype'); font-weight: 300 400 500; font-style: normal; font-display: swap; } :root { --brand-color: #ff5a2f; } /* ============================================================ RESET & BASE ============================================================ */ *, *::before, *::after { box-sizing: border-box; } h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote { margin: 0; } img { max-width: 100%; height: auto; display: block; } a { text-decoration: none; color: inherit; } button, input, select, textarea { font-family: inherit; font-size: inherit; } body { font-family: 'SuisseIntl', 'Tajawal', sans-serif; background: #f7f1ea; min-height: 100vh; color: #1f2937; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; position: relative; margin: 0; width: 100%; } /* ============================================================ LAYOUT — Container ============================================================ */ .container { width: 100%; max-width: 1280px; margin-left: auto; margin-right: auto; padding-left: 16px; padding-right: 16px; } @media (min-width: 640px) { .container { padding-left: 24px; padding-right: 24px; } } @media (min-width: 1024px) { .container { padding-left: 32px; padding-right: 32px; } } .container--sm { max-width: 768px; } /* ============================================================ NAVBAR ============================================================ */ .navbar { position: fixed; top: 0; left: 0; right: 0; width: 100%; z-index: 50; transition: all 0.5s; border-bottom: 1px solid transparent; } .navbar__row { display: flex; justify-content: space-between; align-items: center; height: 96px; gap: 16px; } .navbar__logo { flex-shrink: 0; display: flex; align-items: center; } .navbar__logo-img { height: 64px; width: auto; } .navbar__links { display: none; flex: 1; justify-content: center; gap: 32px; min-width: 0; } @media (min-width: 1024px) { .navbar__links { display: flex; } } /* ── English (LTR) Navbar Layout ── */ html[lang="en"] .navbar__row { justify-content: flex-start; gap: 60px; } html[lang="en"] .navbar__logo { margin-right: 20px; flex-shrink: 0; } html[lang="en"] .navbar__links { flex: 0 1 auto; justify-content: center; gap: 28px; flex-wrap: nowrap; white-space: nowrap; } html[lang="en"] .nav-link { white-space: nowrap; font-size: 0.9rem; } html[lang="en"] .navbar__actions { margin-left: auto; margin-right: 0; flex-shrink: 0; } /* ── Hamburger Button ── */ .navbar__hamburger { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; background: none; border: none; cursor: pointer; padding: 6px; border-radius: 8px; transition: background 0.2s; z-index: 60; } .navbar__hamburger:hover { background: rgba(0,0,0,0.06); } .navbar__hamburger span { display: block; height: 2px; width: 100%; background: #1a1a1a; border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; transform-origin: center; } /* X state when open */ .navbar__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); } .navbar__hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); } .navbar__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); } @media (min-width: 1024px) { .navbar__hamburger { display: none; } } /* ── Navbar CTA Buttons Wrapper ── */ .navbar__actions { display: none; align-items: center; gap: 10px; flex-shrink: 0; } @media (min-width: 1024px) { .navbar__actions { display: flex; } } @media (min-width: 1024px) and (max-width: 1199px) { .navbar__row { gap: 12px; } .navbar__links { gap: 18px; } .nav-link { font-size: 0.92rem; } .navbar__packages, .navbar__cta { padding: 10px 18px; font-size: 0.88rem; } } @media (max-width: 1023px) { .navbar__row { height: 88px; } .navbar__logo-img { height: 56px; } } @media (max-width: 767px) { .navbar__row { height: 80px; gap: 12px; } .navbar__logo-img { height: 48px; } } /* ── Navbar CTA Button ── */ .navbar__cta { display: inline-flex; align-items: center; padding: 10px 24px; font-size: 0.95rem; font-weight: 700; color: #ffffff; background: linear-gradient(135deg, #bc0000 0%, #e06228 100%); border-radius: 12px; text-decoration: none; box-shadow: 0 4px 14px rgba(188, 0, 0, 0.28); transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); white-space: nowrap; flex-shrink: 0; } .navbar__cta:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 8px 24px rgba(212, 43, 30, 0.38); } .navbar__cta:active { transform: translateY(0) scale(0.98); } /* ── Packages Button — unique highlight ── */ .navbar__packages { display: inline-flex; align-items: center; gap: 6px; padding: 10px 22px; font-size: 0.95rem; font-weight: 800; color: #d42b1e; background: #fff; border: 2px solid #d42b1e; border-radius: 12px; text-decoration: none; white-space: nowrap; flex-shrink: 0; position: relative; overflow: hidden; transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); animation: navPkgPulse 2.8s ease-in-out infinite; } .navbar__packages::before { content: ''; position: absolute; inset: -2px; border-radius: 14px; background: linear-gradient(135deg, #d42b1e, #e07428, #d42b1e); z-index: -1; opacity: 0; transition: opacity 0.3s; } .navbar__packages:hover { color: #fff; background: linear-gradient(135deg, #d42b1e 0%, #e07428 100%); border-color: transparent; transform: translateY(-2px) scale(1.05); box-shadow: 0 8px 28px rgba(212, 43, 30, 0.4); } .navbar__packages:hover::before { opacity: 1; } .navbar__packages:active { transform: translateY(0) scale(0.97); } /* Subtle pulse glow to draw attention */ @keyframes navPkgPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(212, 43, 30, 0.25); } 50% { box-shadow: 0 0 0 8px rgba(212, 43, 30, 0); } } /* ── Mobile dropdown menu ── */ .navbar__links.is-open { display: flex; flex-direction: column; align-items: stretch; gap: 4px; position: absolute; top: calc(100% + 12px); left: 16px; right: 16px; max-height: calc(100vh - 120px); overflow-y: auto; background: rgba(247, 241, 234, 0.98); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(0,0,0,0.08); border-radius: 24px; padding: 12px; z-index: 49; box-shadow: 0 20px 50px rgba(0,0,0,0.12); } .navbar__links.is-open .nav-link { width: 100%; text-align: right; padding: 14px 16px; font-size: 1rem; border: 1px solid transparent; border-radius: 16px; } .navbar__links.is-open .nav-link:last-child { border-bottom: none; } .navbar__links.is-open .nav-link:hover { background: rgba(212, 43, 30, 0.06); border-color: rgba(212, 43, 30, 0.10); } .navbar__links.is-open .nav-link::after { display: none; } /* Packages link in mobile menu */ .navbar__links .navbar__packages--mobile { display: none; } .navbar__links.is-open .navbar__packages--mobile { display: flex; justify-content: center; align-items: center; gap: 6px; width: 100%; margin: 8px 0 0; padding: 12px 28px; font-size: 1rem; font-weight: 800; color: #d42b1e; background: #fff; border: 2px solid #d42b1e; border-radius: 12px; text-decoration: none; animation: navPkgPulse 2.8s ease-in-out infinite; transition: all 0.3s; } .navbar__links.is-open .navbar__packages--mobile:hover { color: #fff; background: linear-gradient(135deg, #d42b1e 0%, #e07428 100%); border-color: transparent; } body.nav-menu-open { overflow: hidden; } @media (max-width: 767px) { .navbar__links.is-open { top: calc(100% + 10px); left: 12px; right: 12px; max-height: calc(100vh - 100px); padding: 10px; border-radius: 20px; } .navbar__links.is-open .nav-link { padding: 13px 14px; font-size: 0.96rem; } .navbar__links.is-open .navbar__packages--mobile { padding: 12px 18px; font-size: 0.95rem; } } /* ============================================================ HERO SECTION — Modern SaaS Layout with Double Glow ============================================================ */ .hero-section { position: relative; width: 100%; background: /* Saturated red glow — spreads RIGHT from the image center */ radial-gradient( ellipse 70% 65% at 65% 68%, rgba(195, 25, 18, 0.40) 0%, rgba(210, 50, 30, 0.28) 18%, rgba(225, 80, 55, 0.16) 38%, rgba(240, 130, 100, 0.06) 58%, transparent 78% ), /* Orange glow — spreads LEFT from the image center */ radial-gradient( ellipse 70% 65% at 35% 68%, rgba(230, 125, 35, 0.40) 0%, rgba(238, 150, 55, 0.28) 18%, rgba(242, 175, 90, 0.16) 38%, rgba(248, 205, 145, 0.06) 58%, transparent 78% ), /* Intersection — where red & orange meet at the top-center above the image */ radial-gradient( ellipse 40% 45% at 50% 48%, rgba(222, 90, 40, 0.30) 0%, rgba(235, 130, 70, 0.16) 30%, rgba(245, 195, 155, 0.06) 55%, transparent 75% ), /* Soft warm base */ radial-gradient( circle at 50% 65%, rgba(242, 184, 160, 0.20) 0%, rgba(247, 241, 234, 0.10) 40%, rgba(247, 241, 234, 0) 70% ), #f7f1ea; overflow: hidden; padding-top: 96px; padding-bottom: 0; } /* Hero content container */ .hero-content { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; flex-direction: column; align-items: center; } /* ── Hero Text Block ── */ .hero-text-block { text-align: center; padding-top: 60px; padding-bottom: 48px; max-width: 800px; margin: 0 auto; position: relative; z-index: 10; } .hero-headline { font-size: clamp(2.2rem, 5.5vw, 4rem); font-weight: 800; color: #1a1a1a; line-height: 1.25; margin: 0 0 20px; letter-spacing: -0.01em; } .hero-sparkle { display: inline-block; animation: sparkle-float 3s ease-in-out infinite; font-size: 0.75em; } @keyframes sparkle-float { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-6px) scale(1.1); } } .hero-subtext { font-size: clamp(1rem, 2vw, 1.18rem); color: #6b7280; line-height: 1.8; margin: 0 0 36px; max-width: 620px; margin-left: auto; margin-right: auto; } .hero-cta-wrap { display: flex; justify-content: center; } .hero-cta-btn { display: inline-flex; align-items: center; gap: 8px; padding: 16px 40px; font-size: 1.05rem; font-weight: 700; color: #ffffff; background: linear-gradient(135deg, #bc0000 0%, #e06228 100%); border-radius: 16px; text-decoration: none; box-shadow: 0 4px 16px rgba(188, 0, 0, 0.32), 0 1px 3px rgba(0,0,0,0.08); transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); } .hero-cta-btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 32px rgba(212, 43, 30, 0.38), 0 4px 12px rgba(224, 116, 40, 0.28); } .hero-cta-btn:active { transform: translateY(-1px) scale(0.99); } /* ── Hero Visual Container ── */ .hero-visual { position: relative; width: 100%; max-width: 1050px; margin: 0 auto; display: flex; justify-content: center; padding-bottom: 0; } /* ── Glow Layers ── */ .hero-glow { position: absolute; pointer-events: none; border-radius: 50%; } /* Core glow — soft warm peach center */ .hero-glow--core { top: 50%; left: 50%; transform: translate(-50%, -40%); width: 80%; height: 75%; background: radial-gradient(ellipse 60% 55% at 50% 55%, rgba(242, 184, 160, 0.40) 0%, rgba(245, 214, 198, 0.25) 40%, transparent 70%); filter: blur(55px); opacity: 0.85; z-index: 1; animation: glow-pulse 8s ease-in-out infinite; } /* Mid glow — muted coral spread */ .hero-glow--mid { top: 50%; left: 50%; transform: translate(-50%, -44%); width: 110%; height: 95%; background: radial-gradient(ellipse 70% 60% at 50% 55%, rgba(233, 106, 75, 0.14) 0%, rgba(247, 201, 184, 0.10) 40%, transparent 70%); filter: blur(70px); opacity: 0.80; z-index: 1; animation: glow-pulse 10s ease-in-out infinite reverse; } /* Outer glow — soft warm pink haze */ .hero-glow--outer { top: 50%; left: 50%; transform: translate(-50%, -48%); width: 150%; height: 130%; background: radial-gradient(ellipse 75% 65% at 50% 55%, rgba(245, 214, 198, 0.18) 0%, rgba(247, 241, 234, 0.10) 50%, transparent 78%); filter: blur(85px); opacity: 0.75; z-index: 1; } /* Bloom glow — atmospheric creamy haze that melts into page */ .hero-glow--bloom { top: 50%; left: 50%; transform: translate(-50%, -42%); width: 190%; height: 170%; background: radial-gradient(ellipse 65% 55% at 50% 55%, rgba(247, 201, 184, 0.10) 0%, rgba(247, 241, 234, 0.06) 50%, transparent 82%); filter: blur(110px); z-index: 0; } @keyframes glow-pulse { 0%, 100% { opacity: 0.80; transform: translate(-50%, -42%) scale(1); } 50% { opacity: 0.92; transform: translate(-50%, -42%) scale(1.03); } } .glass-panel { background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255, 255, 255, 0.5); } /* Smooth scrolling */ html { scroll-behavior: smooth; width: 100%; } /* ============================================================ GLOBAL SCROLL-TRIGGERED FADE-UP ANIMATION ============================================================ */ .fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1); } .fade-up.is-visible { opacity: 1; transform: translateY(0); } /* Underline hover effect for nav links */ .nav-link { position: relative; color: #374151; font-weight: 500; text-decoration: none; transition: color 0.2s; } .nav-link:hover, .nav-link.is-active { color: #d42b1e; font-weight: 800; } .nav-link::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -4px; right: 0; background: linear-gradient(135deg, #d42b1e, #e07428); transition: width 0.3s ease; } .nav-link:hover::after, .nav-link.is-active::after { width: 100%; } /* Section header */ .section-header { text-align: center; max-width: 672px; margin: 0 auto 80px; } .section-title { font-size: 1.875rem; font-weight: 800; margin-top: 16px; margin-bottom: 16px; background: linear-gradient(135deg, #a00020 0%, #d42b1e 40%, #c2185b 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } @media (min-width: 768px) { .section-title { font-size: 2.25rem; } } .section-desc { font-size: 1.125rem; color: #9ca3af; } /* ============================================================ HERO ILLUSTRATION — warm bloom & edge glow ============================================================ */ /* ── Hero Slideshow ── */ .hero-slide { position: absolute; top: 0; left: 0; z-index: 2; width: 100%; max-width: 1000px; display: block; margin: 0 auto; right: 0; object-fit: contain; border-radius: 20px 20px 0 0; filter: drop-shadow(0 0 18px rgba(242, 184, 160, 0.22)) drop-shadow(0 0 45px rgba(245, 214, 198, 0.14)) drop-shadow(0 0 90px rgba(247, 201, 184, 0.08)); vertical-align: bottom; opacity: 0; transition: opacity 1s ease-in-out; pointer-events: none; } .hero-slide.active { opacity: 1; position: relative; pointer-events: auto; } .hero-slide:hover { filter: drop-shadow(0 0 24px rgba(242, 184, 160, 0.28)) drop-shadow(0 0 55px rgba(245, 214, 198, 0.18)) drop-shadow(0 0 110px rgba(247, 201, 184, 0.12)); } /* ── Responsive adjustments ── */ @media (max-width: 768px) { .hero-text-block { padding-top: 36px; padding-bottom: 32px; } .hero-headline { font-size: 2rem; } .hero-subtext { font-size: 0.95rem; margin-bottom: 28px; } .hero-cta-btn { padding: 14px 32px; font-size: 0.95rem; } .hero-glow--bloom { width: 200%; height: 180%; } } @media (max-width: 480px) { .hero-headline { font-size: 1.65rem; } .hero-text-block { padding-top: 24px; padding-bottom: 24px; } } /* ============================================================ ABOUT SECTION — من نحن ============================================================ */ .about-section { position: relative; background: #ffffff; padding: 100px 0 80px; overflow: hidden; z-index: 5; } /* Radial background blobs */ .about-blob { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; } .about-blob--1 { width: 560px; height: 560px; background: radial-gradient(circle, rgba(212,43,30,0.055) 0%, transparent 70%); top: -120px; right: -160px; } .about-blob--2 { width: 440px; height: 440px; background: radial-gradient(circle, rgba(224,116,40,0.045) 0%, transparent 70%); bottom: -80px; left: -120px; } /* Two-column grid (RTL: content = right, visual = left) */ .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; position: relative; z-index: 1; direction: rtl; } /* ── Section Header ── */ .about-header { text-align: center; max-width: 720px; margin: 0 auto 56px; position: relative; z-index: 1; } .about-section-title { font-size: clamp(2rem, 4.5vw, 2.75rem); font-weight: 800; margin: 0; background: linear-gradient(135deg, #a00020 0%, #d42b1e 40%, #c2185b 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.4; } /* ── Content ── */ .about-title { font-size: clamp(1.45rem, 3vw, 2.2rem); font-weight: 800; color: #111827; line-height: 1.6; margin: 0 0 20px; } .about-title__accent { font-style: normal; display: block; background: linear-gradient(135deg, #d42b1e 0%, #e07428 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .about-desc { font-size: 0.97rem; color: #6b7280; line-height: 1.95; margin: 0 0 36px; } .about-points { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; } .about-point { display: flex; align-items: center; gap: 14px; font-size: 0.95rem; font-weight: 600; color: #1f2937; } .about-point__icon { width: 44px; height: 44px; border-radius: 14px; background: linear-gradient(135deg, #d42b1e 0%, #e07428 100%); display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 6px 20px rgba(212,43,30,0.20); transition: transform 0.3s ease; } .about-point:hover .about-point__icon { transform: scale(1.08) rotate(-4deg); } .about-point__icon i { font-size: 18px; color: #fff; } /* ── Visual illustration ── */ .about-visual { position: relative; height: 440px; display: flex; align-items: center; justify-content: center; } /* Soft radial glow */ .about-visual__glow { position: absolute; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(212,43,30,0.10) 0%, rgba(224,116,40,0.06) 40%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; } /* Spinning dashed ring */ .about-visual__ring { position: absolute; width: 300px; height: 300px; border-radius: 50%; border: 1.5px dashed rgba(212,43,30,0.18); top: 50%; left: 50%; transform: translate(-50%, -50%); animation: about-ring-spin 24s linear infinite; pointer-events: none; } .about-visual__ring::after { content: ''; position: absolute; width: 11px; height: 11px; background: linear-gradient(135deg, #d42b1e, #e07428); border-radius: 50%; top: -5.5px; left: 50%; transform: translateX(-50%); box-shadow: 0 0 10px rgba(212,43,30,0.45); } @keyframes about-ring-spin { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } } /* Central glowing circle */ .about-visual__core { position: relative; z-index: 2; width: 160px; height: 160px; border-radius: 50%; background: linear-gradient(135deg, #d42b1e 0%, #e07428 100%); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 16px rgba(212,43,30,0.06), 0 0 0 32px rgba(212,43,30,0.03), 0 28px 70px rgba(212,43,30,0.30); animation: about-core-float 7s ease-in-out infinite; } .about-visual__core i { font-size: 66px; color: #fff; } @keyframes about-core-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } } /* Floating mini-cards */ .about-float { position: absolute; display: flex; align-items: center; gap: 8px; background: #fff; border: 1px solid rgba(212,43,30,0.10); border-radius: 14px; padding: 10px 16px; font-size: 0.83rem; font-weight: 700; color: #1f2937; box-shadow: 0 10px 32px rgba(0,0,0,0.07), 0 2px 8px rgba(0,0,0,0.04); white-space: nowrap; z-index: 3; direction: rtl; } .about-float i { font-size: 16px; background: linear-gradient(135deg, #d42b1e, #e07428); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .about-float--a { top: 52px; right: 8px; animation: about-float-bob 5.5s ease-in-out infinite; } .about-float--b { bottom: 60px; right: 28px; animation: about-float-bob 5.5s ease-in-out infinite 1.8s; } .about-float--c { top: 42%; left: 0; animation: about-float-bob 5.5s ease-in-out infinite 3.4s; } @keyframes about-float-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } } /* ── Stats row ── */ .about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 80px; position: relative; z-index: 1; } .about-stat { background: #faf8f6; border: 1px solid rgba(212,43,30,0.07); border-radius: 20px; padding: 30px 20px 26px; text-align: center; position: relative; overflow: hidden; transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease, border-color 0.3s ease; direction: rtl; } .about-stat::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #e07428 0%, #d42b1e 100%); border-radius: 20px 20px 0 0; } .about-stat:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(212,43,30,0.10); border-color: rgba(212,43,30,0.14); } .about-stat__num { display: block; font-size: clamp(2rem, 2.8vw, 2.8rem); font-weight: 800; background: linear-gradient(135deg, #d42b1e 0%, #e07428 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 10px; } .about-stat__label { font-size: 0.88rem; color: #6b7280; font-weight: 500; } /* ── Responsive ── */ @media (max-width: 1023px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } .about-visual { height: 320px; order: -1; } .about-visual__ring { width: 240px; height: 240px; } .about-visual__core { width: 130px; height: 130px; } .about-visual__core i { font-size: 52px; } .about-stats { grid-template-columns: repeat(2, 1fr); margin-top: 56px; } .about-float--c { top: auto; bottom: 12px; left: 50%; transform: translateX(-50%); animation: about-float-center 5.5s ease-in-out infinite 3.4s; } } @keyframes about-float-center { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-9px); } } @media (max-width: 639px) { .about-section { padding: 72px 0 60px; } .about-stats { gap: 14px; } .about-stat { padding: 24px 16px 20px; } .about-float--a, .about-float--b { font-size: 0.78rem; padding: 8px 12px; } } /* ============================================================ SERVICES SECTION — خدماتنا (Bento Grid) ============================================================ */ .services-section { position: relative; background: #ffffff; padding: 100px 0 90px; overflow: hidden; z-index: 10; } /* Floating background decor blobs */ .services-bg-decor { position: absolute; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(212,43,30,0.045) 0%, transparent 70%); pointer-events: none; z-index: 0; top: -80px; right: -120px; } .services-bg-decor--2 { top: auto; right: auto; bottom: -100px; left: -140px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(224,116,40,0.04) 0%, transparent 70%); } /* Section Header */ .services-header { text-align: center; max-width: 720px; margin: 0 auto 60px; position: relative; z-index: 1; } .services-title { font-size: clamp(2rem, 4.5vw, 2.75rem); font-weight: 800; margin: 0 0 20px; background: linear-gradient(135deg, #a00020 0%, #d42b1e 40%, #c2185b 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.4; } .services-subtitle { color: #6b7280; font-size: 1.05rem; font-weight: 400; line-height: 1.85; margin: 0; } /* ── Bento Grid Layout ── */ .services-bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1140px; margin: 0 auto; position: relative; z-index: 1; } /* ── Service Card ── */ .srv-card { position: relative; background: #faf8f6; border: 1px solid rgba(0,0,0,0.06); border-radius: 24px; padding: 36px 30px 32px; display: flex; flex-direction: column; align-items: flex-start; text-align: right; direction: rtl; transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s cubic-bezier(0.22,1,0.36,1), border-color 0.4s ease; overflow: hidden; } .srv-card::before { content: ''; position: absolute; top: 0; right: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(212,43,30,0.03) 0%, rgba(224,116,40,0.02) 50%, transparent 100%); opacity: 0; transition: opacity 0.4s ease; border-radius: 24px; pointer-events: none; } .srv-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(212,43,30,0.08), 0 8px 24px rgba(0,0,0,0.04); border-color: rgba(212,43,30,0.15); } .srv-card:hover::before { opacity: 1; } /* Featured large card — spans 2 columns */ .srv-card--lg { grid-column: span 2; background: linear-gradient(145deg, #fff4f0 0%, #fef0e8 100%); border: 1.5px solid rgba(212,43,30,0.12); } .srv-card--lg .srv-card__title { color: #1a1a1a; font-size: 1.4rem; } .srv-card--lg .srv-card__desc { color: #6b7280; } .srv-card--lg .srv-card__icon { background: linear-gradient(135deg, #d42b1e 0%, #e07428 100%); border: none; box-shadow: 0 6px 20px rgba(212, 43, 30, 0.22); } .srv-card--lg .srv-card__icon i { background: none; -webkit-text-fill-color: #ffffff; color: #ffffff; } .srv-card--lg:hover { box-shadow: 0 24px 60px rgba(212,43,30,0.10), 0 8px 24px rgba(0,0,0,0.06); border-color: rgba(212,43,30,0.22); transform: translateY(-8px); } .srv-card--lg::before { background: linear-gradient(135deg, rgba(212,43,30,0.05) 0%, transparent 60%); } /* ── Icon ── */ .srv-card__icon { width: 60px; height: 60px; border-radius: 18px; background: #ffffff; border: 1.5px solid rgba(212,43,30,0.12); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; flex-shrink: 0; transition: transform 0.4s ease, box-shadow 0.4s ease; } .srv-card:hover .srv-card__icon { transform: scale(1.08) rotate(-3deg); box-shadow: 0 8px 24px rgba(212,43,30,0.12); } .srv-card__icon i { font-size: 26px; background: linear-gradient(135deg, #d42b1e 0%, #e07428 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } /* ── Title ── */ .srv-card__title { font-size: 1.15rem; font-weight: 800; color: #1a1a1a; margin: 0 0 12px; line-height: 1.4; } /* ── Description ── */ .srv-card__desc { font-size: 0.9rem; color: #6b7280; line-height: 1.85; margin: 0; } /* ── Services "View All" CTA ── */ .services-cta-wrap { display: flex; justify-content: center; margin-top: 52px; } .services-all-btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 44px; font-size: 1rem; font-weight: 700; color: #d42b1e; background: transparent; border: 2px solid rgba(212, 43, 30, 0.25); border-radius: 16px; text-decoration: none; transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); position: relative; overflow: hidden; } .services-all-btn::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, #d42b1e 0%, #e07428 100%); opacity: 0; transition: opacity 0.3s ease; border-radius: 14px; } .services-all-btn:hover { color: #ffffff; border-color: transparent; transform: translateY(-3px); box-shadow: 0 12px 32px rgba(212, 43, 30, 0.28); } .services-all-btn:hover::before { opacity: 1; } .services-all-btn span, .services-all-btn i { position: relative; z-index: 1; } /* ── Services Page — spui-page ── */ .spui-page { background: #f7f1ea; min-height: 100vh; } /* Page Hero — full-height split layout */ .spui-hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; padding-top: 96px; background: /* Red glow — left side where the image is (RTL) */ radial-gradient( ellipse 65% 70% at 28% 60%, rgba(195, 25, 18, 0.38) 0%, rgba(210, 50, 30, 0.24) 20%, rgba(225, 80, 55, 0.12) 42%, transparent 70% ), /* Orange glow — warm spread from image */ radial-gradient( ellipse 65% 70% at 18% 55%, rgba(230, 125, 35, 0.36) 0%, rgba(238, 150, 55, 0.22) 20%, rgba(242, 175, 90, 0.10) 42%, transparent 70% ), /* Center blend */ radial-gradient( ellipse 45% 50% at 42% 52%, rgba(222, 90, 40, 0.20) 0%, rgba(235, 130, 70, 0.09) 35%, transparent 68% ), /* Soft warm base */ radial-gradient(circle at 28% 60%, rgba(242, 184, 160, 0.16) 0%, transparent 58%), #f7f1ea; } /* Smooth bottom fade into cards section */ .spui-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 160px; background: linear-gradient(to bottom, transparent 0%, #f7f1ea 100%); z-index: 1; pointer-events: none; } /* Split content row */ .spui-hero__content { max-width: 1200px; width: 100%; margin: 0 auto; padding: 60px 32px 0; display: flex; align-items: center; justify-content: space-between; gap: 56px; direction: rtl; } /* Text block — right in RTL */ .spui-hero__text { flex: 1; max-width: 520px; text-align: right; position: relative; z-index: 10; } .spui-hero__title { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800; color: #1a1a1a; line-height: 1.22; margin: 0 0 22px; letter-spacing: -0.01em; } .spui-hero__sub { font-size: clamp(0.98rem, 1.8vw, 1.12rem); color: #6b7280; line-height: 1.85; margin: 0 0 36px; max-width: 480px; } .spui-hero__cta { display: flex; justify-content: flex-start; } /* Visual block — left in RTL */ .spui-hero__visual { flex: 1.6; position: relative; display: flex; align-items: flex-end; justify-content: center; max-width: 820px; align-self: stretch; } .spui-hero__img { position: relative; z-index: 2; width: 110%; max-width: 820px; display: block; object-fit: contain; border-radius: 20px 20px 0 0; filter: drop-shadow(0 0 18px rgba(212, 80, 40, 0.22)) drop-shadow(0 0 45px rgba(230, 120, 60, 0.14)) drop-shadow(0 0 90px rgba(242, 160, 100, 0.08)); transition: filter 0.6s ease; } @media (max-width: 900px) { .spui-hero { min-height: auto; } .spui-hero__content { flex-direction: column-reverse; padding: 48px 24px 0; gap: 32px; } .spui-hero__text { max-width: 100%; text-align: center; } .spui-hero__cta { justify-content: center; } .spui-hero__visual { max-width: 100%; width: 100%; } .spui-hero__img { max-width: 680px; margin: 0 auto; width: 100%; } } /* Services Full Grid */ .spui-grid { padding: 0 0 100px; } .spui-grid .container { max-width: 1200px; } .spui-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; } /* Full-detail service card */ .spui-card { background: #ffffff; border-radius: 28px; border: 1px solid rgba(0,0,0,0.06); padding: 40px 34px 36px; display: flex; flex-direction: column; align-items: flex-start; direction: rtl; text-align: right; transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease, border-color 0.4s ease; position: relative; overflow: hidden; } .spui-card::after { content: ''; position: absolute; bottom: 0; right: 0; width: 100%; height: 3px; background: linear-gradient(90deg, #d42b1e 0%, #e07428 100%); transform: scaleX(0); transform-origin: right; transition: transform 0.4s cubic-bezier(0.22,1,0.36,1); } .spui-card:hover { transform: translateY(-8px); box-shadow: 0 24px 56px rgba(212,43,30,0.08), 0 6px 18px rgba(0,0,0,0.04); border-color: rgba(212,43,30,0.12); } .spui-card:hover::after { transform: scaleX(1); } .spui-card__num { font-size: 0.72rem; font-weight: 800; color: #d42b1e; opacity: 0.4; letter-spacing: 0.08em; margin-bottom: 20px; } .spui-card__icon { width: 64px; height: 64px; border-radius: 20px; background: linear-gradient(135deg, rgba(212,43,30,0.08) 0%, rgba(224,116,40,0.10) 100%); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; transition: transform 0.4s ease; } .spui-card:hover .spui-card__icon { transform: scale(1.1) rotate(-4deg); } .spui-card__icon i { font-size: 28px; background: linear-gradient(135deg, #d42b1e 0%, #e07428 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .spui-card__title { font-size: 1.2rem; font-weight: 800; color: #1a1a1a; margin: 0 0 14px; line-height: 1.4; transition: color 0.3s; } .spui-card:hover .spui-card__title { color: #d42b1e; } .spui-card__desc { font-size: 0.92rem; color: #6b7280; line-height: 1.85; margin: 0 0 24px; flex: 1; } .spui-card__link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.88rem; font-weight: 700; color: #d42b1e; text-decoration: none; opacity: 0; transform: translateY(6px); transition: opacity 0.3s ease, transform 0.3s ease; } .spui-card:hover .spui-card__link { opacity: 1; transform: translateY(0); } /* Bottom CTA Banner */ .spui-cta { background: linear-gradient(135deg, #d42b1e 0%, #e07428 100%); margin: 0 0 80px; border-radius: 28px; padding: 56px 48px; display: flex; align-items: center; justify-content: space-between; gap: 32px; max-width: 1200px; margin: 0 auto 80px; direction: rtl; position: relative; overflow: hidden; } .spui-cta::before { content: ''; position: absolute; top: -80px; left: -80px; width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,0.05); pointer-events: none; } .spui-cta::after { content: ''; position: absolute; bottom: -60px; right: -60px; width: 260px; height: 260px; border-radius: 50%; background: rgba(255,255,255,0.05); pointer-events: none; } .spui-cta__text h2 { font-size: 1.75rem; font-weight: 800; color: #ffffff; margin: 0 0 10px; } .spui-cta__text p { color: rgba(255,255,255,0.75); font-size: 1rem; line-height: 1.6; margin: 0; } .spui-cta__btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 40px; background: #ffffff; color: #d42b1e; font-size: 1rem; font-weight: 800; border-radius: 16px; text-decoration: none; white-space: nowrap; flex-shrink: 0; box-shadow: 0 8px 24px rgba(0,0,0,0.12); transition: transform 0.3s ease, box-shadow 0.3s ease; position: relative; z-index: 1; } .spui-cta__btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 36px rgba(0,0,0,0.18); } /* Page footer back link */ .spui-back { display: flex; justify-content: center; padding-bottom: 60px; } .spui-back a { display: inline-flex; align-items: center; gap: 8px; font-size: 0.95rem; font-weight: 600; color: #6b7280; text-decoration: none; transition: color 0.2s; } .spui-back a:hover { color: #d42b1e; } /* Responsive */ @media (max-width: 1024px) { .spui-cards { grid-template-columns: repeat(2, 1fr); gap: 20px; } .spui-cta { flex-direction: column; text-align: center; padding: 44px 32px; } .spui-cta__text { text-align: center; } } @media (max-width: 640px) { .spui-cards { grid-template-columns: 1fr; } .spui-hero__title { font-size: 2rem; } .spui-card { padding: 30px 24px 28px; } .spui-cta { border-radius: 20px; padding: 36px 24px; } .spui-cta__text h2 { font-size: 1.4rem; } } @media (max-width: 640px) { .services-section { padding: 72px 0 56px; } .services-header { margin-bottom: 40px; } .services-bento { grid-template-columns: 1fr; gap: 16px; } .srv-card--lg { grid-column: span 1; } .srv-card { padding: 28px 22px 26px; } .srv-card__icon { width: 52px; height: 52px; border-radius: 14px; margin-bottom: 18px; } .srv-card__icon i { font-size: 22px; } } /* ============================================================ SCROLL ENTRANCE ANIMATIONS ============================================================ */ .animate-fade-up, .animate-fade-left, .animate-fade-right, .animate-scale { opacity: 0; transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); will-change: opacity, transform; } .animate-fade-up { transform: translateY(40px); } .animate-fade-left { transform: translateX(-40px); } .animate-fade-right { transform: translateX(40px); } .animate-scale { transform: scale(0.95); } .animate-visible { opacity: 1 !important; transform: none !important; } .animate-delay-1 { transition-delay: 0.1s; } .animate-delay-2 { transition-delay: 0.2s; } .animate-delay-3 { transition-delay: 0.3s; } .animate-delay-4 { transition-delay: 0.4s; } .animate-delay-5 { transition-delay: 0.5s; } /* ════════════════════════════════════════════ SERVICE CARD — Two-button actions row ════════════════════════════════════════════ */ .spui-card__actions { display: flex; align-items: center; gap: 10px; width: 100%; flex-wrap: wrap; margin-top: 4px; } /* Keep request link always visible inside actions row */ .spui-card__actions .spui-card__link { opacity: 1; transform: none; flex: 1; min-width: 0; } .spui-card__details { display: inline-flex; align-items: center; gap: 6px; padding: 7px 16px; border-radius: 50px; border: 1.5px solid rgba(107,114,128,0.22); font-size: 0.83rem; font-weight: 700; color: #6b7280; text-decoration: none; background: transparent; transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease, transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s ease; white-space: nowrap; flex-shrink: 0; } .spui-card__details i { font-size: 14px; transition: transform 0.3s ease; } .spui-card__details:hover { border-color: #d42b1e; color: #d42b1e; background: rgba(212,43,30,0.05); transform: translateY(-2px); box-shadow: 0 4px 14px rgba(212,43,30,0.12); } .spui-card__details:hover i { transform: rotate(-12deg) scale(1.15); } /* ════════════════════════════════════════════ SERVICE DETAIL PAGE (sdet-*) ════════════════════════════════════════════ */ .sdet-hero { min-height: 90vh; background: radial-gradient( ellipse 75% 70% at 55% 65%, rgba(195, 25, 18, 0.36) 0%, rgba(210, 50, 30, 0.22) 22%, rgba(225, 80, 55, 0.10) 44%, transparent 72% ), radial-gradient( ellipse 65% 65% at 35% 60%, rgba(230, 125, 35, 0.32) 0%, rgba(238, 150, 55, 0.18) 22%, rgba(242, 175, 90, 0.08) 44%, transparent 70% ), radial-gradient( ellipse 42% 48% at 46% 50%, rgba(222, 90, 40, 0.18) 0%, rgba(235, 130, 70, 0.08) 38%, transparent 66% ), radial-gradient(circle at 50% 62%, rgba(242, 184, 160, 0.18) 0%, transparent 55%), #f7f1ea; display: flex; align-items: center; position: relative; overflow: hidden; padding: 130px 24px 120px; } /* Smooth bottom fade into next section */ .sdet-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 160px; background: linear-gradient(to bottom, transparent 0%, #f7f1ea 100%); z-index: 1; pointer-events: none; } .sdet-hero__orb { position: absolute; border-radius: 50%; pointer-events: none; } .sdet-hero__orb--1 { width: 800px; height: 800px; background: radial-gradient(circle, rgba(212,43,30,0.10) 0%, transparent 65%); top: -300px; right: -250px; } .sdet-hero__orb--2 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(224,116,40,0.07) 0%, transparent 65%); bottom: -200px; left: -150px; } .sdet-hero__orb--3 { width: 360px; height: 360px; background: radial-gradient(circle, rgba(212,43,30,0.05) 0%, transparent 65%); top: 55%; left: 42%; transform: translate(-50%,-50%); } .sdet-hero__inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; gap: 60px; position: relative; z-index: 2; width: 100%; direction: rtl; } /* Text column — right in RTL */ .sdet-hero__text { flex: 1; text-align: right; } /* Image column — left in RTL */ .sdet-hero__visual { flex: 0 0 58%; max-width: 760px; position: relative; display: flex; align-items: center; justify-content: center; margin-left: -60px; } /* Left side glow — orange */ .sdet-hero__visual::before { content: ''; position: absolute; left: -60px; top: 50%; transform: translateY(-50%); width: 260px; height: 420px; border-radius: 50%; background: radial-gradient(ellipse at center, rgba(224, 116, 40, 0.55) 0%, rgba(224, 116, 40, 0.28) 35%, rgba(224, 116, 40, 0.08) 65%, transparent 100% ); filter: blur(32px); z-index: 1; pointer-events: none; } /* Right side glow — red */ .sdet-hero__visual::after { content: ''; position: absolute; right: -60px; top: 50%; transform: translateY(-50%); width: 260px; height: 420px; border-radius: 50%; background: radial-gradient(ellipse at center, rgba(212, 43, 30, 0.55) 0%, rgba(212, 43, 30, 0.28) 35%, rgba(212, 43, 30, 0.08) 65%, transparent 100% ); filter: blur(32px); z-index: 1; pointer-events: none; } .sdet-hero__img { width: 110%; max-width: 760px; object-fit: contain; position: relative; z-index: 2; filter: drop-shadow(0 28px 56px rgba(212,43,30,0.15)); animation: sdetFloat 5s ease-in-out infinite; } @keyframes sdetFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } } .sdet-hero__breadcrumb { display: inline-flex; align-items: center; gap: 8px; background: rgba(212,43,30,0.08); border: 1px solid rgba(212,43,30,0.22); color: #d42b1e; font-size: 0.8rem; font-weight: 700; padding: 6px 16px; border-radius: 50px; margin-bottom: 36px; letter-spacing: 0.05em; text-decoration: none; transition: background 0.3s ease, border-color 0.3s ease; } .sdet-hero__breadcrumb:hover { background: rgba(212,43,30,0.15); border-color: rgba(212,43,30,0.4); } .sdet-hero__icon-wrap { width: 96px; height: 96px; border-radius: 28px; background: linear-gradient(135deg, rgba(212,43,30,0.10) 0%, rgba(224,116,40,0.12) 100%); border: 1px solid rgba(212,43,30,0.18); display: flex; align-items: center; justify-content: center; margin-bottom: 30px; box-shadow: 0 0 48px rgba(212,43,30,0.10), 0 4px 20px rgba(212,43,30,0.06); } .sdet-hero__icon-wrap i { font-size: 42px; background: linear-gradient(135deg, #d42b1e 0%, #e07428 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .sdet-hero__num { display: block; font-size: 0.74rem; font-weight: 800; color: rgba(212,43,30,0.45); letter-spacing: 0.14em; margin-bottom: 14px; } .sdet-hero__title { font-size: clamp(2rem, 5.5vw, 3.8rem); font-weight: 800; color: #1a1a1a; margin: 0 0 14px; line-height: 1.18; } .sdet-hero__tagline { font-size: 1.1rem; color: #d42b1e; font-weight: 600; font-style: italic; margin: 0 0 22px; } .sdet-hero__desc { font-size: 1rem; color: #5a6270; line-height: 1.9; margin: 0 0 44px; max-width: 640px; } .sdet-hero__desc2 { font-size: .925rem; color: #7a8390; line-height: 1.8; margin: 20px 0 0; max-width: 560px; padding-right: 14px; border-right: 3px solid var(--clr-accent, #e0a96d); } .sdet-blog-intro { font-size: 1.15rem; color: #111111; line-height: 2; max-width: 820px; margin: 0 0 52px; text-align: right; font-weight: 500; letter-spacing: .01em; } .sdet-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; } .sdet-hero__cta { display: inline-flex; align-items: center; gap: 10px; padding: 15px 38px; background: linear-gradient(135deg, #d42b1e 0%, #e07428 100%); color: #ffffff; font-size: 1rem; font-weight: 700; border-radius: 50px; text-decoration: none; box-shadow: 0 8px 32px rgba(212,43,30,0.38); transition: transform 0.3s ease, box-shadow 0.3s ease; } .sdet-hero__cta:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(212,43,30,0.5); } .sdet-hero__ghost { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; background: rgba(26,26,26,0.05); border: 1px solid rgba(26,26,26,0.14); color: #4a5260; font-size: 0.92rem; font-weight: 600; border-radius: 50px; text-decoration: none; transition: all 0.3s ease; } .sdet-hero__ghost:hover { background: rgba(26,26,26,0.10); color: #1a1a1a; border-color: rgba(26,26,26,0.25); } /* Features Section */ .sdet-features { padding: 48px 0 80px; background: #f7f1ea; } .sdet-sec-header { text-align: right; margin-bottom: 52px; } .sdet-sec-label { display: inline-block; font-size: 0.76rem; font-weight: 800; color: #d42b1e; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 10px; } .sdet-sec-title { font-size: clamp(1.55rem, 3vw, 2.25rem); font-weight: 800; color: #1a1a1a; margin: 0 0 12px; line-height: 1.3; } .sdet-sec-sub { font-size: 0.97rem; color: #6b7280; line-height: 1.75; max-width: 520px; } .sdet-feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; } .sdet-feat-card { background: #ffffff; border-radius: 22px; padding: 30px 26px; border: 1px solid rgba(0,0,0,0.055); transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease, border-color 0.35s ease; position: relative; overflow: hidden; } .sdet-feat-card::after { content: ''; position: absolute; bottom: 0; right: 0; width: 100%; height: 2px; background: linear-gradient(90deg, #d42b1e 0%, #e07428 100%); transform: scaleX(0); transform-origin: right; transition: transform 0.4s cubic-bezier(0.22,1,0.36,1); } .sdet-feat-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(212,43,30,0.07); border-color: rgba(212,43,30,0.1); } .sdet-feat-card:hover::after { transform: scaleX(1); } .sdet-feat-card__icon { width: 52px; height: 52px; border-radius: 15px; background: linear-gradient(135deg, rgba(212,43,30,0.08) 0%, rgba(224,116,40,0.1) 100%); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; transition: transform 0.35s ease; } .sdet-feat-card:hover .sdet-feat-card__icon { transform: scale(1.08) rotate(-4deg); } .sdet-feat-card__icon i { font-size: 22px; background: linear-gradient(135deg, #d42b1e 0%, #e07428 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .sdet-feat-card__title { font-size: 0.98rem; font-weight: 800; color: #1a1a1a; margin: 0 0 9px; transition: color 0.3s; } .sdet-feat-card:hover .sdet-feat-card__title { color: #d42b1e; } .sdet-feat-card__desc { font-size: 0.87rem; color: #6b7280; line-height: 1.75; margin: 0; } /* Process Section */ .sdet-process { padding: 80px 0 96px; background: #ffffff; } .sdet-steps { display: flex; align-items: flex-start; gap: 0; position: relative; counter-reset: step; } .sdet-steps::before { content: ''; position: absolute; top: 35px; right: 56px; left: 56px; height: 2px; background: linear-gradient(to left, #e07428 0%, #d42b1e 100%); z-index: 0; opacity: 0.25; } .sdet-step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; z-index: 1; padding: 0 8px; } .sdet-step__bubble { width: 70px; height: 70px; border-radius: 50%; background: linear-gradient(135deg, #d42b1e 0%, #e07428 100%); color: #ffffff; font-size: 1.15rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; box-shadow: 0 8px 28px rgba(212,43,30,0.28); position: relative; transition: transform 0.3s ease, box-shadow 0.3s ease; } .sdet-step:hover .sdet-step__bubble { transform: scale(1.08); box-shadow: 0 12px 36px rgba(212,43,30,0.4); } .sdet-step__bubble::after { content: ''; position: absolute; inset: -5px; border-radius: 50%; border: 2px solid rgba(212,43,30,0.2); } .sdet-step__label { font-size: 0.9rem; font-weight: 700; color: #1a1a1a; line-height: 1.5; max-width: 130px; margin: 0 auto; } /* Responsive */ @media (max-width: 900px) { .sdet-feat-grid { grid-template-columns: repeat(2, 1fr); } .sdet-hero__inner { flex-direction: column; gap: 40px; padding: 0 24px; } .sdet-hero__visual { max-width: 460px; width: 100%; flex: none; margin-left: 0; } } @media (max-width: 640px) { .sdet-hero { padding: 110px 20px 70px; min-height: auto; background-size: cover; } .sdet-hero__title { font-size: 2rem; } .sdet-hero__actions { flex-direction: column; } .sdet-hero__cta, .sdet-hero__ghost { text-align: center; justify-content: center; } .sdet-feat-grid { grid-template-columns: 1fr; } .sdet-steps { flex-direction: column; align-items: flex-start; gap: 20px; } .sdet-steps::before { display: none; } .sdet-step { flex-direction: row; align-items: center; text-align: right; gap: 16px; padding: 0; } .sdet-step__bubble { width: 52px; height: 52px; font-size: 1rem; margin-bottom: 0; flex-shrink: 0; } .sdet-step__label { max-width: none; } } /* ============================================================ PORTFOLIO / أعمالنا SECTION ============================================================ */ .portfolio-section { position: relative; background: #f7f1ea; padding: 100px 0 90px; overflow: hidden; z-index: 10; } /* Header */ .portfolio-header { text-align: center; max-width: 720px; margin: 0 auto 48px; } .portfolio-title { font-size: clamp(2rem, 4.5vw, 2.75rem); font-weight: 800; margin: 0 0 20px; background: linear-gradient(135deg, #a00020 0%, #d42b1e 40%, #c2185b 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.4; } .portfolio-subtitle { color: #6b7280; font-size: 1.05rem; font-weight: 400; line-height: 1.85; margin: 0; } /* ── Filter Tabs — Apple Liquid Glass UI ── */ .portfolio-filters, .aw-filters { display: flex; justify-content: center; flex-wrap: nowrap; gap: 4px; margin-bottom: 48px; position: relative; padding: 5px; border-radius: 60px; background: rgba(255, 255, 255, 0.52); backdrop-filter: blur(20px) saturate(1.4); -webkit-backdrop-filter: blur(20px) saturate(1.4); border: 1px solid rgba(255,255,255,0.65); box-shadow: 0 4px 32px rgba(0,0,0,0.05), 0 1px 6px rgba(0,0,0,0.04), inset 0 1px 0 rgba(255,255,255,0.9); width: fit-content; margin-left: auto; margin-right: auto; isolation: isolate; scrollbar-width: none; } .portfolio-filters::-webkit-scrollbar, .aw-filters::-webkit-scrollbar { display: none; } /* ── Active Pill — light orange, persists on selected category ── */ .pf-active-pill { position: absolute; top: 5px; left: 0; height: calc(100% - 10px); width: 0; border-radius: 50px; background: rgba(224, 116, 40, 0.13); border: 1.5px solid rgba(224, 116, 40, 0.30); z-index: 1; pointer-events: none; will-change: transform, width; opacity: 0; transform: translateX(0); } .pf-active-pill.is-ready { opacity: 1; } /* ── Hover Slider — strong orange, follows cursor ── */ .pf-slider { position: absolute; top: 5px; left: 0; height: calc(100% - 10px); width: 0; border-radius: 50px; background: linear-gradient(135deg, #d42b1e 0%, #e07428 100%); box-shadow: 0 4px 18px rgba(212, 43, 30, 0.35), 0 2px 6px rgba(224, 116, 40, 0.22), inset 0 1px 1px rgba(255, 255, 255, 0.2); z-index: 2; pointer-events: none; will-change: transform, width; opacity: 0; transform: translateX(0); transition: opacity 0.18s ease; } .pf-slider.is-hovering { opacity: 1; } /* Glow aura */ .pf-slider::after { content: ''; position: absolute; inset: -6px; border-radius: 56px; background: radial-gradient(ellipse at center, rgba(212,43,30,0.22) 0%, rgba(224,116,40,0.08) 60%, transparent 100%); filter: blur(14px); z-index: -1; opacity: 0.8; } /* ── Filter Button ── */ .pf-filter { padding: 10px 24px; border: none; border-radius: 50px; background: transparent; color: #6b7280; font-family: inherit; font-size: 0.92rem; font-weight: 600; cursor: pointer; position: relative; z-index: 3; white-space: nowrap; -webkit-user-select: none; user-select: none; transition: color 0.2s ease; } /* Selected: warm orange-red text over the light pill */ .pf-filter.is-active { color: #d42b1e; font-weight: 700; } /* Hovered: white text — strong pill is on top */ .pf-filter.is-hovered { color: #ffffff; font-weight: 700; text-shadow: 0 1px 3px rgba(0, 0, 0, 0.18); } /* Active + hovered → white wins */ .pf-filter.is-active.is-hovered { color: #ffffff; } /* ── Portfolio Grid ── */ .portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; max-width: 1140px; margin: 0 auto; } /* ── Portfolio Item ── */ .pf-item { border-radius: 20px; overflow: hidden; transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease; } .pf-item.is-hidden { display: none; } .pf-item.is-animating-out { opacity: 0; transform: scale(0.85) translateY(20px); } .pf-item.is-animating-in { animation: pfItemIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards; } @keyframes pfItemIn { from { opacity: 0; transform: scale(0.85) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } } .pf-item__inner { position: relative; width: 100%; aspect-ratio: 4 / 3; border-radius: 20px; overflow: hidden; cursor: pointer; } .pf-item__img { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); } .pf-item__placeholder-icon { font-size: 64px; color: rgba(255, 255, 255, 0.25); transition: transform 0.4s ease, color 0.4s ease; } .pf-item__inner:hover .pf-item__img { transform: scale(1.08); } .pf-item__inner:hover .pf-item__placeholder-icon { transform: scale(1.15) rotate(-5deg); color: rgba(255, 255, 255, 0.4); } /* ── Card action bar (top-right corner) ── */ .pf-item__actions { position: absolute; top: 14px; right: 14px; z-index: 4; display: flex; direction: ltr; /* predictable LTR layout inside RTL page */ align-items: center; gap: 6px; } /* Arrow wrap — order:2 = visually on the right in LTR */ .pf-item__arrow-wrap { order: 2; position: relative; /* anchor for the absolute label */ display: flex; align-items: center; cursor: default; } /* "\u0639\u0631\u0636 \u0627\u0644\u0639\u0645\u0644" label — absolutely positioned, zero layout impact */ .pf-item__view-label { position: absolute; right: calc(100% + 8px); top: 50%; transform: translateY(-50%) translateX(-6px); font-size: 0.76rem; font-weight: 700; color: rgba(255, 255, 255, 0.92); white-space: nowrap; opacity: 0; pointer-events: none; text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35); transition: opacity 0.22s ease, transform 0.22s ease; } .pf-item__arrow-wrap:hover .pf-item__view-label { opacity: 1; transform: translateY(-50%) translateX(0); } /* Arrow icon circle */ .pf-item__arrow-icon { width: 34px; height: 34px; border-radius: 50%; background: rgba(255, 255, 255, 0.14); border: 1px solid rgba(255, 255, 255, 0.22); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; font-size: 15px; color: rgba(255, 255, 255, 0.55); flex-shrink: 0; transition: color 0.28s ease, background 0.28s ease, border-color 0.28s ease, transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1); } .pf-item__arrow-wrap:hover .pf-item__arrow-icon { color: #ffffff; background: rgba(255, 255, 255, 0.26); border-color: rgba(255, 255, 255, 0.5); transform: translate(3px, -3px); } /* Behance button — order:1 = visually on the left in LTR */ .pf-item__behance { order: 1; width: 34px; height: 34px; border-radius: 50%; overflow: hidden; background: rgba(255, 255, 255, 0.14); border: 1px solid rgba(255, 255, 255, 0.22); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; flex-shrink: 0; text-decoration: none; transition: opacity 0.22s ease, background 0.25s ease, border-color 0.25s ease; } .pf-item__behance img { width: 100%; height: 100%; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.65; transition: opacity 0.2s ease; display: block; } .pf-item__behance:hover { background: rgba(255, 255, 255, 0.26); border-color: rgba(255, 255, 255, 0.5); } .pf-item__behance:hover img { opacity: 1; } /* Hide Behance while arrow is hovered */ .pf-item__arrow-wrap:hover ~ .pf-item__behance { opacity: 0; pointer-events: none; } /* ── Overlay ── */ .pf-item__overlay { position: absolute; inset: 0; background: linear-gradient( to top, rgba(26, 26, 26, 0.92) 0%, rgba(26, 26, 26, 0.55) 45%, transparent 100% ); display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; opacity: 0; transition: opacity 0.4s ease; border-radius: 20px; } .pf-item__inner:hover .pf-item__overlay { opacity: 1; } .pf-item__cat { display: inline-block; background: linear-gradient(135deg, #d42b1e 0%, #e07428 100%); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 4px 14px; border-radius: 50px; margin-bottom: 10px; width: fit-content; letter-spacing: 0.02em; } .pf-item__name { font-size: 1.15rem; font-weight: 800; color: #ffffff; margin: 0 0 6px; text-align: right; } .pf-item__desc { font-size: 0.85rem; color: rgba(255, 255, 255, 0.7); margin: 0; text-align: right; line-height: 1.6; } /* ── Portfolio item hover shadow ── */ .pf-item:hover { box-shadow: 0 20px 50px rgba(212, 43, 30, 0.15), 0 8px 24px rgba(0, 0, 0, 0.08); transform: translateY(-6px); } /* ── View All CTA ── */ .portfolio-cta-wrap { display: flex; justify-content: center; margin-top: 52px; } .portfolio-all-btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 44px; font-size: 1rem; font-weight: 700; color: #ffffff; background: linear-gradient(135deg, #d42b1e 0%, #e07428 100%); border-radius: 16px; text-decoration: none; box-shadow: 0 6px 20px rgba(212, 43, 30, 0.3); transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); position: relative; overflow: hidden; } .portfolio-all-btn:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 12px 32px rgba(212, 43, 30, 0.38); } .portfolio-all-btn:active { transform: translateY(-1px) scale(0.98); } .portfolio-all-btn span, .portfolio-all-btn i { position: relative; z-index: 1; } /* ── Mobile tweaks ── */ @media (max-width: 1024px) { .portfolio-filters, .aw-filters { justify-content: flex-start; width: min(100%, 1000px); max-width: 100%; overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; scroll-snap-type: x proximity; overscroll-behavior-x: contain; touch-action: pan-x; padding: 5px; } .pf-filter { flex: 0 0 auto; scroll-snap-align: start; } } @media (max-width: 768px) { .portfolio-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } .portfolio-filters, .aw-filters { gap: 3px; padding: 4px; width: 100%; border-radius: 24px; } .pf-filter { padding: 8px 14px; font-size: 0.8rem; } } /* Touch / no-hover devices: always show overlay, remove sticky hover */ @media (hover: none) { .pf-item__overlay { opacity: 1; background: linear-gradient( to top, rgba(26, 26, 26, 0.85) 0%, rgba(26, 26, 26, 0.35) 55%, transparent 100% ); } .pf-item:hover { transform: none; box-shadow: none; } .pf-item__inner:hover .pf-item__img { transform: none; } .pf-item__inner:hover .pf-item__placeholder-icon { transform: none; color: rgba(255, 255, 255, 0.25); } } /* ============================================================ FEATURES SECTION — ما يميزنا عن غيرنا ============================================================ */ .feats-section { position: relative; background: #ffffff; padding: 100px 0 90px; overflow: hidden; } .feats-bg-blob { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; } .feats-bg-blob--1 { width: 520px; height: 520px; background: radial-gradient(circle, rgba(212,43,30,0.06) 0%, transparent 70%); top: -110px; right: -150px; } .feats-bg-blob--2 { width: 580px; height: 580px; background: radial-gradient(circle, rgba(224,116,40,0.05) 0%, transparent 70%); bottom: -130px; left: -160px; } .feats-header { text-align: center; max-width: 640px; margin: 0 auto 64px; position: relative; z-index: 1; } .feats-header__badge { display: inline-block; background: linear-gradient(135deg, rgba(212,43,30,0.08), rgba(224,116,40,0.08)); border: 1px solid rgba(212,43,30,0.18); color: #d42b1e; font-size: .73rem; font-weight: 700; letter-spacing: .1em; padding: 6px 16px; border-radius: 100px; margin-bottom: 18px; } .feats-header__title { font-size: clamp(1.9rem, 4vw, 2.6rem); font-weight: 800; background: linear-gradient(135deg, #a00020 0%, #d42b1e 40%, #c2185b 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.35; margin: 0 0 20px; } .feats-header__desc { color: #6b7280; font-size: 1.05rem; line-height: 1.9; margin: 0; } .feats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; z-index: 1; } .feat-card { background: #faf8f6; border: 1px solid rgba(0,0,0,0.06); border-radius: 24px; padding: 36px 30px 32px; direction: rtl; text-align: right; position: relative; overflow: hidden; transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s cubic-bezier(0.22,1,0.36,1), border-color 0.35s ease; } .feat-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(212,43,30,0.03) 0%, rgba(224,116,40,0.02) 50%, transparent 100%); opacity: 0; transition: opacity 0.35s ease; border-radius: inherit; pointer-events: none; } .feat-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); border-color: rgba(212,43,30,0.15); } .feat-card:hover::before { opacity: 1; } .feat-card__icon { width: 58px; height: 58px; border-radius: 16px; background: linear-gradient(135deg, #d42b1e 0%, #e07428 100%); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; flex-shrink: 0; box-shadow: 0 6px 20px rgba(212,43,30,0.22); transition: transform 0.35s ease, box-shadow 0.35s ease; } .feat-card__icon i { font-size: 24px; color: #fff; } .feat-card:hover .feat-card__icon { transform: scale(1.1) rotate(-4deg); box-shadow: 0 10px 28px rgba(212,43,30,0.32); } .feat-card__title { font-size: 1.1rem; font-weight: 800; color: #1a1a1a; margin: 0 0 12px; line-height: 1.4; } .feat-card__desc { font-size: 0.9rem; color: #6b7280; line-height: 1.85; margin: 0; } @media (max-width: 1024px) { .feats-grid { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 640px) { .feats-section { padding: 72px 0 64px; } .feats-grid { grid-template-columns: 1fr; gap: 16px; } .feat-card { padding: 28px 22px 26px; } } /* ============================================================ WHY US SECTION (نتائج حملاتنا السابقة) ============================================================ */ .why-section .section-subtitle { font-size: 1.125rem; color: #6b7280; margin-top: 0; margin-bottom: 0; } .why-section .result-num { font-weight: 800; color: #d42b1e; font-size: 1.05rem; } .why-section { padding: 96px 0; background: #fff; overflow: hidden; } .why-row { display: flex; align-items: center; gap: 64px; margin-bottom: 80px; direction: rtl; } .why-row:last-child { margin-bottom: 0; } .why-row--reverse { flex-direction: row-reverse; } .why-visual { flex: 1.4; display: flex; align-items: center; justify-content: center; } .why-stat-box { background: linear-gradient(135deg, #d42b1e 0%, #e07428 100%); border-radius: 28px; padding: 48px 56px; text-align: center; color: #fff; box-shadow: 0 20px 60px rgba(212, 43, 30, 0.25); min-width: 220px; } .why-stat-box .stat-num { font-size: 3.5rem; font-weight: 800; line-height: 1; display: block; } .why-stat-box .stat-label { font-size: 1rem; font-weight: 500; margin-top: 8px; opacity: 0.9; display: block; } .why-content { flex: 1.4; } .why-tag { display: inline-block; background: rgba(212, 43, 30, 0.08); color: #d42b1e; font-size: 0.8rem; font-weight: 700; padding: 5px 16px; border-radius: 50px; margin-bottom: 16px; letter-spacing: 0.04em; } .why-title { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; color: #111827; margin: 0 0 14px; line-height: 1.35; } .why-desc { font-size: 1rem; color: #6b7280; line-height: 1.75; margin: 0 0 28px; } .why-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; } .why-list li { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: #d42b1e; font-weight: 600; } .why-list li::before { content: ''; flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%; background: linear-gradient(135deg, #d42b1e 0%, #e07428 100%); -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13l4 4L19 7' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13l4 4L19 7' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); -webkit-mask-size: cover; mask-size: cover; } .why-img { width: 100%; height: auto; border-radius: 24px; object-fit: cover; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10); } @media (max-width: 768px) { .why-row, .why-row--reverse { flex-direction: column; gap: 36px; margin-bottom: 56px; } .why-stat-box { padding: 36px 40px; } } /* ============================================================ CONTACT SECTION ============================================================ */ .contact-section { padding: 80px 0; position: relative; z-index: 10; } .contact-card { background: #ffffff; border-radius: 24px; padding: 32px; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); border: 1px solid #f3f4f6; position: relative; overflow: hidden; } @media (min-width: 768px) { .contact-card { padding: 48px; } } .contact-decor { position: absolute; top: 0; right: 0; width: 128px; height: 128px; background: linear-gradient(135deg, #d42b1e 0%, #e07428 100%); opacity: 0.1; border-bottom-left-radius: 9999px; } .contact-header { text-align: center; margin-bottom: 40px; position: relative; z-index: 10; } .contact-title { font-size: 1.875rem; font-weight: 800; margin: 0 0 12px; background: linear-gradient(135deg, #a00020 0%, #d42b1e 40%, #c2185b 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .text-muted { color: #6b7280; } .contact-form { position: relative; z-index: 10; display: flex; flex-direction: column; gap: 24px; } .form-grid { display: grid; grid-template-columns: 1fr; gap: 24px; } @media (min-width: 768px) { .form-grid { grid-template-columns: 1fr 1fr; } } .form-label { display: block; font-size: 0.875rem; font-weight: 500; color: #374151; margin-bottom: 8px; } .form-input { width: 100%; padding: 12px 16px; border-radius: 12px; border: 1px solid #e5e7eb; outline: none; transition: all 0.2s; background: #f9fafb; color: #1f2937; font-family: inherit; font-size: 1rem; } .form-input:focus { border-color: #d42b1e; box-shadow: 0 0 0 3px rgba(212, 43, 30, 0.15); background: #ffffff; } .form-input--ltr { text-align: right; } .form-select { appearance: none; cursor: pointer; } .form-textarea { resize: none; } .form-submit { width: 100%; padding: 16px; border-radius: 12px; font-weight: 700; color: #ffffff; background: linear-gradient(135deg, #d42b1e 0%, #e07428 100%); border: none; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); cursor: pointer; font-size: 1.125rem; font-family: inherit; transition: all 0.3s; } .form-submit:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); transform: translateY(-2px); } .form-submit:focus { outline: none; box-shadow: 0 0 0 4px rgba(224, 116, 40, 0.3); } /* ─── Contact Request Modal ─────────────────────────── */ .sdet-modal { display: none; position: fixed; inset: 0; z-index: 9999; align-items: center; justify-content: center; padding: 20px; } .sdet-modal.is-open { display: flex; } .sdet-modal__backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.55); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); } .sdet-modal__box { position: relative; z-index: 1; background: #ffffff; border-radius: 24px; padding: 48px; width: 100%; max-width: 560px; max-height: 90vh; overflow-y: auto; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35); animation: sdetModalIn 0.3s cubic-bezier(0.4, 0, 0.2, 1); } @keyframes sdetModalIn { from { opacity: 0; transform: translateY(28px) scale(0.97); } to { opacity: 1; transform: none; } } .sdet-modal__close { position: absolute; top: 16px; inset-inline-start: 16px; width: 36px; height: 36px; border-radius: 50%; border: none; background: rgba(0, 0, 0, 0.07); color: #555; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; line-height: 1; transition: background 0.2s, color 0.2s; } .sdet-modal__close:hover { background: rgba(0, 0, 0, 0.14); color: #111; } body.modal-open { overflow: hidden; } @media (max-width: 600px) { .sdet-modal__box { padding: 32px 20px 24px; } } /* ============================================================ FAQ SECTION ============================================================ */ .faq-section { padding: 80px 0; } .faq-title { text-align: center; font-size: 2rem; font-weight: 800; color: #1f2937; margin-bottom: 8px; } .faq-subtitle { text-align: center; color: #6b7280; margin-bottom: 48px; font-size: 1.05rem; } .faq-list { display: flex; flex-direction: column; gap: 12px; } .faq-item { background: #ffffff; border-radius: 14px; border: 1px solid #e5e7eb; overflow: hidden; transition: box-shadow 0.3s ease; } .faq-item:hover { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06); } .faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; background: none; border: none; cursor: pointer; font-family: inherit; font-size: 1.05rem; font-weight: 700; color: #1f2937; text-align: right; gap: 16px; } .faq-question span { flex: 1; } .faq-icon { font-size: 22px; color: var(--brand-color); transition: transform 0.35s ease; flex-shrink: 0; } .faq-item.active .faq-icon { transform: rotate(45deg); } .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; padding: 0 24px; } .faq-item.active .faq-answer { max-height: 300px; padding: 0 24px 20px; } .faq-answer p { color: #4b5563; line-height: 1.8; font-size: 0.95rem; } /* ============================================================ TESTIMONIALS SECTION — قصص عملاؤنا (Case-Study Style) ============================================================ */ .testimonials-section { padding: 88px 0 100px; position: relative; overflow: hidden; background: #f7f1ea; } /* Wider container scoped to this section only */ .testimonials-section .container { max-width: 1560px; padding-left: 40px; padding-right: 40px; } .testimonials-glow { position: absolute; inset: 0; background: radial-gradient(ellipse 50% 65% at 8% 50%, rgba(224, 116, 40, 0.13) 0%, transparent 60%), radial-gradient(ellipse 50% 65% at 92% 50%, rgba(212, 43, 30, 0.10) 0%, transparent 60%), radial-gradient(ellipse 80% 45% at 50% 55%, rgba(224, 116, 40, 0.06) 0%, transparent 70%); filter: blur(56px); pointer-events: none; z-index: 0; } .testimonials-header { text-align: center; margin-bottom: 52px; position: relative; z-index: 1; } .testimonials-title { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; background: linear-gradient(135deg, #a00020 0%, #d42b1e 40%, #c2185b 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.3; margin: 0 0 12px; } .testimonials-subtitle { color: #9ca3af; font-size: 0.97rem; line-height: 1.7; max-width: 560px; margin: 0 auto; } /* ── Slider wrapper — arrows flank the slider ── */ .testimonials-slider-wrap { position: relative; z-index: 1; display: flex; align-items: center; gap: 16px; } .testimonials-slider { overflow: hidden; flex: 1; } /* Track — JS translates via translateX */ .testimonials-track { display: flex; direction: rtl; transition: transform 0.52s cubic-bezier(0.22, 1, 0.36, 1); will-change: transform; } /* ── Each card takes 1/3 of the slider viewport (3 per row) ── */ .testimonial-card { flex-shrink: 0; width: calc(100% / 3); direction: rtl; padding: 12px; box-sizing: border-box; } /* ── Card inner — horizontal two-column layout ── */ .testimonial-card__content { display: flex; flex-direction: row; align-items: center; background: #ffffff; border-radius: 22px; border: 1px solid rgba(0, 0, 0, 0.06); overflow: hidden; box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05), 0 1px 6px rgba(0, 0, 0, 0.04); height: 260px; transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.38s ease; } .testimonial-card__content:hover { transform: translateY(-8px); box-shadow: 0 28px 56px rgba(212, 43, 30, 0.12), 0 8px 24px rgba(0, 0, 0, 0.08); } /* ── Image column — RIGHT side in RTL, fixed width ── */ .testimonial-card__image { width: 140px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; padding: 24px 16px; align-self: stretch; background: linear-gradient( 155deg, rgba(212, 43, 30, 0.05) 0%, rgba(224, 116, 40, 0.10) 50%, rgba(247, 241, 234, 0.6) 100% ); position: relative; overflow: hidden; } /* Subtle decorative ring behind image */ .testimonial-card__image::before { content: ''; position: absolute; width: 130px; height: 130px; border-radius: 50%; border: 1.5px solid rgba(212, 43, 30, 0.08); top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; } .testimonial-card__img-wrap { position: relative; width: 110px; height: 110px; flex-shrink: 0; } .testimonial-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.08); transition: transform 0.4s ease; } .testimonial-card__content:hover .testimonial-card__img-wrap img { transform: scale(1.05); } /* Placeholder avatar */ .testimonial-card__img-placeholder { width: 100%; height: 100%; border-radius: 16px; background: linear-gradient(135deg, #ede3da 0%, #f5ede4 100%); display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10), 0 4px 12px rgba(0, 0, 0, 0.06); transition: transform 0.4s ease; } .testimonial-card__content:hover .testimonial-card__img-placeholder { transform: scale(1.05); } .testimonial-card__img-placeholder i { font-size: 2.5rem; color: rgba(212, 43, 30, 0.20); } /* Company logo badge */ .testimonial-card__logo-badge { position: absolute; bottom: -10px; right: -10px; width: 36px; height: 36px; border-radius: 10px; background: linear-gradient(135deg, #d42b1e 0%, #e07428 100%); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(212, 43, 30, 0.35); z-index: 2; } .testimonial-card__logo-badge i { color: #ffffff; font-size: 0.9rem; } /* ── Text column — LEFT side in RTL ── */ .testimonial-card__text { flex: 1; padding: 20px 24px; display: flex; flex-direction: column; justify-content: center; text-align: right; min-width: 0; position: relative; overflow: hidden; } /* Decorative quote mark */ .testimonial-card__text::before { content: '\201C'; position: absolute; top: 8px; left: 16px; font-size: 3.5rem; line-height: 1; color: rgba(212, 43, 30, 0.06); font-family: Georgia, 'Times New Roman', serif; pointer-events: none; user-select: none; } .testimonial-card__name { font-size: 1.05rem; font-weight: 800; color: #1a1a1a; margin: 0 0 5px; line-height: 1.4; } .testimonial-card__company { font-size: 0.78rem; font-weight: 700; color: #d42b1e; display: inline-block; margin-bottom: 10px; background: rgba(212, 43, 30, 0.08); padding: 3px 12px; border-radius: 20px; width: max-content; max-width: 100%; } .testimonial-card__quote { font-size: 0.85rem; color: #4a5568; line-height: 1.7; margin: 0 0 10px; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; } .testimonial-card__stars { display: flex; gap: 3px; margin-top: auto; } .testimonial-card__stars i { color: #f59e0b; font-size: 1.05rem; } /* ── Navigation Arrows ── */ .testimonials-arrow { width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid rgba(0, 0, 0, 0.08); background: #ffffff; color: #6b7280; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); z-index: 2; } .testimonials-arrow:hover { background: linear-gradient(135deg, #d42b1e 0%, #e07428 100%); color: #ffffff; border-color: transparent; box-shadow: 0 8px 24px rgba(212, 43, 30, 0.30); transform: scale(1.12); } .testimonials-arrow:disabled { opacity: 0.28; cursor: default; pointer-events: none; } /* ── Dots Navigation ── */ .testimonials-dots { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 32px; position: relative; z-index: 1; } .testimonials-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(212, 43, 30, 0.18); border: none; cursor: pointer; padding: 0; transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); } .testimonials-dot.is-active { width: 28px; border-radius: 4px; background: linear-gradient(90deg, #d42b1e, #e07428); } /* ── Responsive: Tablet — 2 cards per row ── */ @media (min-width: 768px) and (max-width: 1023px) { .testimonial-card { width: 50%; } .testimonial-card__content { height: 220px; } .testimonial-card__image { width: 120px; padding: 20px 14px; } .testimonial-card__img-wrap { width: 90px; height: 90px; } .testimonial-card__image::before { width: 110px; height: 110px; } .testimonial-card__text { padding: 16px 20px; } } /* ── Responsive: Mobile — 1 card per row, image on top, text below ── */ @media (max-width: 767px) { .testimonials-section .container { padding-left: 16px; padding-right: 16px; } .testimonials-section { padding: 60px 0 72px; } .testimonial-card { width: 100%; padding: 8px; } .testimonial-card__content { flex-direction: column; height: auto; align-items: stretch; } .testimonial-card__image { width: 100%; align-self: auto; padding: 28px 24px 20px; min-height: 160px; } .testimonial-card__image::before { width: 140px; height: 140px; } .testimonial-card__img-wrap { width: 100px; height: 100px; } .testimonial-card__img-placeholder i { font-size: 2.5rem; } .testimonial-card__text { padding: 20px 24px 24px; } .testimonial-card__quote { -webkit-line-clamp: 4; font-size: 0.88rem; } .testimonials-arrow { width: 40px; height: 40px; font-size: 1.2rem; } .testimonials-slider-wrap { gap: 8px; } .testimonials-header { margin-bottom: 36px; } .testimonials-dots { margin-top: 20px; } } /* ============================================================ CLIENTS SECTION — عملاؤنا ============================================================ */ .clients-section { padding: 100px 0; background: #f7f1ea; position: relative; overflow: hidden; } /* Decorative background blobs */ .clients-decor { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; } .clients-decor--1 { width: 500px; height: 500px; top: -100px; right: -150px; background: radial-gradient(circle at 80% 20%, rgba(255, 100, 50, 0.07), transparent 70%); } .clients-decor--2 { width: 400px; height: 400px; bottom: -80px; left: -100px; background: radial-gradient(circle at 20% 80%, rgba(188, 0, 0, 0.05), transparent 70%); } .clients-section .container { position: relative; z-index: 1; } /* Header */ .clients-header { text-align: center; margin-bottom: 56px; } .clients-title { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; color: #1f2937; margin-bottom: 16px; position: relative; display: inline-block; } .clients-title::after { content: ''; display: block; width: 60px; height: 4px; background: linear-gradient(135deg, #bc0000, #e06228); border-radius: 4px; margin: 12px auto 0; } .clients-subtitle { font-size: 1.05rem; color: #6b7280; line-height: 1.8; max-width: 600px; margin: 0 auto; } /* Logo Grid */ .clients-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; margin-bottom: 52px; } @media (max-width: 1200px) { .clients-grid { grid-template-columns: repeat(4, 1fr); } } @media (max-width: 768px) { .clients-grid { grid-template-columns: repeat(2, 1fr); } } /* Client Card — square logo tile */ .client-card { background: #ffffff; border-radius: 16px; padding: 20px; display: flex; align-items: center; justify-content: center; aspect-ratio: 1 / 1; box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06); transition: transform 0.3s ease, box-shadow 0.3s ease; overflow: hidden; } .client-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12); } /* Logo image inside card */ .client-card img { max-width: 70%; max-height: 60%; width: auto; height: auto; object-fit: contain; display: block; filter: grayscale(100%); opacity: 0.75; transition: filter 0.35s ease, opacity 0.35s ease; } .client-card:hover img { filter: grayscale(0%); opacity: 1; } /* Show More Button */ .clients-cta-wrap { text-align: center; } .clients-all-btn { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg, #bc0000, #e06228); color: #ffffff; border-radius: 10px; padding: 12px 28px; font-size: 1rem; font-weight: 600; text-decoration: none; transition: all 0.3s ease; box-shadow: 0 4px 14px rgba(188, 0, 0, 0.25); } .clients-all-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); } .clients-all-btn i { font-size: 1rem; transition: transform 0.3s ease; } .clients-all-btn:hover i { transform: translateX(-4px); } /* ── Clients PAGE full grid ── */ .clients-page-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; margin-bottom: 52px; } @media (max-width: 1023px) { .clients-page-grid { grid-template-columns: repeat(4, 1fr); } } @media (max-width: 599px) { .clients-page-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } } /* ── Clients PAGE variant ── */ .clients-section--page { padding-top: 48px; } /* Stats bar (clients page) */ .clients-stats { display: flex; justify-content: center; gap: 0; margin-bottom: 52px; background: #ffffff; border-radius: 20px; box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07); overflow: hidden; } .clients-stat { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 28px 16px; border-left: 1px solid #f3f4f6; text-align: center; } .clients-stat:last-child { border-left: none; } .clients-stat__num { font-size: 2rem; font-weight: 800; background: linear-gradient(135deg, #bc0000, #e06228); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 6px; } .clients-stat__label { font-size: 0.82rem; color: #6b7280; font-weight: 500; } @media (max-width: 599px) { .clients-stats { flex-wrap: wrap; } .clients-stat { flex: 1 1 50%; border-left: none; border-bottom: 1px solid #f3f4f6; padding: 20px 12px; } .clients-stat:nth-child(even) { border-right: none; } .clients-stat:nth-last-child(-n+2) { border-bottom: none; } } /* ============================================================ FOOTER ============================================================ */ .site-footer { width: 100%; border-top: 1px solid #e5e7eb; background: rgba(255, 255, 255, 0.5); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); position: relative; z-index: 10; padding-top: 64px; padding-bottom: 32px; } .footer-grid { display: grid; grid-template-columns: 1fr; gap: 48px; margin-bottom: 48px; text-align: center; } @media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); text-align: right; } } .footer-col { display: flex; flex-direction: column; align-items: center; } @media (min-width: 768px) { .footer-col { align-items: flex-start; } } .footer-logo { margin-bottom: 16px; display: inline-block; } .footer-logo-img { height: 90px; width: auto; } .footer-text { color: #6b7280; line-height: 1.625; max-width: 384px; } .footer-heading { font-size: 1.125rem; font-weight: 700; color: #1f2937; margin-bottom: 16px; } .footer-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px; } .footer-list-item { display: flex; align-items: center; color: #4b5563; } .footer-dot { width: 8px; height: 8px; border-radius: 50%; background: #d42b1e; margin-left: 12px; flex-shrink: 0; } .footer-link { color: #4b5563; text-decoration: none; transition: color 0.2s; display: flex; align-items: center; justify-content: center; } @media (min-width: 768px) { .footer-link { justify-content: flex-start; } } .footer-link:hover { color: #d42b1e; } .footer-icon { margin-left: 8px; } .footer-bottom { padding-top: 32px; border-top: 1px solid #e5e7eb; text-align: center; display: flex; flex-direction: column; justify-content: space-between; align-items: center; font-size: 0.875rem; color: #9ca3af; } @media (min-width: 768px) { .footer-bottom { flex-direction: row; } } .footer-bottom-links { margin-top: 16px; display: flex; gap: 16px; } @media (min-width: 768px) { .footer-bottom-links { margin-top: 0; } } .footer-bottom-link { color: inherit; text-decoration: none; transition: color 0.2s; } .footer-bottom-link:hover { color: #d42b1e; } /* ── Footer Newsletter ── */ .footer-newsletter-box { grid-column: 1 / -1; text-align: center; } @media (min-width: 768px) { .footer-newsletter-box { grid-column: 3 / 4; grid-row: 2; padding-top: 24px; border-top: 1px solid #e5e7eb; text-align: right; } } .footer-newsletter-title { font-size: 1.125rem; font-weight: 700; color: #1f2937; margin-bottom: 8px; } .footer-newsletter-desc { color: #6b7280; font-size: 0.9rem; line-height: 1.6; margin-bottom: 16px; } .footer-newsletter-form { display: flex; gap: 8px; } .footer-newsletter-input { flex: 1; padding: 10px 14px; border: 1px solid #d1d5db; border-radius: 8px; font-family: inherit; font-size: 0.875rem; color: #1f2937; background: #fff; outline: none; transition: border-color 0.2s; text-align: right; direction: rtl; } .footer-newsletter-input:focus { border-color: #ff5a2f; } .footer-newsletter-btn { white-space: nowrap; flex-shrink: 0; padding: 11px 22px; background: linear-gradient(135deg, #bc0000 0%, #e06228 100%); color: #fff; font-size: 0.875rem; font-weight: 700; font-family: inherit; border: none; border-radius: 10px; cursor: pointer; transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); box-shadow: 0 4px 14px rgba(188, 0, 0, 0.22); } .footer-newsletter-btn:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 8px 20px rgba(188, 0, 0, 0.35); } html[dir='ltr'] .footer-newsletter-box { text-align: left; } html[dir='ltr'] .footer-newsletter-input { text-align: left; direction: ltr; } /* ── Social Icons ── */ .social-icons { display: flex; gap: 12px; margin-top: 20px; justify-content: center; } @media (min-width: 768px) { .social-icons { justify-content: flex-start; } } .social-icon { width: 44px; height: 44px; border: 2px solid transparent; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; background-image: linear-gradient(#f7f1ea, #f7f1ea), linear-gradient(135deg, #d42b1e, #e07428); background-origin: border-box; background-clip: padding-box, border-box; transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease; } .social-icon i { color: var(--brand-color); font-size: 17px; transition: color 0.3s ease; } .social-icon:hover { background: linear-gradient(135deg, #d42b1e, #e07428); border-color: transparent; transform: scale(1.15); box-shadow: 0 0 14px rgba(212, 43, 30, 0.45); } .social-icon:hover i { color: #ffffff; } /* ============================================================ HOW WE WORK SECTION — كيف نعمل (Horizontal Scroll) ============================================================ */ /* Tall outer section — drives the sticky scroll */ .process-section { height: 300vh; position: relative; background: #ffffff; } /* Sticky inner container — stays in view for the full 300vh */ .process-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; display: flex; flex-direction: column; justify-content: center; padding-top: 96px; background: #ffffff; } /* Section Header */ .process-hdr { text-align: center; padding: 0 24px; margin-bottom: 24px; flex-shrink: 0; } .process-title { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; background: linear-gradient(135deg, #a00020 0%, #d42b1e 40%, #c2185b 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.3; margin: 0 0 12px; } .process-subtitle { color: #9ca3af; font-size: 0.95rem; line-height: 1.7; max-width: 600px; margin: 0 auto; } /* Step indicator: label + progress bar */ .process-ind { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 20px; flex-shrink: 0; } .process-ind__label { font-size: 0.82rem; font-weight: 800; color: #d42b1e; letter-spacing: 0.08em; opacity: 0.75; min-width: 44px; text-align: center; font-variant-numeric: tabular-nums; } .process-ind__bar { width: 180px; height: 3px; background: rgba(212,43,30,0.10); border-radius: 2px; overflow: hidden; } .process-ind__fill { height: 100%; width: 0%; background: linear-gradient(90deg, #d42b1e 0%, #e07428 100%); border-radius: 2px; transition: width 0.25s ease; } /* Track wrapper — clips overflow, adds edge fades */ .process-track-wrap { position: relative; overflow: hidden; flex: 1; display: flex; align-items: center; } .process-track-wrap::before, .process-track-wrap::after { content: ''; position: absolute; top: 0; width: 140px; height: 100%; z-index: 4; pointer-events: none; } .process-track-wrap::before { right: 0; background: linear-gradient(to left, #ffffff 20%, transparent); } .process-track-wrap::after { left: 0; background: linear-gradient(to right, #ffffff 20%, transparent); } /* Horizontal flex track — RTL order, JS translates it */ .process-track { display: flex; flex-direction: row; direction: rtl; gap: 28px; padding: 20px 64px; will-change: transform; width: max-content; } /* Individual card */ .process-card { direction: rtl; flex-shrink: 0; width: 340px; background: #faf8f6; border: 1px solid rgba(0,0,0,0.06); border-radius: 28px; padding: 40px 32px 36px; display: flex; flex-direction: column; align-items: flex-start; text-align: right; position: relative; overflow: hidden; opacity: 0.38; transform: scale(0.91) translateY(14px); transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.55s ease, border-color 0.55s ease; } .process-card.is-active { opacity: 1; transform: scale(1) translateY(0); box-shadow: 0 20px 60px rgba(212,43,30,0.10), 0 6px 20px rgba(0,0,0,0.04); border-color: rgba(212,43,30,0.12); background: #ffffff; } /* Giant background number */ .process-card__bg-num { position: absolute; top: -12px; left: -8px; font-size: 6rem; font-weight: 800; background: linear-gradient(135deg, #d42b1e, #e07428); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; opacity: 0.06; line-height: 1; pointer-events: none; user-select: none; } .process-card.is-active .process-card__bg-num { opacity: 0.10; } /* Icon box */ .process-card__icon { width: 60px; height: 60px; border-radius: 18px; background: linear-gradient(135deg, rgba(212,43,30,0.08) 0%, rgba(224,116,40,0.10) 100%); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; flex-shrink: 0; transition: transform 0.4s ease; } .process-card.is-active .process-card__icon { transform: scale(1.06); } .process-card__icon i { font-size: 26px; background: linear-gradient(135deg, #d42b1e 0%, #e07428 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .process-card__title { font-size: 1.3rem; font-weight: 800; color: #1a1a1a; margin: 0 0 12px; line-height: 1.3; } .process-card__desc { font-size: 0.9rem; color: #6b7280; line-height: 1.85; margin: 0; } /* Step navigation dots */ .process-dots { display: flex; justify-content: center; align-items: center; gap: 8px; padding: 16px 0 24px; flex-shrink: 0; } .process-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(212,43,30,0.18); border: none; cursor: pointer; padding: 0; transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); } .process-dot.is-active { width: 28px; border-radius: 4px; background: linear-gradient(90deg, #d42b1e, #e07428); } @media (max-width: 1023px) { .process-section { height: auto; padding: 0 0 72px; } .process-sticky { position: relative; top: auto; height: auto; overflow: visible; justify-content: flex-start; padding-top: 104px; } .process-hdr { margin-bottom: 20px; padding: 0 20px; } .process-subtitle { max-width: 720px; font-size: 0.98rem; } .process-ind { margin-bottom: 18px; } .process-ind__bar { width: min(180px, 38vw); } .process-track-wrap { overflow-x: auto; overflow-y: visible; align-items: stretch; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 0 20px 12px; scroll-padding-inline: 50%; overscroll-behavior-x: contain; } .process-track-wrap::-webkit-scrollbar { display: none; } .process-track-wrap::before, .process-track-wrap::after { width: 72px; } .process-track { gap: 20px; padding: 12px 0; width: max-content; } .process-card { width: min(420px, calc(100vw - 88px)); min-height: 100%; opacity: 1; transform: none; scroll-snap-align: center; scroll-snap-stop: always; } .process-card.is-active { transform: translateY(-4px); } .process-dots { padding: 12px 0 0; } } /* Mobile: smaller cards, shorter section */ @media (max-width: 767px) { .process-section { padding-bottom: 56px; } .process-sticky { padding-top: 80px; } .process-hdr { padding: 0 16px; margin-bottom: 16px; } .process-subtitle { font-size: 0.88rem; } .process-card { width: calc(100vw - 40px); padding: 28px 20px 24px; } .process-track { gap: 12px; } .process-track-wrap { padding: 0 20px 10px; scroll-padding-inline: 50%; } .process-ind { margin-bottom: 14px; } .process-ind__bar { width: 100px; } /* Edge fades not needed when cards are near full-viewport width */ .process-track-wrap::before, .process-track-wrap::after { display: none; } .process-card__bg-num { font-size: 4.5rem; } .process-card__title { font-size: 1.1rem; } .process-card__desc { font-size: 0.85rem; line-height: 1.75; } /* Larger tap targets for dots */ .process-dots { gap: 12px; padding: 14px 0 0; } .process-dot { width: 10px; height: 10px; /* Expand tap area without affecting layout */ position: relative; } .process-dot::after { content: ''; position: absolute; inset: -12px; } .process-dot.is-active { width: 32px; } } /* ============================================================ LANGUAGE SWITCH ============================================================ */ .lang-switch { position: relative; width: 86px; height: 38px; border-radius: 999px; border: 1px solid rgba(212, 43, 30, 0.22); background: linear-gradient(140deg, #fff8f4 0%, #ffffff 100%); display: inline-flex; align-items: center; justify-content: space-between; padding: 0 12px; cursor: pointer; overflow: hidden; box-shadow: 0 8px 24px rgba(212, 43, 30, 0.12); transition: transform 0.25s ease, box-shadow 0.25s ease; direction: ltr; /* always AR-left / EN-right, independent of page dir */ } .lang-switch:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(212, 43, 30, 0.18); } .lang-switch__label { position: relative; z-index: 2; font-size: 0.74rem; font-weight: 800; letter-spacing: 0.06em; color: #a1a1aa; transition: color 0.25s ease; user-select: none; } .lang-switch__thumb { position: absolute; top: 3px; left: 3px; width: 40px; height: 30px; border-radius: 999px; background: linear-gradient(135deg, #d42b1e 0%, #e07428 100%); box-shadow: 0 8px 18px rgba(212, 43, 30, 0.3); transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1); } .lang-switch:not(.is-en) .lang-switch__label--ar, .lang-switch.is-en .lang-switch__label--en { color: #ffffff; } .lang-switch.is-en .lang-switch__thumb { transform: translateX(40px); } .lang-mobile-btn { display: none; margin: 14px auto 0; width: max-content; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 12px; border: 1px solid rgba(212, 43, 30, 0.22); background: #ffffff; color: #d42b1e; font-weight: 700; font-size: 0.95rem; cursor: pointer; } .lang-mobile-btn i { font-size: 1.05rem; } .navbar__links.is-open .lang-mobile-btn { display: inline-flex; } /* ============================================================ LTR OVERRIDES ============================================================ */ html[dir='ltr'] .spui-hero__content, html[dir='ltr'] .spui-cta, html[dir='ltr'] .sdet-hero__inner, html[dir='ltr'] .why-row, html[dir='ltr'] .process-track, html[dir='ltr'] .billing-toggle-wrap { direction: ltr; } html[dir='ltr'] .why-row--reverse { flex-direction: row; } html[dir='ltr'] .srv-card, html[dir='ltr'] .spui-card, html[dir='ltr'] .process-card, html[dir='ltr'] .spui-hero__text, html[dir='ltr'] .sdet-hero__text, html[dir='ltr'] .services-header, html[dir='ltr'] .process-hdr, html[dir='ltr'] .faq-question { direction: ltr; text-align: left; } html[dir='ltr'] .process-card { align-items: flex-start; } html[dir='ltr'] .process-track-wrap::before { left: 0; right: auto; background: linear-gradient(to right, #ffffff 20%, transparent); } html[dir='ltr'] .process-track-wrap::after { right: 0; left: auto; background: linear-gradient(to left, #ffffff 20%, transparent); } html[dir='ltr'] .process-card__bg-num { left: auto; right: -8px; } html[dir='ltr'] .sdet-hero__visual { margin-left: 0; margin-right: -60px; } html[dir='ltr'] .sdet-hero__visual::before { left: auto; right: -60px; } html[dir='ltr'] .sdet-hero__visual::after { right: auto; left: -60px; } html[dir='ltr'] .form-input--ltr { text-align: left; } html[dir='ltr'] .ri-arrow-left-line, html[dir='ltr'] .ri-arrow-right-line { transform: scaleX(-1); display: inline-block; } @media (min-width: 768px) { html[dir='ltr'] .footer-grid { text-align: left; } } /* ============================================================ ALL WORKS PAGE — جميع أعمالنا ============================================================ */ .aw-page { background: #f7f1ea; } /* Hero */ .aw-hero { padding: 160px 0 100px; text-align: center; position: relative; background: radial-gradient(ellipse 80% 65% at 50% 25%, rgba(255, 90, 40, 0.14) 0%, transparent 65%), radial-gradient(ellipse 60% 55% at 20% 55%, rgba(230, 70, 20, 0.10) 0%, transparent 60%), radial-gradient(ellipse 55% 50% at 80% 50%, rgba(255, 110, 50, 0.09) 0%, transparent 60%), #f7f1ea; } .aw-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 140px; background: linear-gradient(to bottom, transparent 0%, #f7f1ea 100%); pointer-events: none; } .aw-hero__content { max-width: 680px; margin: 0 auto; } .aw-back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.88rem; font-weight: 600; color: #d42b1e; margin-bottom: 20px; transition: gap 0.3s ease; } .aw-back-link:hover { gap: 10px; } .aw-hero__title { font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 800; margin: 0 0 16px; background: linear-gradient(135deg, #c01a10 0%, #e03a1a 45%, #ff5a2f 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.35; } .aw-hero__desc { font-size: 1.05rem; color: #6b7280; line-height: 1.85; margin: 0; } /* Filter bar */ .aw-portfolio { padding: 0 0 80px; } /* Filter bar — sticky floating pill, drop-in on scroll */ .aw-portfolio .aw-filters { position: sticky; top: 112px; /* 96px navbar + 16px breathing room */ z-index: 40; /* below navbar (z-index 50) */ margin-bottom: 48px; opacity: 0; transform: translateY(-32px) scale(0.88); } .aw-portfolio .aw-filters.is-revealed { animation: awFilterReveal 0.72s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; } @media (max-width: 1024px) { .aw-portfolio .aw-filters { top: 104px; margin-bottom: 32px; } } @media (max-width: 768px) { .aw-portfolio .aw-filters { top: 88px; margin-bottom: 24px; } } @keyframes awFilterReveal { 0% { opacity: 0; transform: translateY(-32px) scale(0.88); } 100% { opacity: 1; transform: translateY(0) scale(1); } } /* Grid */ .aw-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; max-width: 1200px; margin: 0 auto; } /* CTA Section */ .aw-cta-section { padding: 40px 0 80px; } .aw-cta-card { background: linear-gradient(135deg, #c72318 0%, #d96820 100%); border-radius: 28px; padding: 56px 48px; text-align: center; position: relative; overflow: hidden; } .aw-cta-card::before { content: ''; position: absolute; top: -50%; right: -20%; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 70%); pointer-events: none; } .aw-cta-card::after { content: ''; position: absolute; bottom: -40%; left: -15%; width: 350px; height: 350px; border-radius: 50%; background: radial-gradient(circle, rgba(0,0,0,0.10) 0%, transparent 70%); pointer-events: none; } .aw-cta-card__title { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; color: #ffffff; margin: 0 0 12px; position: relative; z-index: 1; } .aw-cta-card__desc { font-size: 1rem; color: rgba(255,255,255,0.65); margin: 0 0 32px; position: relative; z-index: 1; } .aw-cta-card__btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 44px; font-size: 1rem; font-weight: 700; color: #c72318; background: #ffffff; border-radius: 16px; text-decoration: none; border: none; cursor: pointer; font-family: inherit; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15); transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); position: relative; z-index: 1; } .aw-cta-card__btn:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22); background: #fff5f3; color: #c72318; } .aw-cta-card__btn span, .aw-cta-card__btn i { position: relative; z-index: 1; } @media (max-width: 768px) { .aw-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } .aw-cta-card { padding: 40px 24px; } } /* ============================================================ CTA CONTACT POPUP MODAL ============================================================ */ .cta-modal-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.55); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; } .cta-modal-overlay.is-open { opacity: 1; visibility: visible; } .cta-modal { background: #ffffff; border-radius: 24px; padding: 48px 40px 40px; width: 100%; max-width: 560px; max-height: 90vh; overflow-y: auto; position: relative; transform: translateY(32px) scale(0.97); transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18); } .cta-modal-overlay.is-open .cta-modal { transform: translateY(0) scale(1); } .cta-modal__close { position: absolute; top: 16px; left: 16px; width: 36px; height: 36px; border-radius: 50%; border: none; background: #f5f5f5; color: #555; font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s, color 0.2s; z-index: 2; } .cta-modal__close:hover { background: #ffe5e5; color: #c72318; } .cta-modal__header { margin-bottom: 28px; text-align: center; } .cta-modal__title { font-size: 1.5rem; font-weight: 800; color: #1a1a1a; margin: 0 0 8px; } .cta-modal__desc { font-size: 0.95rem; color: #777; margin: 0; } .cta-modal__success { text-align: center; padding: 32px 0; display: none; } .cta-modal__success-icon { font-size: 3rem; color: #c72318; margin-bottom: 12px; } .cta-modal__success-title { font-size: 1.3rem; font-weight: 800; color: #1a1a1a; margin: 0 0 8px; } .cta-modal__success-msg { font-size: 0.95rem; color: #777; margin: 0; } @media (max-width: 600px) { .cta-modal { padding: 40px 20px 28px; } } /* ============================================================ PARTNERS SECTION — شركاؤنا في الشرق الأوسط ============================================================ */ /* ── Keyframes ── */ @keyframes partnersScrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } } @keyframes partnersScrollDown { 0% { transform: translateY(-50%); } 100% { transform: translateY(0); } } /* ── Section wrapper ── */ .partners-section { padding: 110px 0; background: #f7f1ea; position: relative; overflow: hidden; } /* Decorative blobs */ .partners-decor { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; } .partners-decor--1 { width: 700px; height: 700px; top: -220px; right: -200px; background: radial-gradient(circle at 70% 30%, rgba(212, 43, 30, 0.07), transparent 65%); } .partners-decor--2 { width: 500px; height: 500px; bottom: -140px; left: -160px; background: radial-gradient(circle at 25% 75%, rgba(224, 116, 40, 0.07), transparent 65%); } .partners-decor--3 { width: 320px; height: 320px; top: 50%; left: 42%; transform: translate(-50%, -50%); background: radial-gradient(circle, rgba(212, 43, 30, 0.04), transparent 70%); } .partners-section .container { position: relative; z-index: 1; } /* ── Two-column layout ── */ .partners-layout { display: flex; align-items: center; gap: 64px; } /* ── Content side (right in RTL) ── */ .partners-content { flex: 0 0 auto; width: min(420px, 100%); text-align: right; } .partners-badge { display: inline-block; background: linear-gradient(135deg, rgba(212, 43, 30, 0.10), rgba(224, 116, 40, 0.13)); color: #d42b1e; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em; padding: 6px 18px; border-radius: 100px; margin-bottom: 20px; border: 1px solid rgba(212, 43, 30, 0.18); } .partners-title { font-size: 2rem; font-weight: 800; line-height: 1.25; margin: 0 0 18px; background: linear-gradient(135deg, #a00020 0%, #d42b1e 45%, #c2185b 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .partners-subtitle { font-size: 1.0625rem; color: #6b7280; line-height: 1.85; margin: 0 0 40px; } /* Stats bar */ .partners-stats { display: flex; align-items: center; gap: 24px; padding: 22px 24px; background: #ffffff; border-radius: 16px; box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07); border: 1px solid rgba(0, 0, 0, 0.04); } .partners-stat { display: flex; flex-direction: column; align-items: center; flex: 1; gap: 4px; } .partners-stat strong { font-size: 1.25rem; font-weight: 800; background: linear-gradient(135deg, #d42b1e, #e07428); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .partners-stat span { font-size: 0.78rem; color: #9ca3af; font-weight: 500; white-space: nowrap; } .partners-stat-divider { width: 1px; height: 36px; background: rgba(0, 0, 0, 0.07); flex-shrink: 0; } /* ── Partners CTA button ── */ .partners-cta { display: flex; justify-content: center; margin-top: 30px; } .partners-btn { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg, #ff5a2f, #e23d1a); color: #fff; text-decoration: none; padding: 14px 28px; border-radius: 12px; font-weight: 600; font-size: 0.95rem; box-shadow: 0 10px 25px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; } .partners-btn:hover { transform: translateY(-3px); box-shadow: 0 18px 35px rgba(0,0,0,0.15); } .partners-btn i { font-size: 1rem; } /* ── Campaigns CTA button ── */ .campaigns-cta { margin-top: 50px; display: flex; justify-content: center; } .campaigns-btn { display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(135deg, #ff5a2f, #e23d1a); color: #fff; text-decoration: none; padding: 14px 32px; border-radius: 14px; font-weight: 600; font-size: 16px; box-shadow: 0 12px 30px rgba(0,0,0,0.12); transition: all .3s ease; } .campaigns-btn:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(0,0,0,0.18); } .campaigns-btn i { font-size: 1rem; } /* ── Sliders side (left in RTL) ── */ .partners-sliders { flex: 1 1 0; display: flex; gap: 16px; height: 520px; overflow: hidden; /* Fade top & bottom edges */ -webkit-mask-image: linear-gradient( to bottom, transparent 0%, black 14%, black 86%, transparent 100% ); mask-image: linear-gradient( to bottom, transparent 0%, black 14%, black 86%, transparent 100% ); } /* ── Single column ── */ .partners-col { flex: 1 1 0; overflow: hidden; display: flex; flex-direction: column; } .partners-col--hide-mobile { /* shown by default; hidden on mobile via breakpoint below */ } /* ── Scrolling track ── */ .partners-track { display: flex; flex-direction: column; gap: 8px; will-change: transform; } .partners-track--up { animation: partnersScrollUp linear infinite; } .partners-track--down { animation: partnersScrollDown linear infinite; } /* Pause on hover (whole sliders area) */ .partners-sliders:hover .partners-track { animation-play-state: paused; } /* ── Circular logo bubble ── */ .partner-bubble { width: 110px; height: 110px; border-radius: 50%; background: #ffffff; display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08); border: 1px solid rgba(0, 0, 0, 0.05); flex-shrink: 0; transition: transform 0.3s ease, box-shadow 0.3s ease; cursor: default; align-self: center; } .partner-bubble:hover { transform: scale(1.08); box-shadow: 0 16px 40px rgba(212, 43, 30, 0.14); } .partner-bubble img { max-width: 70px; max-height: 70px; object-fit: contain; pointer-events: none; user-select: none; } /* ── Responsive ── */ @media (max-width: 1023px) { .partners-layout { flex-direction: column-reverse; gap: 48px; } .partners-content { width: 100%; text-align: center; } .partners-stats { max-width: 400px; margin: 0 auto; } .partners-sliders { width: 100%; height: 380px; } .partners-title { font-size: 1.875rem; } } @media (max-width: 768px) { /* Layout: text first, sliders below */ .partners-layout { flex-direction: column; gap: 0; } .partners-content { width: 100%; text-align: center; } .partners-stats { max-width: 100%; margin: 0 auto; } /* Sliders container: 2-column grid, fixed height so animation is visible */ .partners-sliders { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; flex: none; /* cancel flex: 1 1 0 — this was collapsing height to 0 */ width: 100%; height: 340px; overflow: hidden; margin-top: 40px; -webkit-mask-image: linear-gradient( to bottom, transparent 0%, black 12%, black 88%, transparent 100% ); mask-image: linear-gradient( to bottom, transparent 0%, black 12%, black 88%, transparent 100% ); } /* Columns fill the grid row height so overflow clips the track */ .partners-col { overflow: hidden; height: 100%; } /* Hide columns 3 & 4 on mobile — only 2 columns */ .partners-col--hide-mobile { display: none; } /* Bubble size */ .partner-bubble { width: 80px; height: 80px; } /* Logo size */ .partner-bubble img { max-width: 50px; max-height: 50px; } .partners-title { font-size: 1.625rem; } .partners-section { padding: 80px 0; } } /* ============================================================ PLATFORMS SECTION — القنوات المدعومة ============================================================ */ .platforms-section { padding: 100px 0; background: #f7f1ea; position: relative; overflow: hidden; } .platforms-badge { display: inline-block; background: linear-gradient(135deg, rgba(212, 43, 30, 0.08) 0%, rgba(224, 116, 40, 0.08) 100%); color: #d42b1e; font-size: 0.875rem; font-weight: 700; padding: 6px 20px; border-radius: 50px; border: 1px solid rgba(212, 43, 30, 0.2); margin-bottom: 14px; letter-spacing: 0.01em; } .platforms-subtitle { font-size: 1.05rem; color: #6b7280; line-height: 1.8; margin-top: 12px; max-width: 600px; margin-left: auto; margin-right: auto; } /* Grid — mobile: 2 cols | tablet: 3 cols | desktop: 4 cols */ .platforms-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; } @media (min-width: 640px) { .platforms-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } } @media (min-width: 1024px) { .platforms-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } } /* Card */ .platform-card { background: #ffffff; border-radius: 16px; padding: 28px 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06); border: 1px solid rgba(0, 0, 0, 0.04); transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; cursor: default; } .platform-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12); border-color: rgba(212, 43, 30, 0.15); } /* Logo */ .platform-card img { width: 48px; height: 48px; object-fit: contain; filter: grayscale(100%); transition: filter 0.3s ease; } .platform-card:hover img { filter: grayscale(0%); } /* Label */ .platform-card span { font-size: 0.875rem; font-weight: 700; color: #374151; text-align: center; line-height: 1.4; } @media (max-width: 480px) { .platforms-section { padding: 72px 0; } .platform-card { padding: 22px 14px; } .platform-card img { width: 40px; height: 40px; } .platform-card span { font-size: 0.8rem; } } /* ── WhatsApp Widget ── */ .wa-widget { position: fixed; bottom: 28px; left: 28px; z-index: 9999; font-family: 'Tajawal', sans-serif; direction: rtl; } .wa-btn { width: 58px; height: 58px; border-radius: 50%; background: linear-gradient(135deg, #25d366 0%, #128c7e 100%); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.6rem; box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); position: relative; } .wa-btn:hover { transform: scale(1.12); box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55); } .wa-btn::before { content: ''; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid rgba(37, 211, 102, 0.5); animation: wa-pulse 2s ease-out infinite; } @keyframes wa-pulse { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.5); opacity: 0; } } .wa-box { position: absolute; bottom: 74px; left: 0; width: 300px; background: #fff; border-radius: 16px; box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16); overflow: hidden; transform: scale(0.85) translateY(16px); transform-origin: bottom left; opacity: 0; pointer-events: none; transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); } .wa-box.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; } .wa-box__header { background: linear-gradient(135deg, #25d366 0%, #128c7e 100%); padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; } .wa-box__header-title { color: #fff; font-weight: 700; font-size: 1rem; display: flex; align-items: center; gap: 8px; } .wa-box__close { background: none; border: none; color: rgba(255, 255, 255, 0.8); font-size: 1rem; cursor: pointer; line-height: 1; transition: color 0.2s; } .wa-box__close:hover { color: #fff; } .wa-box__body { padding: 16px; display: flex; flex-direction: column; gap: 10px; } .wa-box__message { background: #f0fdf4; border-radius: 12px 12px 12px 4px; padding: 10px 14px; color: #1f2937; font-size: 0.9rem; line-height: 1.5; border: 1px solid #dcfce7; } .wa-box__input { width: 100%; border: 1px solid #e5e7eb; border-radius: 10px; padding: 10px 12px; font-family: inherit; font-size: 0.875rem; color: #1f2937; resize: none; outline: none; transition: border-color 0.2s; text-align: right; direction: rtl; } .wa-box__input:focus { border-color: #25d366; } .wa-box__send { width: 100%; padding: 11px; background: linear-gradient(135deg, #25d366 0%, #128c7e 100%); color: #fff; border: none; border-radius: 10px; font-family: inherit; font-size: 0.875rem; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3); } .wa-box__send:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45); }