/* ============================================================
   IRIN MAID SOLUTIONS — style.css  (Light Theme + SVG Icons)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@400;500;600;700;800;900&display=swap');

/* ── CSS Variables ── */
:root {
  --teal:        #0e9f94;
  --teal-dark:   #0b7f76;
  --teal-light:  #14c4b8;
  --teal-pale:   #e8f8f7;
  --teal-glow:   rgba(14,159,148,0.1);
  --accent:      #f59e0b;
  --accent-light:#fbbf24;
  --white:       #ffffff;
  --off-white:   #f7fafa;
  --gray-50:     #f1f5f5;
  --gray-100:    #e2eaea;
  --gray-200:    #c8d6d5;
  --gray-300:    #94aaa8;
  --gray-500:    #5f7876;
  --gray-700:    #334544;
  --text-dark:   #1a2e2d;
  --text-mid:    #4a6462;
  --text-light:  #7f9997;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  30px;
  --radius-pill:999px;

  --shadow-sm:  0 2px 8px rgba(14,159,148,0.06);
  --shadow-md:  0 8px 30px rgba(14,159,148,0.1);
  --shadow-lg:  0 20px 60px rgba(14,159,148,0.12);
  --shadow-teal:0 8px 30px rgba(14,159,148,0.2);

  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 58px; /* space for sticky bottom bar */
}
img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Utility ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-tag {
  display: inline-block;
  background: var(--teal-pale);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(14,159,148,0.2);
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-title span { color: var(--teal); }
.section-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 620px;
  line-height: 1.75;
}
.section-center { text-align: center; }
.section-center .section-desc { margin: 0 auto; }

/* ── SVG Icon Utility ── */
.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-box svg { flex-shrink: 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--white);
  box-shadow: var(--shadow-teal);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(14,159,148,0.35);
}
.btn-outline {
  border: 2px solid var(--teal);
  color: var(--teal);
  background: var(--white);
}
.btn-outline:hover {
  background: var(--teal-pale);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--teal);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(245,158,11,0.3);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(245,158,11,0.4); }
.btn-lg { padding: 16px 38px; font-size: 1rem; }

/* ── Announcement Bar ── */
.announcement-bar {
  background: linear-gradient(90deg, var(--teal-dark), var(--teal), var(--teal-dark));
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.announcement-bar span { color: var(--accent-light); font-weight: 700; }

/* ── Header ── */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--teal);
  box-shadow: 0 0 0 4px var(--teal-glow);
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
}
.logo-name span { color: var(--teal); }
.logo-tagline {
  font-size: 0.68rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--teal);
  border-radius: 1px;
  transition: var(--transition);
}
.nav-link:hover { color: var(--teal); }
.nav-link:hover::after { width: 60%; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: var(--teal-pale);
  border: 1px solid rgba(14,159,148,0.2);
  transition: var(--transition);
}
.header-phone:hover { background: var(--teal); color: var(--white); }
.header-phone svg { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: var(--white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 40px;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link {
  color: var(--text-dark);
  font-size: 1.4rem;
  font-weight: 600;
}
.mobile-nav .nav-link:hover { color: var(--teal); }
.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--text-dark);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  padding: 8px;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, var(--white) 0%, var(--teal-pale) 40%, var(--off-white) 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero_banner.png');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.9) 0%,
    rgba(232,248,247,0.7) 50%,
    rgba(255,255,255,0.85) 100%
  );
  z-index: 1;
}
.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
}
.hero-shape-1 {
  width: 500px; height: 500px;
  background: var(--teal);
  top: -150px; right: -100px;
}
.hero-shape-2 {
  width: 350px; height: 350px;
  background: var(--accent);
  bottom: -100px; left: -80px;
}
.hero-shape-3 {
  width: 200px; height: 200px;
  background: var(--teal-light);
  top: 40%; left: 40%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-pale);
  border: 1px solid rgba(14,159,148,0.25);
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title .highlight {
  color: var(--teal);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stat { text-align: left; }
.hero-stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.hero-image-side {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--white);
}
.hero-img-card img {
  width: 100%;
  max-width: 420px;
  height: 480px;
  object-fit: cover;
}
.hero-card-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}
.hero-card-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.hero-card-text strong {
  display: block;
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 700;
}
.hero-card-text span {
  color: var(--teal);
  font-size: 0.78rem;
}

.hero-float-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  animation: float 3s ease-in-out infinite;
  border: 1px solid var(--gray-100);
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-float-1 { top: 30px; left: -30px; animation-delay: 0s; }
.hero-float-2 { top: 120px; right: -30px; animation-delay: 1.5s; }
.hero-float-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-float-icon.star-bg { background: rgba(245,158,11,0.12); color: var(--accent); }
.hero-float-icon.shield-bg { background: var(--teal-pale); color: var(--teal); }

