/* ============================================================
   Himalayan Mart — Modern Medical / Clean Design System
   ============================================================ */

:root {
  --brand-50: #f0fdfa;
  --brand-100: #ccfbf1;
  --brand-200: #99f6e4;
  --brand-300: #5eead4;
  --brand-400: #2dd4bf;
  --brand-500: #14b8a6;
  --brand-600: #0d9488;
  --brand-700: #0f766e;
  --brand-800: #115e59;
  --brand-900: #134e4a;

  --sky-400: #38bdf8;
  --sky-600: #0284c7;
  --sky-700: #0369a1;

  --navy-700: #1e293b;
  --navy-800: #0f172a;
  --navy-900: #020617;

  --emerald-500: #10b981;
  --amber-400: #fbbf24;
  --rose-500: #f43f5e;

  --ink-600: #475569;
  --ink-700: #334155;
  --ink-800: #1e293b;
  --ink-900: #0f172a;

  --surface: #ffffff;
  --soft: #f8fafc;
  --soft-2: #f0fdfa;
  --line: #e2e8f0;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.12);
  --shadow-brand: 0 16px 40px rgba(13, 148, 136, 0.28);
}

/* ============================================================
   Base
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

@supports not (overflow-x: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  background: var(--surface);
  color: var(--ink-700);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
video,
iframe {
  max-width: 100%;
}

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

a,
button,
.btn,
.nav-toggle,
.pill,
.pd-thumb,
.p-quick-view,
.topbar-social a,
.whatsapp-float,
.close-btn,
.send-btn,
.zoom-close {
  -webkit-tap-highlight-color: transparent;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
  color: var(--ink-900);
  line-height: 1.2;
  margin: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-wide {
  max-width: 1360px;
}

section {
  position: relative;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

.btn i {
  font-size: 14px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-600), var(--sky-600));
  color: #fff;
  box-shadow: var(--shadow-brand);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(13, 148, 136, 0.36);
  filter: brightness(1.06);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.65);
}

.btn-outline:hover {
  background: #fff;
  color: var(--brand-700);
  transform: translateY(-3px);
}

.btn-light {
  background: #fff;
  color: var(--brand-700);
  box-shadow: var(--shadow-md);
}

.btn-light:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-navy {
  background: linear-gradient(135deg, var(--navy-800), var(--sky-700));
  color: #fff;
  box-shadow: 0 16px 40px rgba(2, 132, 199, 0.25);
}

.btn-navy:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
}

.btn-lg {
  padding: 17px 36px;
  font-size: 16px;
}

.btn-block {
  width: 100%;
}

/* ============================================================
   Top Utility Bar
   ============================================================ */
.topbar {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13.5px;
  padding: 9px 0;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
}

.topbar a:hover {
  color: var(--brand-300);
}

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

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar-item i {
  color: var(--brand-400);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  font-size: 12px;
  transition: background 0.2s, transform 0.2s;
}

.topbar-social a:hover {
  background: var(--brand-600);
  transform: translateY(-2px);
}

/* ============================================================
   Site Header / Navigation
   ============================================================ */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 var(--line);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

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

.brand img {
  height: 46px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 21px;
  color: var(--ink-900);
  letter-spacing: -0.02em;
}

.brand-name span {
  color: var(--brand-600);
}

.brand-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-600);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav > li {
  position: relative;
}

.main-nav > li > a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-800);
  padding: 10px 0;
  position: relative;
  transition: color 0.2s;
}

.main-nav > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 3px;
  width: 0;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--brand-500), var(--sky-400));
  transition: width 0.3s ease;
}

.main-nav > li > a:hover,
.main-nav > li > a.active {
  color: var(--brand-600);
}

.main-nav > li > a:hover::after,
.main-nav > li > a.active::after {
  width: 100%;
}

.main-nav .has-dropdown > a .fa-chevron-down {
  font-size: 11px;
  color: var(--ink-600);
  transition: transform 0.25s;
}

