/*
Theme Name: Sahil Al Seeb International
Theme URI: https://sahilalseeb.com
Author: Sahil Al Seeb International LLC
Author URI: https://sahilalseeb.com
Description: Official bilingual (English/Arabic) theme for Sahil Al Seeb International LLC - ERP software, POS systems, IT services and security solutions in Oman. SEO, AEO and GEO optimized with structured data.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sahil-al-seeb
*/

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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Modern dark theme */
  --bg: #070812;
  --bg2: #0b0d18;
  --bg3: #101323;
  --surf: rgba(17, 20, 36, 0.78);
  --bd: rgba(255, 255, 255, 0.09);
  --accent: #8b5cf6;
  --accent2: #6d28d9;
  --coral: #fb7185;
  --amber: #f59e0b;
  --teal: #22d3ee;
  --green: #22c55e;
  --dark-slate: #f8fafc;
  --body: #aab2c5;
  --muted: #707991;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--body);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--accent);
  color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
}

.app[dir="rtl"] {
  font-family: 'Tajawal', sans-serif;
  text-align: right;
}

.app[dir="rtl"] .nav,
.app[dir="rtl"] .cta-row,
.app[dir="rtl"] .header-inner,
.app[dir="rtl"] .topbar-inner,
.app[dir="rtl"] .stats-row,
.app[dir="rtl"] .footer-bottom {
  flex-direction: row-reverse;
}

.app[dir="rtl"] .float-wa {
  left: 24px;
  right: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

h1, h2, h3 {
  font-family: 'Sora', sans-serif;
  color: var(--dark-slate);
  line-height: 1.15;
}

.app[dir="rtl"] h1,
.app[dir="rtl"] h2,
.app[dir="rtl"] h3 {
  font-family: 'Tajawal', sans-serif;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.sec-label {
  color: var(--accent);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  margin-bottom: 14px;
  display: block;
}

.sec-h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
  text-wrap: balance;
}

.sec-sub {
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto;
  color: var(--body);
}

.center {
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all .3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(120deg, var(--accent), var(--accent2));
  color: #fff;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(120deg, var(--accent2), var(--accent));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.35);
}

.btn-whatsapp {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.2);
}

.btn-whatsapp:hover {
  filter: brightness(1.10);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.3);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #f8fafc;
  background: rgba(255, 255, 255, 0.03);
}

.btn-outline:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.3);
}

/* TOPBAR */
.topbar {
  background: var(--bg3);
  border-bottom: 1px solid var(--bd);
  font-size: 13px;
  color: var(--muted);
}

.topbar-inner {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar a:hover {
  color: var(--accent);
}

.topbar-grp {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* HEADER: deep indigo so the white logo elements are perfectly visible, with a subtle violet-to-coral wash */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: linear-gradient(120deg, rgba(30, 21, 65, 0.96), rgba(46, 24, 74, 0.96));
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-img, .footer-logo {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo .lname {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #ffffff;
}

.logo .lname b {
  color: var(--coral);
}

.logo .lsub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: .04em;
}

/* Header Nav Menu item color tweaks for the dark header background */
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
	
}

.nav button {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-weight: 500;
  transition: color .25s;
  position: relative;
}

.nav button:hover {
  color: #ffffff;
}

.nav button::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--coral), var(--amber));
  transition: width .25s;
}

