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

:root {
  /* Wiresoul Brand Colors */
  --brand-orange: #fdb933;
  --brand-orange-dark: #e6a520;
  --brand-charcoal: #51616a;
  --brand-charcoal-dark: #3a4850;

  --bg: #f0f2f5;
  --card-bg: #ffffff;
  --text-dark: #1e2a30;
  --text-mid: #4a5568;
  --text-muted: #7a8a95;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.13);

  --radius-btn: 14px;
  --max-w: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', 'Inter', system-ui, sans-serif;
  background-color: var(--bg);
  color: var(--text-dark);
  min-height: 100vh;
  padding-bottom: 90px;
}

/* ===== Share Button ===== */
.share-btn {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 100;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-charcoal);
  transition: all 0.2s ease;
}

.share-btn:hover {
  background: #fff;
  transform: scale(1.08);
  color: var(--brand-orange-dark);
}

.share-btn svg line {
  fill: none;
}

/* ===== Page Wrapper ===== */
.page-wrapper {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* ===== Hero Section ===== */
.hero-section {
  position: relative;
  background: linear-gradient(140deg, #2e3d46 0%, #3f5260 50%, #51616a 100%);
  overflow: hidden;
  padding: 78px 24px 32px;
  min-height: 218px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Decorative pattern overlay */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg,
      rgba(253, 185, 51, 0.04) 0px,
      rgba(253, 185, 51, 0.04) 1px,
      transparent 1px,
      transparent 32px),
    repeating-linear-gradient(-45deg,
      rgba(253, 185, 51, 0.03) 0px,
      rgba(253, 185, 51, 0.03) 1px,
      transparent 1px,
      transparent 32px);
  pointer-events: none;
}

/* Glowing orb accent */
.hero-section::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(253, 185, 51, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.hero-text {
  flex: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(253, 185, 51, 0.15);
  border: 1px solid rgba(253, 185, 51, 0.5);
  color: var(--brand-orange);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 50px;
  margin-bottom: 10px;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 12px rgba(253, 185, 51, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-orange);
  box-shadow: 0 0 6px var(--brand-orange);
  flex-shrink: 0;
}

.hero-heading {
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.3;
  color: #fff;
  letter-spacing: -0.2px;
}

.hero-sub {
  margin-top: 6px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
}

/* ===== Hero Carousel ===== */
.hero-carousel-wrap {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-carousel {
  position: relative;
  width: 112px;
  height: 112px;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(0.88) translateY(6px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.34, 1.3, 0.64, 1);
  pointer-events: none;
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
  animation: float 4s ease-in-out infinite;
}

.hero-img {
  width: 112px;
  height: 112px;
  object-fit: cover;
  border-radius: 14px;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
  display: block;
}

/* Dot indicators */
.carousel-dots {
  display: flex;
  gap: 5px;
  justify-content: center;
}

.dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.dot.active {
  background: var(--brand-orange);
  width: 16px;
  border-radius: 3px;
  box-shadow: 0 0 6px rgba(253, 185, 51, 0.6);
}

/* ===== Logo Circle (WS) ===== */
.logo-circle {
  position: absolute;
  top: 14px;
  left: 24px;
  width: 62px;
  height: 62px;
  border-radius: 14px;
  background: #fff;
  border: 2.5px solid var(--brand-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
  z-index: 3;
  overflow: hidden;
  padding: 4px;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ===== Wave Divider (inside hero) ===== */
.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 1;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 32px;
}

/* ===== Profile / About Section ===== */
.profile-section {
  background: var(--card-bg);
  padding: 28px 22px 22px;
  text-align: center;
  border-bottom: 1px solid #eef0f3;
}

.brand-name {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.4px;
  margin-bottom: 4px;
  background: linear-gradient(90deg, #1e2a30 20%, var(--brand-orange) 45%, #1e2a30 70%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: brandShimmer 4s linear infinite;
}

.brand-tagline {
  font-size: 0.82rem;
  color: var(--brand-orange-dark);
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.brand-desc {
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 18px;
  padding: 0 4px;
}

/* Products Chips */
.products-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: center;
  margin-bottom: 20px;
}

.product-chip {
  background: #fff8e6;
  border: 1px solid rgba(253, 185, 51, 0.4);
  color: var(--brand-charcoal);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 50px;
  letter-spacing: 0.2px;
  transition: all 0.15s ease;
}

.product-chip:hover {
  background: var(--brand-orange);
  color: #fff;
  border-color: var(--brand-orange);
  transform: scale(1.04);
}

/* Trust Badges */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 18px 0 22px;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: #f9fafb;
  border: 1px solid #eef0f3;
  border-radius: 14px;
  padding: 12px 6px;
  transition: all 0.2s ease;
}

.trust-badge:hover {
  background: #fff8e6;
  border-color: rgba(253, 185, 51, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(253, 185, 51, 0.15);
}

.trust-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.trust-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--brand-charcoal);
  text-align: center;
  line-height: 1.4;
}

.view-products-link {
  display: inline-block;
  background: var(--brand-charcoal);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 11px 28px;
  border-radius: 50px;
  letter-spacing: 0.3px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(81, 97, 106, 0.3);
}

.view-products-link:hover {
  background: var(--brand-charcoal-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(81, 97, 106, 0.4);
}

/* ===== Buttons Section ===== */
.buttons-section {
  background: var(--card-bg);
  padding: 16px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ===== Action Button Base ===== */
.action-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border-radius: var(--radius-btn);
  text-decoration: none;
  transition: all 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1.5px solid transparent;
  background: #f9fafb;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.action-btn:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.11);
}

.action-btn:active {
  transform: scale(0.97);
}

.btn-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.18s ease;
}

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

.btn-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
}

.btn-sub {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
  font-family: 'Inter', sans-serif;
}

/* === Individual Button Colors === */
.btn-phone {
  border-color: rgba(253, 185, 51, 0.35);
  background: #fffdf5;
}

.btn-phone:hover {
  border-color: var(--brand-orange);
  background: #fff8e0;
}

.btn-phone .btn-icon {
  background: #fff3cc;
  color: #c88a00;
}

.btn-whatsapp {
  border-color: rgba(37, 211, 102, 0.3);
  background: #f5fffb;
}

.btn-whatsapp:hover {
  border-color: #25D366;
  background: #e8fff4;
}

.btn-whatsapp .btn-icon {
  background: #d1fae5;
  color: #16a34a;
}

.btn-email {
  border-color: rgba(81, 97, 106, 0.25);
  background: #f7f9fa;
}

.btn-email:hover {
  border-color: var(--brand-charcoal);
  background: #eef1f3;
}

.btn-email .btn-icon {
  background: #e2e8ec;
  color: var(--brand-charcoal);
}

.btn-website {
  border-color: rgba(253, 185, 51, 0.35);
  background: #fffdf5;
}

.btn-website:hover {
  border-color: var(--brand-orange);
  background: #fff8e0;
}

.btn-website .btn-icon {
  background: #fff3cc;
  color: var(--brand-orange-dark);
}

.btn-instagram {
  border-color: rgba(225, 48, 108, 0.25);
  background: #fff5f8;
}

.btn-instagram:hover {
  border-color: #e1306c;
  background: #fde8f0;
}

.btn-instagram .btn-icon {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}

.btn-facebook {
  border-color: rgba(24, 119, 242, 0.25);
  background: #f5f8ff;
}

.btn-facebook:hover {
  border-color: #1877f2;
  background: #eaf1ff;
}

.btn-facebook .btn-icon {
  background: #dbeafe;
  color: #1d4ed8;
}

.btn-linkedin {
  border-color: rgba(0, 119, 181, 0.25);
  background: #f4f9fc;
}

.btn-linkedin:hover {
  border-color: #0077b5;
  background: #e0f0f8;
}

.btn-linkedin .btn-icon {
  background: #cce7f5;
  color: #0077b5;
}

.btn-twitter {
  border-color: rgba(0, 0, 0, 0.12);
  background: #f8f9fa;
}

.btn-twitter:hover {
  border-color: #000;
  background: #f0f0f0;
}

.btn-twitter .btn-icon {
  background: #e2e2e2;
  color: #111;
}

.btn-location {
  border-color: rgba(16, 185, 129, 0.25);
  background: #f4fdf8;
}

.btn-location:hover {
  border-color: #10b981;
  background: #e4f9f0;
}

.btn-location .btn-icon {
  background: #d1fae5;
  color: #059669;
}

.btn-google-review {
  border-color: rgba(251, 188, 5, 0.35);
  background: #fffcf0;
}

.btn-google-review:hover {
  border-color: #FBBC05;
  background: #fff8d6;
}

.btn-google-review .btn-icon {
  background: #ffecb3;
  color: #f9ab00;
}

.btn-catalogue {
  border-color: rgba(81, 97, 106, 0.25);
  background: #f7f9fa;
}

.btn-catalogue:hover {
  border-color: var(--brand-charcoal);
  background: #eef1f3;
}

.btn-catalogue .btn-icon {
  background: #e2e8ec;
  color: var(--brand-charcoal-dark);
}

/* ===== Floating WhatsApp FAB ===== */
.whatsapp-fab {
  position: fixed;
  left: 16px;
  bottom: 80px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 11px 16px 11px 13px;
  border-radius: 50px;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  font-size: 0.82rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  transition: all 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: fabBounce 2.5s ease-in-out infinite;
}

.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

.fab-label {
  white-space: nowrap;
}

/* ===== Save Contact ===== */
.save-contact-wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 50;
}

.save-contact-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-orange-dark) 100%);
  color: #1e2a30;
  border: none;
  border-radius: 50px;
  padding: 14px 40px;
  font-size: 0.97rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  width: 100%;
  max-width: 380px;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(253, 185, 51, 0.45);
  transition: all 0.2s ease;
  letter-spacing: 0.2px;
}