.main-nav .has-dropdown:hover > a .fa-chevron-down {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: -20px;
  min-width: 260px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.28s ease;
  z-index: 50;
}

.main-nav .has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-700);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.dropdown a i {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-50);
  color: var(--brand-600);
  border-radius: 8px;
  font-size: 13px;
}

.dropdown a:hover {
  background: var(--brand-50);
  color: var(--brand-700);
  transform: translateX(4px);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.header-cta .btn {
  padding: 12px 22px;
  font-size: 14px;
}

.nav-toggle {
  display: none;
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  color: var(--brand-700);
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  font-size: 19px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.nav-toggle:hover {
  background: var(--brand-100);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid var(--line);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.mobile-menu.open {
  max-height: 80vh;
  overflow-y: auto;
}

.mobile-menu-inner {
  padding: 18px 20px 26px;
}

.mobile-menu a.mm-link {
  display: block;
  padding: 14px 10px;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink-800);
  border-bottom: 1px solid var(--line);
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-menu a.mm-link:hover {
  color: var(--brand-600);
  padding-left: 16px;
}

.mobile-menu .mm-sub {
  padding: 6px 0 12px 18px;
}

.mobile-menu .mm-sub a {
  display: block;
  padding: 10px 10px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink-600);
  border-bottom: 1px dashed var(--line);
}

.mobile-menu .mm-sub a:hover {
  color: var(--brand-600);
}

.mobile-menu .btn {
  margin-top: 16px;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--navy-900);
  background-image: url("assets/images/medical_equipments-800.jpg");
  background-image: image-set(
    url("assets/images/medical_equipments-800.webp") type("image/webp"),
    url("assets/images/medical_equipments-800.jpg") type("image/jpeg")
  );
  background-size: cover;
  background-position: center;
}

@media (min-width: 768px) {
  .hero {
    background-image: url("assets/images/medical_equipments-1600.jpg");
    background-image: image-set(
      url("assets/images/medical_equipments-1600.webp") type("image/webp"),
      url("assets/images/medical_equipments-1600.jpg") type("image/jpeg")
    );
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(2, 6, 23, 0.92) 0%, rgba(15, 23, 42, 0.82) 42%, rgba(13, 148, 136, 0.55) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 400px at 85% 20%, rgba(56, 189, 248, 0.18), transparent 60%),
    radial-gradient(500px 400px at 10% 90%, rgba(45, 212, 191, 0.16), transparent 60%);
  pointer-events: none;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse at 20% 40%, #000 0%, transparent 70%);
  mask-image: radial-gradient(ellipse at 20% 40%, #000 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 90px 0;
}

.hero-content {
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  margin-bottom: 26px;
}

.hero-badge i {
  color: var(--amber-400);
  animation: pulse-glow 2.2s ease-in-out infinite;
}

.hero-title {
  color: #fff;
  font-size: clamp(34px, 6vw, 62px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 24px;
}

.hero-title .grad {
  background: linear-gradient(90deg, var(--brand-300), var(--sky-400));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.82);
  font-size: 17.5px;
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 44px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 600;
}

.hero-trust li i {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.18);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: var(--emerald-500);
  border-radius: 50%;
  font-size: 12px;
}

/* Floating device card */
.hero-card {
  position: absolute;
  right: 4%;
  bottom: 8%;
  z-index: 3;
  display: none;
}

@media (min-width: 1024px) {
  .hero-card {
    display: block;
  }
}

.hero-card .hc-inner {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  min-width: 250px;
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}

.hero-card h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.hero-card h4 i {
  color: var(--brand-300);
}

.hc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hc-row:last-child {
  border-bottom: 0;
}

.hc-label {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65);
}

.hc-value {
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
}

/* ============================================================
   Sections / headings
   ============================================================ */
.section {
  padding: 88px 0;
}

