/* ═══════════════════════════════════════════════════════════
   EPR Solution — style.css
   Color Palette:
     Primary:    #0A1F44  (deep navy)
     Accent:     #1DB954  (fresh green)
     CTA:        #FF6B35  (warm orange)
     Background: #F8FAFC  (off-white)
     Surface:    #FFFFFF  (white cards)
     Text:       #1A1A2E  (near-black)
     Muted:      #6B7280  (secondary text)
═══════════════════════════════════════════════════════════ */

/* ── RESET & BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #0A1F44;
  --accent: #1DB954;
  --accent-dark: #17a349;
  --cta: #FF6B35;
  --cta-dark: #e55a24;
  --bg: #F8FAFC;
  --surface: #FFFFFF;
  --text: #1A1A2E;
  --muted: #6B7280;
  --border: #E5E7EB;
  --danger: #DC2626;
  --danger-bg: #FEF2F2;
  --success: #16A34A;
  --success-bg: #F0FDF4;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08);
  --shadow: 0 4px 16px rgba(0, 0, 0, .10);
  --shadow-lg: 0 12px 40px rgba(10, 31, 68, .16);
  --transition: 0.3s ease;
  --nav-h: 70px;
  --topbar-h: 40px;
  --ann-h: 44px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.25;
}

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

ul {
  list-style: none;
}

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

/* ── UTILITIES ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 80px 0;
}

.section-alt {
  background: var(--surface);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(29, 185, 84, 0.1);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.section-h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--primary);
  margin-bottom: 12px;
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
    transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--cta);
  color: #fff;
  border-color: var(--cta);
  box-shadow: 0 4px 16px rgba(255, 107, 53, .30);
}

.btn-primary:hover {
  background: var(--cta-dark);
  border-color: var(--cta-dark);
  box-shadow: 0 8px 24px rgba(255, 107, 53, .40);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-cta {
  background: var(--cta);
  color: #fff;
  border-color: var(--cta);
}

.btn-cta:hover {
  background: var(--cta-dark);
  border-color: var(--cta-dark);
  transform: translateY(-2px);
}

.btn-sm {
  font-size: 0.85rem;
  padding: 8px 18px;
}

.btn-lg {
  font-size: 1rem;
  padding: 14px 28px;
}

.btn-full {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 14px 28px;
}

/* Spinner inside button */
.btn-spinner {
  display: none;
}

.btn.loading .btn-text {
  display: none;
}

.btn.loading .btn-spinner {
  display: inline-flex;
}

.btn.loading {
  opacity: 0.75;
  pointer-events: none;
}

/* ── SCROLL-REVEAL ── */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease calc(var(--delay, 0s)),
    transform 0.65s ease calc(var(--delay, 0s));
}

.reveal-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────────
   ANNOUNCEMENT BAR
───────────────────────────────────────────── */
.announcement-bar {
  background: linear-gradient(135deg, #FF6B35 0%, #e55a24 100%);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  position: relative;
  z-index: 1100;
  overflow: hidden;
}

.announcement-bar.hidden {
  display: none;
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 48px 10px 24px;
  min-height: var(--ann-h);
}

.ann-link {
  color: #fff;
  text-decoration: underline;
  margin-left: 6px;
}

.ann-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: background var(--transition);
}

.ann-close:hover {
  background: rgba(255, 255, 255, 0.35);
}

/* ─────────────────────────────────────────────
   TOP BAR
───────────────────────────────────────────── */
.top-bar {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
}

.top-bar a:hover {
  color: var(--accent);
}

/* ─────────────────────────────────────────────
   STICKY NAVBAR
───────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248, 250, 252, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}

.navbar.scrolled {
  background: #fff;
  box-shadow: 0 2px 20px rgba(10, 31, 68, .12);
  border-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  width: 100%;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--primary);
  flex-shrink: 0;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary) 0%, #1a3a6e 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
}

.logo-accent {
  color: var(--accent);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  padding: 6px 12px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition), left var(--transition);
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: rgba(10, 31, 68, .05);
}

.nav-link.active::after {
  width: calc(100% - 24px);
  left: 12px;
}

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-phone {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color var(--transition);
}

.nav-phone:hover {
  color: var(--accent);
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), width var(--transition);
  transform-origin: center;
}

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

.hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

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

/* ─────────────────────────────────────────────
   MARQUEE STRIP
───────────────────────────────────────────── */
.marquee-strip {
  background: var(--primary);
  color: #fff;
  overflow: hidden;
  padding: 10px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-content {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
  padding-right: 0;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-33.333%);
  }
}

