/* ── DESIGN TOKENS ── */
:root {
  --green: #028b74;
  --green-dark: #016d5c;
  --green-light: #e0f5f1;
  --gold: #c9b203;
  --gold-light: #fdf7d0;
  --dark: #0a1628;
  --body: #1e2a3a;
  --muted: #6b7c93;
  --surface: #f4f8f6;
  --white: #fff;
  --shadow-sm: 0 2px 12px rgba(2, 139, 116, 0.1);
  --shadow-md: 0 8px 32px rgba(2, 139, 116, 0.15);
  --shadow-lg: 0 20px 60px rgba(2, 139, 116, 0.2);
  --radius: 16px;
  --radius-lg: 24px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: scroll;
}
body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: var(--body);
  background: var(--white);
  overflow-x: clip;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
section {
  scroll-margin-top: 80px;
}
a {
  text-decoration: none;
}

/* ── BUTTONS ── */
.btn-primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--gold) 100%);
  border: none;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(2, 139, 116, 0.4);
  opacity: 0.92;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  font-family: "Inter", sans-serif;
}
.btn-hero-primary:hover {
  background: #d4bc03;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201, 178, 3, 0.4);
  color: var(--dark);
}
.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  transition: all 0.3s;
  font-family: "Inter", sans-serif;
}
.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  transform: translateY(-3px);
}

/* ── HEADER ── */
.site-header {
  background: rgba(255, 255, 255, 0.97);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(2, 139, 116, 0.12);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1050;
  width: 100%;
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(2, 139, 116, 0.12);
}
.navbar {
  padding: 12px 0;
}
.logo {
  height: 42px;
  width: auto;
}
.nav-link {
  font-weight: 500;
  color: var(--dark);
  font-size: 15px;
  transition: color 0.2s;
  position: relative;
  padding: 0.5rem 0.75rem !important;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0.75rem;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.3s;
  border-radius: 2px;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: calc(100% - 1.5rem);
}
.nav-link:hover,
.nav-link.active {
  color: var(--green);
}
.btn-call-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 50px;
  transition: all 0.25s;
  white-space: nowrap;
}
.btn-call-nav i {
  color: var(--gold);
}
.btn-call-nav:hover {
  background: var(--green-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.navbar-toggler {
  border: 1.5px solid var(--green);
  border-radius: 8px;
  padding: 6px 10px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23028b74' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── HERO ── */
.hero {
  position: relative;
  padding: 90px 0 80px;
  color: #fff;
  background: linear-gradient(135deg, #014d3f 0%, #026d5a 35%, #028b74 65%, #038a6e 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(201, 178, 3, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #e0f5f1;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
  max-width: 100%;
  flex-wrap: wrap;
}
.hero-badge i {
  color: var(--gold);
  font-size: 12px;
}
.hero h1 {
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: #fff;
}
.hero h1 .accent {
  color: var(--gold);
}
.hero-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 8px;
  letter-spacing: 0.3px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px 20px;
  margin-top: 40px;
  flex-wrap: wrap;
  max-width: 100%;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}
.trust-item i {
  color: var(--gold);
  font-size: 15px;
}

/* Hero Image — FIXED */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-svg-wrap {
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
  max-width: 380px;
  width: 100%;
}
.hero-svg-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

/* ── SECTION LABELS ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-label i {
  font-size: 11px;
}
.section-title {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.section-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 640px;
}

/* ── ABOUT ── */
.about-section {
  padding: 90px 0 70px;
  background: var(--white);
}
.about-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #f0f4f2;
  font-size: 15px;
  color: var(--body);
  font-weight: 500;
}
.about-feature-list li:last-child {
  border-bottom: none;
}
.feat-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 15px;
}
.disclaimer-box {
  background: #fffbea;
  border: 1px solid rgba(201, 178, 3, 0.35);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 13.5px;
  color: #6b5a00;
  margin-top: 28px;
}
.disclaimer-box strong {
  color: #856400;
}
.about-seo-para {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 20px;
  padding: 18px 20px;
  background: var(--surface);
  border-radius: 12px;
  border-left: 3px solid var(--green);
}

/* ── WHO ── */
.who-section {
  padding: 90px 0;
  background: var(--surface);
}
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.who-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: default;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s;
}
.who-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.who-card-bg {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.who-card:hover .who-card-bg {
  transform: scale(1.07);
}
.who-card-overlay {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(to top, rgba(1, 77, 63, 0.95) 0%, rgba(2, 100, 80, 0.6) 50%, rgba(0, 0, 0, 0.1) 100%);
}
.who-card-content {
  position: relative;
  z-index: 2;
  padding: 26px 22px;
  color: #fff;
}
.who-card-icon {
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
  transition: background 0.3s;
}
.who-card:hover .who-card-icon {
  background: rgba(201, 178, 3, 0.3);
}
.who-card-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 3px 11px;
  border-radius: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.who-card-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
}

