*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red: #ff3131;
  --red-dark: #cc0000;
  --black: #000000;
  --bg: #f8f9fb;
  --white: #ffffff;
  --gray: #6b7280;
  --gray-light: #e5e7eb;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.16);
  --radius: 14px;
  --font: "Montserrat", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}

/* ─── ANNOUNCEMENT BAR ─── */
.announce-bar {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.announce-bar span {
  margin: 0 6px;
  opacity: 0.7;
}

/* ─── HEADER ─── */
header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 34px;
  z-index: 999;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 20px;
}
.logo {
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.logo-img {
  height: 58px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.logo::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.logo:hover::after {
  width: 100%;
}
nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  transition: color 0.2s;
  position: relative;
}
nav a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.2s;
}
nav a:hover {
  color: var(--red);
}
nav a:hover::after {
  transform: scaleX(1);
}

.header-ctas {
  display: flex;
  gap: 12px;
}

/* ── BASE BTN ── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  overflow: hidden;
  isolation: isolate;
  white-space: nowrap;
  letter-spacing: 0.3px;
  -webkit-font-smoothing: antialiased;
  transition:
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.25s ease,
    color 0.25s ease;
}

/* shimmer sweep */
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.22),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.5s ease;
  pointer-events: none;
  z-index: 1;
}
.btn:hover::before {
  left: 160%;
}

/* ripple ring */
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition:
    opacity 0.3s ease,
    transform 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

/* icon spring */
.btn i {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 2;
}
.btn:hover i {
  transform: scale(1.22) rotate(-8deg);
}
.btn span {
  position: relative;
  z-index: 2;
}

