/* =====================================================
   SWASTI AGENCY — CUSTOM STYLESHEET
   Theme: WhatsApp-inspired premium green
   ===================================================== */

:root{
  --wa-primary:#25D366;
  --wa-dark:#075E54;
  --wa-deep:#053B2E;
  --wa-light:#E9FFF1;
  --wa-white:#FFFFFF;
  --wa-text:#173B32;
  --wa-surface:#F6FAF7;
  --wa-border:rgba(7,94,84,0.12);
  --font-display:'Sora', sans-serif;
  --font-body:'Inter', sans-serif;
  --shadow-soft:0 10px 30px rgba(5,59,46,0.08);
  --shadow-strong:0 20px 45px rgba(5,59,46,0.18);
  --radius-lg:22px;
  --radius-md:14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  color: var(--wa-text);
  background: var(--wa-white);
  overflow-x: hidden;
  margin: 0;
}

/* Prevent horizontal overflow */
html,
body {
  width: 100%;
  max-width: 100%;
}

/* Fixed header spacing for sections */
section[id] {
  scroll-margin-top: 90px;
}

h1,h2,h3,h4,h5{
  font-family:var(--font-display);
  color:var(--wa-deep);
  margin:0;
}

p{color:#4B6359; line-height:1.7;}

a{text-decoration:none;}

img{max-width:100%;}

::selection{background:var(--wa-primary); color:#fff;}

/* =====================================================
   PAGE LOADER
   ===================================================== */
#pageLoader{
  position:fixed; inset:0; z-index:9999;
  background:var(--wa-deep);
  display:flex; align-items:center; justify-content:center;
  transition:opacity .5s ease, visibility .5s ease;
}
#pageLoader.loader-hidden{opacity:0; visibility:hidden;}
.loader-mark{
  width:64px; height:64px; border-radius:50%;
  background:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:28px; color:#fff;
  animation:loaderPulse 1.1s ease-in-out infinite;
}
@keyframes loaderPulse{
  0%,100%{transform:scale(1); box-shadow:0 0 0 0 rgba(37,211,102,.5);}
  50%{transform:scale(1.08); box-shadow:0 0 0 14px rgba(37,211,102,0);}
}

/* =====================================================
   HEADER
   ===================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1050;

  padding: 18px 0;

  background: transparent;

  transition:
    padding .35s ease,
    background .35s ease,
    box-shadow .35s ease,
    backdrop-filter .35s ease;
}


/* Scrolled Header */
.site-header.scrolled {
  padding: 10px 0;

  background: rgba(255, 255, 255, 0.94);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow:
    0 8px 24px rgba(5, 59, 46, 0.08);
}


/* =====================================================
   HEADER CONTAINER
   ===================================================== */

.site-header .container {
  display: flex;
  align-items: center;
}


/* =====================================================
   BRAND / LOGO
   ===================================================== */

.brand-mark {
  display: flex;
  align-items: center;

  gap: 10px;

  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;

  color: var(--wa-deep);

  text-decoration: none;

  flex-shrink: 0;
}

.brand-mark:hover {
  color: var(--wa-deep);
}


/* Logo image */
.brand-mark img {
  display: block;

  width: auto;
  max-width: 180px;
  max-height: 55px;

  object-fit: contain;
}


/* Brand icon if used */
.brand-icon {
  width: 38px;
  height: 38px;

  border-radius: 11px;

  background:
    linear-gradient(
      145deg,
      var(--wa-primary),
      var(--wa-dark)
    );

  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;

  flex-shrink: 0;
}


/* Brand text */
.brand-text {
  white-space: nowrap;
}

.brand-text em {
  font-style: normal;
  color: var(--wa-primary);
}


/* =====================================================
   DESKTOP NAVIGATION
   ===================================================== */

.nav-links {
  gap: 8px;
}

.nav-links .nav-link {
  color: var(--wa-deep);

  font-weight: 600;
  font-size: .96rem;

  padding: 8px 16px !important;

  border-radius: 30px;

  position: relative;

  text-decoration: none;

  transition:
    background .25s ease,
    color .25s ease,
    transform .25s ease;
}


/* Hover */
.nav-links .nav-link:hover {
  background: var(--wa-light);
  color: var(--wa-dark);
}


/* Active */
.nav-links .nav-link.active-link {
  background: var(--wa-primary);
  color: #fff;
}


/* =====================================================
   HEADER WHATSAPP BUTTON
   ===================================================== */

.btn-header-cta {
  background: var(--wa-primary);

  color: #fff;

  font-weight: 600;

  padding: 10px 20px;

  border-radius: 30px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  text-decoration: none;

  white-space: nowrap;

  box-shadow:
    0 8px 18px rgba(37, 211, 102, .35);

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease;
}


.btn-header-cta:hover {
  transform: translateY(-2px);
  color: var(--wa-primary) !important;
 background-color: #fff !important;
  box-shadow:
    0 12px 22px rgba(37, 211, 102, .45);

}


/* =====================================================
   HAMBURGER BUTTON
   ===================================================== */

.hamburger-btn {
  display: none;

  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 5px;

  width: 42px;
  height: 42px;

  padding: 0;

  border-radius: 11px;

  border: 1px solid var(--wa-border);

  background: #fff;

  cursor: pointer;

  flex-shrink: 0;

  transition:
    background .25s ease,
    border-color .25s ease,
    transform .25s ease;
}


.hamburger-btn:hover {
  background: var(--wa-light);
}


.hamburger-btn:focus {
  outline: none;

  box-shadow:
    0 0 0 3px rgba(37, 211, 102, .15);
}


.hamburger-btn span {
  display: block;

  width: 20px;
  height: 2px;

  margin: 0 auto;

  background: var(--wa-deep);

  border-radius: 2px;

  transition: all .25s ease;
}


/* =====================================================
   MOBILE OFFCANVAS MENU
   ===================================================== */

.mobile-menu {
  width: 300px;
  max-width: 85vw;

  background:
    linear-gradient(
      180deg,
      var(--wa-dark),
      var(--wa-deep)
    );

  color: #fff;

  border: 0;
}


/* Mobile menu header */
.mobile-menu .offcanvas-header {
  padding: 18px;

  border-bottom:
    1px solid rgba(255, 255, 255, .12);
}


/* Mobile menu body */
.mobile-menu .offcanvas-body {
  padding: 18px;

  display: flex;
  flex-direction: column;
}


/* Mobile brand */
.mobile-menu .brand-mark {
  color: #fff;
}

.mobile-menu .brand-mark:hover {
  color: #fff;
}

.mobile-menu .brand-text {
  color: #fff;
}

.mobile-menu .brand-text em {
  color: var(--wa-primary);
}


/* Mobile logo */
.mobile-menu .brand-mark img {
  max-width: 165px;
  max-height: 48px;
}


/* =====================================================
   MOBILE NAVIGATION
   ===================================================== */

.mobile-nav-links {
  margin-top: 20px;

  padding: 0;

  list-style: none;
}


.mobile-nav-links li {
  margin: 0;
  padding: 0;
}


.mobile-nav-links li a {
  display: flex;
  align-items: center;

  gap: 14px;

  width: 100%;

  color: rgba(255, 255, 255, .85);

  font-weight: 600;
  font-size: 1.02rem;

  padding: 14px 10px;

  border-radius: 12px;

  margin-bottom: 4px;

  text-decoration: none;

  transition:
    background .25s ease,
    color .25s ease,
    transform .25s ease;
}


/* Mobile icons */
.mobile-nav-links li a i {
  width: 20px;

  min-width: 20px;

  color: var(--wa-primary);

  text-align: center;
}


/* Mobile hover */
.mobile-nav-links li a:hover {
  background: rgba(37, 211, 102, .18);

  color: #fff;

  transform: translateX(4px);
}


/* Mobile active */
.mobile-nav-links li a.active-link {
  background: rgba(37, 211, 102, .18);

  color: #fff;

  transform: translateX(4px);
}


/* =====================================================
   MOBILE WHATSAPP BUTTON
   ===================================================== */

.btn-mobile-cta {
  width: 100%;

  background: var(--wa-primary);

  color: #fff;

  font-weight: 700;

  padding: 13px;

  border-radius: 14px;

  text-align: center;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  text-decoration: none;

  transition:
    background .25s ease,
    transform .25s ease,
    box-shadow .25s ease;
}


.btn-mobile-cta:hover {
  color: var(--wa-primary) !important;
 background-color: #fff !important;

  transform: translateY(-2px);

  box-shadow:
    0 8px 18px rgba(37, 211, 102, .3);
}


/* =====================================================
   CUSTOM OFFCANVAS OVERLAY
   ===================================================== */

.offcanvas-backdrop-custom {
  position: fixed;

  inset: 0;

  width: 100%;
  height: 100%;

  background:
    rgba(5, 59, 46, .55);

  z-index: 1040;

  opacity: 0;

  visibility: hidden;

  pointer-events: none;

  transition:
    opacity .3s ease,
    visibility .3s ease;
}


.offcanvas-backdrop-custom.show-overlay {
  opacity: 1;

  visibility: visible;

  pointer-events: auto;
}


/* =====================================================
   MOBILE / TABLET
   ===================================================== */

@media (max-width: 991.98px) {

  /* Header */
  .site-header {
    padding: 12px 0;
  }


  .site-header.scrolled {
    padding: 8px 0;
  }


  /* Show hamburger */
  .hamburger-btn {
    display: flex;
  }


  /* Header layout */
  .site-header .container {
    display: flex;

    align-items: center;

    justify-content: space-between;
  }


  .site-header .navbar {
    width: 100%;

    padding: 0;
  }


  .site-header .navbar-brand {
    margin-right: 0;
  }


  /* Mobile logo */
  .brand-mark img {
    max-width: 165px;
    max-height: 48px !important;
  }


  /* Section offset */
  html {
    scroll-padding-top: 75px;
  }


  section[id] {
    scroll-margin-top: 75px;
  }

}


/* =====================================================
   SMALL MOBILE
   ===================================================== */

@media (max-width: 575.98px) {

  /* Header */
  .site-header {
    padding: 10px 0;
  }


  .site-header.scrolled {
    padding: 7px 0;
  }


  /* Container */
  .site-header .container {
    padding-left: 15px;
    padding-right: 15px;
  }


  /* Logo */
  .brand-mark img {
    max-width: 145px;

    max-height: 44px !important;
  }


  /* Hamburger */
  .hamburger-btn {
    width: 40px;
    height: 40px;

    border-radius: 10px;
  }


  .hamburger-btn span {
    width: 19px;
  }


  /* Mobile menu */
  .mobile-menu {
    width: 85vw;
    max-width: 320px;
  }


  .mobile-menu .offcanvas-header {
    padding: 16px;
  }


  .mobile-menu .offcanvas-body {
    padding: 16px;
  }


  /* Mobile logo inside menu */
  .mobile-menu .brand-mark img {
    max-width: 145px;
    max-height: 44px !important;
  }


  /* Navigation */
  .mobile-nav-links {
    margin-top: 15px;
  }


  .mobile-nav-links li a {
    font-size: .98rem;

    padding: 13px 10px;
  }


  /* CTA */
  .btn-mobile-cta {
    padding: 12px;
  }

}


/* =====================================================
   EXTRA SMALL MOBILE
   ===================================================== */

@media (max-width: 375px) {

  .brand-mark img {
    max-width: 130px;
    max-height: 40px !important;
  }


  .hamburger-btn {
    width: 38px;
    height: 38px;
  }


  .mobile-menu {
    width: 88vw;
  }

}


/* =====================================================
   REDUCE MOTION
   Accessibility
   ===================================================== */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

}
/* =====================================================
   FLOATING WHATSAPP BUTTON
   ===================================================== */