.nav button:hover::after {
  width: 100%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-switch {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.lang-btn {
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  transition: all .25s;
}

.lang-btn.on {
  background: var(--coral);
  color: #fff;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: rgba(17, 20, 36, 0.78);
  border-radius: 2px;
  transition: .3s;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 280px;
  background: var(--bg2);
  border-left: 1px solid var(--bd);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform .35s ease;
  padding: 80px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: -4px 0 24px rgba(124, 58, 237, 0.08);
}

.mobile-menu.open {
  transform: translateX(0);
}

.app[dir="rtl"] .mobile-menu {
  left: 0;
  right: auto;
  border-right: 1px solid var(--bd);
  border-left: none;
  transform: translateX(-100%);
}

.app[dir="rtl"] .mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu button.mnav {
  text-align: inherit;
  padding: 14px 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--dark-slate);
  border-bottom: 1px solid var(--bd);
}

.mobile-menu button.mnav:hover {
  color: var(--accent);
}

.mm-close {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 26px;
  color: var(--dark-slate);
  line-height: 1;
}

.app[dir="rtl"] .mm-close {
  left: 24px;
  right: auto;
}

.scrim {
  position: fixed;
  inset: 0;
  background: rgba(30, 21, 65, 0.35);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  backdrop-filter: blur(4px);
}

.scrim.show {
  opacity: 1;
  pointer-events: auto;
}

/* HERO: layered violet + amber wash, dark-slate headline for readability on the light background */
.hero {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: radial-gradient(120% 100% at 50% 0%, rgba(124, 58, 237, 0.07) 0%, rgba(245, 158, 11, 0.05) 45%, rgba(255, 255, 255, 0) 100%);
}

.hero h1 span:not(.grad) {
  color: var(--dark-slate) !important;
  font-family: 'Sora', sans-serif;
}

.app[dir="rtl"] .hero h1 span:not(.grad) {
  font-family: 'Tajawal', sans-serif;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(124, 58, 237, 0.14) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, #000 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, #000 0%, transparent 75%);
  animation: drift 30s linear infinite;
}

@keyframes drift {
  from { background-position: 0 0; }
  to { background-position: 320px 320px; }
}

.hero-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 640px;
  height: 420px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, rgba(251, 113, 133, 0.09) 45%, transparent 72%);
  filter: blur(40px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(124, 58, 237, 0.25);
  background: rgba(124, 58, 237, 0.07);
  color: var(--accent2);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--dark-slate);
}

.hero h1 .grad {
  background: linear-gradient(100deg, var(--accent) 0%, var(--coral) 55%, var(--amber) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hero-sub {
  font-size: 18px;
  max-width: 620px;
  margin: 0 auto;
  color: var(--body);
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.stats-row {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 14px;
}

.stat {
  padding: 0 32px;
  border-left: 1px solid var(--bd);
  text-align: center;
}

.stat:first-child {
  border-left: none;
}

.app[dir="rtl"] .stat {
  border-left: none;
  border-right: 1px solid var(--bd);
}

.app[dir="rtl"] .stat:first-child {
  border-right: none;
}

.stat-num {
  font-family: 'Sora', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--accent);
}

/* Cycle a splash of colour across the stat row so it doesn't read as one flat block */
.stat:nth-child(4n+1) .stat-num { color: var(--accent); }
.stat:nth-child(4n+2) .stat-num { color: var(--coral); }
.stat:nth-child(4n+3) .stat-num { color: var(--amber); }
.stat:nth-child(4n+4) .stat-num { color: var(--teal); }

.stat-label {
  font-size: 13px;
  color: var(--muted);
}

/* BRANDS MARQUEE */
.brands {
  background: var(--bg2);
  border-top: 1px solid var(--bd);
  border-bottom: 1px solid var(--bd);
  padding: 28px 0;
  overflow: hidden;
}

.brands-label {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 18px;
}

.marquee {
  display: flex;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.marquee-track {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  animation: scroll 28s linear infinite;
  padding-left: 8px;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.brand-pill {
  flex-shrink: 0;
  border: 1px solid var(--bd);
  border-top: 3px solid var(--accent);
  border-radius: 30px;
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--body);
  background: var(--surf);
  transition: all .3s;
  box-shadow: 0 2px 4px rgba(124, 58, 237, 0.05);
}

.brand-pill:nth-child(3n+2) { border-top-color: var(--coral); }
.brand-pill:nth-child(3n+3) { border-top-color: var(--amber); }

.brand-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 4px 10px rgba(124, 58, 237, 0.12);
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 54px;
}

.glass {
  background: rgba(17, 20, 36, 0.78);
  border: 1px solid var(--bd);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.05);
}

.service-card {
  padding: 30px;
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.12);
  border-color: rgba(124, 58, 237, 0.35);
}

.svc-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.18);
  color: var(--accent);
}

/* Give each service card its own accent so the grid feels like a colourful set, not a repeated tile */
.service-card:nth-child(4n+2) .svc-icon {
  background: rgba(251, 113, 133, 0.1);
  border-color: rgba(251, 113, 133, 0.25);
  color: var(--coral);
}
.service-card:nth-child(4n+3) .svc-icon {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.25);
  color: var(--amber);
}
.service-card:nth-child(4n+4) .svc-icon {
  background: rgba(20, 184, 166, 0.1);
  border-color: rgba(20, 184, 166, 0.25);
  color: var(--teal);
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
}

