/* Only styles that Tailwind can't handle: pseudo-elements, keyframes, complex selectors, state-based */
html { scroll-behavior: smooth; }

/* Navbar scrolled state (added via JS) */
#navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(15,31,61,0.06);
}

/* Hamburger X */
#menu-toggle.active .menu-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#menu-toggle.active .menu-line:nth-child(2) { opacity: 0; }
#menu-toggle.active .menu-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
#menu-toggle.active .menu-line { background-color: #ffffff !important; }

/* Service list bullet dots */
.service-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  background: #C8963E;
  border-radius: 50%;
}

/* Step circle active */
.step-circle.active, .step-circle-mobile.active {
  border-color: #C8963E;
  background: #C8963E;
  color: #fff;
}

/* Check icon (pseudo-element checkmark) */
.check-icon::after {
  content: '';
  position: absolute;
  top: 4px; left: 5px;
  width: 7px; height: 4px;
  border-left: 2px solid #C8963E;
  border-bottom: 2px solid #C8963E;
  transform: rotate(-45deg);
}

/* Partners marquee */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-track { animation: marquee 30s linear infinite; }

/* Why-us card hover glow */
.why-card {
  padding: 20px;
  border-radius: 14px;
  transition: background 0.3s, transform 0.3s;
}
.why-card:hover {
  background: rgba(200, 150, 62, 0.08);
  transform: translateY(-2px);
}

/* Pricing card hover lift */
.pricing-card { transition: transform 0.35s, box-shadow 0.35s; }
.pricing-card:hover { transform: translateY(-4px); }

/* Addon card hover */
.addon-card { transition: transform 0.3s, background 0.3s; }
.addon-card:hover { transform: translateY(-2px); }

/* Select arrow */
select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231B3A5C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