.section-soft {
  background: linear-gradient(180deg, var(--soft) 0%, #fff 100%);
}

.section-brand-soft {
  background: linear-gradient(180deg, var(--brand-50), #fff);
}

.section-head {
  max-width: 640px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--brand-600);
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-title .grad {
  background: linear-gradient(90deg, var(--brand-600), var(--sky-600));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-lead {
  color: var(--ink-600);
  font-size: 17px;
  line-height: 1.7;
}

.section-head-left {
  margin: 0 0 44px;
  text-align: left;
}

/* ============================================================
   Stats band
   ============================================================ */
.stats-band {
  position: relative;
  z-index: 5;
  margin-top: -58px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 26px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 4px solid var(--brand-500);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:nth-child(2) {
  border-top-color: var(--sky-600);
}
.stat-card:nth-child(3) {
  border-top-color: var(--emerald-500);
}
.stat-card:nth-child(4) {
  border-top-color: var(--amber-400);
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.14);
}

.stat-icon {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--brand-600);
  background: var(--brand-50);
}

.stat-num {
  font-family: "Sora", sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--ink-900);
  line-height: 1;
}

.stat-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-600);
  margin-top: 5px;
}

/* ============================================================
   Feature cards
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-500), var(--sky-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--brand-600);
  background: linear-gradient(135deg, var(--brand-50), var(--brand-100));
  margin-bottom: 22px;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-6deg);
}

.feature-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--ink-600);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   Product cards
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-media {
  position: relative;
  height: 230px;
  background: linear-gradient(135deg, var(--soft), var(--brand-50));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.08);
}

.product-media .p-placeholder {
  font-size: 44px;
  color: #cbd5e1;
}

.p-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: linear-gradient(135deg, var(--brand-600), var(--sky-600));
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 7px 13px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}

.p-quick-view {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
}

.product-card:hover .p-quick-view {
  opacity: 1;
  transform: translateY(0);
}

.p-quick-view:hover {
  background: var(--brand-600);
  color: #fff;
}

.product-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.p-cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--sky-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.p-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1.35;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}

.product-card:hover .p-name {
  color: var(--brand-600);
}

.p-price {
  font-family: "Sora", sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: var(--brand-700);
  margin-top: auto;
  margin-bottom: 16px;
}

.p-actions {
  display: flex;
  gap: 10px;
}

.p-actions .btn {
  flex: 1;
  padding: 12px 16px;
  font-size: 13.5px;
}

.p-actions .btn i {
  font-size: 12px;
}

.btn-outline-brand {
  background: transparent;
  color: var(--brand-700);
  border: 2px solid var(--brand-200);
}

.btn-outline-brand:hover {
  background: var(--brand-600);
  border-color: var(--brand-600);
  color: #fff;
  transform: translateY(-3px);
}

/* ============================================================
   Split (about preview)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-media {
  position: relative;
}

.split-media .sm-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.split-media .sm-main img {
  display: block;
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.sm-float {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  animation: float 5s ease-in-out infinite;
}

.sm-float .sm-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--brand-50);
  color: var(--brand-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.sm-float strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 18px;
  color: var(--ink-900);
  line-height: 1.2;
}

.sm-float span {
  font-size: 13px;
  color: var(--ink-600);
}

.sm-float-1 {
  top: 40px;
  right: -26px;
}

.sm-float-2 {
  bottom: -26px;
  left: 20px;
}

.split-body .section-eyebrow {
  margin-bottom: 14px;
}

.check-list {
  margin: 26px 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 22px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-weight: 600;
  color: var(--ink-700);
  font-size: 15px;
}

.check-list li i {
  color: var(--emerald-500);
  margin-top: 3px;
  font-size: 14px;
}

/* ============================================================
   Service cards
   ============================================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--brand-50);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::after {
  transform: scale(2.4);
}

.service-icon {
  width: 62px;
  height: 62px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--brand-600), var(--sky-600));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-brand);
  position: relative;
  z-index: 1;
}

.service-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.service-card p {
  color: var(--ink-600);
  font-size: 15px;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.service-card .sc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-weight: 700;
  font-size: 14px;
  color: var(--brand-600);
  transition: gap 0.25s;
  position: relative;
  z-index: 1;
}

.service-card .sc-link:hover {
  gap: 13px;
}

/* ============================================================
   Testimonials
   ============================================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 32px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.t-stars {
  color: var(--amber-400);
  font-size: 14px;
  margin-bottom: 18px;
  letter-spacing: 3px;
}

.t-text {
  color: var(--ink-700);
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.t-person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.t-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-500), var(--sky-500, var(--sky-400)));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}

.t-name {
  font-weight: 700;
  color: var(--ink-900);
  font-size: 15px;
}

.t-role {
  font-size: 13px;
  color: var(--ink-600);
}

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(120deg, var(--brand-800), var(--sky-700) 60%, var(--navy-800));
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(300px 200px at 85% 10%, rgba(94, 234, 212, 0.2), transparent 60%),
    radial-gradient(300px 200px at 8% 90%, rgba(56, 189, 248, 0.18), transparent 60%);
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  max-width: 560px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   Page hero (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  background: linear-gradient(120deg, var(--navy-900), var(--brand-900) 70%, var(--sky-700));
  padding: 74px 0 66px;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 300px at 85% 15%, rgba(94, 234, 212, 0.14), transparent 60%),
    radial-gradient(400px 260px at 12% 85%, rgba(56, 189, 248, 0.14), transparent 60%);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(30px, 4.6vw, 46px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.page-hero .ph-sub {
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 22px;
  flex-wrap: wrap;
  max-width: 100%;
}

.breadcrumb .current {
  overflow-wrap: anywhere;
}

.breadcrumb a {
  color: var(--brand-300);
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb .sep {
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumb .current {
  color: #fff;
}

/* ============================================================
   Catalog / filters (products page)
   ============================================================ */
