/* Jomra Electricals — Premium light modern UI with full wow enhancements */
:root {
  --bg: #eef2f7;
  --bg-card: #ffffff;
  --text: #0f172a;
  --text-muted: #64748b;
  --purple: #6c5ce7;
  --purple-dark: #5a4bd1;
  --green: #25d366;
  --green-dark: #1ebe57;
  --amber: #f59e0b;
  --radius: 20px;
  --radius-sm: 14px;
  --radius-pill: 999px;
  --shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 25px 60px rgba(15, 23, 42, 0.12);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --transition: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::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);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, 92%); margin-inline: auto; }

/* ===== PAGE LOADER ===== */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-inner { text-align: center; }
.loader-mark {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.2rem;
  background: linear-gradient(135deg, var(--purple), #a29bfe);
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 8px 28px rgba(108, 92, 231, 0.4);
  animation: loaderPulse 1.2s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
.loader-bar {
  width: 120px;
  height: 4px;
  background: rgba(108, 92, 231, 0.15);
  border-radius: 4px;
  overflow: hidden;
  margin: 0 auto;
}
.loader-bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: var(--purple);
  border-radius: 4px;
  animation: loaderSlide 1s ease-in-out infinite;
}
@keyframes loaderSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* ===== CONCEPT BANNER ===== */
.concept-banner {
  background: linear-gradient(90deg, #6c5ce7, #a29bfe);
  color: #fff;
  text-align: center;
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.concept-pill {
  background: rgba(255,255,255,0.25);
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ===== FLOATING ACTIONS ===== */
.float-actions {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.float-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.15rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}
.float-btn:hover {
  transform: translateY(-4px) scale(1.03);
  filter: brightness(1.05);
}
.float-btn.whatsapp { background: var(--green); color: #fff; }
.float-btn.call { background: var(--purple); color: #fff; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.9rem 0;
  background: rgba(238, 242, 247, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  transition: box-shadow var(--transition);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-mark {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--purple), #a29bfe);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  font-size: 1.15rem;
  box-shadow: 0 6px 20px rgba(108, 92, 231, 0.35);
}
.logo-mark.sm { width: 34px; height: 34px; font-size: 0.95rem; }
.logo-text strong { display: block; font-size: 1rem; font-weight: 700; line-height: 1.2; }
.logo-text span { font-size: 0.75rem; color: var(--text-muted); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  padding: 0.35rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}
.nav-links a {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--text); background: rgba(108, 92, 231, 0.08); }
.nav-cta {
  background: var(--purple) !important;
  color: #fff !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--purple-dark) !important; transform: scale(1.03); }
.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.menu-btn span {
  width: 22px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 8px 24px rgba(108, 92, 231, 0.35);
}
.btn-primary:hover {
  background: var(--purple-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 36px rgba(108, 92, 231, 0.45);
}
.btn-whatsapp {
  background: var(--green);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  background: var(--green-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}
.btn-outline {
  background: #fff;
  color: var(--text);
  border: 1.5px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}
.btn-outline:hover {
  border-color: var(--purple);
  color: var(--purple);
  transform: translateY(-2px);
}
.btn.full { width: 100%; }

/* ===== HERO ===== */
.hero {
  padding: 3rem 0 0;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -20%;
  left: 30%;
  width: 60%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(108, 92, 231, 0.12) 0%, transparent 65%);
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
.circuit-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image:
    linear-gradient(var(--purple) 1px, transparent 1px),
    linear-gradient(90deg, var(--purple) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 30%, black, transparent);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-bottom: 3rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
  margin-bottom: 1.4rem;
}
.badge .dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.25);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.25); }
  50% { box-shadow: 0 0 0 6px rgba(37, 211, 102, 0.1); }
}
.hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.1rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.1rem;
}
.gradient-text {
  background: linear-gradient(135deg, var(--purple), #a29bfe 50%, #6c5ce7);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 1.8rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.trust-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
}
.trust-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.hero-visual { position: relative; }
.hero-card {
  background: #fff;
  border-radius: 28px;
  padding: 0.8rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  transition: transform var(--transition);
}
.hero-card:hover { transform: translateY(-4px); }
.hero-main-img {
  width: 100%;
  aspect-ratio: 4/3.2;
  object-fit: cover;
  border-radius: 22px;
}
.hero-float-card {
  position: absolute;
  bottom: -1.2rem;
  left: 1.5rem;
  right: 1.5rem;
  background: #fff;
  border-radius: 16px;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(15, 23, 42, 0.04);
  animation: floatCard 3.5s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-float-card img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 12px;
}
.hero-float-card strong { display: block; font-size: 0.9rem; }
.hero-float-card span { font-size: 0.78rem; color: var(--text-muted); }

/* Trust bar */
.trust-bar {
  background: #fff;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  padding: 1rem 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.trust-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.trust-tags span {
  background: rgba(108, 92, 231, 0.08);
  color: var(--purple);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
}
.trust-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== SECTIONS ===== */
.section { padding: 5rem 0; }
.section-alt { background: #fff; }
.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3rem;
}
.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 0.6rem;
}
.section-head h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}
.section-sub { color: var(--text-muted); font-size: 1.05rem; }

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}
.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 23, 42, 0.04);
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.14);
}
.product-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f1f5f9;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--transition);
}
.product-card:hover .product-img img { transform: scale(1.08); }
.product-info { padding: 1.3rem 1.4rem 1.5rem; }
.product-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.product-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}
.card-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--purple);
  transition: gap var(--transition);
}
.card-link:hover { text-decoration: underline; }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-bottom: 2.5rem;
}
.service-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  border: 1px solid rgba(15, 23, 42, 0.04);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  background: #fff;
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  transition: transform var(--transition);
}
.service-card:hover .service-icon { transform: scale(1.08); }
.service-icon.purple { background: rgba(108, 92, 231, 0.12); color: var(--purple); }
.service-icon.amber { background: rgba(245, 158, 11, 0.12); color: var(--amber); }
.service-icon.green { background: rgba(37, 211, 102, 0.12); color: var(--green); }
.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.4rem; }
.service-card p { font-size: 0.92rem; color: var(--text-muted); }

