/* ============================================================
   Data Equip (I) Pvt. Ltd. — Dark Theme Stylesheet
   css/style.css
   ============================================================ */
:root {
  --bg: #0d0f14;
  --bg2: #13161e;
  --bg3: #1a1e2a;
  --bg4: #1e2330;
  --bgi: #252a38;
  --acc: #00c6ff;
  --acc-dim: #0096cc;
  --acc-glow: rgba(0, 198, 255, 0.18);
  --amb: #f59e0b;
  --amb-dim: #d97706;
  --wa: #25d366;
  --th: #f0f4ff;
  --tm: #9aa5c0;
  --tl: #4a546a;
  --br: #252a3a;
  --br2: #2e3550;
  --ok: #4ade80;
  --err: #f87171;
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Barlow', sans-serif;
  background: var(--bg);
  color: var(--th);
  line-height: 1.65;
  min-height: 100vh
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg);
  border-bottom: 2px solid var(--acc);
  padding: 0 5%;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 24px rgba(0, 198, 255, 0.08)
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px
}

.nav-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  object-fit: contain
}

.nav-logo-fallback {
  width: 36px;
  height: 36px;
  background: var(--acc);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #000;
  letter-spacing: -0.5px
}

.nav-brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--th);
  letter-spacing: .3px
}

.nav-brand-sub {
  font-size: 10px;
  color: var(--tl);
  letter-spacing: .8px;
  display: block
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none
}

.nav-links a {
  color: var(--tm);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 4px;
  transition: all .18s;
  border: 1px solid transparent;
  cursor: pointer
}

.nav-links a:hover {
  color: var(--acc);
  background: var(--acc-glow);
  border-color: rgba(0, 198, 255, .2)
}

.nav-links a.nav-active {
  color: #000 !important;
  background: var(--acc) !important;
  border-color: var(--acc) !important;
  font-weight: 600
}

.nav-links a.nav-cta {
  color: #000 !important;
  background: var(--amb) !important;
  border-color: var(--amb) !important;
  font-weight: 600
}

.nav-links a.nav-cta:hover {
  background: var(--amb-dim) !important;
  border-color: var(--amb-dim) !important
}

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

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--tm);
  border-radius: 2px;
  transition: .3s
}

/* PAGE ROUTING */
.page {
  display: none
}

.page.page-visible {
  display: block;
  animation: fadeUp .28s ease
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* HERO */
.hero {
  background: var(--bg);
  padding: 88px 5% 70px;
  position: relative;
  overflow: hidden
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(rgba(0, 198, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 198, 255, .04) 1px, transparent 1px);
  background-size: 48px 48px
}

.hero::after {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  z-index: 0;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(0, 198, 255, .12) 0%, transparent 65%);
  border-radius: 50%
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 198, 255, .08);
  border: 1px solid rgba(0, 198, 255, .25);
  color: var(--acc);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 26px
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--acc);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--acc);
  animation: blink 2s infinite
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 800;
  color: var(--th);
  line-height: 1.05;
  letter-spacing: -.5px;
  margin-bottom: 8px
}

.hero h1 .accent-word {
  color: var(--acc)
}

.hero-tagline {
  font-size: clamp(14px, 1.8vw, 18px);
  color: var(--tm);
  max-width: 580px;
  margin-bottom: 32px
}

.hero-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 38px
}

.hero-cat {
  background: var(--bg4);
  border: 1px solid var(--br2);
  color: var(--tm);
  padding: 5px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  transition: all .2s
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all .2s;
  font-family: 'Barlow', sans-serif
}

.btn-primary {
  background: var(--acc);
  color: #000;
  box-shadow: 0 0 20px rgba(0, 198, 255, .3)
}

.btn-primary:hover {
  background: #33d1ff;
  transform: translateY(-1px)
}

.btn-amber {
  background: var(--amb);
  color: #000
}

.btn-amber:hover {
  background: #fbbf24;
  transform: translateY(-1px)
}