.floating-whatsapp{
  position:fixed; left:22px; bottom:20px; z-index:900;
  background:var(--wa-primary); color:#fff;
  height:58px; padding:0 16px; border-radius:32px;
  display:flex; align-items:center; gap:10px;
  box-shadow:0 10px 26px rgba(37,211,102,.45);
  animation:fwPulse 2.4s infinite;
}
.floating-whatsapp i{font-size:26px;}
.floating-whatsapp .fw-label{font-weight:600; font-size:.92rem; white-space:nowrap;}
@media(max-width:767.98px){
  .floating-whatsapp{width:56px; height:56px; padding:0; justify-content:center; border-radius:50%;}
  .floating-whatsapp .fw-label{display:none;}
}
@keyframes fwPulse{
  0%{box-shadow:0 0 0 0 rgba(37,211,102,.55);}
  70%{box-shadow:0 0 0 16px rgba(37,211,102,0);}
  100%{box-shadow:0 0 0 0 rgba(37,211,102,0);}
}

/* =====================================================
   BACK TO TOP
   ===================================================== */
#backToTop{
  position:fixed; right:22px; bottom:20px; z-index:899;
  width:44px; height:44px; border-radius:50%; border:none;
  background:var(--wa-deep); color:#fff; font-size:16px;
  opacity:0; visibility:hidden; transform:translateY(10px);
  transition:all .3s ease;
}
#backToTop.show-btn{opacity:1; visibility:visible; transform:translateY(0);}
@media(max-width:767.98px){#backToTop{bottom:88px; right:16px;}}

/* =====================================================
   REVEAL ANIMATIONS
   ===================================================== */
[data-reveal]{opacity:0; transition:opacity .7s ease, transform .7s ease;}
[data-reveal="fade-up"]{transform:translateY(34px);}
[data-reveal="fade-left"]{transform:translateX(40px);}
[data-reveal="fade-right"]{transform:translateX(-40px);}
[data-reveal].revealed{opacity:1; transform:translate(0,0);}

@media(prefers-reduced-motion:reduce){
  [data-reveal]{opacity:1 !important; transform:none !important; transition:none !important;}
  *{animation-duration:.001ms !important; animation-iteration-count:1 !important;}
}

/* =====================================================
   SECTION HEADING / SHARED
   ===================================================== */
.section-pad{padding:90px 0;}
.section-heading{max-width:640px; margin:0 auto 50px; text-align:center;}
.section-heading h2{font-size:clamp(1.7rem,3vw,2.3rem); font-weight:700; margin-bottom:14px;}
.section-heading p{font-size:1.05rem;}
.section-eyebrow{
  display:inline-block; color:var(--wa-primary); font-weight:700; font-size:.85rem;
  letter-spacing:.3px; margin-bottom:10px;
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero-section{
  position:relative; padding:120px 0 30px;
  background:linear-gradient(180deg,var(--wa-light) 0%, #ffffff 78%);
  overflow:hidden;
}
.hero-bg-glow{
  position:absolute; top:-180px; right:-160px; width:520px; height:520px; border-radius:50%;
  background:radial-gradient(circle,rgba(37,211,102,.28),transparent 70%);
  filter:blur(10px);
}
.hero-badge{
  display:inline-flex; align-items:center; gap:8px;
  background:#fff; border:1px solid var(--wa-border); color:var(--wa-dark);
  font-weight:600; font-size:.82rem; padding:8px 16px; border-radius:30px;
  box-shadow:var(--shadow-soft); margin-bottom:22px;
}
.hero-badge i{color:var(--wa-primary);}
.hero-heading{
  font-size:2.5rem; font-weight:700; line-height:1.16; margin-bottom:22px;
}
.hero-highlight{
  display:block; color:var(--wa-primary); margin-top:6px;
}
.hero-sub{font-size:1.08rem; max-width:520px; margin-bottom:30px;}
.hero-cta-group{display:flex; gap:14px; flex-wrap:wrap; margin-bottom:40px;}

.btn-primary-cta{
  background:var(--wa-primary); color:#fff; font-weight:700;
  padding:14px 26px; border-radius:14px; display:inline-flex; align-items:center; gap:10px;
  box-shadow:0 14px 28px rgba(37,211,102,.35);
  transition:transform .25s ease, box-shadow .25s ease;
}
.btn-primary-cta:hover{transform:translateY(-3px); color: var(--wa-primary) !important;
 background-color: #fff !important;}
.btn-outline-cta{
  background:#fff; color:var(--wa-deep); font-weight:700; border:1.5px solid var(--wa-border);
  padding:14px 26px; border-radius:14px; display:inline-flex; align-items:center; gap:10px;
  transition:all .25s ease;
}
.btn-outline-cta:hover{border-color:var(--wa-primary); color:var(--wa-dark); transform:translateY(-3px);}

.hero-mini-stats{display:flex; gap:32px; flex-wrap:wrap;}
.mini-stat strong{display:block; font-family:var(--font-display); font-size:1.5rem; color:var(--wa-deep); font-weight:700;}
.mini-stat span{font-size:.82rem; color:#5C7C71; font-weight:600;}

/* Hero visual: phone mockup */
.hero-visual{position:relative; max-width:400px; margin:0 auto; padding:40px 20px;}
.phone-mockup{
  position:relative; background:var(--wa-deep); border-radius:36px; padding:14px;
  box-shadow:var(--shadow-strong); animation:heroFloat 5s ease-in-out infinite;
}
.phone-notch{width:70px; height:6px; background:rgba(255,255,255,.25); border-radius:6px; margin:0 auto 10px;}
.phone-header{
  display:flex; align-items:center; gap:10px; color:#fff; padding:4px 6px 14px;
  border-bottom:1px solid rgba(255,255,255,.12); margin-bottom:14px;
}
.phone-header i.fa-circle-user{font-size:30px; color:var(--wa-primary);}
.phone-header strong{display:block; font-size:.92rem;}
.phone-header span{font-size:.72rem; color:rgba(255,255,255,.6);}
.phone-header span i{color:var(--wa-primary); font-size:.7rem;}
.phone-chat{
  background:#0B4A40; border-radius:18px; padding:16px; min-height:230px;
  display:flex; flex-direction:column; gap:10px;
}
.bubble{max-width:80%; padding:9px 13px; border-radius:14px; font-size:.82rem; line-height:1.4;}
.bubble-in{align-self:flex-start; background:#0f5c4f; color:#fff; border-bottom-left-radius:4px;}
.bubble-out{align-self:flex-end; background:var(--wa-primary); color:#053B2E; font-weight:600; border-bottom-right-radius:4px;}
.typing-bubble{display:flex; gap:4px; align-items:center; padding:11px 14px;}
.typing-bubble span{width:6px; height:6px; border-radius:50%; background:#053B2E; opacity:.5; animation:typingDot 1.2s infinite;}
.typing-bubble span:nth-child(2){animation-delay:.2s;}
.typing-bubble span:nth-child(3){animation-delay:.4s;}
@keyframes typingDot{0%,60%,100%{opacity:.3; transform:translateY(0);}30%{opacity:1; transform:translateY(-3px);}}

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

.float-card{
  position:absolute; background:#fff; border-radius:14px; padding:10px 14px;
  display:flex; align-items:center; gap:10px; box-shadow:var(--shadow-soft);
  font-size:.78rem; animation:cardFloat 4.5s ease-in-out infinite;
}
.float-card i{font-size:18px; color:var(--wa-primary);}
.float-card strong{display:block; color:var(--wa-deep); font-size:.85rem;}
.float-card span{color:#6C8880; font-size:.72rem;}
.float-card-1{top:8%; left:-16px; animation-delay:0s;}
.float-card-2{bottom:20%; right:-18px; animation-delay:1.2s;}
.float-card-3{bottom:-4%; left:8%; animation-delay:2.1s;}
@keyframes cardFloat{0%,100%{transform:translateY(0);}50%{transform:translateY(-10px);}}

.api-dot{position:absolute; width:8px; height:8px; border-radius:50%; background:var(--wa-primary); opacity:.6; animation:dotBlink 2s infinite;}
.dot-1{top:20%; right:10%; animation-delay:.2s;}
.dot-2{top:60%; left:2%; animation-delay:.8s;}
.dot-3{bottom:12%; right:22%; animation-delay:1.4s;}
@keyframes dotBlink{0%,100%{opacity:.2;}50%{opacity:.9;}}

@media(max-width:767.98px){
  .float-card{display:none;}
  .hero-section{padding:120px 0 10px;}
}

/* =====================================================
   FEATURE STRIP
   ===================================================== */
.feature-strip {
  padding: 22px 0;
  background: var(--wa-deep);
  overflow: hidden;
  position: relative;
}

/* Marquee wrapper */
.feature-marquee {
  width: 100%;
  overflow: hidden;
}

/* Moving track */
.feature-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 70px;
  animation: featureScroll 25s linear infinite;
}

/* Individual item */
.feature-strip-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  color: #fff;
}

/* Icon */
.feature-strip-item i {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: rgba(37, 211, 102, 0.16);
  color: var(--wa-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;

  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

/* Text */
.feature-strip-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

/* Hover animation */
.feature-strip-item:hover i {
  background: rgba(37, 211, 102, 0.25);
}



/* Right to left continuous animation */
@keyframes featureScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Pause when mouse is over */
.feature-marquee:hover .feature-marquee-track {
  animation-play-state: paused;
}

/* Mobile */
@media (max-width: 576px) {
  .feature-strip {
    padding: 18px 0;
  }

  .feature-marquee-track {
    gap: 45px;
    animation-duration: 20s;
  }

  .feature-strip-item {
    gap: 9px;
  }

  .feature-strip-item i {
    width: 38px;
    height: 38px;
    min-width: 38px;
    font-size: 15px;
    border-radius: 10px;
  }

  .feature-strip-item span {
    font-size: 0.78rem;
  }
}

/* =====================================================
   SERVICES
   ===================================================== */
/* =========================================
   WHATSAPP API SERVICES
   ANIMATED ACTIVE UI
========================================= */

.services-section {
  background: var(--wa-white);
  overflow: hidden;
}


/* =========================================
   SERVICE CARD
========================================= */

.service-card {
  position: relative;
  height: 100%;
  padding: 32px 26px;
  background: var(--wa-surface);
  border: 1px solid var(--wa-border);
  border-radius: var(--radius-lg);
  overflow: hidden;

  transition:
    transform .45s cubic-bezier(.22,.61,.36,1),
    box-shadow .45s ease,
    border-color .4s ease,
    background .4s ease;

  animation: serviceFloat 4s ease-in-out infinite;
}


/* Different floating timing for each card */

.col-md-6:nth-child(1) .service-card {
  animation-delay: 0s;
}

.col-md-6:nth-child(2) .service-card {
  animation-delay: .15s;
}

.col-md-6:nth-child(3) .service-card {
  animation-delay: .3s;
}

.col-md-6:nth-child(4) .service-card {
  animation-delay: .45s;
}

.col-md-6:nth-child(5) .service-card {
  animation-delay: .6s;
}

.col-md-6:nth-child(6) .service-card {
  animation-delay: .75s;
}

.col-md-6:nth-child(7) .service-card {
  animation-delay: .9s;
}

.col-md-6:nth-child(8) .service-card {
  animation-delay: 1.05s;
}


/* =========================================
   ANIMATED TOP LINE
========================================= */

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;

  width: 100%;
  height: 3px;

  border: 0;
  border-radius: 0;

  background: var(--wa-primary);

  animation: serviceLine 4s ease-in-out infinite;
}


/* =========================================
   GLOW CIRCLE
========================================= */

.service-card::after {
  content: "";

  position: absolute;
  width: 120px;
  height: 120px;

  right: -70px;
  bottom: -70px;

  border-radius: 50%;

  background: rgba(37, 211, 102, .07);

  transition:
    transform .55s ease,
    opacity .55s ease;
}


/* =========================================
   SERVICE ICON
========================================= */

.service-icon {
  position: relative;
  z-index: 2;

  width: 56px;
  height: 56px;

  border-radius: 16px;
  margin-bottom: 18px;

  background: linear-gradient(
    145deg,
    var(--wa-primary),
    var(--wa-dark)
  );

  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;

  box-shadow:
    0 8px 20px rgba(37, 211, 102, .18);

  transition:
    transform .45s cubic-bezier(.22,.61,.36,1),
    box-shadow .4s ease,
    border-radius .4s ease;

  animation: iconFloat 3s ease-in-out infinite;
}


/* Icon itself */

.service-icon i {
  transition:
    transform .4s ease;
}


/* =========================================
   HEADING
========================================= */

.service-card h3 {
  position: relative;
  z-index: 2;

  font-size: 1.08rem;
  margin-bottom: 10px;

  transition:
    color .3s ease,
    transform .3s ease;
}


/* =========================================
   DESCRIPTION
========================================= */

.service-card p {
  position: relative;
  z-index: 2;

  font-size: .9rem;
  margin: 0;

  transition:
    color .3s ease,
    transform .3s ease;
}


/* =========================================
   HOVER ACTIVE STATE
========================================= */

.service-card:hover {
  transform: translateY(-10px) scale(1.02);

  border-color: rgba(37, 211, 102, .35);

  background: #fff;

  box-shadow:
    0 18px 40px rgba(0, 0, 0, .08),
    0 8px 20px rgba(37, 211, 102, .10);

  animation-play-state: paused;
}


/* Animated border becomes active */

.service-card:hover::before {
  left: 0;
  animation: none;

  height: 3px;
}


/* Glow circle expands */

.service-card:hover::after {
  transform: scale(2.8);
  opacity: .9;
}


/* Icon active */

.service-card:hover .service-icon {
  transform: translateY(-5px) rotate(-6deg) scale(1.1);

  border-radius: 18px;

  box-shadow:
    0 12px 28px rgba(37, 211, 102, .28);

  animation: iconActive .6s ease;
}


/* Icon bounce */

.service-card:hover .service-icon i {
  transform: scale(1.12);
}


/* Heading active */

.service-card:hover h3 {
  color: var(--wa-primary);
  transform: translateY(-2px);
}


/* Text active */

.service-card:hover p {
  transform: translateY(-1px);
}


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

@keyframes serviceFloat {

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

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


@keyframes serviceLine {

  0% {
    left: -100%;
  }

  40% {
    left: 0;
  }

  60% {
    left: 0;
  }

  100% {
    left: 100%;
  }
}


@keyframes iconFloat {

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

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


@keyframes iconActive {

  0% {
    transform: scale(1);
  }

  35% {
    transform: scale(1.18) rotate(-9deg);
  }

  65% {
    transform: scale(.96) rotate(4deg);
  }

  100% {
    transform: translateY(-5px) rotate(-6deg) scale(1.1);
  }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

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

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

  .service-card {
    padding: 24px 20px;
  }

  .service-icon {
    width: 52px;
    height: 52px;

    font-size: 20px;
    border-radius: 15px;
  }

  .service-card h3 {
    font-size: 1rem;
  }

  .service-card p {
    font-size: .84rem;
    line-height: 1.55;
  }

  .service-card:hover {
    transform: translateY(-7px) scale(1.01);
  }

}


/* =========================================
   REDUCE MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

  .service-card,
  .service-icon,
  .service-card::before {
    animation: none !important;
  }

  .service-card,
  .service-icon {
    transition: none;
  }

}

/* =====================================================
   BULK API SECTION
   ===================================================== */
.bulk-api-section{background:var(--wa-light);}
.bulk-lead{font-size:1.05rem; margin-bottom:26px;}
.bulk-feature-list{display:grid; grid-template-columns:1fr 1fr; gap:12px;}
.bulk-feature{
  display:flex; align-items:center; gap:10px; font-weight:600; font-size:.92rem; color:var(--wa-deep);
}
.bulk-feature i{
  width:24px; height:24px; border-radius:50%; background:var(--wa-primary); color:#fff;
  display:flex; align-items:center; justify-content:center; font-size:.7rem; flex-shrink:0;
}

.bulk-dashboard{position:relative; max-width:520px; margin:0 auto; height:420px;}
.bulk-connector-lines{position:absolute; inset:0; width:100%; height:100%;}
.connector-path{fill:none; stroke:var(--wa-dark); stroke-width:1.4; opacity:.25; stroke-dasharray:4 5;}
.connector-dot{fill:var(--wa-primary);}
.dashboard-core{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:110px; height:110px; border-radius:50%;
  background:linear-gradient(150deg,var(--wa-primary),var(--wa-dark));
  color:#fff; display:flex; align-items:center; justify-content:center; font-size:42px;
  box-shadow:0 0 0 14px rgba(37,211,102,.14), var(--shadow-strong);
  animation:corePulse 3s ease-in-out infinite;
}
@keyframes corePulse{0%,100%{box-shadow:0 0 0 14px rgba(37,211,102,.14), var(--shadow-strong);}50%{box-shadow:0 0 0 22px rgba(37,211,102,.08), var(--shadow-strong);}}

.dash-chip{
  position:absolute; background:#fff; border-radius:12px; padding:9px 14px;
  font-size:.78rem; font-weight:700; color:var(--wa-deep); box-shadow:var(--shadow-soft);
  display:flex; align-items:center; gap:8px; animation:cardFloat 5s ease-in-out infinite;
}
.dash-chip i{color:var(--wa-primary);}
.chip-1{top:6%; left:6%;}
.chip-2{top:6%; right:2%; animation-delay:.6s;}
.chip-3{bottom:24%; left:0%; animation-delay:1.2s;}
.chip-4{bottom:24%; right:4%; animation-delay:1.8s;}
.chip-5{bottom:2%; left:32%; animation-delay:2.4s;}

@media(max-width:767.98px){
  .bulk-dashboard{height:340px;}
  .dashboard-core{width:84px; height:84px; font-size:32px;}
  .dash-chip{font-size:.68rem; padding:7px 10px;}
}

/* =====================================================
   ONBOARDING
   ===================================================== */
.onboarding-section{background:#fff;}
.onboarding-track{display:flex; gap:18px; position:relative; padding-top:10px;}
.onboarding-line{display:none;}
.onboarding-step{
  flex:1; text-align:center; background:var(--wa-surface); border:1px solid var(--wa-border);
  border-radius:var(--radius-md); padding:26px 14px; position:relative; transition:all .3s ease;
}
.onboarding-step:hover{transform:translateY(-6px); box-shadow:var(--shadow-soft); background:#fff;}
.step-node{
  width:34px; height:34px; border-radius:50%; background:var(--wa-deep); color:#fff;
  display:flex; align-items:center; justify-content:center; font-weight:700; font-size:.85rem;
  margin:0 auto 14px;
}
.onboarding-step i{font-size:22px; color:var(--wa-primary); margin-bottom:10px; display:block;}
.onboarding-step h4{font-size:.95rem; margin-bottom:6px;}
.onboarding-step p{font-size:.8rem; margin:0;}

@media(max-width:991.98px){
  .onboarding-track{flex-direction:column;}
  .onboarding-step{display:flex; align-items:center; gap:16px; text-align:left; padding:18px;}
  .step-node{margin:0; flex-shrink:0;}
  .onboarding-step i{margin:0;}
}

/* =====================================================
   DOCUMENTS
   ===================================================== */
/* =========================================
   DOCUMENTS SECTION
========================================= */

.documents-section {
  background: var(--wa-light);
  overflow: hidden;
}


/* =========================================
   DOCUMENT CARD
========================================= */

.doc-card {
  position: relative;
  overflow: hidden;

  height: 100%;
  padding: 22px 14px;

  background: #fff;
  border: 1px solid var(--wa-border);
  border-radius: var(--radius-md);

  text-align: center;

  transition:
    transform .4s cubic-bezier(.22,.61,.36,1),
    box-shadow .4s ease,
    border-color .4s ease,
    background .4s ease;

  animation: docFloat 4s ease-in-out infinite;
}


/* =========================================
   DIFFERENT CARD ANIMATION DELAYS
========================================= */

.col-6:nth-child(1) .doc-card {
  animation-delay: 0s;
}

.col-6:nth-child(2) .doc-card {
  animation-delay: .15s;
}

.col-6:nth-child(3) .doc-card {
  animation-delay: .3s;
}

.col-6:nth-child(4) .doc-card {
  animation-delay: .45s;
}

.col-6:nth-child(5) .doc-card {
  animation-delay: .6s;
}

.col-6:nth-child(6) .doc-card {
  animation-delay: .75s;
}

.col-6:nth-child(7) .doc-card {
  animation-delay: .9s;
}

.col-6:nth-child(8) .doc-card {
  animation-delay: 1.05s;
}


/* =========================================
   TOP ACTIVE LINE
========================================= */

.doc-card::before {
  content: "";

  position: absolute;
  top: 0;
  left: -100%;

  width: 100%;
  height: 3px;

  background: var(--wa-primary);

  animation: docLine 4s ease-in-out infinite;
}


/* =========================================
   SOFT BACKGROUND CIRCLE
========================================= */

.doc-card::after {
  content: "";

  position: absolute;

  width: 90px;
  height: 90px;

  right: -55px;
  bottom: -55px;

  border-radius: 50%;

  background: rgba(37, 211, 102, .07);

  transition:
    transform .5s ease,
    opacity .5s ease;
}


/* =========================================
   ICON
========================================= */

.doc-card i {
  position: relative;
  z-index: 2;

  width: 50px;
  height: 50px;

  margin: 0 auto 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 15px;

  font-size: 21px;

  color: var(--wa-primary);

  background: rgba(37, 211, 102, .10);

  transition:
    transform .4s cubic-bezier(.22,.61,.36,1),
    background .4s ease,
    color .4s ease,
    box-shadow .4s ease;

  animation: docIconFloat 3s ease-in-out infinite;
}


/* =========================================
   TEXT
========================================= */

.doc-card span {
  position: relative;
  z-index: 2;

  display: block;

  font-size: .84rem;
  font-weight: 600;

  color: var(--wa-deep);

  transition:
    color .3s ease,
    transform .3s ease;
}


/* =========================================
   HOVER ACTIVE STATE
========================================= */

.doc-card:hover {
  transform: translateY(-9px) scale(1.025);

  border-color: rgba(37, 211, 102, .35);

  background: #fff;

  box-shadow:
    0 16px 35px rgba(0, 0, 0, .08),
    0 6px 18px rgba(37, 211, 102, .10);

  animation-play-state: paused;
}


/* Active top line */

.doc-card:hover::before {
  left: 0;
  animation: none;
}


/* Background circle */

.doc-card:hover::after {
  transform: scale(2.6);
  opacity: .9;
}


/* Active icon */

.doc-card:hover i {
  color: #fff;

  background: var(--wa-primary);

  transform:
    translateY(-4px)
    scale(1.12)
    rotate(-5deg);

  box-shadow:
    0 10px 22px rgba(37, 211, 102, .25);

  animation: docIconActive .6s ease;
}


/* Active text */

.doc-card:hover span {
  color: var(--wa-primary);
  transform: translateY(-2px);
}


/* =========================================
   DOCUMENT NOTICE
========================================= */

.docs-notice {
  position: relative;
  overflow: hidden;

  margin-top: 30px;

  background: #fff;

  border-left: 4px solid var(--wa-primary);
  border-radius: 12px;

  padding: 16px 20px;

  display: flex;
  align-items: flex-start;
  gap: 12px;

  box-shadow: 0 5px 20px rgba(0, 0, 0, .04);

  animation: noticeFloat 4s ease-in-out infinite;

  transition:
    transform .35s ease,
    box-shadow .35s ease;
}


/* Notice animated background */

.docs-notice::after {
  content: "";

  position: absolute;

  top: 0;
  left: -100%;

  width: 40%;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(37, 211, 102, .07),
    transparent
  );

  animation: noticeShine 5s ease-in-out infinite;
}


/* Notice icon */

.docs-notice i {
  position: relative;
  z-index: 2;

  color: var(--wa-primary);

  font-size: 18px;

  margin-top: 2px;

  animation: infoPulse 2.5s ease-in-out infinite;
}


/* Notice text */

.docs-notice p {
  position: relative;
  z-index: 2;

  margin: 0;

  font-size: .9rem;

  transition: color .3s ease;
}


/* Notice hover */

.docs-notice:hover {
  transform: translateY(-4px);

  box-shadow:
    0 12px 28px rgba(0, 0, 0, .07),
    0 4px 12px rgba(37, 211, 102, .08);
}


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

@keyframes docFloat {

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

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


@keyframes docLine {

  0% {
    left: -100%;
  }

  40% {
    left: 0;
  }

  60% {
    left: 0;
  }

  100% {
    left: 100%;
  }
}


@keyframes docIconFloat {

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

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


@keyframes docIconActive {

  0% {
    transform: scale(1);
  }

  35% {
    transform: scale(1.2) rotate(-8deg);
  }

  65% {
    transform: scale(.96) rotate(4deg);
  }

  100% {
    transform: scale(1.12) rotate(-5deg);
  }
}


@keyframes noticeFloat {

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

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


@keyframes noticeShine {

  0% {
    left: -100%;
  }

  45%,
  65% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}


@keyframes infoPulse {

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

  50% {
    transform: scale(1.12);
  }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

  .doc-card {
    padding: 18px 10px;
  }

  .doc-card i {
    width: 44px;
    height: 44px;

    font-size: 19px;
    border-radius: 13px;

    margin-bottom: 9px;
  }

  .doc-card span {
    font-size: .78rem;
  }

  .docs-notice {
    padding: 14px 15px;
  }

  .docs-notice p {
    font-size: .78rem;
    line-height: 1.5;
  }

  .doc-card:hover {
    transform: translateY(-6px) scale(1.015);
  }
}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

  .doc-card,
  .doc-card i,
  .doc-card::before,
  .docs-notice,
  .docs-notice i,
  .docs-notice::after {
    animation: none !important;
  }

  .doc-card,
  .docs-notice {
    transition: none;
  }
}

/* =====================================================
   PACKAGES
   ===================================================== */
.packages-section{background:#fff;}
.price-card{
  background:var(--wa-surface); border:1px solid var(--wa-border); border-radius:var(--radius-lg);
  padding:34px 26px; height:100%; text-align:center; position:relative; transition:all .3s ease;
}
.price-card:hover{transform:translateY(-8px); box-shadow:var(--shadow-strong);}
.price-card h3{font-size:1.1rem; margin-bottom:12px;}
.price-amount{font-family:var(--font-display); font-size:2rem; font-weight:700; color:var(--wa-deep); margin-bottom:22px;}
.price-amount span{font-size:.9rem; font-weight:500; color:#6C8880;}
.price-features{list-style:none; padding:0; margin:0 0 26px; text-align:left;}
.price-features li{display:flex; align-items:center; gap:10px; font-size:.88rem; padding:7px 0; color:#4B6359;}
.price-features li i{color:var(--wa-primary); font-size:.8rem;}
.btn-price-cta{
  display:block; width:100%; background:#fff; border:1.5px solid var(--wa-dark); color:var(--wa-dark);
  font-weight:700; padding:11px; border-radius:12px; transition:all .25s ease;
}
.btn-price-cta:hover{background:var(--wa-dark); color:#fff;}

.price-card-popular{
  background:linear-gradient(160deg,var(--wa-dark),var(--wa-deep)); border-color:transparent;
  transform:scale(1.04);
}
.price-card-popular h3, .price-card-popular .price-amount{color:#fff;}
.price-card-popular .price-amount span{color:rgba(255,255,255,.65);}
.price-card-popular .price-features li{color:rgba(255,255,255,.82);}
.price-card-popular .price-features li i{color:var(--wa-primary);}
.popular-badge{
  position:absolute; top:-13px; left:50%; transform:translateX(-50%);
  background:var(--wa-primary); color:#053B2E; font-weight:700; font-size:.72rem;
  padding:5px 16px; border-radius:20px;
}
.btn-price-cta-popular{background:var(--wa-primary); border-color:var(--wa-primary); color:#053B2E;}
.btn-price-cta-popular:hover{background:#1fb857; color:#053B2E;}

@media(max-width:991.98px){.price-card-popular{transform:scale(1);}}

.additional-charges{margin-top:70px;}
.additional-charges h4{text-align:center; margin-bottom:26px; font-size:1.2rem;}
.charge-card{
  background:var(--wa-light); border-radius:14px; padding:18px; text-align:center; height:100%;
}
.charge-card i{font-size:20px; color:var(--wa-dark); display:block; margin-bottom:8px;}
.charge-card span{font-size:.82rem; font-weight:600; color:var(--wa-deep);}

/* =====================================================
   POLICY
   ===================================================== */
/* =========================================
   POLICY SECTION - ANIMATED ACTIVE UI
========================================= */

.policy-section {
  position: relative;
  background: var(--wa-deep);
  color: #fff;
  overflow: hidden;
}


/* Background glow */

.policy-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: -220px;
  left: -180px;
  border-radius: 50%;
  background: rgba(37, 211, 102, .07);
  filter: blur(10px);
  animation: policyGlow 7s ease-in-out infinite;
}

.policy-section::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  right: -180px;
  bottom: -180px;
  border-radius: 50%;
  background: rgba(37, 211, 102, .06);
  filter: blur(10px);
  animation: policyGlow 8s ease-in-out infinite reverse;
}


/* Keep content above background */

.policy-section .container {
  position: relative;
  z-index: 2;
}


/* =========================================
   LEFT CONTENT
========================================= */

.policy-section .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: var(--wa-primary);

  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;

  margin-bottom: 12px;

  animation: eyebrowPulse 3s ease-in-out infinite;
}

.policy-section .section-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 5px;
  background: var(--wa-primary);

  animation: eyebrowLine 2.5s ease-in-out infinite;
}


.policy-section h2 {
  color: #fff;
  position: relative;

  transition: transform .4s ease;
}

.policy-section .col-lg-5:hover h2 {
  transform: translateX(5px);
}


.policy-section > .container > .row > .col-lg-5 p {
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  max-width: 520px;

  transition:
    color .3s ease,
    transform .3s ease;
}

.policy-section .col-lg-5:hover p {
  color: rgba(255,255,255,.9);
  transform: translateX(3px);
}


/* =========================================
   POLICY GRID
========================================= */

.policy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}


/* =========================================
   POLICY POINT
========================================= */

.policy-point {
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
  gap: 12px;

  min-height: 58px;

  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;

  padding: 14px 16px;

  font-size: .86rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);

  transition:
    transform .4s cubic-bezier(.22,.61,.36,1),
    background .4s ease,
    border-color .4s ease,
    box-shadow .4s ease;

  animation: policyPointFloat 4.5s ease-in-out infinite;
}


/* Different timing */

.policy-point:nth-child(1) {
  animation-delay: 0s;
}

.policy-point:nth-child(2) {
  animation-delay: .15s;
}

.policy-point:nth-child(3) {
  animation-delay: .3s;
}

.policy-point:nth-child(4) {
  animation-delay: .45s;
}

.policy-point:nth-child(5) {
  animation-delay: .6s;
}

.policy-point:nth-child(6) {
  animation-delay: .75s;
}

.policy-point:nth-child(7) {
  animation-delay: .9s;
}

.policy-point:nth-child(8) {
  animation-delay: 1.05s;
}


/* Moving top highlight */

.policy-point::before {
  content: "";

  position: absolute;
  top: 0;
  left: -100%;

  width: 70%;
  height: 2px;

  background: linear-gradient(
    90deg,
    transparent,
    var(--wa-primary),
    transparent
  );

  animation: policyScan 4s ease-in-out infinite;
}


/* Soft background glow */

.policy-point::after {
  content: "";

  position: absolute;

  width: 80px;
  height: 80px;

  right: -45px;
  bottom: -45px;

  border-radius: 50%;

  background: rgba(37,211,102,.08);

  transition:
    transform .5s ease,
    opacity .5s ease;
}


/* =========================================
   ICON
========================================= */

.policy-point i {
  position: relative;
  z-index: 2;

  width: 34px;
  height: 34px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--wa-primary);

  font-size: 17px;

  border-radius: 10px;

  background: rgba(37,211,102,.1);

  transition:
    transform .4s ease,
    background .4s ease,
    color .4s ease,
    box-shadow .4s ease;

  animation: policyIconPulse 3s ease-in-out infinite;
}


/* Text */

.policy-point span {
  position: relative;
  z-index: 2;

  transition:
    color .3s ease,
    transform .3s ease;
}


/* =========================================
   HOVER ACTIVE
========================================= */

.policy-point:hover {
  transform: translateY(-6px) translateX(3px);

  background: rgba(37,211,102,.09);

  border-color: rgba(37,211,102,.38);

  box-shadow:
    0 12px 30px rgba(0,0,0,.18),
    0 0 20px rgba(37,211,102,.06);

  animation-play-state: paused;
}


.policy-point:hover::before {
  left: 100%;
  animation: none;
}


.policy-point:hover::after {
  transform: scale(2.5);
  opacity: .8;
}


.policy-point:hover i {
  color: #fff;

  background: var(--wa-primary);

  transform: scale(1.12) rotate(-6deg);

  box-shadow:
    0 7px 18px rgba(37,211,102,.25);

  animation: policyIconActive .55s ease;
}


.policy-point:hover span {
  color: #fff;
  transform: translateX(3px);
}


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

@keyframes policyGlow {

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

  50% {
    transform: scale(1.2) translate(25px, 20px);
    opacity: 1;
  }
}


@keyframes eyebrowPulse {

  0%,
  100% {
    opacity: .8;
  }

  50% {
    opacity: 1;
  }
}


@keyframes eyebrowLine {

  0%,
  100% {
    width: 24px;
  }

  50% {
    width: 36px;
  }
}


@keyframes policyPointFloat {

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

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


@keyframes policyScan {

  0% {
    left: -100%;
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  55% {
    left: 100%;
    opacity: 1;
  }

  70%,
  100% {
    left: 100%;
    opacity: 0;
  }
}


@keyframes policyIconPulse {

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

  50% {
    transform: scale(1.06);
  }
}


@keyframes policyIconActive {

  0% {
    transform: scale(1);
  }

  40% {
    transform: scale(1.2) rotate(-8deg);
  }

  70% {
    transform: scale(.96) rotate(4deg);
  }

  100% {
    transform: scale(1.12) rotate(-6deg);
  }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

  .policy-grid {
    gap: 12px;
  }

  .policy-point {
    padding: 13px 14px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575.98px) {

  .policy-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .policy-point {
    min-height: 55px;
    padding: 13px 14px;
    font-size: .82rem;
  }

  .policy-point:hover {
    transform: translateY(-4px);
  }

  .policy-section::before {
    width: 280px;
    height: 280px;
  }

  .policy-section::after {
    width: 240px;
    height: 240px;
  }

}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

  .policy-section::before,
  .policy-section::after,
  .policy-section .section-eyebrow,
  .policy-section .section-eyebrow::before,
  .policy-point,
  .policy-point::before,
  .policy-point i {
    animation: none !important;
  }

  .policy-point,
  .policy-point i,
  .policy-section h2,
  .policy-section p {
    transition: none;
  }

}

/* =====================================================
   WHY CHOOSE US
   ===================================================== */
/* =========================================
   WHY CHOOSE US - UNIQUE ANIMATED UI
========================================= */

.why-us-section {
  background: var(--wa-light);
  overflow: hidden;
}


/* =========================================
   WHY CARD
========================================= */

.why-card {
  position: relative;
  height: 100%;
  padding: 30px 24px;

  background: #fff;
  border: 1px solid var(--wa-border);
  border-radius: var(--radius-lg);

  overflow: hidden;

  transition:
    transform .5s cubic-bezier(.16,1,.3,1),
    box-shadow .5s ease,
    border-color .4s ease;

  /* subtle entrance */
  animation: whyCardReveal .8s both;
}


/* Staggered card entrance */

.col-md-6:nth-child(1) .why-card {
  animation-delay: .05s;
}

.col-md-6:nth-child(2) .why-card {
  animation-delay: .15s;
}

.col-md-6:nth-child(3) .why-card {
  animation-delay: .25s;
}

.col-md-6:nth-child(4) .why-card {
  animation-delay: .35s;
}

.col-md-6:nth-child(5) .why-card {
  animation-delay: .45s;
}

.col-md-6:nth-child(6) .why-card {
  animation-delay: .55s;
}


/* =========================================
   NUMBER / CORNER DETAIL
========================================= */

.why-card::before {
  content: "";

  position: absolute;
  top: 0;
  right: 0;

  width: 58px;
  height: 58px;

  background:
    linear-gradient(
      135deg,
      rgba(37,211,102,.14),
      transparent 65%
    );

  clip-path: polygon(100% 0, 100% 100%, 0 0);

  transition:
    width .4s ease,
    height .4s ease;
}


/* =========================================
   DIAGONAL LIGHT SWEEP
========================================= */

.why-card::after {
  content: "";

  position: absolute;

  width: 45%;
  height: 180%;

  top: -40%;
  left: -100%;

  background: linear-gradient(
    110deg,
    transparent,
    rgba(37,211,102,.08),
    transparent
  );

  transform: rotate(18deg);

  transition: left .7s cubic-bezier(.22,.61,.36,1);
}


/* =========================================
   ICON AREA
========================================= */

.why-card i {
  position: relative;
  z-index: 2;

  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 18px;

  color: var(--wa-primary);

  font-size: 25px;

  background: rgba(37,211,102,.08);

  border: 1px solid rgba(37,211,102,.14);

  border-radius: 50%;

  transition:
    transform .55s cubic-bezier(.16,1,.3,1),
    color .4s ease,
    background .4s ease,
    box-shadow .4s ease;

  /* different animation */
  animation: iconOrbit 5s linear infinite;
}


/* Small rotating ring around icon */

.why-card i::after {
  content: "";

  position: absolute;

  inset: -6px;

  border-radius: 50%;

  border: 1px dashed rgba(37,211,102,.25);

  animation: ringRotate 6s linear infinite;
}


/* =========================================
   HEADING
========================================= */

.why-card h4 {
  position: relative;
  z-index: 2;

  font-size: 1.02rem;
  margin-bottom: 8px;

  transition:
    transform .4s ease,
    color .3s ease;
}


/* =========================================
   DESCRIPTION
========================================= */

.why-card p {
  position: relative;
  z-index: 2;

  font-size: .88rem;
  margin: 0;

  color: #6c757d;

  transition:
    transform .4s ease,
    color .3s ease;
}


/* =========================================
   HOVER ACTIVE
========================================= */

.why-card:hover {
  transform:
    translateY(-8px)
    rotateX(2deg)
    rotateY(-2deg);

  border-color: rgba(37,211,102,.3);

  box-shadow:
    0 20px 45px rgba(0,0,0,.08),
    0 8px 22px rgba(37,211,102,.08);
}


/* Corner expands */

.why-card:hover::before {
  width: 100px;
  height: 100px;
}


/* Light sweep */

.why-card:hover::after {
  left: 120%;
}


/* Icon active */

.why-card:hover i {
  color: #fff;

  background: linear-gradient(
    135deg,
    var(--wa-primary),
    var(--wa-dark)
  );

  transform:
    scale(1.12)
    rotate(12deg);

  border-color: transparent;

  box-shadow:
    0 10px 25px rgba(37,211,102,.25);

  animation: iconBounce .6s ease;
}


/* Heading active */

.why-card:hover h4 {
  color: var(--wa-primary);
  transform: translateX(4px);
}


/* Paragraph active */

.why-card:hover p {
  color: #555;
  transform: translateX(2px);
}


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

@keyframes whyCardReveal {

  from {
    opacity: 0;
    transform: translateY(25px) scale(.97);
  }

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


/* Slow icon movement */

@keyframes iconOrbit {

  0% {
    transform: rotate(0deg) translateY(0);
  }

  25% {
    transform: rotate(2deg) translateY(-2px);
  }

  50% {
    transform: rotate(0deg) translateY(-4px);
  }

  75% {
    transform: rotate(-2deg) translateY(-2px);
  }

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


/* Rotating dashed ring */

@keyframes ringRotate {

  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}


/* Hover icon bounce */

@keyframes iconBounce {

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

  35% {
    transform: scale(1.22) rotate(-12deg);
  }

  65% {
    transform: scale(.95) rotate(8deg);
  }

  100% {
    transform: scale(1.12) rotate(12deg);
  }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

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

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575.98px) {

  .why-card {
    padding: 24px 20px;
  }

  .why-card i {
    width: 52px;
    height: 52px;
    font-size: 22px;
    margin-bottom: 15px;
  }

  .why-card h4 {
    font-size: .98rem;
  }

  .why-card p {
    font-size: .83rem;
    line-height: 1.55;
  }

  .why-card:hover {
    transform: translateY(-6px);
  }

}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

  .why-card,
  .why-card i,
  .why-card i::after {
    animation: none !important;
  }

  .why-card,
  .why-card i {
    transition: none;
  }

}

/* =====================================================
   HOW IT WORKS
   ===================================================== */
/* =========================================
   HOW IT WORKS - PROCESS FLOW UI
========================================= */

.how-it-works-section {
  background: #fff;
  overflow: hidden;
}

.how-it-works-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}


/* =========================================
   STEP
========================================= */

.how-step {
  position: relative;
  width: 140px;
  text-align: center;
  padding: 8px 5px;

  animation: stepAppear .7s ease both;
}


/* Staggered entrance */

.how-step:nth-of-type(1) {
  animation-delay: .1s;
}

.how-step:nth-of-type(3) {
  animation-delay: .25s;
}

.how-step:nth-of-type(5) {
  animation-delay: .4s;
}

.how-step:nth-of-type(7) {
  animation-delay: .55s;
}


/* =========================================
   ICON
========================================= */

.how-icon {
  position: relative;

  width: 70px;
  height: 70px;

  border-radius: 20px;

  margin: 0 auto 14px;

  background: #fff;
  border: 2px solid rgba(37, 211, 102, .18);

  color: var(--wa-primary);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 24px;

  box-shadow:
    0 8px 24px rgba(0, 0, 0, .06);

  transition:
    transform .45s cubic-bezier(.16,1,.3,1),
    background .4s ease,
    color .4s ease,
    border-color .4s ease,
    box-shadow .4s ease;

  animation: iconBreath 3s ease-in-out infinite;
}


/* Outer rotating ring */

.how-icon::before {
  content: "";

  position: absolute;
  inset: -7px;

  border-radius: 24px;

  border: 1px dashed rgba(37, 211, 102, .25);

  animation: processRing 7s linear infinite;
}


/* Small travelling dot */

.how-icon::after {
  content: "";

  position: absolute;

  width: 7px;
  height: 7px;

  top: -5px;
  right: 12px;

  border-radius: 50%;

  background: var(--wa-primary);

  box-shadow: 0 0 10px rgba(37, 211, 102, .5);

  animation: orbitDot 2.5s linear infinite;
}


/* =========================================
   HEADING
========================================= */

.how-step h4 {
  position: relative;
  z-index: 2;

  font-size: .92rem;
  margin: 0;

  transition:
    color .3s ease,
    transform .3s ease;
}


/* =========================================
   ARROW
========================================= */

.how-arrow {
  position: relative;

  width: 55px;
  height: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--wa-primary);

  font-size: 20px;

  overflow: hidden;
}


/* Flowing line */

.how-arrow::before {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  top: 50%;

  height: 2px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(37, 211, 102, .25),
      var(--wa-primary),
      rgba(37, 211, 102, .25),
      transparent
    );

  transform: translateY(-50%);

  animation: flowLine 2s linear infinite;
}


/* Arrow icon stays above line */

.how-arrow i {
  position: relative;
  z-index: 2;

  background: #fff;
  padding: 0 5px;

  animation: arrowMove 1.6s ease-in-out infinite;
}


/* =========================================
   HOVER
========================================= */

.how-step:hover .how-icon {
  background: var(--wa-primary);
  color: #fff;

  border-color: var(--wa-primary);

  transform:
    translateY(-7px)
    rotate(-4deg)
    scale(1.08);

  box-shadow:
    0 14px 30px rgba(37, 211, 102, .25);

  animation: stepActive .6s ease;
}


.how-step:hover .how-icon::before {
  border-color: rgba(37, 211, 102, .6);
  animation-duration: 2s;
}


.how-step:hover h4 {
  color: var(--wa-primary);
  transform: translateY(-3px);
}


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

@keyframes stepAppear {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

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


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

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


@keyframes processRing {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}


@keyframes orbitDot {
  0% {
    transform: translate(0, 0);
    opacity: .4;
  }

  25% {
    transform: translate(4px, 4px);
    opacity: 1;
  }

  50% {
    transform: translate(-2px, 7px);
    opacity: .8;
  }

  75% {
    transform: translate(-7px, 2px);
    opacity: 1;
  }

  100% {
    transform: translate(0, 0);
    opacity: .4;
  }
}


@keyframes flowLine {
  0% {
    transform: translate(-100%, -50%);
  }

  100% {
    transform: translate(100%, -50%);
  }
}


@keyframes arrowMove {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(6px);
  }
}


@keyframes stepActive {
  0% {
    transform: scale(1);
  }

  40% {
    transform: scale(1.14) rotate(-7deg);
  }

  70% {
    transform: scale(.97) rotate(3deg);
  }

  100% {
    transform: translateY(-7px) rotate(-4deg) scale(1.08);
  }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575.98px) {

  .how-it-works-row {
    flex-direction: column;
    gap: 0;
  }

  .how-step {
    width: 100%;
    max-width: 220px;
    padding: 10px 0;
  }

  .how-icon {
    width: 62px;
    height: 62px;
    font-size: 22px;
    border-radius: 18px;
  }

  .how-arrow {
    width: 35px;
    height: 45px;

    transform: none;
  }

  .how-arrow::before {
    top: 0;
    left: 50%;
    right: auto;

    width: 2px;
    height: 100%;

    transform: translateX(-50%);

    background:
      linear-gradient(
        180deg,
        transparent,
        var(--wa-primary),
        transparent
      );

    animation: flowLineVertical 2s linear infinite;
  }

  .how-arrow i {
    transform: rotate(90deg);
    padding: 5px 0;
  }

  .how-step:hover .how-icon {
    transform: translateY(-5px) scale(1.06);
  }

}


/* =========================================
   MOBILE FLOW
========================================= */

@keyframes flowLineVertical {
  0% {
    transform: translateY(-100%) translateX(-50%);
  }

  100% {
    transform: translateY(100%) translateX(-50%);
  }
}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

  .how-step,
  .how-icon,
  .how-icon::before,
  .how-icon::after,
  .how-arrow::before,
  .how-arrow i {
    animation: none !important;
  }

  .how-step,
  .how-icon {
    transition: none;
  }

}

/* =====================================================
   FINAL CTA
   ===================================================== */
/* =========================================
   FINAL CTA - PREMIUM ANIMATED UI
========================================= */

.final-cta-section {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(37, 211, 102, .13),
      transparent 42%
    ),
    linear-gradient(
      135deg,
      var(--wa-dark),
      var(--wa-deep)
    );

  color: #fff;
}


/* =========================================
   BACKGROUND PARTICLES / LIGHT
========================================= */

.cta-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;

  background:
    radial-gradient(
      circle at 15% 25%,
      rgba(37,211,102,.18) 0,
      transparent 30%
    ),
    radial-gradient(
      circle at 85% 75%,
      rgba(37,211,102,.14) 0,
      transparent 30%
    );

  animation: ctaBackground 8s ease-in-out infinite;
}


/* Moving light beam */

.cta-particles::before {
  content: "";

  position: absolute;

  width: 45%;
  height: 160%;

  top: -30%;
  left: -60%;

  background: linear-gradient(
    110deg,
    transparent,
    rgba(255,255,255,.035),
    transparent
  );

  transform: rotate(18deg);

  animation: ctaBeam 7s ease-in-out infinite;
}


/* =========================================
   CTA CONTENT
========================================= */

.final-cta-section .container {
  position: relative;
  z-index: 3;
}


/* Heading */

.final-cta-section h2 {
  position: relative;

  color: #fff;

  font-size: clamp(1.6rem, 3.4vw, 2.4rem);

  margin-bottom: 14px;

  animation: ctaHeading 1s ease both;
}


/* Small glow under heading */

.final-cta-section h2::after {
  content: "";

  display: block;

  width: 55px;
  height: 3px;

  margin: 16px auto 0;

  border-radius: 20px;

  background: var(--wa-primary);

  box-shadow:
    0 0 12px rgba(37,211,102,.6);

  animation: headingLine 2.5s ease-in-out infinite;
}


/* Paragraph */

.final-cta-section p {
  position: relative;

  color: rgba(255,255,255,.75);

  margin-bottom: 32px;

  animation: ctaText 1s .15s ease both;
}


/* =========================================
   CTA BUTTON
========================================= */

.btn-final-cta {
  position: relative;
  z-index: 2;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 16px 34px;

  background: var(--wa-primary);
  color: #053B2E;

  font-weight: 700;
  font-size: 1.05rem;

  border-radius: 14px;

  border: 0;

  box-shadow:
    0 12px 30px rgba(37,211,102,.28);

  overflow: hidden;

  transition:
    transform .4s cubic-bezier(.16,1,.3,1),
    box-shadow .4s ease,
    background .3s ease;

  animation: buttonPulse 3s ease-in-out infinite;
}


/* Button shine */

.btn-final-cta::before {
  content: "";

  position: absolute;

  top: 0;
  left: -120%;

  width: 70%;
  height: 100%;

  background: linear-gradient(
    100deg,
    transparent,
    rgba(255,255,255,.35),
    transparent
  );

  transform: skewX(-20deg);

  animation: buttonShine 3.5s ease-in-out infinite;
}


/* Button glow ring */

.btn-final-cta::after {
  content: "";

  position: absolute;

  inset: -5px;

  border-radius: 18px;

  border: 1px solid rgba(37,211,102,.5);

  opacity: 0;

  animation: buttonRing 2.8s ease-out infinite;
}


/* WhatsApp icon */

.btn-final-cta i {
  position: relative;
  z-index: 2;

  font-size: 20px;

  transition:
    transform .4s ease;
}


/* Button text */

.btn-final-cta {
  text-decoration: none;
}


/* =========================================
   BUTTON HOVER
========================================= */

.btn-final-cta:hover {
  transform: translateY(-6px) scale(1.04);

  color: #053B2E;

  background: #2be66f;

  box-shadow:
    0 18px 40px rgba(37,211,102,.38),
    0 0 25px rgba(37,211,102,.18);

  animation-play-state: paused;
}


.btn-final-cta:hover i {
  transform: scale(1.2) rotate(-8deg);
}


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

@keyframes ctaBackground {

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

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


@keyframes ctaBeam {

  0% {
    left: -60%;
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  60% {
    left: 120%;
    opacity: .8;
  }

  100% {
    left: 120%;
    opacity: 0;
  }
}


@keyframes ctaHeading {

  from {
    opacity: 0;
    transform: translateY(20px);
  }

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


@keyframes ctaText {

  from {
    opacity: 0;
    transform: translateY(15px);
  }

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


@keyframes headingLine {

  0%,
  100% {
    width: 55px;
    opacity: .7;
  }

  50% {
    width: 90px;
    opacity: 1;
  }
}


@keyframes buttonPulse {

  0%,
  100% {
    box-shadow:
      0 12px 30px rgba(37,211,102,.28);
  }

  50% {
    box-shadow:
      0 16px 38px rgba(37,211,102,.42),
      0 0 18px rgba(37,211,102,.12);
  }
}


@keyframes buttonShine {

  0% {
    left: -120%;
  }

  45%,
  100% {
    left: 130%;
  }
}


@keyframes buttonRing {

  0% {
    transform: scale(.95);
    opacity: .55;
  }

  70% {
    transform: scale(1.12);
    opacity: 0;
  }

  100% {
    transform: scale(1.12);
    opacity: 0;
  }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575.98px) {

  .final-cta-section {
    padding: 75px 20px;
  }

  .final-cta-section h2 {
    font-size: 1.55rem;
  }

  .final-cta-section p {
    font-size: .88rem;
    line-height: 1.6;
    margin-bottom: 26px;
  }

  .btn-final-cta {
    width: 100%;
    max-width: 330px;

    padding: 15px 22px;

    font-size: .95rem;
  }

}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

  .cta-particles,
  .cta-particles::before,
  .final-cta-section h2,
  .final-cta-section h2::after,
  .final-cta-section p,
  .btn-final-cta,
  .btn-final-cta::before,
  .btn-final-cta::after {
    animation: none !important;
  }

  .btn-final-cta {
    transition: none;
  }

}

/* =====================================================
   CONTACT
   ===================================================== */
/* =========================================
   CONTACT SECTION - ACTIVE ANIMATED UI
   ========================================= */

.contact-section {
  position: relative;
  background: var(--wa-light);
  overflow: hidden;
}

/* Animated background glow */
.contact-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: -220px;
  right: -180px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.10);
  filter: blur(5px);
  animation: contactBlobOne 8s ease-in-out infinite;
}

.contact-section::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  bottom: -180px;
  left: -150px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.07);
  filter: blur(5px);
  animation: contactBlobTwo 9s ease-in-out infinite;
}


/* Main Contact Box */
.contact-box {
  position: relative;
  z-index: 2;
  overflow: hidden;

  background: #fff;
  border: 1px solid rgba(37, 211, 102, 0.12);
  border-radius: var(--radius-lg);
  padding: 44px;

  box-shadow:
    0 15px 45px rgba(0, 0, 0, 0.06),
    0 5px 20px rgba(37, 211, 102, 0.05);

  transition:
    transform .5s cubic-bezier(.16, 1, .3, 1),
    box-shadow .5s ease,
    border-color .4s ease;

  animation: contactBoxFloat 5s ease-in-out infinite;
}


/* Animated border light */
.contact-box::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;

  background: linear-gradient(
    120deg,
    transparent 15%,
    rgba(37, 211, 102, .7),
    transparent 40%,
    transparent 65%,
    rgba(37, 211, 102, .35),
    transparent 85%
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  background-size: 250% 250%;
  animation: contactBorderMove 6s linear infinite;

  pointer-events: none;
}


/* Moving shine inside card */
.contact-box::after {
  content: "";
  position: absolute;
  width: 35%;
  height: 180%;
  top: -40%;
  left: -70%;

  background: linear-gradient(
    110deg,
    transparent,
    rgba(37, 211, 102, 0.06),
    transparent
  );

  transform: rotate(18deg);
  animation: contactShine 7s ease-in-out infinite;

  pointer-events: none;
}


/* Content stays above effects */
.contact-box .row,
.contact-box h2,
.contact-box p,
.contact-box .contact-detail,
.contact-box .btn-contact-cta {
  position: relative;
  z-index: 3;
}


/* Heading */
.contact-box h2 {
  margin-bottom: 8px;
  color: var(--wa-deep);
  transition:
    color .35s ease,
    transform .35s ease;
}

.contact-box:hover h2 {
  color: var(--wa-primary);
  transform: translateX(5px);
}


/* Tagline */
.contact-tagline {
  color: var(--wa-primary);
  font-weight: 600;
  margin-bottom: 20px;

  display: inline-flex;
  align-items: center;
  gap: 9px;

  transition:
    transform .35s ease,
    letter-spacing .35s ease;
}

.contact-tagline::before {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 10px;
  background: var(--wa-primary);

  animation: taglineLine 2.5s ease-in-out infinite;
}

.contact-box:hover .contact-tagline {
  transform: translateX(4px);
  letter-spacing: .01em;
}


/* Contact Details */
.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 11px;

  font-weight: 600;
  color: var(--wa-deep);

  transition:
    transform .35s cubic-bezier(.16, 1, .3, 1),
    color .3s ease;
}


/* Icon */
.contact-detail i {
  position: relative;

  width: 38px;
  height: 38px;
  min-width: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 11px;

  color: var(--wa-primary);
  background: rgba(37, 211, 102, 0.09);

  font-size: 16px;

  transition:
    transform .4s cubic-bezier(.16, 1, .3, 1),
    background .35s ease,
    color .35s ease,
    box-shadow .35s ease;
}


/* Icon small rotating ring */
.contact-detail i::after {
  content: "";
  position: absolute;
  inset: -4px;

  border: 1px dashed rgba(37, 211, 102, .25);
  border-radius: 13px;

  animation: detailRing 5s linear infinite;
}


/* Individual detail animation */
.contact-detail:nth-child(3) {
  animation: detailSlide 4s ease-in-out infinite;
}

.contact-detail:nth-child(4) {
  animation: detailSlide 4s ease-in-out infinite;
  animation-delay: .15s;
}

.contact-detail:nth-child(5) {
  animation: detailSlide 4s ease-in-out infinite;
  animation-delay: .3s;
}


/* Hover contact detail */
.contact-detail:hover {
  color: var(--wa-primary);
  transform: translateX(8px);
}

.contact-detail:hover i {
  color: #fff;
  background: var(--wa-primary);

  transform: scale(1.12) rotate(-6deg);

  box-shadow:
    0 8px 20px rgba(37, 211, 102, .25);
}

.contact-detail:hover i::after {
  border-color: rgba(37, 211, 102, .55);
}


/* WhatsApp CTA */
.btn-contact-cta {
  position: relative;
  overflow: hidden;

  background: var(--wa-primary);
  color: #fff;

  font-weight: 700;
  padding: 15px 30px;

  border: 0;
  border-radius: 14px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  box-shadow:
    0 12px 25px rgba(37, 211, 102, .30);

  transition:
    transform .45s cubic-bezier(.16, 1, .3, 1),
    box-shadow .4s ease,
    background .3s ease;

  animation: whatsappPulse 3s ease-in-out infinite;
}


/* Button shine */
.btn-contact-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;

  width: 70%;
  height: 100%;

  background: linear-gradient(
    105deg,
    transparent,
    rgba(255,255,255,.35),
    transparent
  );

  transform: skewX(-20deg);

  animation: whatsappShine 3.8s ease-in-out infinite;
}


/* Button ripple ring */
.btn-contact-cta::after {
  content: "";
  position: absolute;
  inset: -5px;

  border: 1px solid rgba(37, 211, 102, .55);
  border-radius: 18px;

  opacity: 0;

  animation: whatsappRing 2.8s ease-out infinite;
}


/* Button icon */
.btn-contact-cta i {
  position: relative;
  z-index: 2;

  font-size: 20px;

  transition:
    transform .4s cubic-bezier(.16, 1, .3, 1);
}

.btn-contact-cta {
  text-decoration: none;
}

.btn-contact-cta:hover {
  color: #fff;

  transform: translateY(-7px) scale(1.04);

  background: #2be66f;

  box-shadow:
    0 18px 38px rgba(37, 211, 102, .38),
    0 0 25px rgba(37, 211, 102, .14);

  animation-play-state: paused;
}

.btn-contact-cta:hover i {
  transform: scale(1.2) rotate(-8deg);
}


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

@keyframes contactBlobOne {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: .7;
  }

  50% {
    transform: translate(-45px, 35px) scale(1.18);
    opacity: 1;
  }
}

@keyframes contactBlobTwo {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: .6;
  }

  50% {
    transform: translate(40px, -30px) scale(1.15);
    opacity: 1;
  }
}

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

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

@keyframes contactBorderMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes contactShine {
  0% {
    left: -70%;
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  55% {
    left: 120%;
    opacity: .8;
  }

  100% {
    left: 120%;
    opacity: 0;
  }
}

@keyframes taglineLine {
  0%, 100% {
    width: 24px;
  }

  50% {
    width: 38px;
  }
}

@keyframes detailRing {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes detailSlide {
  0%, 100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(3px);
  }
}

@keyframes whatsappPulse {
  0%, 100% {
    box-shadow:
      0 12px 25px rgba(37, 211, 102, .30);
  }

  50% {
    box-shadow:
      0 16px 34px rgba(37, 211, 102, .42),
      0 0 18px rgba(37, 211, 102, .10);
  }
}

@keyframes whatsappShine {
  0% {
    left: -120%;
  }

  45%, 100% {
    left: 130%;
  }
}

@keyframes whatsappRing {
  0% {
    transform: scale(.95);
    opacity: .6;
  }

  70% {
    transform: scale(1.12);
    opacity: 0;
  }

  100% {
    transform: scale(1.12);
    opacity: 0;
  }
}


/* =========================================
   TABLET
   ========================================= */

@media(max-width:991.98px) {

  .contact-box {
    padding: 30px;
  }

  .btn-contact-cta {
    padding: 14px 26px;
  }

}


/* =========================================
   MOBILE
   ========================================= */

@media(max-width:575.98px) {

  .contact-section::before {
    width: 280px;
    height: 280px;
    top: -150px;
    right: -130px;
  }

  .contact-section::after {
    width: 230px;
    height: 230px;
    bottom: -130px;
    left: -120px;
  }

  .contact-box {
    padding: 25px 20px;
    border-radius: 18px;
  }

  .contact-box h2 {
    font-size: 1.45rem;
  }

  .contact-tagline {
    font-size: .88rem;
    margin-bottom: 18px;
  }

  .contact-detail {
    font-size: .84rem;
    gap: 10px;
  }

  .contact-detail i {
    width: 35px;
    height: 35px;
    min-width: 35px;
    font-size: 15px;
  }

  .btn-contact-cta {
    width: 100%;
    padding: 14px 20px;
    font-size: .92rem;
    margin-top: 8px;
  }

  .btn-contact-cta:hover {
    transform: translateY(-5px) scale(1.01);
  }

}


/* =========================================
   REDUCED MOTION
   ========================================= */

@media(prefers-reduced-motion: reduce) {

  .contact-section::before,
  .contact-section::after,
  .contact-box,
  .contact-box::before,
  .contact-box::after,
  .contact-tagline::before,
  .contact-detail,
  .contact-detail i::after,
  .btn-contact-cta,
  .btn-contact-cta::before,
  .btn-contact-cta::after {
    animation: none !important;
  }

  .contact-box,
  .contact-detail,
  .contact-detail i,
  .btn-contact-cta {
    transition: none !important;
  }

}

/* =====================================================
   FOOTER
   ===================================================== */
/* =========================================
   FOOTER - MODERN ANIMATED UI
   ========================================= */

.site-footer {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(circle at 10% 20%, rgba(37, 211, 102, .08), transparent 28%),
    radial-gradient(circle at 90% 80%, rgba(37, 211, 102, .06), transparent 30%),
    var(--wa-deep);

  color: rgba(255, 255, 255, .75);
  /* padding: 65px 0 24px; */
}


/* Subtle animated grid */
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);

  background-size: 45px 45px;

  mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,.8),
    transparent 90%
  );

  animation: footerGrid 14s linear infinite;
  pointer-events: none;
}


/* Moving glow */
.site-footer::after {
  content: "";
  position: absolute;

  width: 300px;
  height: 300px;

  top: -170px;
  left: 45%;

  border-radius: 50%;

  background: rgba(37, 211, 102, .07);
  filter: blur(35px);

  animation: footerGlow 8s ease-in-out infinite;
  pointer-events: none;
}


/* Keep content above effects */
.site-footer .container {
  position: relative;
  z-index: 2;
}


/* =========================================
   BRAND
   ========================================= */

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: #fff;
  margin-bottom: 16px;

  text-decoration: none;

  transition:
    transform .4s cubic-bezier(.16,1,.3,1),
    color .3s ease;
}

.footer-brand:hover {
  color: #fff;
  transform: translateX(5px);
}


/* WhatsApp brand icon */
.footer-brand .brand-icon {
  position: relative;

  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 13px;

  background: rgba(37, 211, 102, .12);
  color: var(--wa-primary);

  transition:
    transform .45s cubic-bezier(.16,1,.3,1),
    background .35s ease,
    box-shadow .35s ease;
}


/* Rotating dashed ring */
.footer-brand .brand-icon::after {
  content: "";

  position: absolute;
  inset: -5px;

  border: 1px dashed rgba(37, 211, 102, .35);
  border-radius: 15px;

  animation: footerIconRing 7s linear infinite;
}

.footer-brand .brand-icon i {
  position: relative;
  z-index: 2;

  font-size: 20px;

  animation: footerIconFloat 3s ease-in-out infinite;
}

.footer-brand:hover .brand-icon {
  background: var(--wa-primary);
  color: #fff;

  transform: rotate(-6deg) scale(1.1);

  box-shadow:
    0 10px 25px rgba(37, 211, 102, .25);
}


/* Brand text */
.footer-brand .brand-text {
  font-weight: 700;
}

.footer-brand .brand-text em {
  color: var(--wa-primary);
  font-style: normal;
}


/* Description */
.site-footer > .container > .row > .col-lg-4:first-child > p {
  max-width: 350px;

  font-size: .88rem;
  line-height: 1.7;

  color: rgba(255, 255, 255, .58);

  transition:
    color .3s ease,
    transform .3s ease;
}

.site-footer > .container > .row > .col-lg-4:first-child:hover > p {
  color: rgba(255, 255, 255, .75);
  transform: translateX(3px);
}


/* =========================================
   HEADINGS
   ========================================= */

.site-footer h5 {
  position: relative;

  display: inline-flex;
  align-items: center;
  gap: 9px;

  color: #fff;
  font-size: 1rem;
  margin-bottom: 18px;
}


/* Heading indicator */
.site-footer h5::before {
  content: "";

  width: 4px;
  height: 18px;

  border-radius: 10px;

  background: var(--wa-primary);

  animation: headingPulse 2.5s ease-in-out infinite;
}


/* =========================================
   QUICK LINKS
   ========================================= */

.footer-links {
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
  position: relative;
}

.footer-links li a {
  position: relative;

  display: inline-flex;
  align-items: center;

  color: rgba(255, 255, 255, .68);

  font-size: .9rem;
  text-decoration: none;

  padding-left: 0;

  transition:
    color .3s ease,
    transform .35s cubic-bezier(.16,1,.3,1);
}


/* Arrow appears on hover */
.footer-links li a::before {
  content: "\f061";

  font-family: "Font Awesome 6 Free";
  font-weight: 900;

  font-size: 9px;

  color: var(--wa-primary);

  position: absolute;
  left: -16px;

  opacity: 0;

  transform: translateX(-6px);

  transition:
    opacity .3s ease,
    transform .3s ease;
}

.footer-links li a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -4px;

  width: 0;
  height: 1px;

  background: var(--wa-primary);

  transition: width .35s ease;
}

