/* ============================================================
   MATKO – Premium 3D Car Mats
   styles.css
   ============================================================ */

/* ── 1. CSS Custom Properties ─────────────────────────────── */
:root {
  /* Brand Colors */
  --blue:        #0057B8;
  --blue-dark:   #003e87;
  --blue-light:  #1a6fd4;
  --red:         #D62828;
  --red-dark:    #b01e1e;
  --white:       #FFFFFF;
  --grey-light:  #F7F7F7;
  --grey-mid:    #E8E8E8;
  --grey-border: #DDDDDD;
  --text-dark:   #222222;
  --text-mid:    #555555;
  --text-light:  #888888;

  /* WhatsApp */
  --whatsapp:    #25D366;
  --whatsapp-dk: #1ebe5a;

  /* Type Scale */
  --font-display: 'Poppins', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Spacing */
  --section-py: 96px;
  --container:  1200px;
  --gap:        32px;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0,0,0,.07);
  --shadow-md:  0 6px 24px rgba(0,0,0,.10);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.13);
  --shadow-blue: 0 8px 28px rgba(0,87,184,.25);

  /* Transitions */
  --tr:   0.28s ease;
  --tr-fast: 0.18s ease;
}

/* ── 2. Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* ── 3. Utility Classes ───────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-py) 0;
}

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

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(0,87,184,.08);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.hide-mobile { display: none; }

/* ── 4. Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--tr);
  white-space: nowrap;
  text-decoration: none;
}

.btn-lg { font-size: 1.05rem; padding: 16px 32px; }
.btn-sm { font-size: 0.85rem; padding: 10px 18px; border-radius: var(--radius-sm); }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0,87,184,.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--grey-light);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-ghost:hover {
  background: rgba(0,87,184,.06);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-dk);
  border-color: var(--whatsapp-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.3);
}

/* ── 5. Header / Navigation ───────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--grey-border);
  transition: box-shadow var(--tr);
}

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

.nav-container {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 70px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-mark {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -1px;
  box-shadow: var(--shadow-blue);
}

.logo-mark--sm {
  width: 34px;
  height: 34px;
  font-size: 1.1rem;
  border-radius: 8px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--text-dark);
}

.logo--white .logo-name { color: var(--white); }

.logo-tagline {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-light);
  text-transform: uppercase;
}

.logo--white .logo-tagline { color: rgba(255,255,255,.65); }

/* Nav */
.nav { margin-left: auto; }

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

.nav-link {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--tr-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue);
  background: rgba(0,87,184,.07);
}

/* Nav CTA */
.nav-cta { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--tr);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  top: 70px;
  background: var(--white);
  z-index: 999;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transform: translateX(100%);
  transition: transform var(--tr);
}

.mobile-nav.open {
  transform: translateX(0);
}

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

.mobile-nav-link {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  transition: all var(--tr-fast);
}

.mobile-nav-link:hover {
  color: var(--blue);
  background: rgba(0,87,184,.06);
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── 6. Hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,30,80,.87) 0%,
    rgba(0,55,140,.72) 45%,
    rgba(0,30,60,.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: 32px;
  padding-bottom: 32px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-badge i { color: #FFD700; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

.hero-title-accent {
  color: #5AAEFF;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.85);
  margin-bottom: 36px;
  line-height: 1.75;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.85);
  font-size: 0.88rem;
  font-weight: 500;
}

.trust-item i { color: #5AAEFF; }

.trust-divider {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,.25);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  animation: bounce 2.2s infinite;
  transition: background var(--tr);
}

.hero-scroll:hover { background: rgba(255,255,255,.22); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ── 7. Stats Band ────────────────────────────────────────── */
.stats-band {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  padding: 52px 0;
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px;
  border-right: 1px solid rgba(255,255,255,.15);
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900;
  color: #5AAEFF;
  line-height: 1;
  display: inline;
  margin-left: 2px;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,.72);
  font-weight: 500;
  margin-top: 6px;
}

/* ── 8. About ─────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}

.about-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 28px rgba(214,40,40,.35);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.25;
  border: 3px solid var(--white);
}

.about-img-badge i {
  font-size: 1.4rem;
  margin-bottom: 3px;
}

.about-content .section-eyebrow { display: inline-block; margin-bottom: 14px; }
.about-content .section-title { text-align: left; margin-bottom: 18px; }

.about-lead {
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-body {
  color: var(--text-mid);
  margin-bottom: 28px;
  line-height: 1.8;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 36px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-mid);
}

.about-list li i {
  color: var(--blue);
  font-size: 1rem;
  flex-shrink: 0;
}

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

/* ── 9. Products ──────────────────────────────────────────── */
.product-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.tab-btn {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 22px;
  background: var(--white);
  color: var(--text-mid);
  border: 2px solid var(--grey-border);
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--tr);
}

.tab-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.tab-btn.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
}

/* Category strips */
.category-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

.cat-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border: 2px solid var(--grey-border);
  border-radius: var(--radius-lg);
  padding: 22px 28px;
  transition: all var(--tr);
  cursor: default;
}

.cat-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.cat-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.cat-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.cat-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.55;
}

/* Product Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

/* Product Card */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-border);
  transition: all var(--tr);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,87,184,.2);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  height: 210px;
}

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

.product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.product-badge--boot {
  background: var(--red);
}

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

.product-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 9px;
  line-height: 1.3;
}

.product-desc {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
}

