/* Desolution Advocates & Tax Consultants — main stylesheet */

:root {
  --brand: #1D6FB8;
  --brand-dark: #0B2545;
  --brand-soft: #E8F1FA;
  --gold: #C89B3C;
  --ink: #0B2545;
  --body: #3A4A5C;
  --muted: #6B7A8C;
  --line: #E4EAF1;
  --bg: #FFFFFF;
  --bg-alt: #F6F9FC;
  --radius: 10px;
  --shadow-sm: 0 2px 6px rgba(11, 37, 69, 0.06);
  --shadow-md: 0 10px 30px rgba(11, 37, 69, 0.08);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  color: var(--ink);
  line-height: 1.25;
  margin: 0 0 0.6em;
  font-weight: 700;
}
h1 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Top strip */
.topbar {
  background: var(--brand-dark);
  color: #DCE6F2;
  font-size: 0.85rem;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar a { color: #DCE6F2; }
.topbar a:hover { color: #fff; }
.topbar-items { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-items span { display: inline-flex; align-items: center; gap: 6px; }

/* Header */
.site-header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.25s ease, padding 0.25s ease;
}
.site-header.scrolled {
  box-shadow: 0 8px 24px rgba(11, 37, 69, 0.10);
}
.site-header.scrolled .header-inner { padding: 12px 20px; }
.site-header.scrolled .logo img { height: 62px; }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img { height: 78px; width: auto; transition: transform 0.2s ease; }
.logo:hover img { transform: scale(1.03); }
.header-inner { padding: 18px 20px; }

nav.primary ul {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
nav.primary a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 10px 14px;
  border-radius: 6px;
  display: block;
  position: relative;
}
nav.primary a:hover, nav.primary a.active {
  background: var(--brand-soft);
  color: var(--brand);
}

.dropdown { position: relative; }
.dropdown > a::after {
  content: "";
  display: inline-block;
  margin-left: 6px;
  border: 4px solid transparent;
  border-top-color: currentColor;
  transform: translateY(2px);
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-width: 260px;
  padding: 8px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: 0.18s ease;
  z-index: 20;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  padding: 9px 12px;
  font-size: 0.92rem;
  border-radius: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.2s ease;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.btn-primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}
.btn-outline:hover {
  background: var(--brand);
  color: #fff;
}
.btn-wa {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}
.btn-wa:hover {
  background: #128C7E;
  border-color: #128C7E;
  color: #fff;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: 0.2s ease;
}

/* Hero Slider (fullscreen) */
.hero-slider {
  position: relative;
  height: calc(100vh - 132px);
  min-height: 620px;
  overflow: hidden;
  background: #0B2545;
  color: #fff;
}
.hero-slider .slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-slider .slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s ease, visibility 0.9s;
  overflow: hidden;
}
.hero-slider .slide.active { opacity: 1; visibility: visible; z-index: 2; }
.hero-slider .slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.4;
  pointer-events: none;
}
.hero-slider .slide::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 155, 60, 0.22), transparent 65%);
  pointer-events: none;
}
.hero-slider .slide-1 {
  background:
    radial-gradient(ellipse at 15% 25%, rgba(29, 111, 184, 0.55) 0%, transparent 45%),
    linear-gradient(135deg, #061a33 0%, #0B2545 50%, #133a66 100%);
}
.hero-slider .slide-2 {
  background:
    radial-gradient(ellipse at 80% 30%, rgba(200, 155, 60, 0.30) 0%, transparent 50%),
    linear-gradient(135deg, #0B2545 0%, #143d70 50%, #1D6FB8 100%);
}
.hero-slider .slide-3 {
  background:
    radial-gradient(ellipse at 20% 70%, rgba(37, 211, 102, 0.20) 0%, transparent 50%),
    linear-gradient(135deg, #05152b 0%, #0B2545 60%, #1a4780 100%);
}
.hero-slider .slide-4 {
  background:
    radial-gradient(ellipse at 70% 40%, rgba(200, 155, 60, 0.32) 0%, transparent 50%),
    linear-gradient(135deg, #061a33 0%, #133a66 50%, #1D6FB8 100%);
}
.slide-content {
  max-width: 780px;
  position: relative;
  z-index: 3;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 1s ease 0.15s, opacity 1s ease 0.15s;
}
.slide.active .slide-content { transform: translateY(0); opacity: 1; }
.slide-content h1 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.3rem);
  line-height: 1.15;
  margin-bottom: 20px;
}
.slide-content .lead {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: rgba(255,255,255,0.92);
  margin-bottom: 32px;
  max-width: 640px;
  line-height: 1.6;
}
.slide-content .pill {
  background: rgba(200, 155, 60, 0.18);
  color: #F0D08C;
  border: 1px solid rgba(200, 155, 60, 0.35);
}
.slide-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Slider controls */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: 0.25s;
}
.slider-nav:hover { background: #C89B3C; border-color: #C89B3C; color: #0B2545; transform: translateY(-50%) scale(1.08); }
.slider-nav.prev { left: 28px; }
.slider-nav.next { right: 28px; }

.slider-dots {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.slider-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: 0.25s;
  padding: 0;
}
.slider-dots button.active {
  background: #C89B3C;
  width: 34px;
  border-radius: 6px;
}

.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #C89B3C, #fff);
  width: 0;
  z-index: 10;
  transition: width 0.1s linear;
}

.slide-visual {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  max-width: 520px;
  opacity: 0.16;
  z-index: 1;
  font-size: 30rem;
  line-height: 1;
  color: #fff;
}
@media (max-width: 960px) {
  .hero-slider { height: auto; min-height: 560px; padding: 60px 0; }
  .slide-visual { display: none; }
  .slider-nav.prev { left: 12px; }
  .slider-nav.next { right: 12px; }
  .slider-nav { width: 42px; height: 42px; font-size: 1.2rem; }
}
@media (max-width: 720px) {
  .hero-slider { min-height: 520px; }
  .slider-nav { display: none; }
  .slider-dots { bottom: 24px; }
}

/* Scroll reveal */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-on-scroll.delay-1 { transition-delay: 0.1s; }
.reveal-on-scroll.delay-2 { transition-delay: 0.2s; }
.reveal-on-scroll.delay-3 { transition-delay: 0.3s; }
.reveal-on-scroll.delay-4 { transition-delay: 0.4s; }

/* Section entrance from side */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.in-view { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right.in-view { opacity: 1; transform: translateX(0); }

/* Scale in */
.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-scale.in-view { opacity: 1; transform: scale(1); }

/* Smooth scroll offset for sticky header */
html { scroll-padding-top: 130px; }

/* Section number */
.slide-num {
  position: absolute;
  top: 40px;
  right: 40px;
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  z-index: 5;
  letter-spacing: 3px;
}
.slide-num b { color: #C89B3C; font-size: 1.3rem; }

.hero-trust {
  margin-top: 40px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
}
.hero-trust b { color: #fff; font-size: 1.4rem; display: block; font-weight: 700; }
.hero h1 { color: #fff; }
.hero p.lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
}
.hero .btn-primary {
  background: #fff;
  color: var(--brand);
  border-color: #fff;
}
.hero .btn-primary:hover { background: var(--brand-soft); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-trust {
  margin-top: 40px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
}
.hero-trust b { color: #fff; font-size: 1.4rem; display: block; font-weight: 700; }

.page-hero {
  background:
    radial-gradient(ellipse at 20% 30%, rgba(29, 111, 184, 0.5) 0%, transparent 45%),
    radial-gradient(ellipse at 80% 70%, rgba(200, 155, 60, 0.14) 0%, transparent 50%),
    linear-gradient(135deg, #061a33 0%, #0B2545 55%, #133a66 100%);
  color: #fff;
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.35;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero.hero-legal { background:
    radial-gradient(ellipse at 20% 30%, rgba(29, 111, 184, 0.55) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 65%, rgba(200, 155, 60, 0.20) 0%, transparent 50%),
    linear-gradient(135deg, #05152b 0%, #0B2545 55%, #1a4780 100%); }
.page-hero.hero-tax { background:
    radial-gradient(ellipse at 15% 25%, rgba(29, 111, 184, 0.5) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 70%, rgba(37, 211, 102, 0.15) 0%, transparent 50%),
    linear-gradient(135deg, #061a33 0%, #0B2545 55%, #133a66 100%); }
.page-hero.hero-company { background:
    radial-gradient(ellipse at 25% 30%, rgba(29, 111, 184, 0.5) 0%, transparent 45%),
    radial-gradient(ellipse at 80% 70%, rgba(200, 155, 60, 0.15) 0%, transparent 50%),
    linear-gradient(135deg, #061a33 0%, #0B2545 55%, #143d70 100%); }
.page-hero.hero-trademark { background:
    radial-gradient(ellipse at 20% 30%, rgba(29, 111, 184, 0.5) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 65%, rgba(200, 155, 60, 0.22) 0%, transparent 50%),
    linear-gradient(135deg, #061a33 0%, #0B2545 55%, #133a66 100%); }
.page-hero.hero-contact,
.page-hero.hero-about,
.page-hero.hero-services { /* inherit default */ }
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.9); font-size: 1.05rem; max-width: 680px; }
.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: #fff; }

/* Sections */
section { padding: 70px 0; }
section.alt { background: var(--bg-alt); }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}
.section-head .kicker {
  color: var(--brand);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
}

/* Cards grid */
.grid { display: grid; gap: 24px; }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand);
}
.card .icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--body); font-size: 0.95rem; margin-bottom: 14px; }
.card .more {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.card .more:hover { color: var(--brand-dark); }

/* Feature list */
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
  padding: 10px 0 10px 32px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 12px;
  width: 22px;
  height: 22px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

/* Two column */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Steps */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -14px;
  left: 22px;
  background: var(--brand);
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
}
.step h4 { margin: 8px 0 6px; font-family: 'Inter', sans-serif; font-size: 1.05rem; }
.step p { font-size: 0.9rem; color: var(--body); margin: 0; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  color: #fff;
  padding: 50px 40px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.cta-banner h2 { color: #fff; margin: 0 0 6px; }
.cta-banner p { color: rgba(255,255,255,0.9); margin: 0; }
.cta-banner .btn-primary {
  background: #fff;
  color: var(--brand);
  border-color: #fff;
}

/* FAQ */
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
}
.faq-item summary {
  padding: 18px 22px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--brand);
  font-weight: 400;
  transition: 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body {
  padding: 0 22px 20px;
  color: var(--body);
}

/* Contact form */
.contact-wrap { display: grid; grid-template-columns: 1.15fr 1fr; gap: 40px; }
.contact-info-card {
  background: var(--brand-dark);
  color: #fff;
  padding: 34px;
  border-radius: var(--radius);
}
.contact-info-card h3 { color: #fff; }
.contact-info-card .info-row {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.contact-info-card .info-row:last-child { border-bottom: none; }
.contact-info-card .info-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.contact-info-card .info-row strong { color: #fff; display: block; margin-bottom: 3px; }
.contact-info-card .info-row a { color: #DCE6F2; }
.contact-info-card .info-row a:hover { color: #fff; }

form.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}
form.contact-form h3 { margin-top: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-weight: 500; font-size: 0.88rem; color: var(--ink); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: #fff;
  transition: 0.15s;
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(29, 111, 184, 0.15);
}

/* Footer */
footer {
  background: var(--brand-dark);
  color: #B8C6D9;
  padding: 60px 0 0;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 40px;
}
footer h4 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 18px;
}
footer .foot-logo img { height: 60px; background: #fff; padding: 6px 10px; border-radius: 6px; }
footer p { color: #B8C6D9; font-size: 0.92rem; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { padding: 6px 0; }
footer ul a { color: #B8C6D9; font-size: 0.92rem; }
footer ul a:hover { color: #fff; }
.foot-contact-row {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  align-items: flex-start;
  font-size: 0.9rem;
}
.foot-contact-row .fi {
  color: var(--brand);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: #8FA0B6;
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 200;
  animation: pulse 2.4s ease-in-out infinite;
}
.whatsapp-float:hover { background: #128C7E; color: #fff; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* Image sections */
.image-block {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.image-block.tall { min-height: 480px; }
.image-block .badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,0.95);
  padding: 14px 18px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: calc(100% - 40px);
}
.image-block .badge .num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--brand);
  font-weight: 700;
  line-height: 1;
}
.image-block .badge .lbl {
  font-size: 0.85rem;
  color: var(--ink);
  font-weight: 500;
}

/* Stats strip */
.stats-strip {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  color: #fff;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  opacity: 0.10;
  pointer-events: none;
}
.stats-strip .container { position: relative; z-index: 2; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-item .num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-item .num span { color: var(--gold); }
.stat-item .lbl {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

/* Testimonials */
.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  position: relative;
  transition: 0.2s;
}
.testimonial:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 8px;
  right: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--brand-soft);
  line-height: 1;
}
.testimonial .stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.testimonial p {
  color: var(--body);
  font-size: 0.95rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.testimonial .who {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.testimonial .who .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Playfair Display', serif;
}
.testimonial .who .name {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
}
.testimonial .who .role {
  font-size: 0.82rem;
  color: var(--muted);
}

/* Feature image row */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.feature-row.reverse .feature-img-wrap { order: 2; }
.feature-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.feature-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 380px;
}
.feature-img-wrap .accent-box {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--gold);
  color: #fff;
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-md);
}
.feature-img-wrap .accent-box b {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
}

/* Trust strip */
.trust-strip {
  background: var(--bg-alt);
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 30px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--body);
  font-size: 0.92rem;
  font-weight: 500;
}
.trust-item .ti-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* Article image */
.article-hero-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
}

/* Fade in */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { animation: fadeUp 0.7s ease both; }

/* Pakistan interactive map */
.pk-section {
  background:
    radial-gradient(ellipse at 20% 20%, rgba(29, 111, 184, 0.35) 0%, transparent 45%),
    radial-gradient(ellipse at 80% 80%, rgba(200, 155, 60, 0.15) 0%, transparent 50%),
    linear-gradient(135deg, #05152b 0%, #0B2545 50%, #143d70 100%);
  color: #fff;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.pk-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.pk-section .container { position: relative; z-index: 2; }
.pk-section .section-head .kicker { color: #C89B3C; }
.pk-section h2, .pk-section h3 { color: #fff; }
.pk-section p { color: rgba(255,255,255,0.85); }

.pk-map-wrap {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: center;
}
.pk-map-holder {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 560px;
  margin: 0 auto;
  perspective: 1000px;
}
.pk-map-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
  transform: rotateX(12deg) rotateY(-8deg);
  transition: transform 0.6s ease;
}
.pk-map-holder:hover .pk-map-svg {
  transform: rotateX(6deg) rotateY(-4deg) scale(1.02);
}

.pk-map-svg .country-fill {
  fill: url(#pkFill);
  stroke: #C89B3C;
  stroke-width: 2;
  filter: drop-shadow(0 0 12px rgba(200, 155, 60, 0.4));
}
.pk-map-svg .country-shadow {
  fill: rgba(0,0,0,0.35);
  transform: translate(6px, 10px);
}

.pk-city-dot { fill: #C89B3C; }
.pk-city-dot.hq { fill: #fff; }
.pk-city-label {
  fill: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0,0,0,0.7);
}
.pk-city-label.hq { font-weight: 700; fill: #C89B3C; font-size: 13px; }

.pk-line {
  stroke: #C89B3C;
  stroke-width: 1.2;
  stroke-dasharray: 4 4;
  opacity: 0.55;
  fill: none;
}
.pk-map-info h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.pk-cities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  list-style: none;
  padding: 0;
  margin: 20px 0 26px;
}
.pk-cities-grid li {
  padding: 8px 0;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pk-cities-grid li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #C89B3C;
  box-shadow: 0 0 8px rgba(200, 155, 60, 0.8);
  flex-shrink: 0;
}
.pk-cities-grid li.hq::before {
  background: #fff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.9);
}
.pk-cities-grid li strong { color: #fff; }

@media (max-width: 960px) {
  .pk-map-wrap { grid-template-columns: 1fr; }
  .pk-map-svg { transform: none; }
  .pk-map-holder { max-width: 460px; }
}
@media (max-width: 720px) {
  .pk-cities-grid { grid-template-columns: 1fr; }
  .pk-section { padding: 60px 0; }
}

/* Utility */
.text-center { text-align: center; }
.mt-4 { margin-top: 30px; }
.pill {
  display: inline-block;
  background: var(--brand-soft);
  color: var(--brand);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

/* Content typography for service pages */
.article h2 { margin-top: 40px; }
.article h3 { margin-top: 26px; color: var(--brand-dark); }
.article ul, .article ol { padding-left: 22px; margin: 0 0 20px; }
.article li { margin-bottom: 8px; }
.article .callout {
  background: var(--brand-soft);
  border-left: 4px solid var(--brand);
  padding: 18px 22px;
  border-radius: 6px;
  margin: 26px 0;
}
.article .callout p:last-child { margin: 0; }

.side-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow-sm);
}
.side-card h3 { margin-top: 0; }
.side-card .price {
  font-size: 1.6rem;
  color: var(--brand);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  margin: 12px 0 6px;
}
.side-card .price small { font-size: 0.85rem; color: var(--muted); font-weight: 400; font-family: 'Inter', sans-serif; }

.service-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; }

/* Responsive */
@media (max-width: 960px) {
  .grid.cols-3, .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-layout { grid-template-columns: 1fr; }
  .side-card { position: static; }
  .feature-row { grid-template-columns: 1fr; }
  .feature-row.reverse .feature-img-wrap { order: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .logo img { height: 66px; }
}

@media (max-width: 720px) {
  .menu-toggle { display: block; }
  nav.primary {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  nav.primary.open { max-height: 100vh; overflow-y: auto; }
  nav.primary ul { flex-direction: column; padding: 12px 20px; gap: 0; }
  nav.primary a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--line); border-radius: 0; }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 0 0 16px; min-width: auto; }
  .dropdown > a::after { float: right; margin-top: 8px; }
  .header-inner { flex-wrap: wrap; }
  .grid.cols-3, .grid.cols-4, .grid.cols-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; padding: 34px 24px; }
  .topbar-items { gap: 12px; font-size: 0.8rem; }
  .hero { padding: 60px 0; }
  section { padding: 50px 0; }
  .btn-header-cta { display: none; }
  .logo img { height: 58px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .article-hero-img { height: 220px; }
  .trust-strip .container { justify-content: flex-start; }
}