/* ── RED ── */
.btn-red {
  background: linear-gradient(135deg, #ff3131 0%, #e00000 100%);
  color: var(--white);
  box-shadow:
    0 4px 14px rgba(255, 49, 49, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.btn-red::after {
  border: 2px solid rgba(255, 49, 49, 0.5);
}
.btn-red:hover {
  transform: translateY(-3px) scale(1.02);
  background: linear-gradient(135deg, #ff4a4a 0%, #cc0000 100%);
  box-shadow:
    0 10px 28px rgba(255, 49, 49, 0.45),
    0 4px 10px rgba(255, 49, 49, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn-red:hover::after {
  opacity: 1;
  transform: scale(1.08);
}
.btn-red:active {
  transform: translateY(-1px) scale(0.99);
}

/* ── WHATSAPP ── */
.btn-wa {
  background: linear-gradient(135deg, #25d366 0%, #1aaa52 100%);
  color: var(--white);
  box-shadow:
    0 4px 14px rgba(37, 211, 102, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.btn-wa::after {
  border: 2px solid rgba(37, 211, 102, 0.4);
}
.btn-wa:hover {
  transform: translateY(-3px) scale(1.02);
  background: linear-gradient(135deg, #2ee070 0%, #1aaa52 100%);
  box-shadow:
    0 10px 28px rgba(37, 211, 102, 0.45),
    0 4px 10px rgba(37, 211, 102, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn-wa:hover::after {
  opacity: 1;
  transform: scale(1.08);
}
.btn-wa:hover i {
  transform: scale(1.22) rotate(8deg);
}
.btn-wa:active {
  transform: translateY(-1px) scale(0.99);
}

/* ── OUTLINE ── */
.btn-outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
  box-shadow: 0 2px 8px rgba(255, 49, 49, 0.1);
}
.btn-outline::after {
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1);
  opacity: 1;
}
.btn-outline:hover {
  color: var(--white);
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 10px 28px rgba(255, 49, 49, 0.35),
    0 4px 10px rgba(255, 49, 49, 0.2);
}
.btn-outline:hover::after {
  transform: scaleX(1);
}
.btn-outline:active {
  transform: translateY(-1px);
}

/* ── WHITE (on dark bg) ── */
.btn-white {
  background: #ffffff;
  color: var(--red);
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.btn-white::after {
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.btn-white:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.2),
    0 4px 10px rgba(0, 0, 0, 0.1);
  color: var(--red-dark);
}
.btn-white:hover::after {
  opacity: 1;
  transform: scale(1.1);
}
.btn-white:active {
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 20px 20px 28px;
  border-top: 1px solid var(--gray-light);
  gap: 16px;
}
.mobile-menu a {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-light);
}
.mobile-menu .mob-ctas {
  color: var(--white);
}

.mobile-menu .btn {
  color: var(--white);
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
}
.mobile-menu .mob-ctas {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.mobile-menu.open {
  display: flex;
}

/* ─── HERO ─── */
  .hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0d0d0d 100%);
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 70px 40px;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(255,49,49,0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  /* grid texture */
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
  }
  .hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 11fr 9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  .hero-inner br{
    display: none;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,49,49,0.15);
    border: 1px solid rgba(255,49,49,0.4);
    border-radius: 50px;
    padding: 7px 16px;
    font-size: 12px;
    font-weight: 700;
    color: #ff8080;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  .hero-badge i { color: var(--red); }
  .hero h1 {
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    max-width: 95%;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
  }
  .hero h1 .accent { color: var(--red); }
  .hero-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 90%;
  }
  /* Checkmarks */
.hero-checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-check {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.hero-check:hover {
  transform: translateX(5px);
}

.hero-check .check-icon {
  width: 24px;
  height: 24px;
  background: rgba(255, 49, 49, 0.2);
  border: 1px solid rgba(255, 49, 49, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
  color: var(--red);
  transition: all 0.3s ease;
}

.hero-check:hover .check-icon {
  background: var(--red);
  color: white;
  transform: scale(1.1);
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
  .hero-ctas .btn { font-size: 14px; padding: 15px 28px; }
 
  /* Hero image glass card */
  .hero-img-wrap {
    position: relative;
  }
  .hero-img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 0.3s ease;
    animation: cardFloat 3s ease-in-out infinite;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  }
  .hero-img-wrap:hover img {
  transform: scale(1.02);
  }
@keyframes cardFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.hero-glass-card {
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 220px;
  transition: all 0.3s ease;
  animation: cardFloat 3s ease-in-out infinite;
  animation-delay: 0.5s;
}
  .glass-icon {
    width: 48px;
    height: 48px;
    background: var(--red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    flex-shrink: 0;
  }
  .glass-text .num {
    font-size: 24px;
    font-weight: 900;
    color: var(--white);
  }
  .glass-text .lbl {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .hero-glass-card2 {
  position: absolute;
  top: 24px;
  right: -20px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  animation: cardFloat 3s ease-in-out infinite;
  animation-delay: 1s;
}
  .stars { color: #fbbf24; font-size: 14px; letter-spacing: 1px; }
  .glass-text2 .t { font-size: 13px; font-weight: 700; color: white; }
  .glass-text2 .s { font-size: 11px; color: rgba(255,255,255,0.55); }

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  padding: 28px 40px;
}
.trust-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-radius: 12px;
  transition: background 0.2s;
}
.trust-item:hover {
  background: var(--bg);
}
.trust-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #fff1f1, #ffd5d5);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--red);
  flex-shrink: 0;
}
.trust-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.4;
}
.trust-sub {
  font-size: 11px;
  color: var(--gray);
  font-weight: 500;
}

/* ─── SECTION WRAPPER ─── */
.section {
  padding: 80px 40px;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-tag {
  display: inline-block;
  background: #fff1f1;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
  border: 1px solid #ffd5d5;
}
.section-title {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}
.section-sub {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
}
.section-head {
  width: 65%;
  margin: 0 auto 52px;
}

.section-head.center {
  text-align: center;
}
.section-head.center .section-sub {
  margin: 0 auto;
}
.red {
  color: var(--red);
}

/* ─── OFFER SECTION ─── */
.offer-section {
  background: linear-gradient(135deg, #ff3131 0%, #cc0000 100%);
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}
.offer-section::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}
.offer-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}
.offer-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.offer-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.offer-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.15;
}
.offer-disc {
  font-size: 70px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin: 10px 0 20px;
  letter-spacing: -2px;
}
.offer-disc span {
  font-size: 36px;
  vertical-align: super;
  opacity: 0.7;
}
.offer-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}
.offer-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── WHY US ─── */
.why-section {
  background: var(--bg);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-img {
  border-radius: 20px;
  height: 500px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.why-img-wrap {
  position: relative;
}
.why-badge-float {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--red);
  color: white;
  border-radius: 14px;
  padding: 16px 22px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(255, 49, 49, 0.4);
}
.why-badge-float .n {
  font-size: 32px;
  font-weight: 900;
}
.why-badge-float .l {
  font-size: 11px;
  font-weight: 600;
  opacity: 0.85;
}
.feature-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 20px;
  border: 1px solid var(--gray-light);
  transition: all 0.3s;
  cursor: default;
}
.feature-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255, 49, 49, 0.12);
}
.fc-icon {
  width: 44px;
  height: 44px;
  background: #fff1f1;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--red);
  margin-bottom: 12px;
}
.fc-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}
.fc-desc {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.6;
}

/* ─── BEFORE / AFTER ─── */
.before-after-section {
  background: var(--white);
  overflow: hidden;
  position: relative;
}

.before-after-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 50% at 50% 0%,
    rgba(239, 68, 68, 0.04),
    transparent
  );
  pointer-events: none;
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0 20px;
  align-items: stretch;
}

/* ── Cards ── */
.ba-card {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  position: relative;
  cursor: pointer;
}

.ba-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.ba-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ba-card:hover img {
  transform: scale(1.07);
}

/* Before card — red tint atmosphere */
.ba-card--before img {
  filter: saturate(0.8) brightness(0.95);
  transition:
    filter 0.7s ease,
    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.ba-card--before:hover img {
  filter: saturate(1) brightness(1);
  transform: scale(1.07);
}

/* Noise texture overlay for 'before' */
.ba-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: multiply;
}

/* Shine sweep on after card */
.ba-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 100%
  );
  transform: translateX(-100%);
  transition: transform 0s;
  pointer-events: none;
}
.ba-card--after:hover .ba-shine {
  transform: translateX(100%);
  transition: transform 0.8s ease;
}