/* ─────────────────────────────────────────────
   HERO SECTION
───────────────────────────────────────────── */
.hero-section {
  background: linear-gradient(145deg, #0A1F44 0%, #0d2856 40%, #0f3470 70%, #1a4a8a 100%);
  color: #fff;
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

/* Decorative background shapes */
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-shape-1 {
  width: 500px;
  height: 500px;
  background: rgba(29, 185, 84, .12);
  top: -100px;
  right: -100px;
}

.hero-shape-2 {
  width: 300px;
  height: 300px;
  background: rgba(255, 107, 53, .10);
  bottom: -60px;
  left: 5%;
}

.hero-shape-3 {
  width: 200px;
  height: 200px;
  background: rgba(29, 185, 84, .08);
  top: 40%;
  left: 30%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 620px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(29, 185, 84, .15);
  border: 1px solid rgba(29, 185, 84, .35);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero-h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-h1 .highlight {
  color: var(--accent);
  position: relative;
}

.desktop-br {
  display: block;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.80);
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-ctas .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-ctas .btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

/* Trust Stats */
.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 3fr);
  gap: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
}

.trust-icon {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 4px;
}

.trust-number {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
}

.trust-label {
  font-size: 1.0rem;
  color: rgba(255, 255, 255, 0.733);
  font-weight: 700;
  line-height: 1.3;
}

/* Hero Form Card */
.hero-form-wrapper {
  display: flex;
  align-items: flex-start;
  margin-left: auto;
}

.hero-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  width: 100%;
}

.form-card-header {
  background: linear-gradient(135deg, var(--primary) 0%, #1a3a6e 100%);
  padding: 30px 36px;
  border-bottom: 3px solid var(--accent);
}

.form-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.form-card-sub {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}

.contact-form {
  padding: 32px 36px;
}

/* ─────────────────────────────────────────────
   FORM STYLES
───────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
}

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

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(29, 185, 84, .15);
  background: #fff;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, .10);
}

.form-group textarea {
  resize: vertical;
}

.req {
  color: var(--danger);
}

.field-error {
  font-size: 0.75rem;
  color: var(--danger);
  min-height: 16px;
  display: block;
}

.form-message {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  display: none;
}

.form-message.success {
  display: block;
  background: var(--success-bg);
  color: var(--success);
  border: 1px solid rgba(22, 163, 74, .25);
}

.form-message.error {
  display: block;
  background: var(--danger-bg);
  color: var(--danger);
  border: 1px solid rgba(220, 38, 38, .25);
}

.form-message.info {
  display: block;
  background: #fffbeb;
  color: #92400e;
  border: 1px solid rgba(217, 119, 6, .30);
}

/* ─────────────────────────────────────────────
   WHY CHOOSE US
───────────────────────────────────────────── */
.why-section {
  background: var(--bg);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px 24px;
  border-left: 4px solid var(--accent);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.why-num {
  position: absolute;
  top: 12px;
  right: 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(10, 31, 68, .05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.why-icon {
  width: 48px;
  height: 48px;
  background: rgba(29, 185, 84, .1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ─────────────────────────────────────────────
   SERVICES
───────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

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

.service-card-top {
  height: 5px;
  background: var(--primary);
}

.service-card-top-green {
  background: var(--accent);
}

.service-card>* {
  padding-left: 28px;
  padding-right: 28px;
}

.service-card>*:first-child {
  padding-left: 0;
  padding-right: 0;
}

.service-icon {
  font-size: 2.5rem;
  padding: 24px 28px 0 28px;
  line-height: 1;
}

.service-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  padding: 12px 28px 8px;
}

.service-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  padding: 0 28px;
  flex: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  padding: 16px 28px 24px;
  transition: gap var(--transition), color var(--transition);
}

.service-link:hover {
  gap: 8px;
  color: var(--accent-dark);
}

/* ─────────────────────────────────────────────
   PROCESS
───────────────────────────────────────────── */
.process-section {
  background: var(--bg);
}

.process-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  position: relative;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  max-width: 280px;
  text-align: center;
  position: relative;
}

.step-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary);
  border: 4px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
  position: relative;
  box-shadow: 0 0 0 8px rgba(29, 185, 84, .1);
}

.step-num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
}