.btn-outline {
  background: transparent;
  color: var(--th);
  border: 1px solid var(--br2)
}

.btn-outline:hover {
  border-color: var(--acc);
  color: var(--acc);
  background: var(--acc-glow)
}

.btn-whatsapp {
  background: var(--wa);
  color: #000
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-1px)
}

.btn-ghost {
  background: var(--bg3);
  color: var(--tm);
  border: 1px solid var(--br)
}

.btn-ghost:hover {
  border-color: var(--acc);
  color: var(--acc)
}

/* STATS */
.stats-bar {
  background: var(--bg2);
  border-top: 1px solid var(--br);
  border-bottom: 1px solid var(--br);
  padding: 20px 5%;
  display: flex;
  justify-content: center
}

.stat {
  text-align: center;
  padding: 0 44px;
  border-right: 1px solid var(--br)
}

.stat:last-child {
  border-right: none
}

.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--acc);
  line-height: 1
}

.stat-label {
  font-size: 11px;
  color: var(--tl);
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-top: 4px
}

/* SECTIONS */
section {
  padding: 68px 5%
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--acc);
  margin-bottom: 8px
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  color: var(--th);
  line-height: 1.1;
  margin-bottom: 12px
}

.section-sub {
  color: var(--tm);
  font-size: 15px;
  max-width: 560px;
  margin-bottom: 38px
}

.divider {
  width: 44px;
  height: 3px;
  background: var(--acc);
  border-radius: 2px;
  margin: 10px 0 34px;
  box-shadow: 0 0 10px var(--acc)
}

/* USP */
.usp-strip {
  background: var(--bg2);
  border-top: 1px solid var(--br);
  border-bottom: 1px solid var(--br);
  padding: 50px 5%
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 32px
}

.usp-item {
  text-align: center;
  padding: 28px 20px;
  background: var(--bg4);
  border: 1px solid var(--br);
  border-radius: 10px;
  transition: all .2s
}

.usp-item:hover {
  border-color: var(--acc);
  box-shadow: 0 0 20px var(--acc-glow)
}

.usp-icon {
  font-size: 30px;
  margin-bottom: 12px
}

.usp-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--th);
  margin-bottom: 6px
}

.usp-text {
  font-size: 13px;
  color: var(--tm)
}

/* CATALOG STRIP */
.catalog-strip {
  background: linear-gradient(90deg, #0a1220, #0d1a2e);
  border-top: 1px solid rgba(0, 198, 255, .2);
  border-bottom: 1px solid rgba(0, 198, 255, .2);
  padding: 32px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px
}

.catalog-text h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--acc)
}

.catalog-text p {
  font-size: 13px;
  color: var(--tm);
  margin-top: 3px
}

/* PRODUCTS */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px
}

.prod-card {
  background: var(--bg4);
  border: 1px solid var(--br);
  border-radius: 10px;
  overflow: hidden;
  transition: all .22s
}

.prod-card:hover {
  border-color: var(--acc);
  box-shadow: 0 0 24px var(--acc-glow);
  transform: translateY(-2px)
}

.prod-card-header {
  background: linear-gradient(135deg, #0d1220, #111827);
  border-bottom: 1px solid var(--br);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px
}

.prod-icon {
  width: 36px;
  height: 36px;
  background: var(--acc-glow);
  border: 1px solid rgba(0, 198, 255, .3);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px
}

.prod-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--acc);
  letter-spacing: .3px
}

.prod-card-body {
  padding: 16px 20px 20px
}

.prod-list {
  list-style: none;
  margin-bottom: 14px
}

.prod-list li {
  padding: 7px 0;
  border-bottom: 1px solid var(--br);
  font-size: 13.5px;
  color: var(--th);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px
}

.prod-list li:last-child {
  border-bottom: none
}

.prod-list li::before {
  content: '›';
  color: var(--acc);
  font-size: 14px;
  flex-shrink: 0;
  font-weight: 700
}