.catalog-bar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 22px;
  margin-bottom: 34px;
}

.catalog-bar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.catalog-title h2 {
  font-size: 22px;
  font-weight: 800;
}

.catalog-title p {
  font-size: 14px;
  color: var(--ink-600);
  margin-top: 2px;
}

.catalog-search {
  display: flex;
  gap: 10px;
  align-items: center;
}

.catalog-search .search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 0 18px;
}

.catalog-search .search-field i {
  color: var(--ink-600);
  font-size: 14px;
}

.catalog-search input {
  border: none;
  background: transparent;
  padding: 13px 0;
  font-size: 14.5px;
  font-family: inherit;
  outline: none;
  width: 240px;
  color: var(--ink-800);
}

.filter-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-pills .pill {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--line);
  background: #fff;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink-700);
  cursor: pointer;
  transition: all 0.22s ease;
}

.filter-pills .pill:hover {
  border-color: var(--brand-300);
  color: var(--brand-700);
}

.filter-pills .pill.active {
  background: linear-gradient(135deg, var(--brand-600), var(--sky-600));
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-brand);
}

.empty-state {
  text-align: center;
  padding: 70px 20px;
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
}

.empty-state i {
  font-size: 52px;
  color: #cbd5e1;
  margin-bottom: 18px;
}

.empty-state h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.empty-state p {
  color: var(--ink-600);
}

/* ============================================================
   Product detail
   ============================================================ */
.pd-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 46px;
  align-items: start;
}

.pd-gallery {
  position: sticky;
  top: 96px;
}

.pd-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--soft), var(--brand-50));
  box-shadow: var(--shadow-md);
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  cursor: zoom-in;
  transition: transform 0.4s ease;
}

.pd-zoom-hint {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-700);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: background 0.2s;
}

.pd-zoom-hint:hover {
  background: var(--brand-600);
  color: #fff;
}