.svc-desc {
  font-size: 14px;
  color: var(--body);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.feature-list li {
  font-size: 13.5px;
  color: var(--body);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.feature-list li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
}

.learn-more {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  margin-top: auto;
  padding-top: 6px;
  display: inline-flex;
  gap: 6px;
  transition: gap .25s;
}

.learn-more:hover {
  gap: 12px;
  color: var(--accent2);
}

/* WHY */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 34px;
}

.why-stat {
  background: var(--surf);
  border: 1px solid var(--bd);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.05);
}

.why-stat .n {
  font-family: 'Sora', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--accent);
}

.why-stat:nth-child(4n+2) .n { color: var(--coral); }
.why-stat:nth-child(4n+3) .n { color: var(--amber); }
.why-stat:nth-child(4n+4) .n { color: var(--teal); }

.why-stat .l {
  font-size: 14px;
  color: var(--body);
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.why-point {
  display: flex;
  gap: 16px;
}

.why-point .pi {
  font-size: 24px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(124, 58, 237, 0.08);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-point:nth-child(4n+2) .pi { background: rgba(251, 113, 133, 0.1); color: var(--coral); }
.why-point:nth-child(4n+3) .pi { background: rgba(245, 158, 11, 0.1); color: var(--amber); }
.why-point:nth-child(4n+4) .pi { background: rgba(20, 184, 166, 0.1); color: var(--teal); }

.why-point h4 {
  font-family: 'Sora', sans-serif;
  color: var(--dark-slate);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}

.why-point p {
  font-size: 14px;
  color: var(--body);
}

/* TESTIMONIALS */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 54px;
}

.testi-card {
  padding: 28px;
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--surf);
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.08);
  border-color: var(--bd);
}

.stars {
  color: var(--amber);
  font-size: 16px;
  letter-spacing: 2px;
}

.testi-quote {
  font-size: 15px;
  color: var(--body);
  font-style: italic;
  line-height: 1.7;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--coral));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 15px;
  flex-shrink: 0;
}

.testi-card:nth-child(3n+2) .avatar { background: linear-gradient(135deg, var(--coral), var(--amber)); }
.testi-card:nth-child(3n+3) .avatar { background: linear-gradient(135deg, var(--teal), var(--accent)); }

.testi-author .an {
  color: var(--dark-slate);
  font-weight: 600;
  font-size: 15px;
}

.testi-author .ar {
  color: var(--muted);
  font-size: 13px;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 54px;
}

.contact-card {
  background: var(--surf);
  border: 1px solid var(--bd);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.05);
}

.contact-card .ci {
  font-size: 20px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(124, 58, 237, 0.08);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card:nth-child(3n+2) .ci { background: rgba(251, 113, 133, 0.1); color: var(--coral); }
.contact-card:nth-child(3n+3) .ci { background: rgba(245, 158, 11, 0.1); color: var(--amber); }

.contact-card .cl {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contact-card .cv {
  color: var(--dark-slate);
  font-size: 15px;
  font-weight: 500;
}

.wa-big {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 16px;
  border-radius: 10px;
  width: 100%;
  transition: all .3s;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
}

.wa-big:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(34, 197, 94, 0.3);
}

.map-box {
  margin-top: 14px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--bd);
  height: 220px;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.1) contrast(1.05);
}

.contact-form {
  background: var(--surf);
  border: 1px solid var(--bd);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 4px 24px rgba(124, 58, 237, 0.06);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 13px;
  color: var(--body);
  font-weight: 500;
}

.form-field input, .form-field textarea, .form-field select {
  background: var(--bg);
  border: 1px solid var(--bd);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--dark-slate);
  font-size: 14px;
  transition: border-color .25s, background-color .25s;
}

.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(25, 29, 48, 0.95);
}

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

.form-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #86efac;
  padding: 14px;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
}

/* FOOTER: deep indigo-black so the white logo reads perfectly and echoes the header */
.footer {
  background: var(--dark-slate);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 60px 0 30px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-col h5 {
  font-family: 'Sora', sans-serif;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul button, .footer-col ul a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: color .25s;
  text-align: inherit;
}

.footer-col ul button:hover, .footer-col ul a:hover {
  color: var(--amber);
}

.footer-brand .lname {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 10px;
}

.footer-logo {
  height: 48px;
  margin-bottom: 12px;
}

.footer-brand .lname b {
  color: var(--coral);
}

.footer-brand p {
  font-size: 14px;
  margin-bottom: 18px;
  max-width: 280px;
  color: rgba(255, 255, 255, 0.5);
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  transition: all .3s;
}

.social-row a:hover {
  border-color: var(--coral);
  background: rgba(251, 113, 133, 0.15);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 46px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
}

.footer-bottom .fl {
  display: flex;
  gap: 18px;
}

/* FLOATING WA */
.float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9990;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
  transition: transform .25s;
}