.prod-list li span {
  flex: 1
}

.prod-enquire {
  background: none;
  border: 1px solid rgba(0, 198, 255, .35);
  color: var(--acc);
  padding: 3px 10px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all .18s
}

.prod-enquire:hover {
  background: var(--acc);
  color: #000;
  border-color: var(--acc)
}

.card-footer-btn {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--br);
  color: var(--tm);
  padding: 10px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .18s;
  font-family: 'Barlow', sans-serif
}

.card-footer-btn:hover {
  background: var(--acc);
  color: #000;
  border-color: var(--acc)
}

/* ADDITIONAL */
.add-section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--acc);
  margin: 32px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--br);
  display: flex;
  align-items: center;
  gap: 10px
}

.add-section-title::before {
  content: '';
  width: 3px;
  height: 20px;
  background: var(--acc);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--acc)
}

.add-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 10px
}

.add-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg4);
  border: 1px solid var(--br);
  border-radius: 6px;
  padding: 10px 14px;
  transition: all .18s
}

.add-item:hover {
  border-color: var(--acc);
  background: var(--bg3)
}

.add-item-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--th);
  display: flex;
  align-items: center;
  gap: 8px
}

.add-item-name::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--acc);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 5px var(--acc)
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  align-items: start
}

.contact-info h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--th);
  margin-bottom: 22px
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--bg4);
  border: 1px solid var(--br);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px
}

.contact-item-text strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--acc);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px
}

.contact-item-text a,
.contact-item-text span {
  font-size: 15px;
  color: var(--th);
  text-decoration: none;
  font-weight: 500
}

.contact-item-text a:hover {
  color: var(--acc)
}

.map-btns {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap
}

.map-btn {
  font-size: 11px;
  background: var(--bg3);
  color: var(--acc);
  border: 1px solid rgba(0, 198, 255, .25);
  padding: 3px 10px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all .18s
}

.map-btn:hover {
  background: var(--acc);
  color: #000;
  border-color: var(--acc)
}

.terms-box {
  background: var(--bg4);
  border: 1px solid var(--br);
  border-left: 3px solid var(--acc);
  border-radius: 8px;
  padding: 18px 20px;
  margin-top: 28px
}

.terms-box h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--acc);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px
}

.terms-box ul {
  list-style: none
}

.terms-box ul li {
  font-size: 13px;
  color: var(--tm);
  padding: 5px 0;
  border-bottom: 1px solid var(--br);
  display: flex;
  gap: 8px
}

.terms-box ul li:last-child {
  border-bottom: none
}

.terms-box ul li::before {
  content: '›';
  color: var(--acc);
  font-weight: 700
}

/* FORM */
.contact-form {
  background: var(--bg4);
  border: 1px solid var(--br);
  border-radius: 10px;
  padding: 32px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, .3)
}

.contact-form h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--th);
  margin-bottom: 24px
}

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

.form-group {
  margin-bottom: 16px
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--tl);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--br);
  border-radius: 5px;
  padding: 10px 14px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: var(--th);
  background: var(--bgi);
  transition: border-color .2s, box-shadow .2s;
  outline: none
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--tl)
}

.form-group select option {
  background: var(--bgi);
  color: var(--th)
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--acc);
  box-shadow: 0 0 0 3px rgba(0, 198, 255, .12)
}

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

.form-submit {
  width: 100%;
  background: var(--acc);
  color: #000;
  border: none;
  padding: 13px;
  border-radius: 5px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  box-shadow: 0 0 18px rgba(0, 198, 255, .25)
}

.form-submit:hover {
  background: #33d1ff
}

.form-submit:disabled {
  opacity: .6;
  cursor: not-allowed
}

.form-success {
  display: none;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
  border: 1px solid currentColor
}

/* MODAL */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .75);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px)
}

.modal-overlay.active {
  display: flex
}

.modal {
  background: var(--bg4);
  border: 1px solid var(--br2);
  border-radius: 12px;
  padding: 32px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .6)
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: var(--bg3);
  border: 1px solid var(--br);
  color: var(--tm);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s
}