/* ── Labels ── */
.ba-label {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 7px;
  letter-spacing: 0.03em;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  z-index: 3;
}

.ba-label.bad {
  background: rgba(239, 68, 68, 0.92);
  color: white;
  animation: ba-pulse-red 2.5s ease-in-out infinite;
}

.ba-label.good {
  background: rgba(34, 197, 94, 0.92);
  color: white;
  animation: ba-pulse-green 2.5s ease-in-out infinite;
}

@keyframes ba-pulse-red {
  0%,
  100% {
    box-shadow: 0 4px 14px rgba(239, 68, 68, 0.35);
  }
  50% {
    box-shadow: 0 4px 24px rgba(239, 68, 68, 0.6);
  }
}
@keyframes ba-pulse-green {
  0%,
  100% {
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.35);
  }
  50% {
    box-shadow: 0 4px 24px rgba(34, 197, 94, 0.6);
  }
}

/* ── Overlay ── */
.ba-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.4) 60%,
    transparent 100%
  );
  padding: 32px 32px 22px;
  color: white;
  transform: translateY(10px);
  opacity: 0.9;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
  z-index: 2;
}

.ba-card:hover .ba-overlay {
  transform: translateY(0);
  opacity: 1;
}

.ba-overlay-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
}

.ba-card--before .ba-overlay-icon {
  color: #f87171;
}
.ba-card--after .ba-overlay-icon {
  color: #4ade80;
}

.pulse-icon {
  animation: icon-pulse 2s ease-in-out infinite;
}
@keyframes icon-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

.ba-overlay h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 5px;
  line-height: 1.3;
}

.ba-overlay p {
  font-size: 12px;
  opacity: 0.72;
  line-height: 1.5;
}

.ba-problems li{
  font-size: 12px;
  margin-bottom: 6px;
}

/* Stats row inside overlay */
.ba-stats {
  display: flex;
  gap: 20px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.ba-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ba-stat-num {
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.ba-card--before .ba-stat-num {
  color: #f87171;
}
.ba-card--after .ba-stat-num {
  color: #4ade80;
}

.ba-stat-label {
  font-size: 10px;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Divider ── */
.ba-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 4px;
}

.ba-divider-line {
  flex: 1;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(0, 0, 0, 0.1),
    transparent
  );
  border-radius: 2px;
}

.ba-divider-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  font-size: 8px;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.ba-divider-badge i {
  font-size: 11px;
  color: var(--red, #ef4444);
}

/* ── Trust Strip ── */
.ba-trust {
  display: flex;
  align-items: left;
  gap: 0;
  margin-top: 32px;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 60px;
  padding: 14px 28px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.ba-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  white-space: nowrap;
}

.ba-trust-item i {
  color: var(--red, #ef4444);
  font-size: 14px;
}

.ba-trust-sep {
  width: 1px;
  height: 18px;
  background: rgba(0, 0, 0, 0.12);
  margin: 0 20px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .ba-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 20px 0;
  }

  .ba-divider {
    flex-direction: row;
    padding: 4px 0;
    height: auto;
  }

  .ba-divider-line {
    flex: 1;
    width: auto;
    height: 2px;
    background: linear-gradient(
      to right,
      transparent,
      rgba(0, 0, 0, 0.1),
      transparent
    );
  }

  .ba-card img {
    height: 320px;
  }

  .ba-trust {
    flex-wrap: wrap;
    gap: 12px;
    border-radius: 20px;
    padding: 16px 20px;
  }

  .ba-trust-sep {
    display: none;
  }
}
 
/* ─── SERVICES ─── */
.services-section {
  background: var(--bg)
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.35s;
  border: 1px solid var(--gray-light);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 49, 49, 0.2);
}
.sc-img {
  position: relative;
  overflow: hidden;
}
.sc-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s;
}
.service-card:hover .sc-img img {
  transform: scale(1.08);
}
.sc-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.sc-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}
.sc-desc {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.sc-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: white;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.2s;
  font-family: var(--font);
  /* Added: Positioning for pseudo-elements */
  position: relative;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  border: none;
}