.float-wa:hover {
  transform: scale(1.1);
}

.float-wa svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.float-wa::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-out infinite;
  z-index: -1;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: .5; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* SHOP */
.titlebar {
  background: var(--bg2);
  border-bottom: 1px solid var(--bd);
  padding: 40px 0;
}

.breadcrumb {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.breadcrumb button:hover {
  color: var(--accent);
}

.breadcrumb .sep {
  opacity: .5;
}

.titlebar h1 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 8px;
}

.titlebar p {
  font-size: 16px;
  max-width: 560px;
  color: var(--body);
}

.shop-layout {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.sidebar {
  width: 280px;
  flex-shrink: 0;
  background: rgba(11, 13, 24, 0.92);
  border: 1px solid var(--bd);
  border-radius: 12px;
  padding: 24px;
  position: sticky;
  top: 90px;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.05);
}

.filter-group {
  margin-bottom: 26px;
}

.filter-group h4 {
  font-family: 'Sora', sans-serif;
  color: var(--dark-slate);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.search-box {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--bd);
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--dark-slate);
  font-size: 14px;
}

.search-box:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(25, 29, 48, 0.95);
}

.check-row, .radio-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  cursor: pointer;
  font-size: 14px;
  color: var(--body);
  transition: color .2s;
}

.check-row:hover, .radio-row:hover {
  color: var(--accent);
}

.check-row input, .radio-row input {
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.bdot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.clear-btn {
  width: 100%;
  border: 1px solid var(--bd);
  border-radius: 8px;
  padding: 11px;
  color: var(--body);
  font-size: 14px;
  font-weight: 600;
  transition: all .25s;
  background: var(--bg);
}

.clear-btn:hover {
  border-color: var(--coral);
  color: var(--coral);
  background: rgba(25, 29, 48, 0.95);
}

.shop-main {
  flex: 1;
  min-width: 0;
}

.shop-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--bd);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.showing-count {
  font-size: 14px;
  color: var(--body);
}

.showing-count b {
  color: var(--dark-slate);
}

.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  flex: 1;
  justify-content: center;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.2);
  color: var(--accent);
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.chip button {
  color: var(--accent);
  font-size: 14px;
  line-height: 1;
}

.chip button:hover {
  color: var(--accent2);
}

.shop-tools {
  display: flex;
  gap: 10px;
  align-items: center;
}

.sort-select {
  background: rgba(11, 13, 24, 0.92);
  border: 1px solid var(--bd);
  border-radius: 8px;
  padding: 9px 12px;
  color: var(--dark-slate);
  font-size: 13px;
}

.view-toggle {
  display: flex;
  border: 1px solid var(--bd);
  border-radius: 8px;
  overflow: hidden;
}

.view-toggle button {
  padding: 9px 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1;
  background: var(--bg2);
}

.view-toggle button.on {
  background: var(--accent);
  color: #fff;
}

.filter-btn-m {
  display: none;
}

/* PRODUCT GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--surf);
  border: 1px solid var(--bd);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.05);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(124, 58, 237, 0.12);
  border-color: rgba(124, 58, 237, 0.35);
}

.pimg-wrap {
  position: relative;
  aspect-ratio: 4/3;
  background: #0e1120;
}

.pimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  display: block;
}

.brand-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.app[dir="rtl"] .brand-badge {
  left: 12px;
  right: auto;
}

.pcard-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}

.cat-tag {
  font-size: 11px;
  color: var(--teal);
  background: rgba(20, 184, 166, 0.08);
  border: 1px solid rgba(20, 184, 166, 0.2);
  padding: 3px 9px;
  border-radius: 6px;
  align-self: flex-start;
  font-weight: 600;
}

.product-name {
  font-family: 'Sora', sans-serif;
  color: var(--dark-slate);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
}

.product-desc {
  font-size: 13px;
  color: var(--body);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}

.tag {
  font-size: 11px;
  color: var(--body);
  border: 1px solid var(--bd);
  background: var(--bg);
  padding: 3px 9px;
  border-radius: 20px;
}

.card-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  font-size: 13.5px;
  padding: 11px;
  border-radius: 8px;
  margin-top: auto;
  transition: filter .25s;
}

.card-wa:hover {
  filter: brightness(1.08);
}

.pcard-div {
  height: 1px;
  background: var(--bd);
  margin: 4px 0;
}

.product-grid.list {
  grid-template-columns: 1fr;
}

.product-grid.list .product-card {
  flex-direction: row;
}

.product-grid.list .pimg-wrap {
  width: 180px;
  flex-shrink: 0;
  aspect-ratio: auto;
}

.product-grid.list .pimg {
  border-radius: 0;
}

.product-grid.list .pcard-body {
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.product-grid.list .pc-main {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-grid.list .card-wa {
  margin: 0;
  width: 200px;
}

.grid-only {
  display: contents;
}

.product-grid.list .grid-only .pcard-div {
  display: none;
}

.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--muted);
}

/* DETAIL */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 28px;
}