.footer-links li a:hover {
  color: var(--wa-primary);
  transform: translateX(7px);
}

.footer-links li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-links li a:hover::after {
  width: 100%;
}


/* =========================================
   CONTACT DETAILS
   ========================================= */

.site-footer .contact-detail {
  position: relative;

  display: flex;
  align-items: center;
  gap: 12px;

  color: rgba(255, 255, 255, .72);
  font-weight: 500;

  margin-bottom: 12px;

  transition:
    transform .35s cubic-bezier(.16,1,.3,1),
    color .3s ease;
}


/* Contact icon */
.site-footer .contact-detail i {
  position: relative;

  width: 36px;
  height: 36px;
  min-width: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;

  background: rgba(37, 211, 102, .09);
  color: var(--wa-primary);

  font-size: 15px;

  transition:
    transform .4s cubic-bezier(.16,1,.3,1),
    background .35s ease,
    color .35s ease,
    box-shadow .35s ease;
}


/* Icon orbit ring */
.site-footer .contact-detail i::after {
  content: "";

  position: absolute;
  inset: -4px;

  border: 1px dashed rgba(37, 211, 102, .22);
  border-radius: 12px;

  animation: contactIconOrbit 6s linear infinite;
}

.site-footer .contact-detail:hover {
  color: #fff;
  transform: translateX(7px);
}