.save-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(253, 185, 51, 0.55);
}

.save-contact-btn:active {
  transform: scale(0.97);
}

/* ===== Footer ===== */
.site-footer {
  padding: 22px 24px 16px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.76rem;
  line-height: 1.85;
  background: #f7f9fa;
  border-top: 1px solid #eef0f3;
}

.footer-brand {
  font-weight: 700;
  color: var(--text-mid);
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.footer-powered {
  margin-top: 8px;
  font-size: 0.7rem;
  color: #aab5bc;
}

/* ===== Responsive ===== */

/* --- Big Screens (Desktop/Tablet ≥768px) --- */
@media (min-width: 768px) {
  .hero-section {
    padding: 110px 48px 56px;
    min-height: 360px;
  }

  .hero-content {
    align-items: center;
  }

  .logo-circle {
    width: 100px;
    height: 100px;
    top: 32px;
    left: 48px;
    border-radius: 24px;
  }

  .hero-carousel,
  .hero-img {
    width: 220px;
    height: 220px;
  }

  .hero-heading {
    font-size: 2.2rem;
  }

  .hero-sub {
    font-size: 1.1rem;
  }

  .hero-badge {
    font-size: 0.85rem;
    padding: 8px 16px;
  }

  .brand-name {
    font-size: 2.8rem;
  }

  .brand-tagline {
    font-size: 1.3rem;
  }

  .brand-desc {
    font-size: 1.05rem;
  }

  .buttons-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 32px 48px;
  }

  .save-contact-wrap {
    display: none;
  }
}