.step-connector {
  position: absolute;
  top: 36px;
  left: calc(50% + 36px);
  width: calc(100% - 72px);
  height: 2px;
  border-top: 2px dashed var(--accent);
}

.step-connector::after {
  content: '›';
  position: absolute;
  right: -10px;
  top: -14px;
  font-size: 1.3rem;
  color: var(--accent);
  font-weight: 700;
}

.step-content {
  padding: 20px 16px 0;
}

.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.865rem;
  color: var(--muted);
  line-height: 1.6;
}

.process-cta {
  text-align: center;
  margin-bottom: 48px;
}

/* Certificate Placeholder */
.cert-placeholder {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.cert-blur-wrap {
  position: relative;
  max-width: 380px;
  width: 100%;
}

.cert-blur-inner {
  border-radius: var(--radius);
  overflow: hidden;
  filter: blur(4px);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border);
}

.cert-mock {
  background: #fff;
  padding: 28px 24px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cert-mock-logo {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.cert-mock-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
}

.cert-mock-sub {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.cert-mock-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cert-mock-line {
  height: 10px;
  background: var(--border);
  border-radius: 4px;
  width: 100%;
}

.cert-mock-line.short {
  width: 60%;
}

.cert-mock-seal {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(29, 185, 84, .15);
  border: 3px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  margin-top: auto;
}

.cert-caption-badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ─────────────────────────────────────────────
   ABOUT / EPR INFO
───────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

.about-text p {
  font-size: 0.975rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.warning-box {
  background: #FFF5F5;
  border: 1.5px solid #FECACA;
  border-left: 5px solid var(--danger);
  border-radius: var(--radius);
  padding: 24px;
}

.warning-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--danger);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.warning-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.warning-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #7f1d1d;
}

.warning-list .fa-times-circle {
  color: var(--danger);
  flex-shrink: 0;
  margin-top: 2px;
}

.regulation-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.reg-pill {
  background: rgba(10, 31, 68, .07);
  color: var(--primary);
  border: 1px solid rgba(10, 31, 68, .15);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
}

/* ─────────────────────────────────────────────
   APPLICABILITY
───────────────────────────────────────────── */
.applicability-section {
  background: var(--bg);
}

.applicability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}

.applicability-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border-radius: 10px;
  padding: 14px 18px;
  box-shadow: var(--shadow-sm);
  font-size: 0.9rem;
  color: var(--text);
  transition: transform var(--transition), box-shadow var(--transition);
}

.applicability-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.appl-num {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--muted);
  min-width: 20px;
  flex-shrink: 0;
}

.appl-check {
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}

.applicability-cta {
  text-align: center;
}

/* ─────────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────────── */
.testimonials-section {
  background: var(--surface);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

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

.testi-top {
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, #17a349 100%);
}

.testi-stars {
  padding: 20px 24px 8px;
  color: #F59E0B;
  font-size: 0.9rem;
  display: flex;
  gap: 3px;
}

.testi-quote {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  padding: 0 24px 20px;
  font-style: italic;
  flex: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, #1a3a6e 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testi-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testi-info strong {
  font-size: 0.9rem;
  color: var(--text);
}

.testi-info span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ─────────────────────────────────────────────
   CONTACT SECTION
───────────────────────────────────────────── */
.contact-section {
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.contact-form-wrap {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}

/* Contact Info Panel */
.contact-info-panel {
  background: linear-gradient(145deg, var(--primary) 0%, #0d2856 100%);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: #fff;
}

.info-panel-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.info-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--accent);
  flex-shrink: 0;
}

.info-link {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  transition: color var(--transition);
}

.info-link:hover {
  color: var(--accent);
}

.info-sub {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, .55);
  margin-top: 2px;
}