/* ── Trust Bar ── */
.trust-bar {
  background: var(--teal);
  padding: 24px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.95);
  font-size: 0.88rem;
  font-weight: 500;
}
.trust-item svg { flex-shrink: 0; opacity: 0.9; }
.trust-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.25);
}

/* ── Services ── */
.services {
  padding: 100px 0;
  background: var(--off-white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(14,159,148,0.2);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-md);
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
  color: var(--teal);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--white);
  transform: scale(1.1);
}
.service-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 16px;
  opacity: 0;
  transform: translateX(-6px);
  transition: var(--transition);
}
.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }

/* ── Staff Section ── */
.staff-section {
  padding: 100px 0;
  background: var(--white);
}
.staff-grid-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 56px;
}
.staff-image-col { position: relative; }
.staff-main-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  max-height: 520px;
}
.staff-img-overlay {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(to top, rgba(14,159,148,0.15) 0%, transparent 50%);
}
.staff-cert-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  min-width: 180px;
}
.staff-cert-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 10px;
}
.staff-cert-items { display: flex; flex-direction: column; gap: 8px; }
.staff-cert-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dark);
}
.cert-check {
  width: 18px; height: 18px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.cert-check svg { width: 10px; height: 10px; }

.staff-content-col h2 { margin-bottom: 20px; }
.staff-content-col .section-desc { margin-bottom: 36px; }
.verification-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.v-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.v-step:hover { background: var(--teal-pale); border-color: rgba(14,159,148,0.25); }
.v-step-num {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.v-step-body strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.v-step-body p {
  font-size: 0.85rem;
  color: var(--text-mid);
}
.privacy-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(245,158,11,0.06);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.privacy-note svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }

/* ── About ── */
.about {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--teal-pale) 0%, var(--off-white) 40%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}
.about-bg-shape {
  position: absolute;
  width: 600px; height: 600px;
  background: var(--teal);
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.05;
  right: -200px;
  top: -100px;
  pointer-events: none;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.about-stat-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.about-stat-card:hover {
  border-color: rgba(14,159,148,0.3);
  box-shadow: var(--shadow-md);
}
.about-stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 8px;
}
.about-stat-label {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.about-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.location-chip {
  background: var(--white);
  border: 1px solid var(--gray-100);
  color: var(--text-mid);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}
.location-chip:hover { border-color: var(--teal); color: var(--teal); }

.about-content .section-desc { margin-bottom: 32px; }
.about-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.about-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-mid);
}
.about-list-icon {
  width: 22px; height: 22px;
  background: var(--teal-pale);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}
.about-list-icon svg { width: 12px; height: 12px; }

/* ── Why Choose Us ── */
.why-us {
  padding: 100px 0;
  background: var(--off-white);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--gray-100);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--teal-glow), transparent);
  opacity: 0;
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.why-card:hover::after { opacity: 1; }
.why-icon {
  width: 72px; height: 72px;
  border-radius: var(--radius-lg);
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
  position: relative;
  z-index: 1;
  color: var(--teal);
}
.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--white);
}
.why-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.why-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ── How It Works ── */
.how-it-works {
  padding: 100px 0;
  background: var(--white);
}
.steps-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
  position: relative;
}
.steps-wrap::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  z-index: 0;
  opacity: 0.3;
}
.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  box-shadow: var(--shadow-teal);
  transition: var(--transition);
}
.step-card:hover .step-num {
  transform: scale(1.08);
  box-shadow: 0 14px 40px rgba(14,159,148,0.35);
}
.step-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── Testimonials ── */
.testimonials {
  padding: 100px 0;
  background: var(--off-white);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-stars { display: flex; gap: 3px; }
.star { color: var(--accent); font-size: 0.9rem; }
.star svg { width: 16px; height: 16px; }
.star.empty svg { color: var(--gray-200); }
.review-text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
  position: relative;
  padding-left: 18px;
}
.review-text::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--teal);
  border-radius: 2px;
  opacity: 0.3;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}
.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
}
.reviewer-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
}
.reviewer-loc {
  font-size: 0.78rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}
.reviewer-loc svg { width: 12px; height: 12px; }
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--teal-pale);
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-top: 4px;
}
.verified-badge svg { width: 10px; height: 10px; }

