/* ═══════════════════════════════════════════════
   FEEL GREAT AGENCY — Premium Design System
   ═══════════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }

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

/* ── Section utilities ── */
.section-tag {
  display: inline-block;
  font-size: .75rem; font-weight: 800; letter-spacing: 3px; text-transform: uppercase;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 900;
  color: var(--text); line-height: 1.25; margin-bottom: 14px;
}
.section-subtitle {
  font-size: 1rem; color: #8898a8;
  max-width: 520px; margin: 0 auto 56px;
}
.section-header { text-align: center; margin-bottom: 56px; }


/* ════════════════════════════════════════════════
   HEADER — Glassmorphism nav
   ════════════════════════════════════════════════ */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 40px;
  transition: background .4s, box-shadow .4s, backdrop-filter .4s;
}
#header.scrolled {
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 2px 32px rgba(0,0,0,.08);
}

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

/* Logo */
.logo, a.logo { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 42px; width: auto; object-fit: contain; }
.logo-icon { width: 38px; height: 38px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main {
  font-size: 1.05rem; font-weight: 900; letter-spacing: .5px;
  color: #fff; transition: color .3s;
}
.logo-sub {
  font-size: .52rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,.65); transition: color .3s;
}
#header.scrolled .logo-main { color: var(--primary); }
#header.scrolled .logo-sub  { color: var(--primary); opacity: .55; }

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 18px; border-radius: 50px;
  font-size: .88rem; font-weight: 700; color: rgba(255,255,255,.9);
  transition: background .25s, color .25s;
}
.nav-links a:hover { background: rgba(255,255,255,.2); }
#header.scrolled .nav-links a { color: var(--primary); }
#header.scrolled .nav-links a:hover { background: rgba(61,26,142,.08); }

/* ── Dropdown nav ── */
.nav-dropdown { position: relative; }

.nav-dropdown-btn {
  display: flex; align-items: center; gap: 2px;
  padding: 8px 18px; border-radius: 50px; border: none; background: none; cursor: pointer;
  font-size: .88rem; font-weight: 700; color: rgba(255,255,255,.9);
  font-family: var(--font, 'Cairo'), sans-serif;
  transition: background .25s, color .25s;
}
.nav-dropdown-btn:hover { background: rgba(255,255,255,.2); }
#header.scrolled .nav-dropdown-btn { color: var(--primary); }
#header.scrolled .nav-dropdown-btn:hover { background: rgba(61,26,142,.08); }

.nav-dropdown-menu {
  display: none; list-style: none; margin: 0; padding: 8px 0;
  position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 180px; background: #fff;
  border-radius: 14px; box-shadow: 0 8px 32px rgba(0,0,0,.14);
  border: 1px solid rgba(0,0,0,.06); z-index: 200;
  animation: dropIn .2s ease;
}
@keyframes dropIn { from { opacity:0; transform:translateY(-6px) } to { opacity:1; transform:translateY(0) } }

.nav-dropdown-menu li a {
  display: block; padding: 10px 20px;
  font-size: .88rem; font-weight: 600; color: var(--primary);
  transition: background .2s;
  border-radius: 8px; margin: 2px 6px;
}
.nav-dropdown-menu li a:hover { background: rgba(61,26,142,.07); }
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown.open .nav-dropdown-btn svg { transform: rotate(180deg); }

/* Mobile dropdown */
.mobile-dropdown-toggle {
  display: flex; align-items: center; gap: 6px; width: 100%;
  padding: 14px 24px; background: none; border: none; cursor: pointer;
  font-family: var(--font,'Cairo'),sans-serif; font-size: 1rem; font-weight: 700;
  color: var(--primary); text-align: right; border-bottom: 1px solid rgba(61,26,142,.08);
}
.mobile-products-list { display: none; }
.mobile-products-list.open { display: block; }
.mobile-products-list a {
  display: block; padding: 11px 36px;
  font-size: .9rem; color: #555; border-bottom: 1px solid rgba(0,0,0,.05);
  font-weight: 600;
}
.mobile-dropdown-toggle.open svg { transform: rotate(180deg); }