/* ── WHY ── */
.why-section {
  padding: 90px 0;
  background: var(--dark);
}
.why-section .section-label {
  background: rgba(201, 178, 3, 0.15);
  color: var(--gold);
}
.why-section .section-title {
  color: #fff;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.why-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.why-item::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  opacity: 0;
  transition: opacity 0.3s;
}
.why-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}
.why-item:hover::before {
  opacity: 1;
}
.why-item i {
  font-size: 26px;
  color: var(--green);
  margin-bottom: 14px;
  display: block;
}
.why-item h6 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.why-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}
.why-cta-box {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  margin-top: 48px;
  position: relative;
  overflow: hidden;
}
.why-cta-box::before {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 22px 22px;
}
.why-cta-box h3 {
  font-size: clamp(20px, 3vw, 26px);
  color: #fff;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.why-cta-box p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.why-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ── SERVICES — FIXED ── */
.services-section {
  padding: 90px 0;
  background: var(--white);
}
.services-list-wrap {
  margin-top: 48px;
  width: 100%;
}

/* KEY FIX: Explicit grid with high specificity — overrides any Bootstrap interference */
.services-section .services-list-wrap .services-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  border: 1px solid #e8f4f0;
  width: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--gold));
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(2, 139, 116, 0.15);
}
.price-card .card-icon {
  width: 52px;
  height: 52px;
  background: var(--green-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--green);
  margin-bottom: 18px;
}
.price-card h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.price {
  font-size: 24px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 6px;
}
.days {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 20px;
  font-weight: 500;
}
.price-card ul {
  list-style: none;
  padding: 0;
  flex: 1;
  margin-bottom: 16px;
}
.price-card ul li {
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid #f0f4f2;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-card ul li::before {
  content: "✓";
  color: #22c55e;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}
.card-note {
  font-size: 11.5px;
  color: #94a3b8;
  margin-bottom: 18px;
  display: block;
  font-style: italic;
}
.card-location {
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.card-location i {
  font-size: 11px;
}
.btn-card {
  display: block;
  width: 100%;
  padding: 14px 10px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  text-align: center;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  margin-top: auto;
  transition: all 0.25s;
}
.btn-card:hover {
  opacity: 0.9;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ── HOW IT WORKS ── */
.how-section {
  padding: 90px 0;
  background: var(--surface);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 52px;
  position: relative;
}
.steps-grid::before {
  content: "";
  position: absolute;
  top: 36px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  z-index: 0;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e8f4f0;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.step-num {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 18px;
  box-shadow: 0 6px 20px rgba(2, 139, 116, 0.35);
}
.step-card h6 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.step-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ── ACK ── */
.ack-section {
  padding: 80px 0;
  background: var(--white);
}
.ack-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.ack-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--surface);
  border-radius: 12px;
  font-size: 14.5px;
  color: var(--body);
  font-weight: 500;
}
.ack-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--green-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 14px;
}

/* ── FAQ ── */
.faq-section {
  padding: 90px 0;
  background: var(--surface);
}
.faq-section .section-title {
  color: var(--dark);
}
.faq-list {
  margin-top: 48px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid #e8f4f0;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s;
}
.faq-item:hover {
  box-shadow: var(--shadow-md);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  user-select: none;
}
.faq-question:hover {
  color: var(--green);
}
.faq-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 13px;
  transition: transform 0.3s, background 0.3s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--green);
  color: #fff;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 24px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.75;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-item.open .faq-question {
  color: var(--green);
  border-bottom: 1px solid #f0f4f2;
}

/* ── CTA ── */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark) 0%, #0e2237 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
.cta-section::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(2, 139, 116, 0.2), transparent 65%);
  border-radius: 50%;
}
.cta-section .container {
  position: relative;
  z-index: 2;
}
.cta-section h2 {
  font-size: clamp(26px, 4vw, 44px);
  color: #fff;
  margin-bottom: 14px;
}
.cta-section p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 17px;
  margin-bottom: 36px;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