/* Animation 1: Shimmer sweep effect on hover */
.sc-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
  z-index: 1;
}

.sc-btn:hover::before {
  left: 150%;
}

/* Animation 2: Subtle ripple ring effect */
.sc-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  opacity: 0;
  transform: scale(0.9);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  pointer-events: none;
  z-index: 0;
}

.sc-btn:hover::after {
  opacity: 1;
  transform: scale(1.05);
}

/* Animation 3: Icon bounce on hover (if icon exists) */
.sc-btn i,
.sc-btn svg {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sc-btn:hover i,
.sc-btn:hover svg {
  transform: scale(1.2) rotate(-5deg);
}

/* Animation 4: Text subtle glow effect */
.sc-btn span {
  position: relative;
  z-index: 2;
  transition: text-shadow 0.2s ease;
}

.sc-btn:hover span {
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.5);
}

/* Existing hover styles preserved with enhanced animation */
.sc-btn:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(255, 49, 49, 0.35);
}

/* Active/press effect */
.sc-btn:active {
  transform: translateY(1px) scale(0.98);
  transition: transform 0.1s ease;
}

/* Optional: Pulsing glow animation for attention (add class .sc-btn-pulse if needed) */
@keyframes btnPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 49, 49, 0.4);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(255, 49, 49, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 49, 49, 0);
  }
}

.sc-btn.pulse {
  animation: btnPulse 1.5s ease-out infinite;
}

/* ─── REVIEWS ─── */
.reviews-section {
  background: var(--white);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-light);
  transition: all 0.3s;
  position: relative;
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 49, 49, 0.15);
}
.review-stars {
  color: #fbbf24;
  font-size: 16px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.review-text {
  font-size: 14px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gray-light);
}
.reviewer-name {
  font-size: 14px;
  font-weight: 700;
}
.reviewer-loc {
  font-size: 11px;
  color: var(--gray);
  margin-top: 2px;
}
.reviewer-loc i{
  color: var(--red);
  font-size: 10px;
}
.quote-mark {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 64px;
  color: #f3f4f6;
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

/* ─── FAQ (Enhanced & Stunning) ─── */
.faq-section {
  background: var(--bg);
  border-radius: 32px;
  padding: 70px 0;
  position: relative;
}

.faq-wrap {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-light);
  overflow: hidden;
  transition: all 0.25s ease;
  backdrop-filter: blur(0px);
}

.faq-item:hover {
  background: rgba(0, 0, 0, 0.01);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 12px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
  transition: all 0.25s ease;
  gap: 20px;
  letter-spacing: -0.3px;
  position: relative;
}

.faq-q::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s ease;
}

.faq-item.open .faq-q::before {
  width: 100%;
}

.faq-q:hover {
  color: var(--red);
  transform: translateX(4px);
}

.faq-icon {
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray);
  flex-shrink: 0;
  transition: all 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.faq-item.open .faq-icon {
  background: var(--red);
  color: white;
  transform: rotate(180deg) scale(1.05);
  box-shadow: 0 4px 10px rgba(220, 53, 69, 0.25);
}

.faq-item.open .faq-q {
  color: var(--red);
}

.faq-a {
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.45s cubic-bezier(0.33, 1, 0.68, 1),
    padding 0.35s ease;
  padding: 0 12px;
  opacity: 0.85;
}

.faq-item.open .faq-a {
  max-height: 320px;
  padding-bottom: 28px;
  padding-top: 4px;
}

/* Stunning touches: staggered animation for multiple items */
.faq-item {
  animation: fadeSlideUp 0.4s ease backwards;
}