.fab-banner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  background: var(--bg);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.04);
  box-shadow: var(--shadow);
}
.fab-banner-img { min-height: 300px; }
.fab-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.fab-banner:hover .fab-banner-img img { transform: scale(1.04); }
.fab-banner-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.fab-banner-content h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
}
.fab-banner-content > p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-size: 0.98rem;
}
.fab-banner-content ul {
  list-style: none;
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
}
.fab-banner-content li {
  position: relative;
  padding-left: 1.3rem;
  font-size: 0.95rem;
  font-weight: 500;
}
.fab-banner-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.about-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
}
.about-text p {
  color: var(--text-muted);
  margin-bottom: 0.9rem;
  font-size: 1.02rem;
}
.about-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}
.meta-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}
.about-meta strong { font-size: 0.95rem; }
.about-meta a:hover { color: var(--purple); }
.about-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-visual img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.about-visual:hover img { transform: scale(1.03); }
.about-badge {
  position: absolute;
  bottom: 1.4rem;
  left: 1.4rem;
  background: #fff;
  padding: 0.9rem 1.2rem;
  border-radius: 14px;
  box-shadow: var(--shadow);
  text-align: center;
}
.about-badge span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.about-badge strong {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--purple);
}

/* Contact */
.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(15, 23, 42, 0.04);
  margin-bottom: 2rem;
}
.contact-left {
  padding: 2.8rem;
  background: linear-gradient(160deg, rgba(108, 92, 231, 0.06), transparent 70%);
}
.contact-left h2 {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
}
.contact-left > p {
  color: var(--text-muted);
  margin-bottom: 1.8rem;
}
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: flex-start;
}
.contact-form {
  padding: 2.8rem;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: #fff;
  border: 1.5px solid rgba(15, 23, 42, 0.1);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.15);
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

/* Approve box */
.approve-box {
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
  border-radius: 24px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: #fff;
  box-shadow: 0 16px 40px rgba(108, 92, 231, 0.35);
}
.approve-content h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}
.approve-content p {
  font-size: 0.95rem;
  opacity: 0.9;
  max-width: 480px;
}
.approve-box .btn-primary {
  background: #fff;
  color: var(--purple);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  white-space: nowrap;
}
.approve-box .btn-primary:hover {
  background: #f8fafc;
  transform: translateY(-3px) scale(1.02);
}