/* Mobile button */
.mobile-menu-btn {
  display: none; align-items: center; justify-content: center;
  width: 40px; height: 40px; border: none;
  background: rgba(255,255,255,.15); border-radius: 10px;
  cursor: pointer; color: #fff; transition: background .25s, color .25s;
}
#header.scrolled .mobile-menu-btn { background: rgba(0,0,0,.05); color: var(--primary); }

/* Mobile nav drawer */
.mobile-nav {
  display: flex; flex-direction: column;
  background: rgba(255,255,255,.97); backdrop-filter: blur(20px);
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  border-top: 1px solid transparent;
}
.mobile-nav.open { max-height: 420px; padding: 12px 0; border-color: rgba(0,0,0,.06); }
.mobile-nav a {
  padding: 13px 28px; font-size: .95rem; font-weight: 700;
  color: var(--primary); border-bottom: 1px solid rgba(0,0,0,.04);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { background: rgba(61,26,142,.05); }


/* ════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════ */
#hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  background: linear-gradient(135deg, var(--hero-start) 0%, var(--hero-end) 100%);
}

/* Video background */
.hero-video {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* Smart overlay — sits above video, below content */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-grid {
  position: absolute; inset: 0; z-index: 2;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 56px 56px; pointer-events: none;
}

.hero-orb {
  position: absolute; border-radius: 50%; z-index: 1;
  filter: blur(90px); pointer-events: none;
  animation: orbFloat 10s ease-in-out infinite;
}
.hero-orb-1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(168,85,247,.35), transparent 70%);
  top: -200px; right: -120px; animation-delay: 0s;
}
.hero-orb-2 {
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(251,191,36,.25), transparent 70%);
  bottom: -100px; left: -80px; animation-delay: -4s;
}
.hero-orb-3 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(96,165,250,.2), transparent 70%);
  top: 50%; left: 55%; animation-delay: -7s;
}
@keyframes orbFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(25px,-18px) scale(1.04); }
  66%      { transform: translate(-18px,25px) scale(.97); }
}

.hero-content {
  position: relative; z-index: 10; text-align: center;
  padding: 130px 24px 100px; max-width: 820px; width: 100%;
}

/* ── Hero Animated Announcements ── */
.hero-announcement {
  margin-bottom: 35px;
  perspective: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero-announcement-title1 {
  font-size: clamp(1.5rem, 4.5vw, 2.8rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  line-height: 1.3;
}
.hero-announcement-title2 {
  font-size: clamp(2.2rem, 6.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.25;
  background: linear-gradient(135deg, #ffffff 20%, #ffe600 70%, #ff5e7e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.45));
}
.hero-announcement-title1.animating,
.hero-announcement-title2.animating {
  mask-image: linear-gradient(to left, #000 0%, #000 calc(var(--mask-percent, 0%) - 10%), transparent calc(var(--mask-percent, 0%) + 10%));
  -webkit-mask-image: linear-gradient(to left, #000 0%, #000 calc(var(--mask-percent, 0%) - 10%), transparent calc(var(--mask-percent, 0%) + 10%));
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.14); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.32); color: #fff;
  padding: 7px 22px; border-radius: 50px;
  font-size: .82rem; font-weight: 800; letter-spacing: 1.5px;
  margin-bottom: 32px; animation: fadeDown .9s ease both;
  box-shadow: 0 4px 24px rgba(0,0,0,.2);
  text-shadow: 0 1px 6px rgba(0,0,0,.25);
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 8px var(--accent);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.6); opacity: .5; }
}

.hero-tagline { display: none; }

.hero-title {
  font-size: clamp(2.6rem, 6.5vw, 5rem); font-weight: 900;
  color: #fff; line-height: 1.15; margin-bottom: 24px;
  animation: fadeUp .9s .15s ease both;
  text-shadow: 0 2px 24px rgba(0,0,0,.4), 0 0 60px rgba(0,0,0,.15);
  letter-spacing: -.5px;
}
.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--accent), #fbbf24, #f472b6);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 2px 14px rgba(0,0,0,.45));
  text-shadow: none;
}