.site-footer .contact-detail:hover i {
  color: #fff;
  background: var(--wa-primary);

  transform: scale(1.1) rotate(-7deg);

  box-shadow:
    0 8px 20px rgba(37, 211, 102, .22);
}


/* =========================================
   SEPARATOR
   ========================================= */

.site-footer hr {
  position: relative;

  border: 0;
  height: 1px;

  background: rgba(255, 255, 255, .10);

  margin: 38px 0 22px;

  overflow: visible;
}


/* Moving light on separator */
.site-footer hr::after {
  content: "";

  position: absolute;

  top: 0;
  left: -15%;

  width: 15%;
  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    var(--wa-primary),
    transparent
  );

  box-shadow: 0 0 8px rgba(37, 211, 102, .5);

  animation: footerLineMove 5s linear infinite;
}


/* =========================================
   BOTTOM AREA
   ========================================= */

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;

  flex-wrap: wrap;
  gap: 10px;

  font-size: .82rem;
}

.footer-bottom p {
  margin: 0;

  color: rgba(255, 255, 255, .55);

  transition: color .3s ease;
}

.footer-bottom > p:first-child:hover {
  color: rgba(255, 255, 255, .85);
}

.footer-fine-print {
  color: rgba(255, 255, 255, .38);

  max-width: 520px;

  line-height: 1.5;

  text-align: right;
}


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