.product-features {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.product-features span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue);
  background: rgba(0,87,184,.07);
  padding: 4px 10px;
  border-radius: 100px;
}

.product-features span i { font-size: 0.7rem; }

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--grey-border);
  margin-top: auto;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-currency {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-mid);
  font-family: var(--font-display);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

/* Products hidden state */
.product-card.hidden {
  display: none;
}

/* Products CTA */
.products-cta {
  text-align: center;
  background: var(--white);
  border: 2px dashed var(--grey-border);
  border-radius: var(--radius-lg);
  padding: 42px 32px;
}

.products-cta p {
  color: var(--text-mid);
  margin-bottom: 20px;
  font-size: 1rem;
}

/* ── 10. Why Us ───────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--grey-border);
  transition: all var(--tr);
  text-align: left;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0,87,184,.2);
}

.why-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.why-icon--blue { background: rgba(0,87,184,.1); color: var(--blue); }
.why-icon--red  { background: rgba(214,40,40,.1); color: var(--red); }

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── 11. CTA Band ─────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(105deg, var(--red-dark) 0%, var(--red) 55%, #e84040 100%);
  padding: 72px 0;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-band-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.cta-band-text p {
  font-size: 1rem;
  color: rgba(255,255,255,.82);
}

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

/* ── 12. Reviews ──────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--grey-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--tr);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.review-stars {
  display: flex;
  gap: 3px;
  color: #FFBC00;
  font-size: 1rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 18px;
  border-top: 1px solid var(--grey-border);
}

.review-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}

.review-author span {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ── 13. Contact ──────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-card {
  background: var(--grey-light);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--grey-border);
}

.contact-business-name {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--grey-border);
}

.contact-business-name strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
}

.contact-business-name span {
  font-size: 0.8rem;
  color: var(--text-light);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.contact-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2px;
}

.contact-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

.contact-link {
  color: var(--blue);
  transition: color var(--tr-fast);
}

.contact-link:hover { color: var(--blue-dark); }

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Map */
.map-placeholder {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 480px;
}

.map-inner {
  width: 100%;
  height: 100%;
}

.map-inner iframe {
  display: block;
}

.map-overlay-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--blue);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  pointer-events: none;
}

/* ── 14. Footer ───────────────────────────────────────────── */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,.75);
  padding-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.75;
  margin-top: 18px;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.88rem;
  color: rgba(255,255,255,.65);
  transition: color var(--tr-fast);
}

.footer-contact a:hover { color: var(--white); }
.footer-contact a i { color: var(--blue-light); }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a,
.footer-col ul li {
  font-size: 0.88rem;
  color: rgba(255,255,255,.6);
  transition: color var(--tr-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.footer-contact-list li i { color: rgba(255,255,255,.35); font-size: 0.8rem; }

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  transition: all var(--tr);
}

.footer-socials a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  padding: 22px 0;
}

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

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,.45);
}

.footer-credit a {
  color: rgba(255,255,255,.55);
  transition: color var(--tr-fast);
}
.footer-credit a:hover { color: var(--white); }

/* ── 15. Floating Buttons ─────────────────────────────────── */
/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--tr);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--blue-dark);
  transform: translateY(-3px);
}

/* WhatsApp float */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  z-index: 900;
  transition: all var(--tr);
}

.wa-float:hover {
  background: var(--whatsapp-dk);
  transform: scale(1.1);
}

.wa-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--text-dark);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--tr);
}

.wa-float:hover .wa-tooltip {
  opacity: 1;
}

/* ── 16. Scroll Reveal Animations ─────────────────────────── */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal       { transform: translateY(30px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal.in-view,
.reveal-left.in-view,
.reveal-right.in-view {
  opacity: 1;
  transform: translate(0);
}

/* ── 17. Responsive – Tablet ──────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }

  .stats-grid          { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }

  .about-grid          { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrap img  { height: 360px; }

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

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

  .reviews-grid        { grid-template-columns: 1fr; gap: 20px; max-width: 580px; margin: 0 auto; }

  .contact-grid        { grid-template-columns: 1fr; gap: 40px; }
  .map-placeholder     { height: 360px; }

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

/* ── 18. Responsive – Mobile ──────────────────────────────── */
@media (max-width: 768px) {
  :root { --section-py: 56px; }

  /* Nav */
  .nav, .nav-cta { display: none; }
  .hamburger     { display: flex; }

  /* Hero */
  .hero          { min-height: 100svh; }
  .hero-content  { padding-top: 48px; }
  .hero-trust    { gap: 12px; }
  .trust-divider { display: none; }

  /* Stats */
  .stats-grid    { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-item     { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); padding: 24px 12px; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.12); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }

  /* Category strip */
  .category-strip   { grid-template-columns: 1fr; }

  /* Products */
  .products-grid    { grid-template-columns: 1fr; }

  /* Why */
  .why-grid         { grid-template-columns: 1fr; }

  /* CTA band */
  .cta-band-inner   { flex-direction: column; text-align: center; }
  .cta-band-actions { justify-content: center; }

  /* Reviews */
  .reviews-grid     { max-width: 100%; }

  /* Footer */
  .footer-grid      { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  /* Floating */
  .back-to-top      { bottom: 96px; right: 18px; }
  .wa-float         { bottom: 22px; right: 18px; }
}

@media (min-width: 900px) {
  .hide-mobile { display: inline; }
}

/* ── 19. Reduced Motion ───────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-left, .reveal-right {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── 20. Focus Styles (Accessibility) ────────────────────── */
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}