.hero-desc {
  color: rgba(255,255,255,.9); font-size: 1.08rem; line-height: 1.9;
  margin-bottom: 48px; animation: fadeUp .9s .3s ease both;
  font-weight: 500;
  text-shadow: 0 1px 12px rgba(0,0,0,.35);
}
.hero-desc p + p { margin-top: 4px; }

.hero-cta {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap; animation: fadeUp .9s .45s ease both;
}

.btn-hero {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--btn-from), var(--btn-to));
  color: #fff; padding: 16px 44px; border-radius: var(--radius);
  font-size: 1.05rem; font-weight: 800;
  box-shadow: 0 8px 36px rgba(0,0,0,.25);
  transition: transform .3s, box-shadow .3s; position: relative; overflow: hidden;
}
.btn-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.18), transparent);
  opacity: 0; transition: opacity .3s;
}
.btn-hero:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.3); }
.btn-hero:hover::after { opacity: 1; }

.wa-icon { width: 22px; height: 22px; flex-shrink: 0; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(255,255,255,.38); color: #fff;
  padding: 14px 36px; border-radius: var(--radius);
  font-size: 1rem; font-weight: 700; backdrop-filter: blur(8px);
  transition: all .3s;
}
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.7); }

.scroll-indicator {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.4); font-size: .7rem; font-weight: 600; letter-spacing: 1px;
  animation: scrollBounce 2.2s infinite; pointer-events: none;
}
.scroll-indicator-line { width: 1px; height: 52px; background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent); }
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-9px); }
}

.hero-wave { position: absolute; bottom: -2px; left: 0; right: 0; z-index: 11; }
.hero-wave svg { width: 100%; display: block; }


/* ════════════════════════════════════════════════
   STATS — Trust signals
   ════════════════════════════════════════════════ */
#stats { padding: 80px 0; background: var(--bg); }