/* --- Standard phones (≤480px) --- */
@media (max-width: 480px) {
  :root {
    --max-w: 100%;
  }

  body {
    padding-bottom: 80px;
  }

  /* Hero */
  .hero-section {
    padding: 74px 16px 26px;
    min-height: 200px;
  }

  .hero-heading {
    font-size: 1.08rem;
  }

  .hero-sub {
    font-size: 0.72rem;
  }

  .hero-badge {
    font-size: 0.63rem;
    padding: 4px 10px;
  }

  /* Carousel */
  .hero-carousel,
  .hero-carousel {
    width: 100px;
    height: 100px;
  }

  .hero-img {
    width: 100px;
    height: 100px;
  }

  /* Logo */
  .logo-circle {
    width: 54px;
    height: 54px;
    top: 12px;
    left: 16px;
  }

  /* Profile */
  .profile-section {
    padding: 22px 16px 18px;
  }

  .brand-name {
    font-size: 1.35rem;
  }

  .brand-tagline {
    font-size: 0.75rem;
  }

  .brand-desc {
    font-size: 0.82rem;
  }

  /* Trust badges — 2×2 on small screens */
  .trust-badges {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .trust-badge {
    padding: 10px 6px;
  }

  .trust-icon {
    font-size: 1.2rem;
  }

  .trust-label {
    font-size: 0.62rem;
  }

  /* Product chips */
  .product-chip {
    font-size: 0.68rem;
    padding: 4px 9px;
  }

  /* View Products button */
  .view-products-link {
    font-size: 0.82rem;
    padding: 10px 22px;
  }

  /* Buttons */
  .buttons-section {
    padding: 14px 12px 18px;
    gap: 9px;
  }

  .action-btn {
    padding: 12px 14px;
    gap: 12px;
  }

  .btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .btn-label {
    font-size: 0.86rem;
  }

  .btn-sub {
    font-size: 0.72rem;
  }

  /* WhatsApp FAB */
  .whatsapp-fab {
    left: 12px;
    bottom: 74px;
    padding: 10px 10px;
  }

  .fab-label {
    display: none;
  }

  /* icon-only on all standard phone screens */
  .whatsapp-fab svg {
    width: 26px;
    height: 26px;
  }

  /* Save contact */
  .save-contact-wrap {
    padding: 10px 16px;
  }

  .save-contact-btn {
    font-size: 0.9rem;
    padding: 12px 28px;
  }
}

/* --- Small phones (≤380px) --- */
@media (max-width: 380px) {
  .hero-section {
    padding: 72px 14px 22px;
  }

  .hero-heading {
    font-size: 0.98rem;
    line-height: 1.35;
  }

  .hero-badge {
    font-size: 0.6rem;
    letter-spacing: 0.8px;
  }

  .hero-carousel,
  .hero-carousel {
    width: 88px;
    height: 88px;
  }

  .hero-img {
    width: 88px;
    height: 88px;
  }

  .logo-circle {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    top: 12px;
    left: 14px;
  }

  .brand-name {
    font-size: 1.2rem;
  }

  .trust-badges {
    gap: 6px;
  }

  .trust-badge {
    padding: 8px 4px;
    border-radius: 10px;
  }

  .trust-icon {
    font-size: 1.1rem;
  }

  .trust-label {
    font-size: 0.58rem;
  }

  .action-btn {
    padding: 11px 12px;
    gap: 10px;
  }

  .btn-icon {
    width: 36px;
    height: 36px;
  }

  .btn-label {
    font-size: 0.82rem;
  }

  .btn-sub {
    font-size: 0.68rem;
  }

  .whatsapp-fab {
    padding: 8px 8px;
  }

  .whatsapp-fab svg {
    width: 22px;
    height: 22px;
  }
}

/* --- Very small (≤320px) --- */
@media (max-width: 320px) {
  .hero-heading {
    font-size: 0.88rem;
  }

  .hero-carousel,
  .hero-carousel {
    width: 76px;
    height: 76px;
  }

  .hero-img {
    width: 76px;
    height: 76px;
  }

  .logo-circle {
    width: 44px;
    height: 44px;
    top: 10px;
    left: 12px;
  }

  .brand-name {
    font-size: 1.1rem;
  }

  .btn-label {
    font-size: 0.78rem;
  }

  .btn-sub {
    font-size: 0.64rem;
  }

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

/* ============================================
   ANIMATIONS
   ============================================ */

/* --- Keyframes --- */

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

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

/* Logo pops in with a spring bounce */
@keyframes logoPop {
  0% {
    opacity: 0;
    transform: scale(0.4) rotate(-8deg);
  }

  60% {
    opacity: 1;
    transform: scale(1.12) rotate(3deg);
  }

  80% {
    transform: scale(0.95) rotate(-1deg);
  }

  100% {
    transform: scale(1) rotate(0deg);
  }
}

/* Hero image gentle float */
@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* Badge dot live pulse */
@keyframes dotPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(253, 185, 51, 0.7);
  }

  50% {
    box-shadow: 0 0 0 5px rgba(253, 185, 51, 0);
  }
}

