/* ============================================================
   RocketPro Tech Solutions — Products Page CSS
   Fonts: sans-serif (body) + Times New Roman (headings/accents)
   Theme: Navy #0a1628 | Cyan #00d4ff | Gold #c9a84c | Green #00e676
   ============================================================ */

:root {
  --navy: #0a1628;
  --navy-mid: #0f2744;
  --navy-light: #1a3a5c;
  --cyan: #00d4ff;
  --cyan-dim: rgba(0, 212, 255, 0.12);
  --gold: #c9a84c;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --green: #00e676;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.60);
  --card-bg: rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

/* ── TOPBAR ── */
.topbar {
  background: linear-gradient(90deg, var(--navy-mid), #0d2035);
  border-bottom: 1px solid rgba(0, 212, 255, 0.12);
  padding: 10px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-left .dot {
  color: var(--cyan);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 600;
}

.topbar-right .ph {
  color: var(--gold);
}

.navbar {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0 5%;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 68px;
  transition: box-shadow 0.3s;
}

/* .navbar.scrolled { box-shadow:0 4px 30px rgba(0,0,0,0.5); }

.logo { display:flex; align-items:left; gap:12px; }
.logo-icon {
  width:100px; height:90px;
  /* background: linear-gradient(135deg, var(--cyan), #0077ff); */
border-radius:10px;
display:flex;
align-items:center;
justify-content:center;
font-size:80px;
flex-shrink:20;
}

.logo-text {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--white);
  line-height: 3.1;
}

.logo-text span {
  color: var(--cyan);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.25s;
  display: block;
}

nav ul li a:hover nav ul li a.active {
  color: var(--white);
  background: rgba(0, 212, 255, 0.09);
}

nav ul li a.active {
  color: var(--cyan);
}

.nav-cta {
  background: linear-gradient(135deg, #00aaff, #0055dd) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  border-radius: 25px !important;
  padding: 8px 20px !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 150, 255, 0.4);
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}



.navbar {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0 5%;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 110px;
  height: 1000px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.3px;
}

.logo-text span {
  color: var(--cyan);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}

nav ul li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.25s;
  display: block;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--white);
  background: rgba(0, 212, 255, 0.09);
}

nav ul li a.active {
  color: var(--cyan);
}

.nav-cta {
  background: linear-gradient(135deg, #00aaff, #0055dd) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  border-radius: 25px !important;
  padding: 8px 20px !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 150, 255, 0.4);
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

/* new nav */
.navbar {
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s, background 0.3s;
}

.navbar.scrolled {
  background: rgba(10, 16, 32, 0.97);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
  border-bottom-color: rgba(99, 102, 241, 0.2);
}

.container {
  width: 90%;
  max-width: 1280px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  height: 40px;
}

.logo h2 {
  font-size: 19px;
  font-weight: 800;
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.3px;
}

nav#main-nav ul {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

nav#main-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-size: 14px;
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.1px;
}

nav#main-nav a:hover,
nav#main-nav a.nav-active {
  color: var(--white);
  background: rgba(99, 102, 241, 0.15);
}

nav#main-nav a.nav-cta {
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  color: var(--white);
  font-weight: 700;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 16px var(--indigo-glow);
}

nav#main-nav a.nav-cta:hover {
  background: linear-gradient(135deg, var(--indigo-dark), var(--indigo));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--indigo-glow);
}

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 5% 70px;
  text-align: center;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0, 80, 180, 0.3) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 40%, rgba(0, 212, 255, 0.09) 0%, transparent 50%),
    var(--navy);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridScroll 28s linear infinite;
}

@keyframes gridScroll {
  to {
    background-position: 60px 60px;
  }
}

.hero-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 100, 255, 0.1), transparent 70%);
  top: -140px;
  right: -100px;
  animation: glowPulse 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glowPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.18);
    opacity: 1;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 230, 118, 0.10);
  border: 1px solid rgba(0, 230, 118, 0.28);
  color: var(--green);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}

.hero-badge::before {
  content: '●';
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.25;
  }
}

.hero h1 {
  font-family: 'Times New Roman', Times, serif;
  font-size: clamp(34px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
  animation: fadeUp 0.9s 0.1s ease both;
}

.hero h1 .hl {
  background: linear-gradient(135deg, var(--cyan), #4d9fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.75;
  animation: fadeUp 1s 0.22s ease both;
}

.hero-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  animation: fadeUp 1s 0.35s ease both;
}

.pill {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--muted);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s;
  cursor: default;
}