.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 24px;
}
.stat-card {
  background: #fff; border-radius: 22px; padding: 36px 24px; text-align: center;
  position: relative; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.055); border: 1px solid rgba(0,0,0,.04);
  transition: transform .35s, box-shadow .35s;
}
.stat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
.stat-card:hover { transform: translateY(-7px); box-shadow: 0 18px 50px rgba(0,0,0,.1); }
.stat-icon { font-size: 2.4rem; display: block; margin-bottom: 14px; }
.stat-number { font-size: 2.8rem; font-weight: 900; color: var(--primary); line-height: 1; display: block; }
.stat-suffix { font-size: 1.6rem; }
.stat-label { font-size: .82rem; font-weight: 700; color: #9aabb8; margin-top: 8px; display: block; letter-spacing: .5px; }


/* ════════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════════ */
#testimonials {
  padding: 96px 0;
  background: linear-gradient(160deg, #faf8ff 0%, #fdf2f8 50%, #eff6ff 100%);
  overflow: hidden;
}

.carousel-wrap {
  position: relative; display: flex; align-items: center; gap: 16px;
  padding: 0 28px; max-width: 1280px; margin: 0 auto;
}
.carousel-viewport { flex: 1; overflow: hidden; border-radius: 24px; }
.carousel-track {
  display: flex; gap: 20px;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.carousel-slide { flex-shrink: 0; border-radius: 22px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.16); }
.carousel-slide img { width: 100%; aspect-ratio: 9/16; object-fit: cover; display: block; }

.carousel-btn {
  width: 54px; height: 54px; border-radius: 50%; border: none;
  background: #fff; box-shadow: 0 4px 20px rgba(0,0,0,.12);
  cursor: pointer; font-size: 1.5rem; color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all .3s;
}
.carousel-btn:hover { background: var(--primary); color: #fff; transform: scale(1.1); box-shadow: 0 8px 30px rgba(61,26,142,.3); }

.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
.carousel-dot { width: 9px; height: 9px; border-radius: 50%; background: #dde4ed; cursor: pointer; transition: all .35s; border: none; padding: 0; }
.carousel-dot.active { width: 30px; border-radius: 5px; background: var(--primary); }


/* ════════════════════════════════════════════════
   PRODUCTS
   ════════════════════════════════════════════════ */
#products { padding: 100px 0; background: var(--bg); }

.products-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 28px; }

.product-card {
  background: #fff; border-radius: 28px; padding: 40px 30px 30px;
  position: relative; overflow: hidden; display: flex; flex-direction: column;
  border: 1px solid rgba(0,0,0,.045); box-shadow: 0 4px 28px rgba(0,0,0,.065);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), box-shadow .4s;
}
.product-card.has-img { padding-top: 0; }
.product-card::before { content: ''; position: absolute; top:0;left:0;right:0; height: 5px; background: var(--card-color); z-index:1; }
.card-img-wrap {
  margin: 0 -1px; /* flush to card edges */
  height: 190px;
  position: relative;
  border-radius: 28px 28px 0 0;
  overflow: hidden;
  flex-shrink: 0;
}
.card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.card-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 75%;
  background: linear-gradient(to bottom, transparent 0%, #fff 100%);
  pointer-events: none;
}
.product-card.has-img .product-icon-wrap { display: none; }
.product-card.has-img::after { display: none; }
.product-card.has-img h3,
.product-card.has-img .product-sub,
.product-card.has-img .product-desc,
.product-card.has-img .product-actions { position: relative; z-index: 1; }
.product-card.has-img .product-badge { z-index: 3; top: 14px; left: 14px; }
.product-card::after {
  content: ''; position: absolute; top:-60px; right:-60px;
  width: 220px; height: 220px; border-radius: 50%; background: var(--card-color);
  opacity: .07; pointer-events: none;
}
.product-card:hover { transform: translateY(-10px); box-shadow: 0 28px 70px rgba(0,0,0,.12); }

.product-badge {
  position: absolute; top: 20px; left: 20px;
  background: var(--card-color); color: #fff;
  padding: 4px 14px; border-radius: 50px;
  font-size: .72rem; font-weight: 800; letter-spacing: .5px;
}

.product-icon-wrap {
  width: 70px; height: 70px; border-radius: 20px;
  background: rgba(0,0,0,.04);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; position: relative; z-index: 1;
}
.product-icon-wrap svg { width: 42px; height: 42px; }

.product-card h3 { font-size: 1.45rem; font-weight: 900; color: var(--card-color); margin-bottom: 5px; position: relative; z-index: 1; }
.product-sub { font-size: .85rem; font-weight: 600; color: #a0aab8; margin-bottom: 14px; position: relative; z-index: 1; }
.product-desc { font-size: .9rem; color: #6b7a8d; line-height: 1.85; flex: 1; margin-bottom: 26px; position: relative; z-index: 1; }

.product-actions { display: flex; flex-direction: column; gap: 10px; position: relative; z-index: 1; }

.btn-product-detail {
  display: flex; align-items: center; justify-content: center;
  padding: 12px; border-radius: 14px; border: 2px solid var(--card-color);
  color: var(--card-color); font-size: .9rem; font-weight: 700; transition: all .3s;
}
.btn-product-detail:hover { background: var(--card-color); color: #fff; }

.btn-product {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px; border-radius: 14px; color: #fff;
  font-size: .95rem; font-weight: 800;
  box-shadow: 0 6px 24px rgba(0,0,0,.18); transition: all .3s;
}
.btn-product:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,0,0,.22); filter: brightness(1.08); }


/* ════════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════════ */
#about { padding: 100px 0; background: linear-gradient(160deg,#faf8ff 0%,#fff 100%); }

.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

.about-text h2 { font-size: clamp(1.8rem,3.5vw,2.6rem); font-weight: 900; color: var(--text); margin-bottom: 20px; }
.about-text p { font-size: 1rem; color: #6b7a8d; line-height: 2; margin-bottom: 36px; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg,var(--primary),var(--accent));
  color: #fff; padding: 15px 38px; border-radius: var(--radius);
  font-weight: 800; font-size: 1rem; box-shadow: 0 8px 28px rgba(0,0,0,.16); transition: all .3s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,.22); }

.about-visual { display: flex; justify-content: center; position: relative; }
.about-blob {
  width: 340px; height: 340px;
  background: linear-gradient(135deg,var(--primary),var(--accent));
  border-radius: 60% 40% 55% 45%/50% 60% 40% 50%;
  opacity: .1; position: absolute; top:50%;left:50%;transform:translate(-50%,-50%);
  animation: blobMorph 8s ease-in-out infinite;
}
@keyframes blobMorph {
  0%,100% { border-radius: 60% 40% 55% 45%/50% 60% 40% 50%; }
  33%      { border-radius: 40% 60% 45% 55%/60% 40% 60% 40%; }
  66%      { border-radius: 55% 45% 60% 40%/40% 55% 45% 55%; }
}
.about-circle { width: 300px; height: 300px; position: relative; z-index: 1; animation: rotateSlow 22s linear infinite; }
@keyframes rotateSlow { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

.about-visual-img {
  width: 300px; height: 300px;
  border-radius: 50%; object-fit: cover;
  position: relative; z-index: 1;
  box-shadow: 0 24px 64px rgba(61,26,142,.28), 0 0 0 8px rgba(61,26,142,.07);
  animation: floatImg 4s ease-in-out infinite;
}
@keyframes floatImg {
  0%,100% { transform: translateY(0px) scale(1); }
  50%     { transform: translateY(-18px) scale(1.02); }
}

#about { position: relative; }
.section-edit-btn {
  position: absolute; top: 20px; left: 20px; z-index: 20;
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg,#9B27AF,#E91E8C);
  color: #fff; padding: 9px 20px; border-radius: 50px;
  font-size: .82rem; font-weight: 700; text-decoration: none;
  box-shadow: 0 4px 18px rgba(155,39,175,.35);
  transition: all .25s; opacity: .88;
  font-family: var(--font);
}
.section-edit-btn:hover { opacity: 1; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(155,39,175,.45); }


/* ════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════ */
#contact {
  padding: 100px 0;
  background: linear-gradient(135deg,var(--primary) 0%,var(--hero-end) 100%);
  position: relative; overflow: hidden;
}
#contact::before {
  content:'';position:absolute;inset:0;pointer-events:none;
  background-image:linear-gradient(rgba(255,255,255,.03)1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.03)1px,transparent 1px);
  background-size:44px 44px;
}
#contact .section-title { color: #fff; }
.contact-subtitle { color: rgba(255,255,255,.6); text-align: center; font-size: 1rem; margin-bottom: 56px; }