/* Orb slow drift */
@keyframes orbDrift {

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

  33% {
    transform: translate(-12px, 8px) scale(1.08);
  }

  66% {
    transform: translate(8px, -6px) scale(0.95);
  }
}

/* Save Contact shimmer sweep */
@keyframes shimmer {
  0% {
    left: -80%;
  }

  100% {
    left: 130%;
  }
}

/* Save Contact breathing glow */
@keyframes btnGlow {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(253, 185, 51, 0.40);
  }

  50% {
    box-shadow: 0 4px 32px rgba(253, 185, 51, 0.70);
  }
}

/* Brand name scale reveal */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.88);
  }

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

/* Product chip wave */
@keyframes chipWave {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.9);
  }

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

/* Brand name shimmer sweep */
@keyframes brandShimmer {
  0% {
    background-position: 200% center;
  }

  100% {
    background-position: -200% center;
  }
}

/* WhatsApp FAB subtle bounce */
@keyframes fabBounce {

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

  50% {
    transform: translateY(-5px);
  }
}


/* --- Apply Animations --- */

/* Logo */
.logo-circle {
  animation: logoPop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}

/* Hero content slides up */
.hero-section {
  animation: fadeSlideUp 0.45s ease both;
}

.hero-badge {
  animation: fadeSlideDown 0.4s 0.25s ease both;
}