.back-btn:hover {
  gap: 12px;
  color: var(--accent2);
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.detail-img {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--bd);
  cursor: zoom-in;
  background: #0e1120;
}

.img-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 10px;
}

.detail-badges {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.detail-info h1 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 6px;
}

.detail-info .h1ar {
  font-family: 'Tajawal', sans-serif;
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 14px;
}

.detail-desc {
  font-size: 16px;
  color: var(--body);
  margin-bottom: 8px;
}

.divider {
  height: 1px;
  background: var(--bd);
  margin: 24px 0;
}

.detail-info h3 {
  font-family: 'Sora', sans-serif;
  color: var(--dark-slate);
  font-size: 18px;
  margin-bottom: 14px;
}

.features-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.features-checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--body);
}

.features-checklist li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
}

.enquiry-box {
  background: var(--surf);
  border: 1px solid var(--bd);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 4px 18px rgba(124, 58, 237, 0.05);
}

.call-text {
  text-align: center;
  font-size: 14px;
  color: var(--body);
}

.call-text a {
  color: var(--accent);
  font-weight: 600;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(30, 21, 65, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.lightbox .lb-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 38px;
  color: #fff;
  line-height: 1;
}

/* RESPONSIVE CSS */
@media(max-width: 1024px) {
  .services-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .contact-grid, .detail-layout { grid-template-columns: 1fr; gap: 36px; }
  .hero h1 { font-size: 46px; }
}

@media(max-width: 768px) {
  .topbar { display: none; }
  .nav, .header-right .lang-switch { display: none; }
  .hamburger { display: flex; }
  .section { padding: 60px 0; }
  .header-inner { height: 75px; }
  .hero h1 { font-size: 34px; }
  .hero-sub, .sec-sub { font-size: 16px; }
  .sec-h2, .titlebar h1 { font-size: 30px; }
  .services-grid, .testi-grid, .product-grid { grid-template-columns: 1fr; }
  .stat { padding: 0 18px; }
  .stat-num { font-size: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 300px;
    z-index: 1000;
    border-radius: 0;
    transform: translateX(-100%);
    transition: transform .35s;
    overflow-y: auto;
    box-shadow: 6px 0 24px rgba(124, 58, 237, 0.12);
  }
  .sidebar.open { transform: translateX(0); }
  .app[dir="rtl"] .sidebar { right: 0; left: auto; transform: translateX(100%); }
  .app[dir="rtl"] .sidebar.open { transform: translateX(0); }
  .filter-btn-m {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    padding: 9px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
  }
  .product-grid.list .product-card { flex-direction: column; }
  .product-grid.list .pimg-wrap { width: 100%; aspect-ratio: 4/3; }
  .product-grid.list .pcard-body { flex-direction: column; align-items: stretch; }
  .product-grid.list .card-wa { width: 100%; }
  .chips { display: none; }
}

@media(max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}


/* =========================================================
   DARK MOTION UI — animation enhancement layer
   CSS-only visual effects + works with the existing .reveal JS
   ========================================================= */

:root {
  --dark-glow: rgba(139, 92, 246, .24);
  --cyan-glow: rgba(34, 211, 238, .18);
  --pink-glow: rgba(251, 113, 133, .16);
  --glass-bg: rgba(15, 18, 32, .68);
  --glass-bg-strong: rgba(18, 22, 39, .88);
  --shadow-dark: 0 24px 70px rgba(0, 0, 0, .34);
}

/* ---------- Global atmosphere ---------- */

html {
  background: var(--bg);
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  background:
    radial-gradient(circle at 15% 15%, rgba(139, 92, 246, .08), transparent 28%),
    radial-gradient(circle at 85% 35%, rgba(34, 211, 238, .055), transparent 26%),
    linear-gradient(180deg, #070812 0%, #090b14 45%, #070812 100%);
  color: var(--body);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .28;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

::selection {
  background: var(--accent);
  color: #fff;
}

/* ---------- Smooth section transitions ---------- */

.section {
  position: relative;
  isolation: isolate;
}

.section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(900px, 90%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(139,92,246,.25), transparent);
  opacity: .55;
}

/* ---------- Animated reveal states ---------- */

.reveal {
  opacity: 0;
  transform: translate3d(0, 45px, 0) scale(.985);
  filter: blur(5px);
  transition:
    opacity .8s cubic-bezier(.22,1,.36,1),
    transform .8s cubic-bezier(.22,1,.36,1),
    filter .8s ease;
  will-change: opacity, transform, filter;
}

.reveal.visible {
  opacity: 1;
  transform: translate3d(0,0,0) scale(1);
  filter: blur(0);
}

.services-grid .reveal:nth-child(2),
.testi-grid .reveal:nth-child(2),
.product-grid .reveal:nth-child(2) { transition-delay: .08s; }

.services-grid .reveal:nth-child(3),
.testi-grid .reveal:nth-child(3),
.product-grid .reveal:nth-child(3) { transition-delay: .16s; }

.services-grid .reveal:nth-child(4),
.testi-grid .reveal:nth-child(4),
.product-grid .reveal:nth-child(4) { transition-delay: .24s; }

.services-grid .reveal:nth-child(5),
.testi-grid .reveal:nth-child(5),
.product-grid .reveal:nth-child(5) { transition-delay: .32s; }

.services-grid .reveal:nth-child(6),
.testi-grid .reveal:nth-child(6),
.product-grid .reveal:nth-child(6) { transition-delay: .40s; }

/* ---------- Header ---------- */

.header {
  background: rgba(7, 8, 18, .72);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 8px 35px rgba(0,0,0,.16);
  transition: background .35s ease, box-shadow .35s ease;
}

.header:hover {
  background: rgba(7, 8, 18, .9);
}

.logo-img,
.footer-logo {
  filter: drop-shadow(0 0 12px rgba(139,92,246,.12));
}

.nav button {
  color: rgba(248,250,252,.76);
}

.nav button:hover {
  color: #fff;
  text-shadow: 0 0 18px rgba(139,92,246,.55);
}

.lang-switch {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.12);
}

/* ---------- Hero ---------- */

.hero {
  min-height: calc(100vh - 80px);
  background:
    radial-gradient(70% 80% at 50% 5%, rgba(139,92,246,.17), transparent 62%),
    radial-gradient(35% 50% at 78% 45%, rgba(34,211,238,.08), transparent 70%),
    linear-gradient(180deg, #080916 0%, #070812 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, var(--bg));
}

.hero-bg {
  opacity: .8;
  background-image:
    radial-gradient(circle, rgba(139,92,246,.23) 1px, transparent 1px);
  background-size: 38px 38px;
  animation: heroGrid 24s linear infinite;
}

@keyframes heroGrid {
  from { transform: translate3d(0,0,0); background-position: 0 0; }
  to { transform: translate3d(18px,12px,0); background-position: 380px 300px; }
}

.hero-glow {
  width: 760px;
  height: 520px;
  background:
    radial-gradient(circle, rgba(139,92,246,.22) 0%, rgba(34,211,238,.08) 36%, rgba(251,113,133,.05) 52%, transparent 72%);
  filter: blur(55px);
  animation: glowFloat 8s ease-in-out infinite alternate;
}

@keyframes glowFloat {
  from { transform: translateX(-50%) scale(.92); opacity: .72; }
  to { transform: translateX(-50%) scale(1.08); opacity: 1; }
}

.hero-inner {
  animation: heroEnter 1s cubic-bezier(.22,1,.36,1) both;
}

@keyframes heroEnter {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  color: #c4b5fd;
  background: rgba(139,92,246,.09);
  border-color: rgba(139,92,246,.32);
  box-shadow: 0 0 35px rgba(139,92,246,.09);
  animation: badgeFloat 4s ease-in-out infinite;
}

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

.hero h1 {
  color: #f8fafc;
  text-shadow: 0 10px 40px rgba(0,0,0,.35);
}

.hero h1 span:not(.grad) {
  color: #f8fafc !important;
}

.hero h1 .grad {
  background: linear-gradient(100deg, #a78bfa 0%, #fb7185 48%, #22d3ee 100%);
  background-size: 200% auto;
  animation: gradientFlow 5s ease-in-out infinite;
}

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

.hero-sub {
  color: #9da7bb;
}

.stat {
  border-color: rgba(255,255,255,.09);
}

.stat-label {
  color: #737d94;
}

/* ---------- Buttons ---------- */

.btn {
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.25), transparent);
  transform: skewX(-20deg);
  transition: left .65s ease;
}

.btn:hover::before {
  left: 150%;
}

.btn-primary {
  background: linear-gradient(110deg, #7c3aed, #8b5cf6, #6d28d9);
  background-size: 200% auto;
  box-shadow: 0 10px 35px rgba(124,58,237,.25);
}

.btn-primary:hover {
  background-position: 100% 50%;
  box-shadow: 0 14px 45px rgba(124,58,237,.38);
}

.btn-outline:hover {
  border-color: rgba(139,92,246,.55);
  background: rgba(139,92,246,.08);
  box-shadow: 0 10px 35px rgba(139,92,246,.12);
}

/* ---------- Brands marquee ---------- */

.brands {
  background: rgba(8,10,20,.78);
  border-color: rgba(255,255,255,.07);
  backdrop-filter: blur(14px);
}

.brand-pill {
  background: rgba(255,255,255,.025);
  border-color: rgba(255,255,255,.08);
  color: #9fa8ba;
  box-shadow: none;
  transition: transform .35s ease, border-color .35s ease, color .35s ease, background .35s ease;
}

.brand-pill:hover {
  transform: translateY(-4px);
  color: #fff;
  background: rgba(139,92,246,.07);
  border-color: rgba(139,92,246,.45);
  box-shadow: 0 12px 35px rgba(0,0,0,.28);
}

/* ---------- Glass cards ---------- */

.glass,
.service-card,
.testi-card,
.contact-card,
.contact-form,
.enquiry-box,
.why-stat,
.sidebar,
.product-card {
  background:
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018)),
    rgba(11,14,25,.72);
  border-color: rgba(255,255,255,.085);
  box-shadow: 0 12px 45px rgba(0,0,0,.20);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.service-card,
.testi-card,
.product-card,
.why-stat,
.contact-card {
  position: relative;
  overflow: hidden;
}

.service-card::before,
.testi-card::before,
.product-card::before,
.why-stat::before,
.contact-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,.65), transparent);
  opacity: .55;
  transform: scaleX(.35);
  transition: transform .5s ease, opacity .5s ease;
}