.contact-cards { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }

.contact-card {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: 38px 44px;
  background: rgba(255,255,255,.1); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.18); border-radius: 26px;
  color: #fff; min-width: 190px; transition: all .35s;
}
.contact-card:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.4); transform: translateY(-7px); box-shadow: 0 20px 50px rgba(0,0,0,.2); }
.contact-card .card-icon { width: 56px; height: 56px; background: rgba(255,255,255,.15); border-radius: 16px; display: flex; align-items: center; justify-content: center; }
.contact-card .card-icon svg { width: 28px; height: 28px; }
.contact-card span { font-weight: 800; font-size: 1.05rem; }
.contact-card small { font-size: .8rem; opacity: .65; }

/* ── Lead Capture Box ── */
.lead-box {
  margin-top: 48px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 28px;
  padding: 32px 36px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.lead-box-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.lead-box-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,.15);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.lead-box-title {
  font-size: 1.1rem; font-weight: 800; color: #fff; margin: 0 0 4px;
}
.lead-box-sub {
  font-size: .85rem; color: rgba(255,255,255,.6); margin: 0;
}
.lead-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  background: rgba(0,0,0,.15);
  border-radius: 50px;
  padding: 4px;
}
.lead-tab {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 9px 16px;
  border: none; border-radius: 50px;
  background: transparent;
  color: rgba(255,255,255,.6);
  font-family: 'Cairo', sans-serif;
  font-size: .85rem; font-weight: 700;
  cursor: pointer;
  transition: all .25s;
}
.lead-tab.active {
  background: #fff;
  color: #3D1A8E;
  box-shadow: 0 2px 10px rgba(0,0,0,.15);
}
.lead-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.lead-fields {
  display: flex;
  gap: 10px;
  flex: 1;
  flex-wrap: wrap;
}
.lead-input {
  flex: 1;
  min-width: 160px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1.5px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.12);
  color: #fff;
  font-family: 'Cairo', sans-serif;
  font-size: .9rem;
  outline: none;
  transition: border-color .2s, background .2s;
}
.lead-input::placeholder { color: rgba(255,255,255,.45); }
.lead-input:focus { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.18); }
.lead-submit {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  border: none; border-radius: 14px;
  background: #fff;
  color: #3D1A8E;
  font-family: 'Cairo', sans-serif;
  font-size: .9rem; font-weight: 800;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.lead-submit:hover { transform: scale(1.04); box-shadow: 0 6px 20px rgba(0,0,0,.2); }
.lead-success {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  background: rgba(37,211,102,.15);
  border: 1px solid rgba(37,211,102,.35);
  border-radius: 14px;
  color: #fff;
  font-weight: 700;
  margin-top: 4px;
}
@media (max-width: 600px) {
  .lead-box { padding: 24px 20px; }
  .lead-fields { flex-direction: column; }
  .lead-submit { width: 100%; justify-content: center; }
}

/* ════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════ */
#footer { background: var(--footer-bg); padding: 44px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-logo { display: flex; flex-direction: column; }
.footer-logo span { font-size: 1.05rem; font-weight: 900; color: var(--footer-text); letter-spacing: .5px; }
.footer-logo small { font-size: .55rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--footer-text); opacity: .4; margin-top: 2px; }
.footer-copy { font-size: .82rem; color: var(--footer-text); opacity: .5; }
.footer-admin-link { font-size: .78rem; color: var(--footer-text); opacity: .3; transition: opacity .2s; }
.footer-admin-link:hover { opacity: .7; }