.pd-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.pd-thumb {
  flex-shrink: 0;
  width: 82px;
  height: 70px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 3px solid var(--line);
  opacity: 0.7;
  transition: all 0.22s ease;
}

.pd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pd-thumb:hover {
  opacity: 1;
}

.pd-thumb.active {
  border-color: var(--brand-500);
  opacity: 1;
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.2);
}

.pd-details h1 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.pd-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.pd-cat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-50);
  color: var(--brand-700);
  border: 1px solid var(--brand-100);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
}

.pd-featured-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, var(--amber-400), #f59e0b);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 8px 15px;
  border-radius: var(--radius-pill);
}

.pd-price-box {
  background: linear-gradient(135deg, var(--brand-50), var(--soft));
  border: 1px solid var(--brand-100);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.pd-price-box i {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--brand-600), var(--sky-600));
  color: #fff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.pd-price-box .price-label {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-700);
}

.pd-price-box .price-value {
  font-family: "Sora", sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--ink-900);
}

.pd-subtitle {
  background: #fff;
  border-left: 4px solid var(--brand-500);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 22px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.pd-subtitle h2,
.pd-subtitle h3,
.pd-subtitle h4 {
  color: var(--brand-800);
  margin: 12px 0 6px;
  font-weight: 700;
}

.pd-subtitle h2 {
  font-size: 18px;
}

.pd-subtitle h3 {
  font-size: 16px;
}

.pd-subtitle ul {
  list-style: none;
  padding-left: 6px;
  margin: 10px 0;
}

.pd-subtitle ul li {
  padding: 5px 0 5px 24px;
  position: relative;
  font-size: 15px;
  color: var(--ink-700);
}

.pd-subtitle ul li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--emerald-500);
  font-size: 14px;
}

.pd-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.pd-trust {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.pd-trust li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-600);
}

.pd-trust li i {
  color: var(--brand-600);
}

.pd-description {
  margin-top: 60px;
}

.pd-description .pd-sec-title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.pd-description .pd-sec-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}

.spec-table th {
  background: linear-gradient(90deg, var(--brand-600), var(--sky-600));
  color: #fff;
  text-align: left;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 700;
}

.spec-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--ink-700);
  vertical-align: top;
}

.spec-table td:first-child {
  font-weight: 700;
  color: var(--ink-900);
  background: var(--soft);
  width: 34%;
}

.spec-table tr:last-child td {
  border-bottom: 0;
}

.spec-table tr:hover td {
  background: var(--brand-50);
}

.pd-desc-text {
  color: var(--ink-600);
  font-size: 15.5px;
  line-height: 1.75;
}

/* Zoom modal */
.zoom-modal {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.92);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.zoom-modal.open {
  display: flex;
}

.zoom-modal img {
  max-width: 92vw;
  max-height: 86vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.zoom-close {
  position: absolute;
  top: 22px;
  right: 26px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 22px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.zoom-close:hover {
  background: var(--rose-500);
}

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

.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.cc-icon {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  color: #fff;
}

.cc-icon.green {
  background: linear-gradient(135deg, var(--emerald-500), #059669);
}
.cc-icon.blue {
  background: linear-gradient(135deg, var(--sky-400), var(--sky-600));
}
.cc-icon.teal {
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
}
.cc-icon.amber {
  background: linear-gradient(135deg, var(--amber-400), #f59e0b);
}

.cc-label {
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-600);
  margin-bottom: 6px;
}

.contact-card > div {
  min-width: 0;
}

.cc-value {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1.4;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.cc-value a {
  transition: color 0.2s;
}

.cc-value a:hover {
  color: var(--brand-600);
}

.form-panel {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  padding: 40px;
}

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

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-800);
  margin-bottom: 9px;
}

.form-control {
  width: 100%;
  padding: 15px 18px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink-800);
  background: var(--soft);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.form-control:focus {
  border-color: var(--brand-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.14);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

.form-alert {
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-alert.success {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.form-alert.error {
  background: #fff1f2;
  color: #be123c;
  border: 1px solid #fecdd3;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

/* ============================================================
   About / Services pages
   ============================================================ */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.value-card .vc-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--brand-50);
  color: var(--brand-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.value-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14px;
  color: var(--ink-600);
  line-height: 1.6;
  margin: 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: start;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.step-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  position: relative;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.step-num {
  counter-increment: step;
  font-family: "Sora", sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--brand-600), var(--sky-600));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.25;
  margin-bottom: 10px;
}

.step-card h3 {
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: var(--ink-600);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.72);
  margin-top: 40px;
}

.footer-top {
  padding: 70px 0 46px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 44px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-brand img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-brand h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
}

.footer-brand h3 span {
  color: var(--brand-400);
}

.footer-about {
  font-size: 14.5px;
  line-height: 1.75;
  margin-bottom: 22px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.25s ease;
}

.footer-social a:hover {
  background: linear-gradient(135deg, var(--brand-500), var(--sky-500, var(--sky-400)));
  color: #fff;
  transform: translateY(-4px);
}

.footer-col h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 3px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--brand-500), var(--sky-400));
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s, transform 0.2s;
}