.service-card:hover::before,
.testi-card:hover::before,
.product-card:hover::before,
.why-stat:hover::before,
.contact-card:hover::before {
  transform: scaleX(1);
  opacity: 1;
}

.service-card:hover,
.testi-card:hover,
.product-card:hover,
.why-stat:hover,
.contact-card:hover {
  transform: translateY(-9px);
  border-color: rgba(139,92,246,.28);
  box-shadow: 0 25px 60px rgba(0,0,0,.32), 0 0 35px rgba(139,92,246,.07);
}

/* ---------- Section typography ---------- */

h1, h2, h3,
.why-point h4,
.product-name,
.filter-group h4,
.detail-info h3,
.titlebar h1 {
  color: #f1f5f9;
}

.sec-h2 {
  text-shadow: 0 8px 30px rgba(0,0,0,.25);
}

.sec-label {
  color: #a78bfa;
  text-shadow: 0 0 20px rgba(139,92,246,.35);
}

.sec-sub,
.svc-desc,
.feature-list li,
.why-point p,
.testi-quote,
.product-desc,
.detail-desc,
.features-checklist li,
.contact-card .cv {
  color: #9ca6ba;
}

/* ---------- Icons ---------- */

.svc-icon,
.why-point .pi,
.contact-card .ci {
  box-shadow: inset 0 0 20px rgba(139,92,246,.06), 0 8px 30px rgba(0,0,0,.18);
  transition: transform .35s ease, box-shadow .35s ease;
}

