/* ========== Variables & Reset ========== */
:root {
  --azure: #167EF9;
  --sky-blue: #33D9FF;
  --navy: #11164E;
  --navy-light: #1a1f5e;
  --navy-dark: #0c1038;
  --yellow: #FFD833;
  --white: #ffffff;
  --light-bg: #f4f6fb;
  --card-bg: #ffffff;
  --text-dark: #1a1a2e;
  --text-muted: #5a5a7a;
  --text-light: #c8d0e0;
  --font: 'IBM Plex Sans Arabic', sans-serif;
  --header-height: 80px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-sm: 10px;
  --shadow-xs: 0 1px 3px rgba(17, 22, 78, 0.04);
  --shadow-sm: 0 2px 12px rgba(17, 22, 78, 0.06);
  --shadow-md: 0 8px 30px rgba(17, 22, 78, 0.08);
  --shadow-lg: 0 16px 50px rgba(17, 22, 78, 0.12);
  --shadow-glow: 0 0 60px rgba(51, 217, 255, 0.08);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --gradient-brand: linear-gradient(135deg, var(--sky-blue), var(--azure));
  --gradient-dark: linear-gradient(135deg, var(--navy), var(--navy-dark));
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font);
  color: var(--text-dark);
  line-height: 1.8;
  overflow-x: hidden;
  background: var(--light-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

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

/* ========== Scroll Animations ========== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Header ========== */
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: rgba(17, 22, 78, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  height: var(--header-height);
  transition: all 0.4s var(--ease);
  border-bottom: 1px solid rgba(51, 217, 255, 0.06);
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
  background: rgba(17, 22, 78, 0.97);
  border-bottom-color: rgba(51, 217, 255, 0.1);
}

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

.logo img {
  height: 56px;
  width: auto;
  transition: transform 0.3s var(--ease);
}

.logo:hover img {
  transform: scale(1.05);
}

.nav-list {
  display: flex;
  gap: 4px;
}

.nav-link {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease);
  position: relative;
  letter-spacing: 0.01em;
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

.nav-link.active {
  color: var(--sky-blue);
  background: rgba(51, 217, 255, 0.08);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: 18px;
  left: 18px;
  height: 2px;
  background: var(--gradient-brand);
  border-radius: 2px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.mobile-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(51, 217, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(51, 217, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 70%);
}

.hero-decoration {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
  filter: blur(100px);
}

.hero-decoration--right {
  background: var(--sky-blue);
  top: -150px;
  right: -150px;
  width: 600px;
  height: 600px;
}

.hero-decoration--left {
  background: var(--yellow);
  bottom: -100px;
  left: -150px;
  width: 500px;
  height: 500px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  animation: hero-float 8s ease-in-out infinite;
}

.hero-glow--1 {
  width: 300px;
  height: 300px;
  background: rgba(51, 217, 255, 0.06);
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.hero-glow--2 {
  width: 250px;
  height: 250px;
  background: rgba(22, 126, 249, 0.05);
  bottom: 20%;
  left: 15%;
  animation-delay: -4s;
}

@keyframes hero-float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -20px); }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 36px;
  position: relative;
  z-index: 2;
  padding: 40px 24px 60px;
}

.hero-card {
  background: linear-gradient(135deg, var(--sky-blue), rgba(51, 217, 255, 0.5));
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: 0 20px 60px rgba(51, 217, 255, 0.15);
}

.hero-image-frame {
  position: relative;
  border-radius: calc(var(--radius-lg) - 4px);
  overflow: hidden;
  border: 2px solid rgba(17, 22, 78, 0.2);
}

.hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(51, 217, 255, 0.08);
  border: 1px solid rgba(51, 217, 255, 0.15);
  border-radius: 100px;
  color: var(--sky-blue);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--sky-blue);
  border-radius: 50%;
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--yellow);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 2;
  font-weight: 300;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  border-radius: 12px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  border: none;
  letter-spacing: 0.01em;
}

.btn-outline {
  border: 1.5px solid rgba(51, 217, 255, 0.4);
  color: var(--sky-blue);
  background: transparent;
}

.btn-outline:hover {
  background: var(--sky-blue);
  color: var(--navy);
  border-color: var(--sky-blue);
  box-shadow: 0 8px 30px rgba(51, 217, 255, 0.25);
  transform: translateY(-2px);
}

.btn-outline svg {
  transition: transform 0.3s var(--ease);
}

.btn-outline:hover svg {
  transform: translateX(-4px);
}