/* Footer */
.footer {
  padding: 2.2rem 0;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  background: #fff;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.footer-brand strong { display: block; font-size: 0.95rem; }
.footer-brand span { font-size: 0.8rem; color: var(--text-muted); }
.footer-note, .footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    padding: 1rem;
    margin: 0.5rem 4%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    gap: 0.3rem;
  }
  .menu-btn { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { order: -1; max-width: 420px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr; }
  .fab-banner { grid-template-columns: 1fr; }
  .fab-banner-img { min-height: 220px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual img { aspect-ratio: 16/10; }
  .about-meta { grid-template-columns: 1fr; }
  .contact-box { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .approve-box { flex-direction: column; text-align: center; }
  .approve-box .btn-primary { width: 100%; }
}
@media (max-width: 600px) {
  .hero { padding-top: 1.5rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .float-actions { bottom: 1rem; right: 1rem; }
  .float-btn { padding: 0.7rem 1rem; font-size: 0.85rem; }
  .concept-banner { font-size: 0.78rem; padding: 0.55rem 0.8rem; }
  .trust-bar-inner { gap: 0.8rem; }
}

/* Product tags */
.product-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple);
  background: rgba(108, 92, 231, 0.1);
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

/* Product filters */
.product-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.filter-btn {
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(15, 23, 42, 0.1);
  background: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--purple); color: var(--purple); }
.filter-btn.active {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
}

.product-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.25rem;
}
.wa-mini {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  background: rgba(37, 211, 102, 0.12);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
}
.wa-mini:hover { background: var(--green); color: #fff; }

/* Brands strip */
.brands-strip {
  padding: 2rem 0;
  background: #fff;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  text-align: center;
}
.brands-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.brands-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}
.brands-row span {
  background: var(--bg);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

/* Map */
.map-section { padding: 0 0 4rem; }
.map-card {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 23, 42, 0.04);
}
.map-info {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.map-info h3 { font-size: 1.3rem; font-weight: 800; }
.map-info p { color: var(--text-muted); }
.map-embed { min-height: 280px; }
.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
}

@media (max-width: 900px) {
  .map-card { grid-template-columns: 1fr; }
}

/* Extra electrical / company animations */
@keyframes energyPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(108, 92, 231, 0.35); }
  50% { box-shadow: 0 0 0 10px rgba(108, 92, 231, 0); }
}
.logo-mark {
  animation: energyPulse 2.8s ease-in-out infinite;
}
.product-card:hover .product-tag {
  background: var(--purple);
  color: #fff;
}
.service-icon {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.service-card:hover .service-icon {
  box-shadow: 0 8px 24px rgba(108, 92, 231, 0.25);
}
.btn-primary, .btn-whatsapp {
  position: relative;
  overflow: hidden;
}
.btn-primary::after, .btn-whatsapp::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s ease;
}
.btn-primary:hover::after, .btn-whatsapp:hover::after {
  left: 120%;
}
.filter-btn.active {
  animation: energyPulse 2.5s ease-in-out infinite;
}

/* How it works */
.how-section {
  padding: 4.5rem 0;
  background: var(--bg);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.how-step {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.how-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.how-num {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--purple);
  background: rgba(108, 92, 231, 0.1);
  padding: 0.3rem 0.7rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.how-step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.how-step p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* What we need from you */
.need-from-you {
  margin-top: 2rem;
  background: #fff;
  border-radius: 24px;
  padding: 2.2rem 2rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow);
}
.need-from-you h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  text-align: center;
}
.need-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.6rem;
}
.need-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.need-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--bg);
  border-radius: 14px;
  transition: background var(--transition);
}
.need-item:hover { background: rgba(108, 92, 231, 0.06); }
.need-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--purple);
  color: #fff;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.9rem;
}
.need-item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}
.need-item span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .how-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .need-from-you { padding: 1.5rem 1.1rem; }
  .approve-box { padding: 1.5rem; }
}