.service-card:hover .svc-icon,
.why-point:hover .pi,
.contact-card:hover .ci {
  transform: translateY(-4px) rotate(-3deg) scale(1.05);
  box-shadow: 0 0 28px rgba(139,92,246,.15);
}

/* ---------- Testimonials ---------- */

.testi-quote {
  color: #aeb7c8;
}

.testi-author .an {
  color: #f1f5f9;
}

.testi-author .ar {
  color: #737d94;
}

/* ---------- Contact ---------- */

.contact-form input,
.contact-form textarea,
.contact-form select,
.form-field input,
.form-field textarea,
.form-field select,
.search-box,
.sort-select {
  background: rgba(5,7,15,.58);
  border-color: rgba(255,255,255,.1);
  color: #e5e7eb;
}

.form-field input::placeholder,
.form-field textarea::placeholder,
.search-box::placeholder {
  color: #5f687c;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus,
.search-box:focus {
  background: rgba(10,13,24,.9);
  border-color: rgba(139,92,246,.65);
  box-shadow: 0 0 0 4px rgba(139,92,246,.08), 0 0 30px rgba(139,92,246,.08);
}

.map-box {
  border-color: rgba(255,255,255,.1);
  box-shadow: 0 18px 45px rgba(0,0,0,.25);
}

.map-box iframe {
  filter: grayscale(.75) contrast(1.1) brightness(.72) saturate(.75);
}

/* ---------- Shop / product area ---------- */

.titlebar {
  background:
    radial-gradient(circle at 80% 20%, rgba(139,92,246,.12), transparent 35%),
    rgba(7,8,18,.8);
  border-color: rgba(255,255,255,.08);
}

.sidebar {
  background: rgba(12,15,27,.86);
}

.check-row,
.radio-row,
.showing-count,
.breadcrumb,
.titlebar p,
.product-desc {
  color: #8e98ad;
}

.search-box,
.sort-select,
.view-toggle,
.view-toggle button,
.clear-btn,
.tag {
  background: rgba(255,255,255,.025);
  border-color: rgba(255,255,255,.09);
  color: #cbd5e1;
}

.product-card {
  transform: translateZ(0);
}

.pimg-wrap {
  background:
    radial-gradient(circle at 50% 40%, rgba(139,92,246,.09), transparent 65%),
    #0b0e18;
}

.pimg {
  transition: transform .65s cubic-bezier(.22,1,.36,1), filter .65s ease;
}

.product-card:hover .pimg {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.03);
}