/* ════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(40px); transition: opacity .75s ease, transform .75s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(-40px); transition: opacity .75s ease, transform .75s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.d1{transition-delay:.1s!important} .d2{transition-delay:.2s!important}
.d3{transition-delay:.3s!important} .d4{transition-delay:.4s!important} .d5{transition-delay:.5s!important}


/* ════════════════════════════════════════════════
   KEYFRAMES
   ════════════════════════════════════════════════ */
@keyframes fadeDown { from{opacity:0;transform:translateY(-22px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeUp   { from{opacity:0;transform:translateY(28px)}  to{opacity:1;transform:translateY(0)} }


/* ════════════════════════════════════════════════
   BREADCRUMB (product detail page)
   ════════════════════════════════════════════════ */
.breadcrumb {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  padding: 14px 40px; font-size: .85rem; color: #a0aab8;
  background: var(--nav-bg); border-bottom: 1px solid rgba(0,0,0,.05);
}
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: #d0d8e0; }


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

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-visual { display: none; }
}

@media (max-width: 768px) {
  #header { padding: 0 20px; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
  .hero-content { padding: 110px 20px 90px; }
  .btn-hero, .btn-outline { padding: 14px 28px; font-size: .95rem; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .stat-number { font-size: 2.2rem; }
  .products-grid { grid-template-columns: 1fr; }
  .contact-cards { flex-direction: column; align-items: center; }
  .contact-card { width: 100%; max-width: 340px; padding: 30px 28px; }
  .footer-inner { flex-direction: column; text-align: center; gap: 10px; }
  .section-subtitle { margin-bottom: 36px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-card { padding: 24px 16px; }
  .hero-cta { flex-direction: column; }
  .carousel-btn { display: none; }
}