.whatsapp-btn-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 20px;
  border-radius: 10px;
  margin: 24px 0;
  transition: background var(--transition), transform var(--transition);
}

.whatsapp-btn-panel:hover {
  background: #1ebe5c;
  transform: translateY(-2px);
}

.info-availability {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, .60);
  margin-bottom: 20px;
  line-height: 1.5;
}

.info-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, .75);
  background: rgba(255, 255, 255, .07);
  padding: 7px 12px;
  border-radius: 6px;
}

.info-badge i {
  color: var(--accent);
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.footer {
  background: var(--primary);
  color: rgba(255, 255, 255, .75);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-about {
  font-size: 0.855rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.65;
  margin-bottom: 20px;
}

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

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, .65);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.social-link:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.footer-col-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.footer-links li a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, .60);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition), gap var(--transition);
}

.footer-links li a:hover {
  color: var(--accent);
  gap: 10px;
}

.footer-links .fa-chevron-right {
  font-size: 0.65rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, .60);
  margin-bottom: 10px;
}

.footer-contact-item i {
  color: var(--accent);
  width: 16px;
  text-align: center;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, .60);
  transition: color var(--transition);
}

.footer-contact-item a:hover {
  color: var(--accent);
}

.footer-hours {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, .40);
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-hours i {
  color: var(--accent);
}

/* Disclaimer */
.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 0;
}

.footer-disclaimer p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, .35);
  line-height: 1.6;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 16px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, .35);
  flex-wrap: wrap;
  gap: 8px;
}

/* ─────────────────────────────────────────────
   FLOATING WHATSAPP BUTTON
───────────────────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37, 211, 102, .60);
}

.whatsapp-fab-icon {
  font-size: 1.75rem;
  position: relative;
  z-index: 2;
}

.whatsapp-fab-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, .4);
  animation: pulse-ring 2.5s ease-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

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

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

.whatsapp-fab-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.whatsapp-fab-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--primary);
}

.whatsapp-fab:hover .whatsapp-fab-tooltip {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-form-wrapper {
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }

  .desktop-br {
    display: none;
  }

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

  .nav-links {
    gap: 2px;
  }

  .nav-link {
    font-size: 0.8rem;
    padding: 5px 8px;
  }

  .nav-phone {
    display: none;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-panel {
    order: -1;
  }

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

  .footer-grid .footer-col:first-child {
    grid-column: 1 / -1;
  }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤767px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  :root {
    --nav-h: 60px;
  }

  .section-pad {
    padding: 56px 0;
  }

  /* Top Bar — hide on mobile */
  .top-bar {
    display: none;
  }

  /* Navbar — hamburger menu */
  .nav-right {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    pointer-events: none;
    z-index: 999;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-link {
    width: 100%;
    padding: 14px 24px;
    border-radius: 0;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-link::after {
    display: none;
  }

  /* Hero */
  .hero-section {
    padding: 48px 0 64px;
  }

  .hero-h1 {
    font-size: 1.75rem;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 10px;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

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

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

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

  /* Process */
  .process-timeline {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .process-step {
    max-width: 100%;
    width: 100%;
    align-items: flex-start;
    flex-direction: row;
    gap: 20px;
    text-align: left;
  }

  .step-circle {
    flex-shrink: 0;
  }

  .step-connector {
    display: none;
  }

  .step-content {
    padding: 0;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Applicability */
  .applicability-grid {
    grid-template-columns: 1fr;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-form-wrap {
    padding: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 0 24px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  /* WhatsApp FAB */
  .whatsapp-fab {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤480px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-h1 {
    font-size: 1.5rem;
  }

  .section-h2 {
    font-size: 1.4rem;
  }

  .hero-badge {
    font-size: 0.75rem;
  }

  .trust-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

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

  .announcement-inner {
    font-size: 0.78rem;
    padding: 8px 40px 8px 16px;
  }
}