.pill:hover {
  border-color: rgba(0, 212, 255, 0.35);
  color: var(--cyan);
  background: var(--cyan-dim);
}

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

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

/* ── FILTER BAR ── */
.filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 36px 5% 10px;
}

.filter-btn {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--muted);
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--cyan-dim);
  border-color: rgba(0, 212, 255, 0.4);
  color: var(--cyan);
}

/* ── PRODUCTS GRID ── */
.products-section {
  padding: 40px 5% 100px;
}

.section-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 12px;
}

.section-meta h2 {
  font-family: 'Times New Roman', Times, serif;
  font-size: 28px;
  font-weight: 700;
}

.section-meta h2 span {
  color: var(--cyan);
}

.products-count {
  font-size: 13px;
  color: var(--muted);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 6px 16px;
  border-radius: 50px;
}

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

/* ── PRODUCT CARD ── */
.product-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--card-border);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.4s,
    border-color 0.4s;
  opacity: 0;
  animation: cardIn 0.6s ease both;
}

/* stagger */
.product-card:nth-child(1) {
  animation-delay: 0.05s;
}

.product-card:nth-child(2) {
  animation-delay: 0.10s;
}

.product-card:nth-child(3) {
  animation-delay: 0.15s;
}

.product-card:nth-child(4) {
  animation-delay: 0.20s;
}

.product-card:nth-child(5) {
  animation-delay: 0.25s;
}

.product-card:nth-child(6) {
  animation-delay: 0.30s;
}

.product-card:nth-child(7) {
  animation-delay: 0.35s;
}

.product-card:nth-child(8) {
  animation-delay: 0.40s;
}

.product-card:nth-child(9) {
  animation-delay: 0.45s;
}

.product-card:nth-child(10) {
  animation-delay: 0.50s;
}

.product-card:nth-child(11) {
  animation-delay: 0.55s;
}

.product-card:nth-child(12) {
  animation-delay: 0.60s;
}

.product-card:nth-child(13) {
  animation-delay: 0.65s;
}

.product-card:nth-child(14) {
  animation-delay: 0.70s;
}

.product-card:nth-child(15) {
  animation-delay: 0.75s;
}

.product-card:nth-child(16) {
  animation-delay: 0.80s;
}

.product-card:nth-child(17) {
  animation-delay: 0.85s;
}

.product-card:nth-child(18) {
  animation-delay: 0.90s;
}

.product-card:nth-child(19) {
  animation-delay: 0.95s;
}

.product-card:nth-child(20) {
  animation-delay: 1.00s;
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(36px) scale(0.94);
  }

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

.product-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 22px 55px rgba(0, 80, 180, 0.28),
    0 0 0 1px rgba(0, 212, 255, 0.1);
}

/* top glow strip per card */
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), #4d9fff, var(--cyan));
  opacity: 0;
  transition: opacity 0.4s;
}

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

/* badge */
.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, var(--gold), #e0c070);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 50px;
  z-index: 2;
  letter-spacing: 0.4px;
  font-family: sans-serif;
}

.card-badge.na {
  background: rgba(255, 255, 255, 0.09);
  color: var(--muted);
  border: 1px solid var(--card-border);
}

/* image */
.card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 210px;
  background: rgba(255, 255, 255, 0.025);
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.45s ease;
  display: block;
}

.product-card:hover .card-img-wrap img {
  transform: scale(1.1);
  filter: brightness(1.08) saturate(1.15);
}

/* image overlay on hover */
.card-img-wrap::after {
  content: '🔍 Quick View';
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.35s;
  font-family: sans-serif;
  letter-spacing: 0.5px;
  backdrop-filter: blur(3px);
}

.product-card:hover .card-img-wrap::after {
  opacity: 1;
}

/* body */
.card-body {
  padding: 22px 20px 20px;
}

.card-body h3 {
  font-family: 'Times New Roman', Times, serif;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  transition: color 0.3s;
  line-height: 1.3;
}

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

.card-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
  margin: 12px 0;
}

.card-price {
  font-family: 'Times New Roman', Times, serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 5px;
}

.card-discount {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.3px;
}

.card-discount.na {
  color: var(--muted);
}