footer {
  background: #060d19;
  color: #6b7c93;
  padding: 28px 0;
  padding-bottom: calc(28px + env(safe-area-inset-bottom, 0px));
  font-size: 13.5px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
footer strong {
  color: rgba(255, 255, 255, 0.5);
}

/* ── FAB ── */
.fab-stack {
  position: fixed;
  right: 22px;
  bottom: 28px;
  bottom: calc(28px + env(safe-area-inset-bottom, 0px));
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.fab-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.fab-btn:hover {
  transform: scale(1.12);
  color: #fff;
}
.fab-label {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  max-width: 120px;
}
.fab-btn:hover .fab-label {
  opacity: 1;
}
.fab-phone-btn {
  background: linear-gradient(135deg, var(--green), var(--gold));
  box-shadow: 0 6px 22px rgba(2, 139, 116, 0.45);
  animation: pulse-phone 2.8s infinite;
}
@keyframes pulse-phone {
  0%, 100% { box-shadow: 0 6px 22px rgba(2, 139, 116, 0.45); }
  50% { box-shadow: 0 6px 30px rgba(2, 139, 116, 0.7), 0 0 0 8px rgba(2, 139, 116, 0.1); }
}
.fab-wa-btn {
  background: #25d366;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45);
  animation: pulse-wa 2.5s infinite 0.3s;
}
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

/* ── WA POPUP ── */
.wa-popup {
  position: fixed;
  bottom: 104px;
  right: 10px;
  z-index: 10000;
  opacity: 0;
  transform: scale(0.95) translateY(8px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.wa-popup.show {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}
.wa-popup-bubble {
  background: #fff;
  border-radius: 18px 18px 0 18px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  padding: 18px 18px 16px;
  width: 260px;
  max-width: calc(100vw - 30px);
  position: relative;
}
.wa-popup-bubble::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -8px;
  width: 0;
  height: 0;
  border-left: 8px solid #fff;
  border-bottom: 8px solid transparent;
}
.wa-popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: #f1f5f9;
  border: none;
  font-size: 12px;
  color: #64748b;
  cursor: pointer;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.wa-popup-close:hover {
  background: #e2e8f0;
  color: #374151;
}
.wa-popup-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.wa-popup-avatar {
  width: 38px;
  height: 38px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}
.wa-popup-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
}
.wa-popup-status {
  font-size: 11px;
  color: #25d366;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.wa-popup-status::before {
  content: "●";
  font-size: 8px;
}
.wa-popup-text {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 14px;
}
.wa-popup-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s;
  width: 100%;
  justify-content: center;
}
.wa-popup-cta:hover {
  background: #1da851;
  color: #fff;
}

/* ── MODAL ── */
.modal-content {
  border: none;
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
  padding: 40px 36px !important;
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}
.modal-content h4 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
}
.modal-content .form-label {
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
}
.modal-content .form-control {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 10px;
  border: 1.5px solid #e2e8f0;
  padding: 10px 14px;
  font-size: max(16px, 14px);
  transition: border-color 0.2s;
}
.modal-content .form-control:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(2, 139, 116, 0.12);
}
.modal-icon {
  width: 56px;
  height: 56px;
  background: var(--green-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--green);
  margin: 0 auto 18px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1199px) {
  .services-section .services-list-wrap .services-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid #e5e7eb;
    padding: 16px 0;
    margin-top: 8px;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  }
  .navbar-nav { gap: 4px !important; }
  .btn-call-nav {
    margin: 8px 16px;
    display: flex;
    width: calc(100% - 32px);
    justify-content: center;
  }
  .navbar-nav .btn {
    margin: 8px 16px;
    width: calc(100% - 32px);
    text-align: center;
  }
  .hero { padding: 70px 0 60px; }
  .who-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .ack-grid { grid-template-columns: 1fr; }
  .why-cta-box { padding: 36px 28px; }

  /* Services: 2 columns on tablet */
  .services-section .services-list-wrap .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 767px) {
  .navbar { padding: 10px 0; }
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid #e5e7eb;
    padding: 12px 0 16px;
    margin-top: 6px;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  }
  .navbar-nav { gap: 2px !important; }
  .btn-call-nav {
    margin: 6px 16px;
    display: flex;
    width: calc(100% - 32px);
    justify-content: center;
    font-size: 14px;
  }
  .navbar-nav .btn {
    margin: 6px 16px;
    width: calc(100% - 32px);
    text-align: center;
  }
  .hero { padding: 50px 0 44px; }
  .hero-badge { font-size: 12px; padding: 7px 16px; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions a,
  .hero-actions button { width: 100%; justify-content: center; }
  .hero-trust { gap: 14px; }
  .trust-item { font-size: 12px; }
  .hero-svg-wrap { max-width: 220px; }
  .about-section, .who-section, .why-section,
  .services-section, .how-section, .ack-section, .faq-section { padding: 60px 0; }
  .who-grid { grid-template-columns: 1fr; gap: 16px; }
  .who-card { min-height: 210px; }
  .why-grid { grid-template-columns: 1fr; gap: 12px; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .steps-grid::before { display: none; }
  .ack-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 70px 0; }
  .why-cta-box { padding: 30px 20px; }
  .wa-popup { bottom: 130px; }
  .wa-popup-bubble { width: 260px; max-width: calc(100vw - 30px); }
  .wa-popup-text { font-size: 12.5px; }
  .fab-stack { bottom: 22px; right: 14px; gap: 10px; }
  .fab-btn { width: 50px; height: 50px; font-size: 20px; }
  .fab-label { display: none; }
  footer { font-size: 12.5px; padding: 20px 16px; }
  .modal-content { padding: 28px 20px !important; border-radius: 20px; }
  .price-card { padding: 24px 18px; }
  .price-card h5 { font-size: 16px; }
  .price { font-size: 20px; }
  .faq-question { font-size: 14px; padding: 16px 18px; }

  /* Services: 1 column on mobile */
  .services-section .services-list-wrap .services-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 400px) {
  .steps-grid { grid-template-columns: 1fr; }
  .fab-btn { width: 46px; height: 46px; font-size: 18px; }
  .wa-popup-bubble { width: 240px; max-width: calc(100vw - 24px); }
  .hero-svg-wrap { max-width: 170px; }
  .hero h1 { font-size: 26px; }
}

@media (max-width: 360px) {
  .hero-badge { font-size: 11px; padding: 6px 12px; }
  .modal-content { padding: 22px 14px !important; }
}