.pcard-div {
  background: rgba(255,255,255,.08);
}

.product-name {
  color: #f1f5f9;
}

.tag {
  color: #8e98ad;
}

/* ---------- Floating WhatsApp ---------- */

.float-wa {
  box-shadow: 0 12px 35px rgba(34,197,94,.25), 0 0 0 1px rgba(255,255,255,.06);
}

.float-wa:hover {
  box-shadow: 0 18px 45px rgba(34,197,94,.38);
}

@keyframes pulse {
  0% { transform: scale(1); opacity: .42; }
  70% { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* ---------- Footer ---------- */

.footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 0%, rgba(139,92,246,.11), transparent 28%),
    radial-gradient(circle at 85% 100%, rgba(34,211,238,.07), transparent 28%),
    #05060d;
  border-top-color: rgba(255,255,255,.08);
}

.footer::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -260px;
  top: -260px;
  border-radius: 50%;
  border: 1px solid rgba(139,92,246,.10);
  box-shadow:
    0 0 0 80px rgba(139,92,246,.025),
    0 0 0 160px rgba(139,92,246,.018);
  animation: footerOrb 12s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes footerOrb {
  from { transform: translate(0,0) scale(.92); }
  to { transform: translate(-35px,25px) scale(1.08); }
}

/* ---------- Lightbox / overlays ---------- */

.lightbox {
  background: rgba(3,4,9,.94);
  backdrop-filter: blur(14px);
}

.mobile-menu {
  background: #0b0d18;
  border-color: rgba(255,255,255,.09);
}

.mobile-menu button.mnav,
.mm-close {
  color: #e5e7eb;
}

.mobile-menu button.mnav {
  border-color: rgba(255,255,255,.08);
}

/* ---------- Reduced motion accessibility ---------- */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

/* ---------- Mobile motion tuning ---------- */

@media (max-width: 768px) {
  body::before {
    background-size: 48px 48px;
  }

  .hero {
    min-height: calc(100svh - 75px);
  }

  .hero-glow {
    width: 480px;
    height: 380px;
  }

  .hero h1 {
    text-shadow: 0 8px 25px rgba(0,0,0,.4);
  }

  .section {
    padding: 72px 0;
  }

  .service-card:hover,
  .testi-card:hover,
  .product-card:hover,
  .why-stat:hover,
  .contact-card:hover {
    transform: translateY(-5px);
  }
}