.btn-primary {
  background: var(--gradient-brand);
  color: var(--white);
}

.btn-primary:hover {
  box-shadow: 0 8px 30px rgba(51, 217, 255, 0.3);
  transform: translateY(-2px);
}

.btn-cta {
  background: var(--white);
  color: var(--navy);
  padding: 16px 40px;
  font-size: 1rem;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.btn-cta svg {
  transition: transform 0.3s var(--ease);
}

.btn-cta:hover svg {
  transform: translateX(-4px);
}

/* ========== Section Shared ========== */
.section {
  padding: 100px 0;
  position: relative;
}

.section--light {
  background: var(--light-bg);
}

.section--dark {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.section--navy {
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--azure);
  background: rgba(22, 126, 249, 0.08);
  border: 1px solid rgba(22, 126, 249, 0.12);
  padding: 6px 20px;
  border-radius: 100px;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.section-tag--light {
  color: var(--sky-blue);
  background: rgba(51, 217, 255, 0.08);
  border-color: rgba(51, 217, 255, 0.15);
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-title--light {
  color: var(--white);
}

.section-line {
  width: 80px;
  height: 3px;
  background: var(--gradient-brand);
  margin: 0 auto;
  border-radius: 3px;
}

.section-line--light {
  background: linear-gradient(90deg, var(--sky-blue), rgba(255,255,255,0.3));
}

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

.about-content {
  max-width: 100%;
}

.about-content p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 2.1;
  font-weight: 400;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid rgba(17, 22, 78, 0.04);
  box-shadow: var(--shadow-xs);
  transition: all 0.35s var(--ease);
}

.about-highlight:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(51, 217, 255, 0.12);
}

.about-highlight-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, rgba(22, 126, 249, 0.08), rgba(51, 217, 255, 0.1));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--azure);
}

.about-highlight h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.about-highlight p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ========== Stats ========== */
.stats-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(51, 217, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(51, 217, 255, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}

.stat-card {
  text-align: center;
  padding: 32px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(51, 217, 255, 0.1);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  transition: all 0.35s var(--ease);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(51, 217, 255, 0.2);
  transform: translateY(-4px);
}

.stat-card:hover .stat-number,
.stat-card:hover .stat-suffix {
  color: #ffd833;
}

.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--sky-blue);
  line-height: 1.2;
  display: inline;
  transition: color 0.3s var(--ease);
}

.stat-suffix {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--sky-blue);
  display: inline;
  transition: color 0.3s var(--ease);
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
  font-weight: 400;
}

/* ========== Features ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.feature-card {
  text-align: center;
  padding: 36px 16px 32px;
  border-radius: var(--radius);
  background: var(--card-bg);
  transition: all 0.4s var(--ease);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(17, 22, 78, 0.04);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(51, 217, 255, 0.12);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  color: var(--azure);
  background: linear-gradient(135deg, rgba(22, 126, 249, 0.06), rgba(51, 217, 255, 0.08));
  border-radius: 20px;
  padding: 14px;
  transition: all 0.4s var(--ease);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, rgba(22, 126, 249, 0.1), rgba(51, 217, 255, 0.14));
  transform: scale(1.05);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-card h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 6px;
}

.feature-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 400;
}

/* ========== Brands ========== */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: center;
  justify-items: center;
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--card-bg);
  width: 100%;
  height: 100px;
  transition: all 0.35s var(--ease);
  box-shadow: var(--shadow-xs);
  border: 1px solid rgba(17, 22, 78, 0.04);
}

.brand-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(51, 217, 255, 0.12);
}

.brand-item img {
  max-width: 130px;
  max-height: 50px;
  object-fit: contain;
  filter: grayscale(30%) brightness(0.9);
  opacity: 0.75;
  transition: all 0.35s var(--ease);
}

.brand-item:hover img {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

/* Per-brand size balancing */
.brand--samsung img { max-width: 180px; max-height: 50px; }
.brand--hp img      { max-width: 56px;  max-height: 56px; }
.brand--apple img   { max-width: 40px;  max-height: 48px; }
.brand--lenovo img  { max-width: 160px; max-height: 44px; }
.brand--asus img    { max-width: 130px; max-height: 36px; }
.brand--acer img    { max-width: 120px; max-height: 36px; }
.brand--dell img    { max-width: 110px; max-height: 36px; }
.brand--canon img   { max-width: 140px; max-height: 44px; }
.brand--jbl img     { max-width: 72px;  max-height: 44px; }
.brand--msi img     { max-width: 110px; max-height: 38px; }

/* ========== Products ========== */
.products-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(51, 217, 255, 0.04) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.5;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}