@keyframes footerGrid {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(45px, 45px);
  }
}

@keyframes footerGlow {
  0%, 100% {
    transform: translateX(-80px) scale(1);
    opacity: .5;
  }

  50% {
    transform: translateX(100px) scale(1.3);
    opacity: 1;
  }
}

@keyframes footerIconRing {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

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

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

@keyframes headingPulse {
  0%, 100% {
    transform: scaleY(1);
    opacity: .7;
  }

  50% {
    transform: scaleY(1.25);
    opacity: 1;
  }
}

@keyframes contactIconOrbit {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes footerLineMove {
  0% {
    left: -15%;
  }

  50% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}


/* =========================================
   TABLET
   ========================================= */

@media(max-width:991.98px) {

  .site-footer {
    padding: 55px 0 24px;
  }

  .footer-fine-print {
    text-align: left;
  }

}


/* =========================================
   MOBILE
   ========================================= */

@media(max-width:575.98px) {

  .site-footer {
    padding: 48px 0 20px;
  }

  .site-footer::before {
    background-size: 35px 35px;
  }

  .footer-brand .brand-icon {
    width: 42px;
    height: 42px;
  }

  .site-footer > .container > .row {
    gap: 28px !important;
  }

  .site-footer h5 {
    margin-bottom: 14px;
  }

  .site-footer > .container > .row > .col-lg-4:first-child > p {
    font-size: .82rem;
  }

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

  .footer-links li a {
    font-size: .86rem;
  }

  .site-footer .contact-detail {
    font-size: .84rem;
  }

  .site-footer .contact-detail i {
    width: 34px;
    height: 34px;
    min-width: 34px;
  }

  .site-footer hr {
    margin: 28px 0 18px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-bottom p {
    font-size: .76rem;
  }

  .footer-fine-print {
    max-width: 100%;
    font-size: .72rem !important;
  }

}


/* =========================================
   REDUCED MOTION
   ========================================= */

@media(prefers-reduced-motion: reduce) {

  .site-footer::before,
  .site-footer::after,
  .footer-brand .brand-icon::after,
  .footer-brand .brand-icon i,
  .site-footer h5::before,
  .site-footer .contact-detail i::after,
  .site-footer hr::after {
    animation: none !important;
  }

  .footer-brand,
  .footer-brand .brand-icon,
  .footer-links li a,
  .site-footer .contact-detail,
  .site-footer .contact-detail i {
    transition: none !important;
  }

}

/* =====================================================
   UTILITIES
   ===================================================== */
.text-primary-green{color:var(--wa-primary);}