.faq-item:nth-child(1) {
  animation-delay: 0s;
}
.faq-item:nth-child(2) {
  animation-delay: 0.05s;
}
.faq-item:nth-child(3) {
  animation-delay: 0.1s;
}
.faq-item:nth-child(4) {
  animation-delay: 0.15s;
}
.faq-item:nth-child(5) {
  animation-delay: 0.2s;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Premium touch: divider fade effect */
.faq-item:first-child {
  border-top: 1px solid var(--gray-light);
}

.faq-item:last-child {
  border-bottom: none;
}

/* Optional: smooth scroll behavior inside answer if needed */
.faq-a p,
.faq-a li {
  margin: 0 0 8px 0;
}

.faq-a p:last-child {
  margin-bottom: 0;
}

/* ─── FINAL CTA ─── */
.final-cta {
  position: relative;
  padding: 90px 40px;
  text-align: center;
  overflow: hidden;
  background: url(images/termite-controller.webp) center/cover no-repeat;
  background-position: center 10%;
}

/* Dark overlay */
.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75); /* adjust darkness here */
  z-index: 0;
}

/* Keep your glow effect ABOVE overlay */
.final-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 49, 49, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
}

/* Content stays on top */
.final-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

/* Text styling (unchanged) */
.final-cta h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  color: white;
  line-height: 1.2;
  margin-bottom: 16px;
}

.final-cta h2 .red {
  color: var(--red);
}

.final-cta p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
  line-height: 1.7;
}

.final-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.final-ctas .btn {
  font-size: 15px;
  padding: 16px 32px;
}

/* ─── FOOTER ─── */
footer {
  background: #0a0a0a;
  color: rgba(255, 255, 255, 0.65);
  padding: 60px 40px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-logo {
  margin-bottom: 16px;
}

.footer-logo img {
  max-width: 130px; /* adjust size */
  height: auto;
  display: block;
}

/* Optional: make it look sharper on dark bg */
.footer-logo img {
  filter: brightness(1.1) contrast(1.1);
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo-text {
  font-size: 20px;
  margin-bottom: 14px;
  color: white;
}
.footer-desc {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 24px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.2s;
}
.social-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: white;
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a:hover {
  color: var(--red);
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  font-size: 13px;
  margin-bottom: 12px;
}
.footer-contact-item i {
  color: var(--red);
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact-item:hover {
  color: var(--red);
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a {
  color: var(--red);
}

/* ─── FLOATING WA ─── */
.float-wa {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: white;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  animation: pulse-wa 2.5s infinite;
}
@keyframes pulse-wa {
  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 6px 36px rgba(37, 211, 102, 0.7);
  }
}

/* ─── ANIMATIONS ─── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
.fade-in-delay-1 {
  transition-delay: 0.1s;
}
.fade-in-delay-2 {
  transition-delay: 0.2s;
}
.fade-in-delay-3 {
  transition-delay: 0.3s;
}
.fade-in-delay-4 {
  transition-delay: 0.4s;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  header {
    top: 35px;
  }
  .hero {
    padding: 60px 40px;
    min-height: auto;
  }
  /* .hero-inner{
    grid-template-columns: 1fr 1fr;
  } */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero-img-wrap img {
    height: 320px;
  }
  .hero-glass-card {
    left: 10px;
    bottom: -10px;
  }
  .hero-glass-card2 {
    right: 10px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-img-wrap {
    display: none;
  }
  .trust-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ba-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section-head.center {
    text-align: left;
  }
  .section-head {
    width: 100%;
}
  br {
    display: none;
  }
  header {
    top: 35px;
  }
  .section {
    padding: 40px 20px;
  }
  .hero {
    padding: 40px 20px;
  }
  .trust-bar {
    padding: 24px 20px;
  }
  .offer-section {
    padding: 40px 20px;
  }
  .final-cta {
    padding: 40px 20px;
  }
  footer {
    padding: 40px 20px 24px;
  }
  .footer-logo img {
    max-width: 140px;
    height: auto;
  }

  nav,
  .header-ctas {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .header-inner {
    padding: 0 20px;
  }

  .float-wa {
    display: flex;
  }

  .feature-cards {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  header {
    top: 50px;
  }
  .trust-bar-inner {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-glass-card,
  .hero-glass-card2 {
    display: none;
  }
  .offer-disc {
    font-size: 52px;
  }
}
@media (max-width: 320px){
  header {
    top: 60px;
  }
}