.product-card {
  text-align: center;
  transition: transform 0.4s var(--ease);
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 14px;
  border: 3px solid rgba(51, 217, 255, 0.25);
  background: linear-gradient(135deg, rgba(51, 217, 255, 0.08), rgba(22, 126, 249, 0.08));
  box-shadow: 0 8px 30px rgba(51, 217, 255, 0.1);
  transition: all 0.4s var(--ease);
}

.product-card:hover .product-circle {
  border-color: var(--sky-blue);
  box-shadow: 0 12px 40px rgba(51, 217, 255, 0.2);
}

.product-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.product-card:hover .product-circle img {
  transform: scale(1.1);
}

.product-card h3 {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.6;
  transition: color 0.3s;
}

.product-card:hover h3 {
  color: var(--white);
}

/* ========== Gallery Marquee ========== */
.gallery-section {
  padding: 70px 0 60px;
  overflow: hidden;
  background: var(--light-bg);
}

.gallery-section .section-header {
  margin-bottom: 36px;
}

.gallery-marquee {
  overflow: hidden;
  width: 100%;
  direction: ltr;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  margin-bottom: 16px;
  pointer-events: none;
}

.gallery-marquee:last-child {
  margin-bottom: 0;
}

.gallery-track {
  display: flex;
  gap: 16px;
  animation: marquee 60s linear infinite;
  width: max-content;
  will-change: transform;
}

.gallery-track--reverse {
  animation: marquee-reverse 55s linear infinite;
}

.gallery-track img {
  width: 320px;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-reverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ========== FAQ ========== */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(17, 22, 78, 0.06);
  margin-bottom: 10px;
  border-radius: var(--radius);
  background: var(--card-bg);
  overflow: hidden;
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-xs);
}

.faq-item:hover {
  border-color: rgba(51, 217, 255, 0.12);
}

.faq-item.active {
  border-color: rgba(51, 217, 255, 0.2);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: right;
  gap: 16px;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--azure);
}

.faq-arrow {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--sky-blue);
  transition: transform 0.4s var(--ease);
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 22px;
}

.faq-answer p {
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 2.1;
  font-weight: 400;
}

/* ========== CTA Section ========== */
.cta-section {
  padding: 80px 0;
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.cta-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(51, 217, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(51, 217, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.cta-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
  font-weight: 300;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== Contact ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 36px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-info-card {
  padding: 22px 20px;
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid rgba(17, 22, 78, 0.04);
  box-shadow: var(--shadow-xs);
  transition: all 0.35s var(--ease);
}

.contact-info-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(51, 217, 255, 0.1);
}

.contact-info-card--wa {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.05), rgba(37, 211, 102, 0.02));
  border-color: rgba(37, 211, 102, 0.12);
}

.contact-info-card--wa:hover {
  border-color: rgba(37, 211, 102, 0.25);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(22, 126, 249, 0.08), rgba(51, 217, 255, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--azure);
  margin-bottom: 12px;
}

.contact-info-icon--wa {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(37, 211, 102, 0.05));
  color: #25D366;
}

.contact-info-card h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.contact-info-card a,
.contact-info-card span {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.3s;
  line-height: 1.6;
}

.contact-info-card a:hover {
  color: var(--azure);
}

.contact-form {
  background: var(--navy);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(51, 217, 255, 0.06);
}

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

.form-group {
  margin-bottom: 12px;
}

.form-group label {
  display: block;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  font-size: 0.82rem;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(51, 217, 255, 0.12);
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  font-family: var(--font);
  font-size: 0.92rem;
  color: var(--white);
  transition: all 0.3s var(--ease);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sky-blue);
  box-shadow: 0 0 0 4px rgba(51, 217, 255, 0.08);
  background: rgba(255,255,255,0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  border-radius: 12px;
  margin-top: 8px;
  justify-content: center;
}

.btn-submit svg {
  opacity: 0.8;
}

/* ========== Map ========== */
.map-section {
  height: 400px;
  position: relative;
}

.map-section iframe {
  width: 100%;
  height: 100%;
}

