/* ===== Reset & Base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2c3e50;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: 0.3s; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; font-size: 15px; }

/* ===== Variables ===== */
:root {
  --primary: #1a73e8;
  --primary-dark: #1557b0;
  --primary-light: #e8f0fe;
  --accent: #00b894;
  --dark: #0f172a;
  --gray: #64748b;
  --gray-light: #94a3b8;
  --light: #f8fafc;
  --border: #e2e8f0;
  --shadow: 0 1px 3px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.03);
  --shadow-lg: 0 4px 12px rgba(15, 23, 42, 0.06), 0 2px 4px rgba(15, 23, 42, 0.04);
}

body { color: var(--dark); }
.section { padding: 100px 0; }
.section-head { margin-bottom: 60px; }

/* ===== Layout ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-alt { background: var(--light); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.eyebrow {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  margin-bottom: 14px;
}
.section-head h2.heading-nowrap {
  white-space: nowrap;
  font-size: clamp(15px, 5.2vw, 38px);
}
.section-head h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  color: var(--dark);
  margin-bottom: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.section-head p { color: var(--gray); font-size: 16px; line-height: 1.6; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.2s ease;
  text-align: center;
  text-decoration: none;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.25);
}
.btn-outline { background: transparent; color: var(--dark); border-color: var(--border); }
.btn-outline:hover { background: var(--light); border-color: var(--primary); color: var(--primary); }
.btn-block { width: 100%; display: block; }

/* ===== Topbar ===== */
.topbar {
  background: var(--light);
  color: var(--gray);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.topbar-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.topbar a { color: var(--dark); font-weight: 500; }
.topbar a:hover { color: var(--primary); }

/* ===== Header ===== */
.header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
}
.logo { display: flex; align-items: center; gap: 0; font-size: 26px; font-weight: 700; text-decoration: none; }
.logo-text { margin-left: -6px; }
.logo-icon { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; }
.logo-icon img { width: 100%; height: 100%; object-fit: contain; display: block; }
.footer .logo-icon { width: 56px; height: 56px; }
@media (max-width: 640px) {
  .logo-icon { width: 52px; height: 52px; }
  .logo { font-size: 22px; }
}
.logo-text { color: var(--dark); }
.logo-text strong { color: var(--primary); }
.nav { display: flex; gap: 32px; align-items: center; }
.nav a { color: var(--dark); font-weight: 500; }
.nav a:hover { color: var(--primary); }
.nav-cta { padding: 10px 24px !important; color: #fff !important; }
.hamburger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span { width: 28px; height: 3px; background: var(--dark); border-radius: 2px; }

/* ===== Hero ===== */
.hero {
  background: #fff;
  color: var(--dark);
  padding: 36px 0 60px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.bubbles { display: none; }
.hero-inner { align-items: start !important; }
.hero-image {
  margin-top: 18px;
  max-width: 540px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image img {
  width: 100%;
  height: auto;
  max-height: 340px;
  object-fit: cover;
  display: block;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}
.hero h1 {
  font-size: clamp(32px, 4.6vw, 50px);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 14px;
  color: var(--dark);
  letter-spacing: -0.02em;
}
.accent { color: var(--primary); }
.hero p {
  font-size: 16px;
  margin-bottom: 18px;
  color: var(--gray);
  max-width: 540px;
  line-height: 1.5;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-cta .btn-outline {
  color: var(--dark);
  border-color: var(--border);
  background: transparent;
}
.hero-cta .btn-outline:hover { background: var(--light); color: var(--primary); border-color: var(--primary); }

.btn-glow {
  background: var(--primary);
  color: #fff !important;
  font-weight: 600;
}
.btn-glow:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.hero-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  max-width: 480px;
  margin-bottom: 20px;
}
.hero-points li {
  font-size: 14px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 8px;
}
.tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  max-width: 480px;
}
.trust-item { display: flex; flex-direction: column; }
.trust-item strong {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}
.trust-item span { font-size: 12px; color: var(--gray); margin-top: 4px; }
.trust-divider { display: none; }

/* Hero card — clean and simple */
.hero-card {
  background: #fff;
  padding: 28px 24px;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  color: var(--dark);
}
.hero-card h3 {
  font-size: 20px;
  margin-bottom: 4px;
  color: var(--dark);
  font-weight: 600;
}
.hero-card .form-subtitle {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 18px;
}

.hero-wave { display: none; }
.quote-form { display: flex; flex-direction: column; gap: 12px; }
.quote-form input,
.quote-form select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  outline: none;
  transition: 0.3s;
}
.quote-form input:focus,
.quote-form select:focus { border-color: var(--primary); }
.quote-form select:disabled { background: #f5f9fc; color: #9aa8b3; cursor: not-allowed; }

/* ===== Stats ===== */
.stats { background: var(--light); padding: 60px 0; border-bottom: 1px solid var(--border); }
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat h2 { font-size: 36px; color: var(--dark); font-weight: 700; letter-spacing: -0.02em; }
.stat p { color: var(--gray); font-size: 14px; margin-top: 4px; }

/* ===== Grids & Cards ===== */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  padding: 32px 28px;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}
.card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); }
.card-icon {
  font-size: 32px;
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card h3 { font-size: 17px; color: var(--dark); margin-bottom: 8px; font-weight: 600; }
.card p { color: var(--gray); margin-bottom: 16px; font-size: 14px; line-height: 1.6; }
.link { color: var(--primary); font-weight: 600; font-size: 14px; }
.link:hover { color: var(--primary-dark); }

/* ===== Blog Preview (homepage) ===== */
.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-preview-grid-2col {
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.blog-preview-image-soon {
  background: linear-gradient(135deg, #eef2f7 0%, #dde6f0 100%);
  position: relative;
}
.blog-preview-image-soon .soon-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(26, 115, 232, 0.12);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 999px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.blog-preview-card-soon {
  cursor: default;
  opacity: 0.85;
}
.blog-preview-card-soon:hover {
  transform: none;
}
.blog-preview-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}
.blog-preview-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.blog-preview-image {
  height: 180px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.blog-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-preview-image-contain {
  height: 220px;
}
.blog-preview-image-contain img {
  object-fit: contain;
  padding: 12px;
}
.blog-preview-image-1 { background: linear-gradient(135deg, #1a73e8, #1557b0); }
.blog-preview-image-2 { background: linear-gradient(135deg, #00b894, #007a63); }
.blog-preview-image-3 { background: linear-gradient(135deg, #4f46e5, #312e81); }
.blog-preview-image-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.blog-preview-image-placeholder svg { width: 32px; height: 32px; }
.blog-preview-content {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-preview-content h3 {
  font-size: 17px;
  color: var(--dark);
  font-weight: 700;
  margin: 10px 0 10px;
  line-height: 1.35;
}
.blog-preview-content p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.55;
  margin-bottom: 14px;
  flex: 1;
}
.blog-preview-meta {
  font-size: 13px;
  color: var(--gray);
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.blog-preview-meta strong { color: var(--dark); }
.blog-preview-card-cta .blog-preview-meta {
  color: var(--primary);
  font-weight: 600;
}

@media (max-width: 992px) {
  .blog-preview-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .blog-preview-grid { grid-template-columns: 1fr; }
}
.blog-preview-footer {
  text-align: center;
  margin-top: 36px;
}

/* ===== Services page ===== */
.live-category {
  background: linear-gradient(135deg, var(--primary) 0%, #4a90e2 100%);
  color: #fff;
  border-radius: 18px;
  padding: 44px 40px;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: 0 16px 50px rgba(26, 115, 232, 0.18);
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 36px;
  align-items: center;
}
.live-badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.live-category h3 {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: #fff;
}
.live-category-desc {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 20px;
}
.live-category-stats {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.live-stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.live-stat-num { font-size: 24px; font-weight: 700; }
.live-stat-label { font-size: 12px; opacity: 0.85; text-transform: uppercase; letter-spacing: 0.6px; }
.btn-light {
  background: #fff;
  color: var(--primary);
  padding: 12px 26px;
  font-weight: 700;
  border: none;
}
.btn-light:hover { background: rgba(255,255,255,0.92); color: var(--primary); }
.live-category-side {
  background: rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 24px;
}
.live-category-side h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  opacity: 0.9;
  color: #fff;
}
.live-category-side ul { list-style: none; margin: 0; padding: 0; }
.live-category-side li {
  font-size: 14px;
  padding-left: 22px;
  position: relative;
  margin-bottom: 8px;
  line-height: 1.5;
  color: #fff;
}
.live-category-side li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #fff;
  font-weight: 700;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.svc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.svc-card-image {
  height: 160px;
  background-size: cover;
  background-position: center;
  background-color: #e8eef2;
}
.svc-card-body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc-icon {
  display: none;
}
.svc-card h4 {
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 8px;
  font-weight: 700;
  line-height: 1.35;
}
.svc-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 14px;
  flex-grow: 1;
}
.svc-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.svc-price {
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
}
.svc-cta {
  color: var(--primary);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
}
.svc-cta:hover { text-decoration: underline; }
.coming-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.coming-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.coming-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.coming-badge {
  display: inline-block;
  background: rgba(26, 115, 232, 0.10);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 14px;
}
.coming-card h3 {
  font-size: 19px;
  color: var(--dark);
  margin-bottom: 10px;
  font-weight: 700;
}
.coming-card p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 16px;
}
.notify-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.notify-link:hover { text-decoration: underline; }
.idea-band {
  background: var(--light);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.idea-band h3 {
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 10px;
  font-weight: 700;
}
.idea-band p {
  color: var(--text);
  margin-bottom: 18px;
  font-size: 15px;
}
@media (max-width: 992px) {
  .live-category { grid-template-columns: 1fr; padding: 36px 28px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .coming-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .svc-grid { grid-template-columns: 1fr; }
  .coming-grid { grid-template-columns: 1fr; }
  .live-category h3 { font-size: 24px; }
}

/* ===== About page ===== */
.about-hero {
  background: linear-gradient(180deg, var(--light) 0%, #fff 100%);
  padding: 60px 0 50px;
}
.about-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-hero-text .crumb { margin-bottom: 14px; }
.about-hero-text .eyebrow { display: inline-block; margin-bottom: 12px; }
.about-hero-text h1 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--dark);
  line-height: 1.2;
}
.about-hero-text .lede {
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.about-hero-image img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 992px) {
  .about-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-hero-image img { max-height: 320px; }
}

.mission-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}
.mission-card {
  background: linear-gradient(135deg, var(--primary) 0%, #4a90e2 100%);
  color: #fff;
  border-radius: 16px;
  padding: 30px 28px;
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow-lg);
}
.mission-card h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  font-weight: 700;
  opacity: 0.9;
}
.mission-statement {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 22px;
}
.mission-statement strong { font-weight: 700; }
.mission-principles {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mission-principles li {
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.mission-tick {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}
.mission-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
  color: var(--text);
}
.mission-text strong { color: var(--dark); }
@media (max-width: 768px) {
  .mission-grid { grid-template-columns: 1fr; gap: 28px; }
  .mission-card { position: static; }
}

.founder-story {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}
.founder-quote {
  background: var(--light);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--border);
  position: sticky;
  top: 100px;
}
.founder-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #4a90e2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 1px;
}
.founder-avatar::before { content: attr(data-initials); }
.founder-name { margin: 0 0 4px; font-weight: 700; font-size: 18px; }
.founder-name a { color: var(--dark); text-decoration: none; }
.founder-name a:hover { color: var(--primary); }
.founder-role { margin: 0; color: var(--gray); font-size: 14px; }
.founder-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
  color: var(--text);
}
@media (max-width: 768px) {
  .founder-story { grid-template-columns: 1fr; gap: 28px; }
  .founder-quote { position: static; }
}

.values-grid { gap: 22px; }
.value-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(26, 115, 232, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-icon svg { width: 28px; height: 28px; }
.value-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--dark);
}
.value-card p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}

.process-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.process-text .eyebrow { display: inline-block; margin-bottom: 12px; }
.process-text h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 18px;
  color: var(--dark);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.process-text > p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 22px;
}
.process-list {
  margin: 0 0 22px;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.process-list li {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}
.link-arrow {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
}
.link-arrow:hover { text-decoration: underline; }
.process-images {
  display: grid;
  grid-template-rows: auto auto;
  gap: 14px;
}
.process-images-single {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.process-images-single img {
  width: 100%;
  height: auto;
  display: block;
}
.process-image-large,
.process-image-small {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.process-image-large img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.process-image-small img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
@media (max-width: 992px) {
  .process-images { position: static; }
  .process-image-large img { height: 260px; }
  .process-image-small img { height: 150px; }
}
@media (max-width: 992px) {
  .process-grid { grid-template-columns: 1fr; gap: 32px; }
}

.team-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.team-card-link .team-card {
  height: 100%;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.team-card-link:hover .team-card {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.team-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #4a90e2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 1px;
}
.team-avatar::before { content: attr(data-initials); }
.team-card h3 {
  font-size: 18px;
  margin-bottom: 4px;
  color: var(--dark);
}
.team-role {
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.pledge-box {
  max-width: 880px;
  margin: 0 auto;
  background: linear-gradient(135deg, #fff 0%, #f4f8fc 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 44px 40px;
  box-shadow: var(--shadow);
}
.pledge-box .eyebrow { display: inline-block; margin-bottom: 12px; }
.pledge-box h2 {
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 16px;
  color: var(--dark);
  font-weight: 700;
}
.pledge-intro {
  color: var(--text);
  margin-bottom: 22px;
  font-size: 16px;
  line-height: 1.6;
}
.pledge-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pledge-list li {
  background: #fff;
  border-left: 3px solid var(--primary);
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}
.pledge-list li strong { color: var(--dark); }
@media (max-width: 640px) {
  .pledge-box { padding: 32px 24px; }
}

.coverage-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.coverage-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 26px;
}
.coverage-card h3 {
  font-size: 16px;
  margin-bottom: 14px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 700;
}
.coverage-card-soon h3 { color: var(--gray); }
.coverage-zones {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 14px;
}
.coverage-zones a {
  color: var(--primary);
  text-decoration: none;
}
.coverage-zones a:hover { text-decoration: underline; }
.coverage-soon-note {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
}
.coverage-soon-note a {
  color: var(--primary);
  font-weight: 600;
}
@media (max-width: 768px) {
  .coverage-stats { grid-template-columns: 1fr; }
}

/* ===== Blog ===== */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
  display: block;
}
.blog-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.blog-card-soon {
  opacity: 0.55;
  cursor: default;
}
.blog-card-soon:hover { transform: none; box-shadow: none; border-color: var(--border); }
.blog-card-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.blog-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}
.blog-date {
  font-size: 13px;
  color: var(--gray);
}
.blog-card h2 {
  font-size: 22px !important;
  color: var(--dark);
  margin: 0 0 12px !important;
  font-weight: 700;
  line-height: 1.3;
}
.blog-card p {
  color: var(--gray);
  margin-bottom: 16px !important;
  font-size: 15px;
  line-height: 1.6;
}
.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--gray);
  flex-wrap: wrap;
  gap: 8px;
}
.blog-byline strong { color: var(--dark); }
.blog-readtime {
  background: var(--light);
  padding: 4px 10px;
  border-radius: 50px;
  font-weight: 500;
}

/* Article byline (top of blog post) */
.article-byline {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.byline-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.byline-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.byline-avatar::before { content: attr(data-initials); }
.byline-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-light);
  margin: 0 !important;
  font-weight: 600;
}
.byline-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin: 2px 0 0 !important;
}
.byline-name a { color: inherit; text-decoration: none; }
.byline-name a:hover { color: var(--primary); }
.byline-role {
  font-size: 12px;
  color: var(--gray);
  margin: 0 !important;
}
.byline-meta {
  margin-left: auto;
  text-align: right;
}
.byline-meta p {
  font-size: 12px;
  color: var(--gray);
  margin: 2px 0 !important;
}

/* Article hero with image on right */
.article-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 4px;
}
.article-hero-text { min-width: 0; }
.article-hero-text h1 { margin-bottom: 14px !important; }
.article-hero-text .lede { margin-bottom: 20px !important; }
.article-hero-image {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 480px;
  margin-left: auto;
}
.article-hero-image img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  display: block;
}
.article-hero-image-contain {
  background: #e8eef2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.article-hero-image-contain img {
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: contain;
}
@media (max-width: 992px) {
  .article-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .article-hero-image { margin-left: 0; max-width: 100%; }
  .article-hero-image img { max-height: 320px; }
  .article-hero-image-contain img { max-height: 380px; }
}