/* ── FAQ ── */
.faq {
  padding: 100px 0;
  background: var(--white);
}
.faq-wrap {
  max-width: 780px;
  margin: 56px auto 0;
}
.faq-item {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open {
  border-color: rgba(14,159,148,0.35);
  box-shadow: 0 4px 20px rgba(14,159,148,0.06);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  gap: 16px;
  transition: var(--transition);
}
.faq-question:hover { color: var(--teal); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  font-size: 1rem;
  color: var(--text-mid);
}
.faq-item.open .faq-icon {
  background: var(--teal);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 20px; }
.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ── Contact ── */
.contact {
  padding: 100px 0;
  background: var(--off-white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  margin-top: 56px;
}
.contact-info h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.contact-info p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 32px;
}
.contact-items { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  text-decoration: none;
}
.contact-item:hover { border-color: var(--teal); background: var(--teal-pale); }
.contact-item-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}
.contact-item-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  font-weight: 600;
}
.contact-item-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 2px;
}
.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  width: fit-content;
}
.whatsapp-btn:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,0.35); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-md);
}
.form-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.form-subtitle {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.form-subtitle svg { flex-shrink: 0; color: var(--teal); }
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--gray-50);
  transition: var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--teal-glow);
}
.form-control::placeholder { color: var(--text-light); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: var(--shadow-teal); }
.form-success {
  display: none;
  text-align: center;
  padding: 30px;
}
.form-success-icon { margin-bottom: 16px; color: var(--teal); }
.form-success-icon svg { width: 56px; height: 56px; }
.form-success h3 { font-family: 'Poppins', sans-serif; color: var(--teal); margin-bottom: 8px; }
.form-success p { color: var(--text-mid); font-size: 0.9rem; }

/* ── CTA Banner ── */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.12) 0%, transparent 70%);
}
.cta-section > .container { position: relative; z-index: 1; }
.cta-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.footer {
  background: var(--gray-50);
  padding: 72px 0 0;
  border-top: 1px solid var(--gray-100);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--gray-100);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
}
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  transition: var(--transition);
  text-decoration: none;
}
.social-link:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }
.social-link svg { width: 16px; height: 16px; }

.footer-col-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: 0.88rem;
  color: var(--text-mid);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-link:hover { color: var(--teal); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-contact-item a,
.footer-contact-item span {
  font-size: 0.88rem;
  color: var(--text-mid);
  transition: var(--transition);
}
.footer-contact-item a:hover { color: var(--teal); }
.footer-contact-icon { color: var(--teal); flex-shrink: 0; margin-top: 3px; }
.footer-contact-icon svg { width: 16px; height: 16px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.83rem;
  color: var(--text-light);
}
.footer-copy span { color: var(--teal); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: 0.83rem;
  color: var(--text-light);
  transition: var(--transition);
}
.footer-legal a:hover { color: var(--teal); }

/* ── Floating WhatsApp ── */
/* Hidden on all screens — sticky bottom bar handles this */
.floating-wa { display: none !important; }

/* ── Scroll to Top ── */
.scroll-top {
  position: fixed;
  bottom: 78px; /* 58px sticky bar + 20px gap */
  right: 28px;
  z-index: 9998; /* just below sticky bar (9999) */
  width: 44px; height: 44px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  border: none;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--teal-dark); }
.scroll-top svg { width: 18px; height: 18px; }

/* ── Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-wrap { grid-template-columns: repeat(2, 1fr); }
  .steps-wrap::before { display: none; }
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image-side { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .staff-grid-wrap { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .header-phone { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .steps-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar-inner { gap: 20px; }
  .trust-divider { display: none; }
  .contact-form-wrap { padding: 28px 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .staff-cert-badge { position: relative; bottom: auto; right: auto; margin-top: 20px; }
  /* Sticky bar: slightly larger tap targets on mobile */
  .sticky-bottom-bar { height: 56px; font-size: 0.95rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.9rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .about-stats-grid { grid-template-columns: 1fr; }
}

/* ── Sticky Bottom Action Bar ── */
.sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  height: 58px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.13);
}
.sticky-bottom-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: filter 0.2s ease, transform 0.15s ease;
}
.sticky-bottom-bar a:active {
  filter: brightness(0.93);
  transform: scale(0.98);
}
.sticky-bottom-btn-call {
  background: linear-gradient(135deg, #0e9f94, #14c4b8);
  color: #fff;
  border-right: 1.5px solid rgba(255,255,255,0.25);
}
.sticky-bottom-btn-wa {
  background: #25D366;
  color: #fff;
}
.sticky-bottom-bar svg { flex-shrink: 0; }

/* ── Modal Styles ── */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 30, 27, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-content {
  background: var(--white);
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(30px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}
.modal-overlay.active .modal-content {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  background: var(--gray-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gray-600);
  transition: all 0.2s ease;
  z-index: 10;
}
.modal-close:hover {
  background: var(--teal-light);
  color: var(--teal);
  transform: rotate(90deg);
}
.modal-body {
  padding: 30px;
}