.footer-links a i {
  font-size: 11px;
  color: var(--brand-400);
  transition: transform 0.2s;
}

.footer-links a:hover {
  color: var(--brand-300);
  transform: translateX(4px);
}

.footer-contact li {
  display: flex;
  gap: 13px;
  margin-bottom: 16px;
  font-size: 14.5px;
  align-items: flex-start;
}

.footer-contact li i {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: var(--brand-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.footer-contact a:hover {
  color: var(--brand-300);
}

.footer-contact li a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

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

.footer-bottom .legal {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-bottom .legal a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.footer-bottom .legal a:hover {
  color: var(--brand-300);
}

/* ============================================================
   WhatsApp (preserved, restyled)
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 8px 18px 8px 10px;
  box-shadow: 0 10px 30px rgba(18, 140, 126, 0.4);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: whatsappPulse 2.4s infinite;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.whatsapp-float:hover {
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 16px 40px rgba(18, 140, 126, 0.5);
}

.whatsapp-float button {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.whatsapp-float img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(18, 140, 126, 0.35); }
  50% { box-shadow: 0 10px 44px rgba(37, 211, 102, 0.55); }
}

.whatsapp-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.6);
  z-index: 1100;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(3px);
}

.whatsapp-popup.show {
  display: flex;
}

.whatsapp-popup-content {
  background: #fff;
  border-radius: var(--radius-lg);
  width: 92%;
  max-width: 400px;
  max-height: 82vh;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: popupFadeIn 0.3s ease-out;
}

@keyframes popupFadeIn {
  from { opacity: 0; transform: scale(0.92) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.whatsapp-popup-header {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.whatsapp-popup-header h3 {
  color: #fff;
  margin: 0;
  font-size: 17px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.close-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.35);
}

.whatsapp-popup-body {
  padding: 24px;
}

.whatsapp-popup-body p {
  margin: 0 0 16px;
  color: var(--ink-700);
}

#whatsapp-message {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  resize: vertical;
  font-family: inherit;
  margin-bottom: 16px;
  box-sizing: border-box;
  font-size: 14.5px;
  outline: none;
}

#whatsapp-message:focus {
  border-color: #25d366;
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.15);
}

.send-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border: none;
  padding: 13px 20px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  width: 100%;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  transition: filter 0.2s;
}

.send-btn:hover {
  filter: brightness(1.1);
}

/* ============================================================
   Reveal animations
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.88); }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .feature-grid,
  .service-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

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

  .main-nav {
    display: none;
  }

  .header-cta .btn-desktop {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    display: block;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .sm-float-1 {
    right: 12px;
  }

  .pd-layout,
  .contact-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .pd-gallery {
    position: static;
  }

  .hero {
    min-height: 560px;
  }
}

@media (hover: none) {
  .p-quick-view {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }

  .feature-grid,
  .service-grid,
  .testimonial-grid,
  .product-grid,
  .value-grid,
  .process-steps,
  .stats-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-band {
    padding: 36px 24px;
    text-align: center;
    justify-content: center;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero {
    min-height: 520px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .topbar-inner {
    justify-content: center;
    text-align: center;
  }

  .topbar-right {
    display: none;
  }

  .catalog-search input {
    width: 140px;
  }

  .pd-main {
    height: 340px;
  }

  .form-panel {
    padding: 28px 22px;
  }
}

/* ============================================================
   Mobile refinements
   ============================================================ */

/* Small tablets / landscape phones */
@media (max-width: 767px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .split-media .sm-main img {
    height: 320px;
  }

  .sm-float {
    padding: 14px 16px;
    gap: 10px;
  }

  .sm-float .sm-icon {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .sm-float strong {
    font-size: 15px;
  }

  .section-head {
    margin-bottom: 38px;
  }

  .footer-top {
    padding: 56px 0 34px;
  }
}

/* Phones */
@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }

  /* Topbar: keep essentials, drop address/hours on small screens */
  .topbar {
    padding: 7px 0;
  }

  .topbar-left {
    justify-content: center;
    gap: 10px 18px;
  }

  .topbar-item {
    font-size: 12.5px;
  }

  .topbar-item:nth-of-type(3),
  .topbar-item:nth-of-type(4) {
    display: none;
  }

  /* Header */
  .header-inner {
    padding: 12px 0;
    gap: 10px;
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    height: 40px;
  }

  .brand-name {
    font-size: 18px;
  }

  .brand-tag {
    font-size: 9.5px;
    letter-spacing: 0.1em;
  }

  .header-cta {
    gap: 8px;
  }

  .mobile-menu-inner {
    padding: 14px 16px 22px;
  }

  .mobile-menu a.mm-link {
    padding: 13px 8px;
    font-size: 15.5px;
  }

  /* Hero */
  .hero {
    min-height: 540px;
  }

  .hero-inner {
    padding: 56px 0 72px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 8px 14px;
    margin-bottom: 20px;
  }

  .hero-sub {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .hero-actions {
    gap: 12px;
    margin-bottom: 34px;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-trust {
    gap: 12px;
  }

  .hero-trust li {
    font-size: 13px;
  }

  /* Stats */
  .stats-band {
    margin-top: -34px;
  }

  .stats-grid {
    gap: 14px;
  }

  .stat-card {
    padding: 20px 16px;
    gap: 12px;
  }

  .stat-icon {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .stat-num {
    font-size: 24px;
  }

  /* Cards */
  .feature-card {
    padding: 28px 22px;
  }

  .feature-icon {
    width: 56px;
    height: 56px;
    font-size: 21px;
  }

  .service-card {
    padding: 28px 22px;
  }

  .testimonial-card {
    padding: 26px 22px;
  }

  .value-card,
  .step-card {
    padding: 24px 20px;
  }

  /* Products */
  .product-media {
    height: 200px;
  }

  .product-body {
    padding: 16px;
  }

  .p-name {
    font-size: 15.5px;
  }

  .p-price {
    font-size: 17px;
  }

  .p-quick-view {
    opacity: 1;
    transform: none;
    width: 46px;
    height: 46px;
  }

  .p-actions .btn {
    padding: 11px 12px;
    font-size: 13px;
  }

  /* Sections */
  .section-head {
    margin: 0 auto 34px;
  }

  .section-lead {
    font-size: 15.5px;
  }

  /* Page hero */
  .page-hero {
    padding: 52px 0 48px;
  }

  .page-hero h1 {
    font-size: 30px;
  }

  .ph-sub {
    font-size: 15.5px;
  }

  .breadcrumb {
    font-size: 12.5px;
    gap: 8px;
    padding: 8px 16px;
  }

  /* Catalog */
  .catalog-bar {
    padding: 16px;
    margin-bottom: 26px;
  }

  .catalog-title h2 {
    font-size: 19px;
  }

  .catalog-search {
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
  }

  .catalog-search .search-field {
    flex: 1 1 100%;
  }

  .catalog-search input {
    width: 100%;
  }

  .catalog-search .btn {
    flex: 1;
  }

  .filter-pills {
    gap: 8px;
  }

  .filter-pills .pill {
    padding: 9px 14px;
    font-size: 12.5px;
  }

  /* Product detail */
  .pd-main {
    height: 300px;
  }

  .pd-thumb {
    width: 72px;
    height: 62px;
  }

  .pd-details h1 {
    font-size: 24px;
  }

  .pd-price-box {
    padding: 14px 16px;
    gap: 12px;
  }

  .pd-price-box i {
    width: 42px;
    height: 42px;
    font-size: 15px;
  }

  .pd-price-box .price-value {
    font-size: 22px;
  }

  .pd-subtitle {
    padding: 16px;
  }

  .pd-actions {
    gap: 10px;
  }

  .pd-actions .btn {
    width: 100%;
  }

  .pd-description {
    margin-top: 40px;
  }

  .pd-description .pd-sec-title {
    font-size: 20px;
  }

  .spec-table th,
  .spec-table td {
    padding: 12px 14px;
    font-size: 13.5px;
  }

  .pd-trust {
    gap: 14px;
  }

  /* Contact */
  .contact-card {
    padding: 20px 16px;
    gap: 14px;
  }

  .cc-icon {
    width: 48px;
    height: 48px;
    font-size: 17px;
  }

  .cc-value {
    font-size: 15.5px;
  }

  .form-panel {
    padding: 24px 18px;
  }

  .form-control {
    padding: 13px 15px;
    font-size: 16px;
  }

  .map-wrap iframe {
    height: 260px;
  }

  .zoom-modal {
    padding: 16px;
  }

  .zoom-modal img {
    max-width: calc(100vw - 32px);
  }

  .pd-layout {
    gap: 28px;
  }

  /* CTA */
  .cta-band {
    padding: 32px 20px;
    gap: 22px;
  }

  .cta-actions {
    gap: 12px;
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
  }

  /* Split */
  .split {
    gap: 44px;
  }

  .split-media .sm-main img {
    height: 280px;
  }

  .sm-float-1 {
    top: 14px;
    right: 10px;
  }

  .sm-float-2 {
    bottom: -20px;
    left: 10px;
  }

  .sm-float {
    padding: 12px 14px;
    gap: 10px;
  }

  .sm-float .sm-icon {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }

  .sm-float strong {
    font-size: 14px;
  }

  .sm-float span {
    font-size: 11.5px;
  }

  /* Footer */
  .footer-top {
    padding: 48px 0 28px;
  }

  .footer-col h4 {
    margin-bottom: 16px;
  }

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

  .footer-bottom .legal {
    justify-content: center;
    gap: 16px;
  }

  /* WhatsApp */
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    padding: 6px 14px 6px 8px;
  }

  .whatsapp-float img {
    width: 34px;
    height: 34px;
  }

  .whatsapp-float button {
    font-size: 14px;
    gap: 7px;
  }

  .whatsapp-popup-content {
    width: calc(100% - 28px);
  }

  /* Buttons */
  .btn-lg {
    padding: 15px 26px;
    font-size: 15px;
  }

  .btn {
    white-space: normal;
  }
}

/* Small phones */
@media (max-width: 400px) {
  .brand img {
    height: 36px;
  }

  .brand-name {
    font-size: 16px;
  }

  .brand-tag {
    display: none;
  }

  .hero-title {
    font-size: 29px;
  }

  .topbar-item:nth-of-type(2) {
    display: none;
  }

  .pd-main {
    height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