.hero-heading {
  animation: fadeSlideUp 0.45s 0.3s ease both;
}

.hero-sub {
  animation: fadeSlideUp 0.4s 0.4s ease both;
}

/* Active carousel slide floats */
.carousel-slide.active {
  animation: float 4s ease-in-out infinite;
}

/* Orb drifts slowly */
.hero-section::after {
  animation: orbDrift 8s ease-in-out infinite;
}

/* Badge dot pulses */
.hero-badge::before {
  animation: dotPulse 1.8s ease-in-out infinite;
}

/* Profile section */
.profile-section {
  animation: fadeSlideUp 0.45s 0.15s ease both;
}

.brand-desc {
  animation: fadeSlideUp 0.4s 0.34s ease both;
}

/* Product chips cascade */
.product-chip {
  animation: chipWave 0.35s ease both;
}

.products-list .product-chip:nth-child(1) {
  animation-delay: 0.38s;
}

.products-list .product-chip:nth-child(2) {
  animation-delay: 0.43s;
}

.products-list .product-chip:nth-child(3) {
  animation-delay: 0.48s;
}

.products-list .product-chip:nth-child(4) {
  animation-delay: 0.53s;
}

.products-list .product-chip:nth-child(5) {
  animation-delay: 0.58s;
}

.products-list .product-chip:nth-child(6) {
  animation-delay: 0.63s;
}

.products-list .product-chip:nth-child(7) {
  animation-delay: 0.68s;
}

.products-list .product-chip:nth-child(8) {
  animation-delay: 0.73s;
}

.products-list .product-chip:nth-child(9) {
  animation-delay: 0.78s;
}

/* Buttons staggered slide-up */
.buttons-section .action-btn {
  animation: fadeSlideUp 0.38s ease both;
}

.buttons-section .action-btn:nth-child(1) {
  animation-delay: 0.10s;
}

.buttons-section .action-btn:nth-child(2) {
  animation-delay: 0.16s;
}

.buttons-section .action-btn:nth-child(3) {
  animation-delay: 0.22s;
}

.buttons-section .action-btn:nth-child(4) {
  animation-delay: 0.28s;
}

.buttons-section .action-btn:nth-child(5) {
  animation-delay: 0.34s;
}

.buttons-section .action-btn:nth-child(6) {
  animation-delay: 0.40s;
}

.buttons-section .action-btn:nth-child(7) {
  animation-delay: 0.46s;
}

.buttons-section .action-btn:nth-child(8) {
  animation-delay: 0.52s;
}

.buttons-section .action-btn:nth-child(9) {
  animation-delay: 0.58s;
}

.buttons-section .action-btn:nth-child(10) {
  animation-delay: 0.64s;
}

/* Save Contact: breathing glow + shimmer */
.save-contact-btn {
  animation: btnGlow 2.5s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.save-contact-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.35) 50%,
      transparent 100%);
  animation: shimmer 2.8s ease-in-out infinite;
  pointer-events: none;
}