/* ========== Footer ========== */
.footer {
  background: var(--navy);
  color: var(--white);
  padding-top: 50px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo img {
  height: 64px;
  width: auto;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-address {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  font-weight: 400;
}

.footer-address svg {
  flex-shrink: 0;
  color: var(--sky-blue);
}

.footer-contacts {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--sky-blue);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-contact-item:hover {
  color: var(--yellow);
}

.footer-contact-item svg {
  flex-shrink: 0;
}

.footer-bottom {
  background: #000;
  padding: 20px 0;
  font-size: 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright {
  color: #fff;
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  direction: ltr;
  font-size: 0.75rem;
  color: #fff;
  letter-spacing: 0.03em;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
  transition: all 0.35s var(--ease);
}

.footer-credit:hover {
  border-color: rgba(51, 217, 255, 0.15);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.5);
}

.footer-credit-text {
  opacity: 0.7;
}

.footer-credit-brand {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--sky-blue);
  font-weight: 600;
  transition: color 0.3s;
}

.footer-credit:hover .footer-credit-brand {
  color: var(--yellow);
}

.footer-credit-heart {
  color: var(--yellow);
  flex-shrink: 0;
}

/* ========== WhatsApp Float ========== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  z-index: 999;
  transition: all 0.3s var(--ease);
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.45);
  border-radius: 22px;
}

.whatsapp-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 22px;
  background: rgba(37, 211, 102, 0.25);
  animation: wa-pulse 2s ease-in-out infinite;
  z-index: -1;
}

@keyframes wa-pulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.15); opacity: 0; }
}

/* ========== Responsive — Tablet ========== */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-content {
    text-align: center;
  }

  .about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-circle {
    width: 130px;
    height: 130px;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}

/* ========== Responsive — Mobile ========== */
@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .container {
    padding: 0 16px;
  }

  .section {
    padding: 64px 0;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .section-tag {
    font-size: 0.72rem;
    padding: 5px 16px;
    margin-bottom: 12px;
  }

  /* Mobile Nav */
  .mobile-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75vw;
    max-width: 300px;
    height: 100vh;
    background: var(--navy);
    transition: right 0.35s var(--ease);
    box-shadow: -5px 0 30px rgba(0,0,0,0.3);
    z-index: 999;
    padding-top: calc(var(--header-height) + 16px);
  }

  .nav.open {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    padding: 16px 20px;
    gap: 2px;
  }

  .nav-link {
    display: block;
    padding: 14px 16px;
    font-size: 1.05rem;
    border-radius: 12px;
  }

  .nav-link.active::after {
    display: none;
  }

  .logo img {
    height: 44px;
  }

  /* Mobile Hero */
  .hero {
    min-height: auto;
    padding-top: var(--header-height);
  }

  .hero-content {
    padding: 20px 12px 32px;
    gap: 20px;
  }

  .hero-card {
    padding: 8px;
    border-radius: var(--radius);
  }

  .hero-image-frame {
    border-radius: calc(var(--radius) - 4px);
  }

  .hero-img {
    height: 220px;
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }

  .hero-text {
    align-items: center;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 14px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    line-height: 1.9;
  }

  .btn {
    padding: 12px 28px;
    font-size: 0.9rem;
  }

  /* Mobile About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-content {
    text-align: right;
  }

  .about-content p {
    font-size: 0.9rem;
    line-height: 1.9;
  }

  .about-highlights {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-highlight {
    padding: 16px;
  }

  /* Mobile Stats */
  .stats-section {
    padding: 50px 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .stat-card {
    padding: 24px 12px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-suffix {
    font-size: 1.2rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  /* Mobile Features */
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .feature-card {
    padding: 22px 12px 18px;
  }

  .feature-card::before {
    height: 2px;
  }

  .feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    padding: 10px;
    margin-bottom: 12px;
  }

  .feature-card h3 {
    font-size: 0.8rem;
  }

  .feature-desc {
    font-size: 0.7rem;
    display: none;
  }

  /* 5th feature card spans full width on mobile */
  .features-grid .feature-card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }

  /* Mobile Brands */
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .brand-item {
    height: 70px;
    padding: 12px;
    border-radius: 12px;
  }

  .brand-item img {
    max-width: 80px;
    max-height: 36px;
  }

  /* Mobile Products */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .product-circle {
    width: 110px;
    height: 110px;
    border-width: 2px;
    margin-bottom: 10px;
  }

  .product-card h3 {
    font-size: 0.8rem;
  }

  /* Mobile Gallery */
  .gallery-section {
    padding: 44px 0 34px;
  }

  .gallery-section .section-header {
    margin-bottom: 20px;
    padding: 0 16px;
  }

  .gallery-track {
    gap: 10px;
  }

  .gallery-track img {
    width: 240px;
    height: 170px;
    border-radius: 12px;
  }

  .gallery-marquee {
    margin-bottom: 10px;
  }

  /* Mobile FAQ */
  .faq-item {
    margin-bottom: 8px;
  }

  .faq-question {
    padding: 18px 16px;
    font-size: 0.92rem;
    gap: 12px;
  }

  .faq-answer p {
    font-size: 0.85rem;
    padding: 0 16px;
  }

  /* Mobile CTA */
  .cta-section {
    padding: 56px 0;
  }

  .cta-title {
    font-size: 1.3rem;
  }

  .cta-desc {
    font-size: 0.92rem;
    margin-bottom: 24px;
  }

  .btn-cta {
    padding: 14px 32px;
    font-size: 0.92rem;
  }

  /* Mobile Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .contact-info-card {
    padding: 16px 14px;
  }

  .contact-info-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    margin-bottom: 10px;
  }

  .contact-info-icon svg {
    width: 20px;
    height: 20px;
  }

  .contact-info-card h4 {
    font-size: 0.82rem;
  }

  .contact-info-card a,
  .contact-info-card span {
    font-size: 0.78rem;
  }

  .contact-form {
    padding: 24px 18px;
    border-radius: var(--radius);
  }

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

  .form-group input,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 0.88rem;
  }

  .btn-submit {
    padding: 14px;
    font-size: 0.95rem;
  }

  /* Mobile Map */
  .map-section {
    height: 300px;
  }

  /* Mobile Footer */
  .footer {
    padding-top: 36px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding-bottom: 24px;
  }

  .footer-logo img {
    height: 52px;
    margin: 0 auto;
  }

  .footer-address {
    justify-content: center;
    text-align: center;
    font-size: 0.82rem;
    flex-wrap: wrap;
  }

  .footer-contacts {
    justify-content: center;
    gap: 16px;
    flex-direction: column;
    align-items: center;
  }

  .footer-contact-item {
    font-size: 0.85rem;
  }

  .footer-bottom {
    padding: 16px 0;
    font-size: 0.72rem;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .footer-credit {
    font-size: 0.68rem;
    padding: 5px 12px;
  }

  /* Mobile WhatsApp */
  .whatsapp-float {
    bottom: 16px;
    left: 16px;
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

/* ========== Responsive — Small Mobile ========== */
@media (max-width: 380px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .hero-img {
    height: 180px;
  }

  .features-grid {
    gap: 8px;
  }

  .feature-card {
    padding: 16px 8px 14px;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
    padding: 8px;
  }

  .feature-card h3 {
    font-size: 0.75rem;
  }

  .product-circle {
    width: 90px;
    height: 90px;
  }

  .product-card h3 {
    font-size: 0.72rem;
  }

  .gallery-track img {
    width: 200px;
    height: 140px;
  }

  .brands-grid {
    gap: 8px;
  }

  .brand-item {
    height: 60px;
  }

  .brand-item img {
    max-width: 65px;
    max-height: 30px;
  }

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

  .stats-grid {
    gap: 10px;
  }

  .stat-card {
    padding: 20px 8px;
  }
}

/* ========== Language Toggle ========== */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  transition: all 0.3s var(--ease);
  text-decoration: none;
  flex-shrink: 0;
}

.lang-toggle:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--sky-blue);
  color: var(--sky-blue);
}

.lang-toggle svg {
  flex-shrink: 0;
}

/* ========== LTR Overrides (English Version) ========== */
[dir="ltr"] {
  font-family: 'IBM Plex Sans', sans-serif;
}

[dir="ltr"] .nav-link::after {
  left: 0;
  right: auto;
}

[dir="ltr"] .hero-badge {
  direction: ltr;
}

[dir="ltr"] .about-content p {
  text-align: left;
}

[dir="ltr"] .about-highlight {
  text-align: left;
}

[dir="ltr"] .faq-question span {
  text-align: left;
}

[dir="ltr"] .footer-credit {
  direction: ltr;
}

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

[dir="ltr"] .form-group label {
  text-align: left;
}

[dir="ltr"] input,
[dir="ltr"] textarea {
  text-align: left;
}

@media (max-width: 768px) {
  .lang-toggle {
    padding: 5px 10px;
    font-size: 0.75rem;
  }

  .lang-toggle svg {
    width: 16px;
    height: 16px;
  }
}