/* Blog sources & references section */
.blog-sources {
  margin: 50px 0 30px;
  padding: 28px 26px;
  background: var(--light, #f4f6f8);
  border-radius: 12px;
  border: 1px solid var(--border, #e5e7eb);
}
.blog-sources h2 {
  font-size: 20px;
  margin-bottom: 16px !important;
  margin-top: 0 !important;
  color: var(--dark);
  font-weight: 700;
}
.blog-sources ul {
  margin: 0 0 18px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: disc;
}
.blog-sources li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
}
.blog-sources li a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}
.blog-sources li a:hover {
  border-bottom-color: var(--primary);
}
.sources-note {
  font-size: 12px;
  color: var(--gray);
  margin: 0;
  font-style: italic;
}

/* Blog FAQ section (reuses .faq-* classes from /faqs page) */
.blog-faq-section {
  margin: 50px 0 20px;
  padding-top: 40px;
  border-top: 1px solid var(--border, #e5e7eb);
}
.blog-faq-section h2 {
  font-size: 24px;
  margin-bottom: 20px !important;
  color: var(--dark);
  font-weight: 700;
}

/* Related articles cards (end of every blog) */
.related-articles {
  margin: 50px 0 30px;
  padding-top: 40px;
  border-top: 1px solid var(--border, #e5e7eb);
}
.related-articles h2 {
  font-size: 24px;
  margin-bottom: 22px !important;
  color: var(--dark);
  font-weight: 700;
}
.related-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.related-article-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.related-article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.related-article-image {
  height: 130px;
  background-size: cover;
  background-position: center;
  background-color: #e8eef2;
}
.related-article-content {
  padding: 14px 16px 18px;
}
.related-article-tag {
  display: inline-block;
  background: rgba(26, 115, 232, 0.1);
  color: var(--primary);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.related-article-card h3 {
  font-size: 15px;
  margin: 0 0 6px;
  line-height: 1.35;
  color: var(--dark);
}
.related-article-card p {
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 768px) {
  .related-articles-grid { grid-template-columns: 1fr; gap: 14px; }
  .related-article-image { height: 160px; }
}

/* Inline article figures (in-body images) */
.article-figure {
  margin: 32px auto;
  max-width: 720px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #f4f6f8;
}
.article-figure img {
  width: 100%;
  height: auto;
  display: block;
}
.article-figure figcaption {
  padding: 12px 18px 16px;
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
  text-align: center;
  background: #fff;
}

/* ===== FAQ page ===== */
.faq-section .container { max-width: 880px; }
.faq-jumplist {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin: 0 0 36px;
  padding: 18px 22px;
  background: var(--light, #f4f6f8);
  border-radius: 12px;
  border: 1px solid var(--border, #e5e7eb);
}
.faq-jumplist a {
  font-size: 14px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  padding: 6px 14px;
  background: #fff;
  border-radius: 999px;
  border: 1px solid var(--border, #e5e7eb);
  transition: background .15s ease, color .15s ease;
}
.faq-jumplist a:hover { background: var(--primary); color: #fff; }
.faq-section-title {
  font-size: 22px;
  margin: 40px 0 18px;
  color: var(--dark);
  font-weight: 700;
  scroll-margin-top: 90px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.faq-item[open] {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 52px 18px 22px;
  font-weight: 600;
  font-size: 16px;
  color: var(--dark);
  position: relative;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--primary);
  transition: transform .2s ease;
  line-height: 1;
}
.faq-item[open] summary::after {
  content: "\2212";
  transform: translateY(-50%) rotate(0deg);
}
.faq-item summary:hover { color: var(--primary); }
.faq-answer {
  padding: 0 22px 20px;
  color: var(--text, #4b5563);
}
.faq-answer p {
  margin: 0;
  line-height: 1.7;
  font-size: 15px;
}
.faq-answer p + p { margin-top: 10px; }
.faq-answer a { color: var(--primary); text-decoration: underline; }
.faq-cta {
  margin: 50px 0 20px;
  padding: 36px 30px;
  background: var(--light, #f4f6f8);
  border-radius: 14px;
  text-align: center;
}
.faq-cta h3 {
  margin: 0 0 8px;
  font-size: 22px;
  color: var(--dark);
}
.faq-cta p { margin: 0 0 20px; color: var(--text, #4b5563); }
.faq-cta .hero-cta { justify-content: center; }
.btn-whatsapp { display: inline-flex; align-items: center; gap: 8px; }
.btn-whatsapp .btn-icon { width: 18px; height: 18px; color: #25D366; flex-shrink: 0; }
.btn-whatsapp:hover .btn-icon { color: #25D366; }
@media (max-width: 640px) {
  .faq-item summary { font-size: 15px; padding-right: 46px; }
  .faq-section-title { font-size: 19px; }
}

/* Article content adjustments */
.article-content .container { max-width: 760px; }
.article-content h2 {
  font-size: 26px;
  margin-top: 36px !important;
}
.article-content h3 {
  font-size: 19px;
  color: var(--dark);
  margin: 24px 0 10px;
  font-weight: 600;
}
.article-tldr {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  padding: 24px 28px;
  border-radius: 8px;
  margin: 30px 0;
}
.article-tldr h2 { font-size: 18px !important; margin: 0 0 12px !important; }
.article-tldr ul { margin-bottom: 12px !important; }

@media (max-width: 640px) {
  .article-byline { gap: 16px; }
  .byline-meta { margin-left: 0; text-align: left; width: 100%; padding-top: 12px; border-top: 1px solid var(--border); }
}

/* ===== Team Pages ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}
.team-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 992px) { .team-grid-3 { grid-template-columns: repeat(2, 1fr); } }
.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  text-decoration: none;
  color: inherit;
  text-align: center;
  transition: all 0.2s ease;
  display: block;
}
.team-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.team-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
}
.team-avatar::before { content: attr(data-initials); }
.team-card h3 {
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 4px;
  font-weight: 700;
}
.team-role {
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 10px !important;
}
.team-meta {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 18px !important;
}
.team-link {
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
}
.team-note {
  background: var(--light);
  border-left: 3px solid var(--primary);
  padding: 20px 24px;
  border-radius: 8px;
  margin-top: 30px;
}
.team-note p { margin-bottom: 10px; }
.team-note p:last-child { margin-bottom: 0; }

/* Individual profile page */
.profile-header {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.profile-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 1px;
  flex-shrink: 0;
}
.profile-avatar::before { content: attr(data-initials); }
.profile-avatar-large {
  width: 140px;
  height: 140px;
  font-size: 48px;
}
.profile-meta { flex: 1; min-width: 240px; }
.profile-meta h1 { margin-bottom: 6px !important; }
.profile-title {
  font-size: 17px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 12px !important;
}
.profile-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 0 !important;
}
.profile-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
}
.muted-note {
  background: var(--light);
  border-left: 3px solid var(--gray-light);
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--gray);
  font-style: italic;
}

@media (max-width: 640px) {
  .team-grid { grid-template-columns: 1fr; }
  .profile-header { flex-direction: column; text-align: center; }
  .profile-meta { text-align: center; }
  .profile-tags { justify-content: center; }
}

/* ===== Inline Form Success / Error ===== */
.form-success {
  text-align: center;
  padding: 30px 14px 14px;
  animation: fadeIn 0.3s ease;
}
.success-icon {
  width: 64px;
  height: 64px;
  background: #d1fae5;
  color: #059669;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.success-icon svg { width: 36px; height: 36px; }
.form-success h4 {
  color: var(--dark);
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}
.form-success p {
  color: var(--gray);
  margin-bottom: 22px;
  line-height: 1.5;
  font-size: 14px;
}
.form-success p strong { color: var(--dark); font-weight: 600; }
.form-success .btn { max-width: 240px; margin: 0 auto; display: block; }
.form-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 14px;
  font-size: 13px;
  animation: fadeIn 0.25s ease;
}
.form-error a { color: #b91c1c; text-decoration: underline; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }

/* ===== SVG Card Icons ===== */
.card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
  stroke: currentColor;
}

/* ===== Form Eyebrow (above Book An Appointment) ===== */
.form-eyebrow {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

/* ===== Meet Our Crew ===== */
.crew-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.crew-card {
  background: #fff;
  padding: 28px 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.2s ease;
}
.crew-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.crew-photo {
  width: 96px;
  height: 96px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--primary-light);
  position: relative;
}
.crew-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.crew-card h4 {
  font-size: 17px;
  color: var(--dark);
  margin-bottom: 4px;
  font-weight: 600;
}
.crew-role {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 6px !important;
}
.crew-meta {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 0 !important;
}
.crew-note {
  text-align: center;
  margin-top: 30px;
  color: var(--gray);
  font-size: 14px;
}

/* ===== Sticky Mobile Action Bar ===== */
.sticky-mobile-bar {
  display: none;
}
.smb-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 8px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  flex: 1;
  transition: 0.2s;
}
.smb-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.smb-call {
  background: var(--light);
  color: var(--dark);
  border: 1px solid var(--border);
}
.smb-whatsapp {
  background: #25d366;
  color: #fff;
}
.smb-whatsapp svg { fill: #fff; }
.smb-book {
  background: var(--primary);
  color: #fff;
  flex: 1.5;
}
.smb-btn:active { transform: scale(0.97); }

/* ===== Services with image (homepage) ===== */
.services-with-image {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
.services-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.services-image {
  width: 100%;
}
.services-image img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  display: block;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}
@media (max-width: 992px) {
  .services-with-image { grid-template-columns: 1fr; gap: 32px; }
  .services-image { max-width: 480px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .services-grid-2x2 { grid-template-columns: 1fr; }
}

/* ===== Coming Soon Services ===== */
.service-soon {
  position: relative;
  opacity: 0.85;
  transition: 0.3s;
}
.service-soon:hover {
  opacity: 1;
  transform: translateY(-4px);
}
.service-soon .card-icon {
  background: linear-gradient(135deg, #fff4e6, #ffe4b5);
}
.service-soon h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.soon-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff9800, #ff6f00);
  color: #fff;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.services-soon-note {
  text-align: center;
  margin-top: 30px;
  color: var(--gray);
  font-size: 15px;
}
.services-soon-note a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}
.services-soon-note a:hover {
  text-decoration: underline;
}

/* ===== Process ===== */
.process {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  position: relative;
}
.step {
  background: #fff;
  padding: 24px 18px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary);
}
.step-num {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  margin: 0 auto 14px;
}
.step h4 { font-size: 15px; color: var(--dark); margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--gray); }

/* ===== Features ===== */
.feature {
  background: #fff;
  padding: 28px 24px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--border);
  transition: 0.3s;
}
.feature:hover { border-color: var(--primary); transform: translateY(-4px); }
.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg { width: 28px; height: 28px; stroke: currentColor; }
.feature h4 { font-size: 16px; color: var(--dark); margin-bottom: 8px; }
.feature p { font-size: 14px; color: var(--gray); }

/* ===== Pricing ===== */
.price-card {
  background: #fff;
  padding: 32px 28px;
  border-radius: 12px;
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.2s ease;
}
.price-card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); }
.price-card.featured {
  border-color: var(--primary);
  border-width: 2px;
  box-shadow: var(--shadow-lg);
}
.ribbon {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--accent);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.price-card h3 { font-size: 22px; color: var(--dark); margin-bottom: 12px; }
.price {
  font-size: 38px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
}
.price span { font-size: 15px; color: var(--gray); font-weight: 400; }
.price-card ul { margin-bottom: 28px; }
.price-card ul li {
  padding: 8px 0;
  color: var(--dark);
  font-size: 15px;
  border-bottom: 1px solid var(--border);
}
.price-card ul li:last-child { border-bottom: none; }

/* ===== Service Areas ===== */
.areas {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.area-col {
  background: #fff;
  padding: 26px 24px;
  border-radius: 12px;
  border: 1px solid var(--border);
  display: block;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
  position: relative;
}
.area-col-active {
  border-color: var(--primary);
}
.area-col-active:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.area-col-link {
  color: var(--primary) !important;
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  transition: 0.2s;
}
.area-col-link:hover {
  border-bottom-color: var(--primary);
}
.area-col-soon {
  opacity: 0.7;
}
.area-col-soon ul li {
  color: var(--gray-light) !important;
}
.area-status {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: 4px;
  vertical-align: middle;
  background: linear-gradient(135deg, #fb923c, #f97316);
  color: #fff;
}
.area-status-live {
  background: linear-gradient(135deg, #10b981, #059669);
}
.area-col-cta {
  display: block;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}
.area-col-active:hover .area-col-cta { color: var(--primary-dark); }
.area-col h4 {
  color: var(--primary);
  font-size: 17px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-light);
}
.area-col ul li {
  padding: 6px 0;
  color: var(--dark);
  font-size: 14px;
}

/* ===== Testimonials ===== */
.testimonial {
  background: #fff;
  padding: 30px 28px;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.stars { color: #fbc02d; font-size: 18px; margin-bottom: 14px; }
.testimonial p { font-style: italic; color: var(--dark); margin-bottom: 18px; }
.author strong { display: block; color: var(--dark); }
.author span { font-size: 13px; color: var(--gray); }

/* ===== Contact ===== */
.contact-section { background: linear-gradient(180deg, #fff, var(--light)); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}
.contact-grid-single {
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto;
}
.contact-info-left {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.contact-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.contact-trust h3 {
  font-size: 17px;
  margin-bottom: 12px;
  color: var(--dark);
  font-weight: 700;
}
.contact-trust ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.contact-trust li {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
  padding-left: 24px;
  position: relative;
}
.contact-trust li::before {
  content: "\2713";
  color: var(--primary);
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
}
.contact-direct {
  border-top: 1px solid var(--border);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-direct p {
  font-size: 13px;
  color: var(--gray);
  margin: 0 0 4px;
}
.contact-direct .btn {
  text-align: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .contact-image img { height: 180px; }
}
.contact-info h3 { font-size: 22px; color: var(--dark); margin-bottom: 24px; }
.info-item { margin-bottom: 18px; }
.info-item strong {
  display: block;
  color: var(--primary);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.info-item a, .info-item span { color: var(--dark); }
.info-item a:hover { color: var(--primary); }

.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  outline: none;
  transition: 0.3s;
  width: 100%;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--primary); }
.form-note { font-size: 12px; color: var(--gray); text-align: center; }

/* ===== Footer ===== */
.footer {
  background: var(--light);
  color: var(--gray);
  padding: 60px 0 0;
  border-top: 1px solid var(--border);
}
.footer-col h4 { color: var(--dark); }
.footer-col a { color: var(--gray); }
.footer-col a:hover { color: var(--primary); }
.footer .logo-text { color: var(--dark); }
.footer-bottom { border-top: 1px solid var(--border); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-col .logo { margin-bottom: 16px; }
.footer-col h4 { color: var(--dark); font-size: 17px; margin-bottom: 18px; }
.footer-col p { font-size: 14px; margin-bottom: 8px; }
.footer-col ul li { padding: 5px 0; }
.footer-col a { font-size: 14px; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  font-size: 13px;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom p { margin: 0; }
.footer-bottom a:hover { color: var(--primary); }
@media (max-width: 640px) {
  .footer-bottom .container { justify-content: center; text-align: center; }
}

/* ===== Area Pages ===== */
.area-hero {
  background: var(--light);
  color: var(--dark);
  padding: 60px 0 56px;
  border-bottom: 1px solid var(--border);
}
.crumb { font-size: 13px; color: var(--gray); margin-bottom: 14px; }
.crumb a { color: var(--primary); text-decoration: none; }
.crumb a:hover { text-decoration: underline; }
.area-hero h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  color: var(--dark);
}
.area-hero .accent { color: var(--primary); }
.area-hero .lede {
  font-size: 16px;
  max-width: 720px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 26px;
}
.area-hero .hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.area-hero .btn-outline { color: var(--dark); border-color: var(--border); }
.area-hero .btn-outline:hover { background: #fff; color: var(--primary); border-color: var(--primary); }

.area-group-title {
  font-size: 22px;
  color: var(--dark);
  margin: 30px 0 20px;
  padding-left: 14px;
  border-left: 4px solid var(--primary);
  font-weight: 700;
}
.area-group-title:first-child { margin-top: 0; }

.area-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}
.area-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: 0.25s;
  display: block;
}
.area-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}
.area-card h4 {
  color: var(--dark);
  font-size: 16px;
  margin-bottom: 6px;
  font-weight: 600;
}
.area-card p {
  color: var(--gray);
  font-size: 13px;
  margin: 0;
}

.cta-band {
  background: var(--primary);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}
.cta-band h2 { font-size: 28px; margin-bottom: 12px; font-weight: 700; letter-spacing: -0.02em; }
.cta-band p { opacity: 0.9; margin-bottom: 24px; font-size: 16px; }
.cta-band .hero-cta { justify-content: center; }
.cta-band .btn-primary { background: #fff; color: var(--primary) !important; }
.cta-band .btn-primary:hover { background: var(--light); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.cta-band .btn-outline { color: #fff; border-color: rgba(255,255,255,0.5); background: transparent; }
.cta-band .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }

.area-content { padding: 60px 0; }
.area-content .container { max-width: 900px; }
.area-content h2 {
  font-size: 28px;
  color: var(--dark);
  margin: 30px 0 14px;
  font-weight: 700;
}
.area-content h2:first-child { margin-top: 0; }
.area-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #455a6c;
  margin-bottom: 16px;
}
.area-content ul {
  margin-bottom: 20px;
  padding-left: 0;
}
.area-content ul li {
  padding: 6px 0 6px 26px;
  position: relative;
  color: var(--dark);
}
.area-content ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.sub-areas-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.nearby-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.nearby-areas a {
  padding: 8px 16px;
  background: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 50px;
  font-size: 14px;
  text-decoration: none;
  transition: 0.2s;
  font-weight: 500;
}
.nearby-areas a:hover {
  background: var(--primary);
  color: #fff;
}
.nav a.active { color: var(--primary); font-weight: 600; }

@media (max-width: 992px) {
  .area-cards { grid-template-columns: repeat(2, 1fr); }
  .sub-areas-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .area-cards { grid-template-columns: 1fr; }
  .sub-areas-list { grid-template-columns: 1fr; }
  .area-hero { padding: 50px 0 40px; }
  .cta-band h2 { font-size: 24px; }
}

/* ===== Social Row (footer) ===== */
.social-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-row-label {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: var(--gray);
  margin-right: 4px;
}
.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: all 0.2s ease;
  text-decoration: none;
}
.social-icon:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.social-icon svg { width: 18px; height: 18px; }
.social-icon[aria-label*="Facebook"] {
  background: #1877F2;
  border-color: #1877F2;
  color: #fff;
}
.social-icon[aria-label*="Facebook"]:hover {
  background: #166fe5;
  border-color: #166fe5;
  color: #fff;
}
.social-icon[aria-label*="LinkedIn"] {
  background: #0A66C2;
  border-color: #0A66C2;
  color: #fff;
}
.social-icon[aria-label*="LinkedIn"]:hover {
  background: #0958a8;
  border-color: #0958a8;
  color: #fff;
}

/* ===== Booking Modal ===== */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 30, 50, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
  padding: 20px;
}
.modal.open {
  opacity: 1;
  visibility: visible;
}
.modal-content {
  background: #fff;
  width: 100%;
  max-width: 460px;
  max-height: 92vh;
  overflow-y: auto;
  border-radius: 18px;
  padding: 32px 28px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 30, 60, 0.4);
  transform: translateY(30px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.modal.open .modal-content {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--light);
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  color: var(--gray);
  cursor: pointer;
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover {
  background: #e74c3c;
  color: #fff;
  transform: rotate(90deg);
}
.modal-header {
  margin-bottom: 20px;
  padding-right: 30px;
}
.modal-header h3 {
  font-size: 24px;
  color: var(--dark);
  margin-bottom: 6px;
  font-weight: 700;
}
.modal-header p {
  font-size: 13px;
  color: var(--gray);
}
.modal-content .quote-form input,
.modal-content .quote-form select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  outline: none;
  transition: 0.3s;
}
.modal-content .quote-form input:focus,
.modal-content .quote-form select:focus { border-color: var(--primary); }
.modal-content .quote-form select:disabled { background: #f5f9fc; color: #9aa8b3; cursor: not-allowed; }

@media (max-width: 640px) {
  .modal-content { padding: 24px 20px; max-height: 95vh; }
  .modal-header h3 { font-size: 20px; }
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 99;
  animation: pulse 2s infinite;
  color: #fff;
}
.whatsapp-float svg { width: 32px; height: 32px; }
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.8); }
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(4, 1fr); }
  .areas { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; padding: 30px; }
  .price-card.featured { transform: scale(1); }
  .crew-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Sticky mobile bar — show only on mobile */
@media (max-width: 768px) {
  .sticky-mobile-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
    padding: 12px 12px;
    gap: 8px;
    z-index: 99;
  }
  .whatsapp-float { display: none; }
  body { padding-bottom: 78px; }
}

@media (max-width: 640px) {
  .topbar-inner { justify-content: center; text-align: center; }
  .topbar-right { display: none; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
    box-shadow: var(--shadow);
  }
  .nav.open { max-height: 500px; padding: 16px 0; }
  .nav a { padding: 10px 24px; width: 100%; }
  .hamburger { display: flex; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .areas { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .hero { padding: 50px 0 60px; }
  .hero-points { grid-template-columns: 1fr; }
  .trust-row { gap: 16px; flex-wrap: wrap; }
  .trust-item strong { font-size: 20px; }
  .crew-grid { grid-template-columns: 1fr; gap: 16px; }
  .crew-photo { width: 80px; height: 80px; }
  .smb-btn span { font-size: 12px; }
}