.card-footer {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.card-btn {
  flex: 1;
  padding: 10px 0;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  font-family: sans-serif;
}

.card-btn.enquire {
  background: linear-gradient(135deg, var(--cyan), #0077ff);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0, 180, 255, 0.25);
}

.card-btn.enquire:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(0, 180, 255, 0.45);
}

.card-btn.wish {
  background: transparent;
  border: 1px solid var(--card-border);
  color: var(--muted);
}

.card-btn.wish:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

/* ── CTA BAND ── */
.cta-band {
  margin: 0 5% 80px;
  background: linear-gradient(135deg, rgba(0, 100, 200, 0.28), rgba(0, 212, 255, 0.13));
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 28px;
  padding: 58px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1), transparent 70%);
  right: -80px;
  top: -80px;
  pointer-events: none;
}

.cta-text h2 {
  font-family: 'Times New Roman', Times, serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-text p {
  color: var(--muted);
  font-size: 15px;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--cyan), #0077ff);
  color: var(--white);
  text-decoration: none;
  padding: 15px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.3s;
  box-shadow: 0 6px 28px rgba(0, 180, 255, 0.38);
  flex-shrink: 0;
  font-family: sans-serif;
}

.cta-phone:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 40px rgba(0, 180, 255, 0.55);
}

/* ── FOOTER ── */
.footer {
  background: linear-gradient(135deg, #0f2027, #0a1628, #0d2540);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 80px 5% 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── CURSOR GLOW ── */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, #7b6cff55, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
}


/* brand col */
.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin: 16px 0 22px;
  max-width: 260px;
}

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

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--cyan-dim);
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-3px);
}

/* ── CURSOR GLOW ── */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, #7b6cff55, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

/* generic footer col */
.footer-col h4 {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 20px;
  border-left: 3px solid var(--green);
  padding-left: 10px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 5px;
}

/* contact rows */
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-icon {
  width: 34px;
  height: 34px;
  background: rgba(0, 212, 255, 0.07);
  border: 1px solid rgba(0, 212, 255, 0.14);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.contact-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

.contact-text strong {
  color: var(--white);
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
  font-family: sans-serif;
}

/* hours col */
.hours-col h4 {
  border-left-color: var(--gold);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13px;
  color: var(--muted);
}

.hours-row:last-of-type {
  border-bottom: none;
}

.hours-row .day {
  font-weight: 600;
  color: var(--white);
}

.hours-row .time {
  color: var(--green);
  font-weight: 700;
}

.hours-row .time.emg {
  color: var(--gold);
}

.phone-support-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(0, 180, 255, 0.18), rgba(0, 100, 200, 0.18));
  border: 1px solid rgba(0, 212, 255, 0.24);
  color: var(--cyan);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 14px;
  transition: all 0.3s;
  font-family: sans-serif;
}

.phone-support-btn:hover {
  background: rgba(0, 212, 255, 0.14);
  transform: translateY(-2px);
}

/* map col */
.footer-map-col h4 {
  border-left-color: var(--cyan);
}

.map-embed {
  width: 100%;
  height: 155px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.direction-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 9px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 25px;
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s;
  font-family: sans-serif;
}

.direction-btn:hover {
  background: var(--cyan);
  color: var(--navy);
}

/* trust bar */
.footer-trust {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  flex-wrap: wrap;
}

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

/* footer bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 22px 0;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 20px;
}

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

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

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #ffffff;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  animation: waPulse 2.2s ease-in-out infinite;
  transition: transform 0.3s;
  line-height: 1;
}

.wa-float i {
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  display: block;
}

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

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 38px rgba(37, 211, 102, 0.72);
  }
}

/* ── SCROLL-TO-TOP ── */
.scroll-top {
  position: fixed;
  bottom: 96px;
  right: 30px;
  width: 42px;
  height: 42px;
  background: var(--navy-mid);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 17px;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s;
}

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

.scroll-top:hover {
  background: var(--cyan-dim);
  transform: translateY(-3px);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .topbar-left {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, 0.98);
    padding: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    gap: 4px;
  }

  nav ul.open {
    display: flex;
  }

  .hero {
    padding: 60px 5% 50px;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }

  .cta-band {
    flex-direction: column;
    text-align: center;
    padding: 40px 6%;
  }

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

  .footer-trust {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

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

  .section-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .hero h1 {
    font-size: 28px;
  }

  .filter-bar {
    gap: 8px;
  }

  .navbar .container .logo h2 a {
    font-size: 0.75rem;
  }
}