.modal-close:hover {
  background: var(--acc);
  color: #000;
  border-color: var(--acc)
}

.modal h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--th);
  margin-bottom: 4px
}

.modal-product-tag {
  font-size: 12px;
  color: var(--acc);
  font-weight: 600;
  background: var(--acc-glow);
  border: 1px solid rgba(0, 198, 255, .2);
  display: inline-block;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 20px
}

/* FOOTER */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--br);
  padding: 44px 5% 24px
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px
}

.footer-brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: var(--th);
  margin-bottom: 4px
}

.footer-brand-tag {
  font-size: 12px;
  color: var(--tl);
  margin-bottom: 16px
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--tm);
  font-size: 13px;
  margin-bottom: 8px
}

.footer-contact-item a {
  color: var(--tm);
  text-decoration: none;
  transition: color .2s
}

.footer-contact-item a:hover {
  color: var(--acc)
}

.footer-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--acc);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px
}

.footer-links {
  list-style: none
}

.footer-links li {
  margin-bottom: 8px
}

.footer-links a {
  color: var(--tm);
  font-size: 13px;
  text-decoration: none;
  transition: color .2s
}

.footer-links a:hover {
  color: var(--acc)
}

.footer-bottom {
  border-top: 1px solid var(--br);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px
}

.footer-copy {
  font-size: 11px;
  color: var(--tl)
}

/* RESPONSIVE */
@media(max-width:768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 2px solid var(--acc);
    padding: 12px 16px;
    gap: 4px;
    z-index: 999
  }

  .nav-links.open {
    display: flex
  }

  .hamburger {
    display: flex
  }

  .stats-bar {
    flex-wrap: wrap
  }

  .stat {
    padding: 12px 20px;
    border-right: none;
    border-bottom: 1px solid var(--br);
    width: 50%
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center
  }

  .hero {
    padding: 56px 5% 48px
  }

  .usp-grid {
    grid-template-columns: 1fr 1fr
  }
}

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

  .hero-btns {
    flex-direction: column
  }
}

/* ── VALIDATION STYLES ── */
.form-group {
  position: relative;
}

/* Field error border + glow */
.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
  border-color: var(--err) !important;
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.15) !important;
}

/* Field valid border + glow */
.form-group input.valid,
.form-group select.valid,
.form-group textarea.valid {
  border-color: var(--ok) !important;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.1) !important;
}

/* Inline error message under field */
.field-error {
  display: none;
  font-size: 11px;
  color: var(--err);
  margin-top: 5px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.field-error.visible {
  display: block;
}

/* Label turns red on error */
.form-group.has-error label {
  color: var(--err);
}

.form-group.has-error .field-error {
  display: block;
}

/* Character counter */
.char-counter {
  position: absolute;
  right: 0;
  bottom: -18px;
  font-size: 10px;
  color: var(--tl);
  font-weight: 500;
}

.char-counter.warn {
  color: var(--amb);
}

.char-counter.limit {
  color: var(--err);
}

/* Shake animation on failed submit */
@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-6px);
  }

  40% {
    transform: translateX(6px);
  }

  60% {
    transform: translateX(-4px);
  }

  80% {
    transform: translateX(4px);
  }
}

.shake {
  animation: shake 0.4s ease;
}

/* Summary error banner above submit button */
.form-error-banner {
  display: none;
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid var(--err);
  border-radius: 6px;
  padding: 10px 14px;
  color: var(--err);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}

.form-error-banner.visible {
  display: block;
}

/* ── FLOATING BUTTONS ── */
.float-btns {
  position: fixed;
  right: 20px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  z-index: 999;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 28px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transition: all 0.2s;
}

.float-btn:hover {
  transform: translateY(-2px);
}

.float-wa {
  background: #25D366;
  color: #000;
}

.float-enquire {
  background: #ffbf00;
  color: #000;
}