/* =====================================================
   ZENIUS ADVISORS — style.css
   Theme: Dark Navy (#0a1628) + Gold (#f0b429)
   Font: Poppins — site-wide
   ===================================================== */

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


/* ── Global Poppins override ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif !important;
}

:root {
  --navy: #0a1628;
  --navy2: #0f2040;
  --navy3: #1a3255;
  --gold: #f0b429;
  --gold2: #e09e10;
  --white: #ffffff;
  --offwhite: #f5f7fa;
  --text: #2d3748;
  --muted: #718096;
  --light: #aabbcc;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1 {
  font-weight: 500;
}


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

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

.container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 20px;
}

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

/* ─── BUTTONS ─── */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  padding: 13px 30px;
  border-radius: 4px;
  letter-spacing: .5px;
  transition: background .25s, transform .2s, box-shadow .25s;
  border: none;
  cursor: pointer;
}

.btn-gold:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240, 180, 41, .35);
}

.btn-outline {
  display: inline-block;
  border: 2px solid var(--white);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  padding: 11px 28px;
  border-radius: 4px;
  letter-spacing: .5px;
  transition: all .25s;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.full-width {
  width: 100%;
}

/* ─── SECTION COMMON ─── */
.section-pad {
  padding: 90px 0;
}

.dark-bg {
  background: var(--navy);
}

.section-tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.22;
  margin-bottom: 16px;
  letter-spacing: -.3px;
}

.section-title.white {
  color: var(--white);
}

.section-sub {
  color: var(--muted);
  font-size: 16px;
  max-width: 560px;
}

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

.section-head .section-sub {
  margin: 0 auto;
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--navy);
  padding: 0 20px;
  transition: box-shadow .3s, padding .3s;
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, .5);
}

.nav-container {
  max-width: 1380px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0px;
  text-decoration: none;
}

.nav-brand-name {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: .5px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.nav-links a {
  color: rgba(255, 255, 255, .85);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 3px;
  letter-spacing: .3px;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  margin-left: 10px;
  font-size: 13px;
  padding: 10px 22px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: .3s;
}

/* ─── HERO STATIC ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  margin-top: 72px;
  display: flex;
  flex-direction: column;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('assets/bg.png') center center / cover no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(6, 14, 30, .97) 0%, rgba(6, 14, 30, .88) 48%, rgba(6, 14, 30, .30) 100%);
}

/* Gold left accent bar */
.hero-overlay::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--gold);
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 48px;
  padding-bottom: 100px;
  /* space for stats bar */
}

/* CENTERED CONTENT */
.hero-left {
  flex: 0 0 100%;
  max-width: 1000px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 18px;
  letter-spacing: -.5px;
}

.hero-heading-gold {
  color: var(--gold);
  display: block;
}

.hero-location {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 18px;
  letter-spacing: .3px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  width: 100%;
  text-align: center;
}

.hero-desc {
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 900px;
  text-align: center;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-hero-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 26px;
  border-radius: 4px;
  letter-spacing: .3px;
  transition: background .25s, transform .2s, box-shadow .25s;
  border: 2px solid var(--gold);
}

.btn-hero-gold:hover {
  background: var(--gold2);
  border-color: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240, 180, 41, .4);
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255, 255, 255, .55);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 26px;
  border-radius: 4px;
  letter-spacing: .3px;
  transition: all .25s;
}

.btn-hero-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-icon {
  font-size: 16px;
}

/* RIGHT — hidden */
.hero-right {
  display: none;
}

.hero-logo-mark {
  display: none;
}

/* ─── HERO STATS BAR ─── */
.hero-stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  align-items: stretch;
  background: rgba(6, 14, 30, 0.90);
  border-top: 2px solid rgba(240, 180, 41, .3);
  backdrop-filter: blur(8px);
}

.hero-stat {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  transition: background .25s;
}

.hero-stat:hover {
  background: rgba(240, 180, 41, .06);
}

.hstat-icon {
  font-size: 26px;
  color: var(--gold);
  flex-shrink: 0;
}

.hero-stat div strong {
  display: block;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
}

.hero-stat div span {
  color: rgba(255, 255, 255, .55);
  font-size: 12px;
}

.hstat-divider {
  width: 1px;
  background: rgba(255, 255, 255, .1);
  align-self: stretch;
  margin: 12px 0;
}

/* Hero Badges — kept for compat, hidden now */
.hero-badges {
  display: none;
}

.badge {
  display: none;
}


/* ─── ABOUT ─── */
.about {
  background: var(--offwhite);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 20px 20px 0 var(--gold);
}

.about-badge-box {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--navy);
  color: var(--white);
  padding: 22px 28px;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .25);
}

.about-badge-box strong {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.about-badge-box span {
  font-size: 13px;
  color: var(--light);
}

.about-content {
  padding-left: 20px;
}

.about-content p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-list {
  list-style: none;
  margin-bottom: 32px;
}

.about-list li {
  padding: 8px 0;
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, .07);
}

/* ─── SERVICES ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.services-grid-3 {
  grid-template-columns: repeat(3, 1fr) !important;
}

/* Category wrapper */
.svc-category {
  margin-bottom: 60px;
}

/* Category header row */
.svc-cat-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
  padding: 22px 28px;
  background: rgba(240, 180, 41, .06);
  border-left: 4px solid var(--gold);
  border-radius: 0 6px 6px 0;
}

.svc-cat-icon {
  width: 56px;
  height: 56px;
  background: rgba(240, 180, 41, .15);
  border: 1px solid rgba(240, 180, 41, .4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.svc-cat-title {
  font-family: 'Poppins', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
}

.svc-cat-desc {
  color: rgba(255, 255, 255, .6);
  font-size: 13.5px;
  line-height: 1.7;
}

/* Premium card */
.service-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 10px;
  padding: 30px 24px 26px;
  text-align: left;
  transition: background .3s, transform .3s, border-color .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity .3s;
}

.service-card:hover {
  background: rgba(240, 180, 41, .07);
  border-color: rgba(240, 180, 41, .45);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .3), 0 0 0 1px rgba(240, 180, 41, .15);
}

.service-card:hover::before {
  opacity: 1;
}

/* SVG icon wrapper */
.svc-icon-wrap {
  width: 50px;
  height: 50px;
  background: rgba(240, 180, 41, .12);
  border: 1px solid rgba(240, 180, 41, .3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 18px;
  transition: background .3s, box-shadow .3s;
}

.service-card:hover .svc-icon-wrap {
  background: rgba(240, 180, 41, .22);
  box-shadow: 0 0 20px rgba(240, 180, 41, .25);
}

/* Legacy emoji icon */
.svc-icon {
  font-size: 40px;
  margin-bottom: 18px;
}

.service-card h3,
.service-card h4 {
  color: var(--white);
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.35;
}

.service-card p {
  color: rgba(170, 187, 204, .85);
  font-size: 13.5px;
  line-height: 1.75;
  margin-bottom: 18px;
}

.learn-more {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap .2s, letter-spacing .2s;
}

.learn-more:hover {
  gap: 8px;
  letter-spacing: .3px;
}

/* CTA row */
.svc-cta {
  text-align: center;
  margin-top: 20px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

/* ─── STATS ─── */
.stats-bar {
  background: var(--gold);
  padding: 48px 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat strong {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  color: var(--navy);
  font-weight: 800;
  line-height: 1;
}

.stat span {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
}

.stat p {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy2);
  margin-top: 6px;
  letter-spacing: .5px;
}

/* ─── TESTIMONIALS ─── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testi-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 6px;
  padding: 36px 30px;
  position: relative;
  transition: border-color .3s, transform .3s;
}

.testi-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.quote-icon {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  color: var(--gold);
  line-height: .8;
  margin-bottom: 16px;
}

.testi-card p {
  color: var(--light);
  font-size: 14.5px;
  line-height: 1.8;
  margin-bottom: 28px;
  font-family: 'Poppins', sans-serif;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-author strong {
  display: block;
  color: var(--white);
  font-size: 14px;
}

.testi-author span {
  color: var(--gold);
  font-size: 12px;
}

/* ─── BLOG ─── */
.blog {
  background: var(--offwhite);
}

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

.blog-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
  transition: transform .3s, box-shadow .3s;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .15);
}

.blog-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.blog-cat {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 2px;
}

.blog-body {
  padding: 24px;
}

.blog-meta {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 10px;
}

.blog-body h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 16px;
}

/* ─── CONTACT ─── */
.contact {}

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

.contact-info {
  padding-top: 8px;
}

.contact-list {
  list-style: none;
  margin: 28px 0;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--light);
  font-size: 15px;
  margin-bottom: 18px;
}

.contact-list li span {
  font-size: 20px;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .2);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, background .2s;
}

.social-links a:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy);
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .15);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 4px;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  margin-bottom: 16px;
  outline: none;
  transition: border-color .25s;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, .4);
}

.form-input:focus {
  border-color: var(--gold);
}

textarea.form-input {
  resize: vertical;
}

/* ─── FOOTER ─── */
.footer {
  background: #060f1e;
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-heading {
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--light);
  font-size: 14px;
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.news-form {
  display: flex;
  gap: 8px;
}

.news-input {
  flex: 1;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .15);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 13px;
  font-family: 'Raleway', sans-serif;
  outline: none;
}

.news-input::placeholder {
  color: rgba(255, 255, 255, .35);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  text-align: center;
  padding: 22px;
  color: var(--light);
  font-size: 13px;
}

/* ─── SCROLL TO TOP ─── */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  border: none;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(240, 180, 41, .4);
  transition: transform .25s, opacity .3s;
  opacity: 0;
  pointer-events: none;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

.scroll-top:hover {
  transform: translateY(-3px);
}

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .65s ease, transform .65s ease;
}

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

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid-3 {
    grid-template-columns: repeat(2, 1fr) !important;
  }

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

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

  .about-img-wrap {
    max-width: 480px;
    margin: 0 auto;
  }

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

@media (max-width: 768px) {
  .nav-container {
    justify-content: space-between;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 20px;
    gap: 4px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 10px 14px;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero mobile */
  .hero {
    height: auto;
    min-height: 100vh;
  }

  .hero-inner {
    flex-direction: column;
    padding: 60px 24px 60px;
    gap: 24px;
  }

  .hero-left {
    flex: none;
    width: 100%;
  }

  .hero-right {
    display: none;
  }

  .hero-stats-bar {
    flex-wrap: wrap;
  }

  .hero-stat {
    flex: 0 0 50%;
    min-width: 50%;
    padding: 14px 16px;
  }

  .hstat-divider {
    display: none;
  }

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

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

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

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

  .about-badge-box {
    right: 0;
    bottom: -16px;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-stat {
    flex: 0 0 100%;
  }
}

/* ── SERVICES PAGE THEMES ── */

.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  color: var(--white);
  padding: 150px 20px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--gold);
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(240, 180, 41, 0.07) 0%, transparent 50%);
  pointer-events: none;
}

.page-header h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 20px;
  color: var(--gold);
  position: relative;
  z-index: 2;
  font-weight: 700;
  letter-spacing: -.5px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.3;
}

.page-header p {
  font-size: clamp(15px, 1.8vw, 17px);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  color: var(--light);
  position: relative;
  z-index: 2;
}

.service-section {
  padding: 90px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-section h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.service-section>p.intro {
  font-size: 1.15rem;
  margin-bottom: 50px;
  max-width: 800px;
  line-height: 1.8;
}

/* Dark Theme (Default for service-section) */
.service-section.theme-dark {
  background: var(--navy);
  color: var(--white);
}

.service-section.theme-dark h2 {
  color: var(--white);
}

.service-section.theme-dark>p.intro {
  color: var(--light);
}

.service-section.theme-dark .why-choose-list {
  color: var(--light);
}

.service-section.theme-dark .theme-heading {
  color: var(--white);
}

/* Light Theme */
.service-section.theme-light {
  background: var(--offwhite);
  color: var(--text);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-section.theme-light h2 {
  color: var(--navy);
}

.service-section.theme-light>p.intro {
  color: var(--text);
}

.service-section.theme-light .why-choose-list {
  color: var(--text);
}

.service-section.theme-light .theme-heading {
  color: var(--navy);
}

/* Service Card Overrides for Light Theme */
.theme-light .service-card.svc-premium {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.theme-light .service-card.svc-premium:hover {
  background: #ffffff;
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(240, 180, 41, 0.15);
}

.theme-light .service-card h3,
.theme-light .service-card h4 {
  color: var(--navy);
}

.theme-light .service-card p {
  color: var(--text);
}

.theme-light .service-card ul {
  color: var(--text);
}

.theme-light .svc-icon-wrap {
  background: rgba(240, 180, 41, 0.1);
  border-color: rgba(240, 180, 41, 0.4);
}

.service-card ul {
  margin-bottom: 18px;
  padding-left: 20px;
  color: rgba(170, 187, 204, .85);
  font-size: 13.5px;
  line-height: 1.75;
}

.service-card li {
  margin-bottom: 8px;
}

/* FAQ */
.faq-item {
  margin-bottom: 24px;
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid var(--gold);
  transition: transform 0.3s, background 0.3s;
}

.theme-dark .faq-item {
  background: rgba(255, 255, 255, 0.03);
}

.theme-dark .faq-item:hover {
  transform: translateX(5px);
  background: rgba(240, 180, 41, 0.05);
}

.theme-dark .faq-item h3 {
  color: var(--white);
}

.theme-dark .faq-item p {
  color: var(--light);
}

.theme-light .faq-item {
  background: #ffffff;
  padding-left: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.theme-light .faq-item:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  background: #ffffff;
}

.theme-light .faq-item h3 {
  color: var(--navy);
}

.theme-light .faq-item p {
  color: var(--text);
}

/* Diff Table */
.diff-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.diff-table th,
.diff-table td {
  padding: 18px;
  text-align: left;
}

.theme-dark .diff-table th,
.theme-dark .diff-table td {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.theme-dark .diff-table th {
  background: rgba(240, 180, 41, 0.15);
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
}

.theme-dark .diff-table td {
  color: var(--light);
  background: rgba(255, 255, 255, 0.02);
  font-size: 1.05rem;
}

.theme-dark .diff-table tr:hover td {
  background: rgba(255, 255, 255, 0.05);
}

.theme-light .diff-table {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.theme-light .diff-table th,
.theme-light .diff-table td {
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.theme-light .diff-table th {
  background: rgba(240, 180, 41, 0.1);
  color: var(--navy);
  font-weight: 700;
  font-size: 1.1rem;
}

.theme-light .diff-table td {
  color: var(--text);
  background: #ffffff;
  font-size: 1.05rem;
}

.theme-light .diff-table tr:hover td {
  background: #fafafa;
}

.why-choose-list {
  line-height: 1.8;
  margin-left: 20px;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.why-choose-list li {
  margin-bottom: 12px;
}

.why-choose-list li strong {
  color: var(--gold);
}

/* =====================================================
   SINGLE SERVICE PAGES LAYOUTS
   ===================================================== */

.service-detail-grid {
  display: grid;
  grid-template-columns: 2.2fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.service-main-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 40px;
  margin-bottom: 20px;
}

.theme-dark .service-main-content h3 {
  color: var(--white);
}

.service-main-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 20px;
}

.theme-dark .service-main-content p {
  color: var(--light);
}

/* Process Timeline */
.process-timeline {
  position: relative;
  margin: 40px 0;
  padding-left: 30px;
  border-left: 2px solid rgba(240, 180, 41, 0.3);
}

.process-step {
  position: relative;
  margin-bottom: 30px;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-step::before {
  content: '';
  position: absolute;
  left: -37px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--navy);
  transition: transform 0.25s;
}

.theme-light .process-step::before {
  border-color: var(--white);
}

.process-step:hover::before {
  transform: scale(1.3);
}

.process-step-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.theme-dark .process-step-title {
  color: var(--white);
}

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

.theme-dark .process-step-desc {
  color: var(--light);
}

/* Checkmark List */
.checkmark-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px;
}

.checkmark-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  line-height: 1.6;
  font-size: 15px;
  color: var(--text);
}

.theme-dark .checkmark-list li {
  color: var(--light);
}

.checkmark-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 900;
  font-size: 16px;
}

/* Sidebar Card */
.sidebar-card {
  background: var(--navy);
  border: 1px solid rgba(240, 180, 41, 0.2);
  border-radius: 8px;
  padding: 30px;
  color: var(--white);
  position: sticky;
  top: 100px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  margin-top: 20px;
}

.sidebar-card h3 {
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
}

.sidebar-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.sidebar-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 0.95rem;
  color: var(--light);
}

.sidebar-card li strong {
  color: var(--white);
  min-width: 110px;
}

@media (max-width: 992px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sidebar-card {
    position: static;
  }
}

/* =====================================================
   PAGE HEADER (Inner page hero banner)
   ===================================================== */
.page-header {
  background: var(--navy);
  background-image: linear-gradient(135deg, #0a1628 0%, #0f2040 60%, #1a3255 100%);
  color: var(--white);
  padding: 150px 20px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(240, 180, 41, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-header p {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.8;
  color: var(--light);
}

/* Page header breadcrumb */
.page-breadcrumb {
  font-size: 0.85rem;
  color: var(--light);
  margin-bottom: 16px;
  opacity: 0.75;
}

.page-breadcrumb a {
  color: var(--gold);
}

/* =====================================================
   SERVICE SECTION WRAPPERS
   ===================================================== */
.service-section {
  padding: 90px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.service-section.theme-light {
  background: var(--offwhite);
  border-bottom: 1px solid #e8ecf0;
}

.service-section.theme-light .service-main-content h3,
.service-section.theme-light .service-main-content h2 {
  color: var(--navy);
}

.service-section.theme-dark {
  background: var(--navy);
}

.service-section.theme-dark h2,
.service-section.theme-dark h3 {
  color: var(--white);
}

.service-section.theme-dark h2.text-center {
  color: var(--gold);
}

/* service-section alt (white bg) */
.service-section.theme-white {
  background: var(--white);
  border-bottom: 1px solid #edf0f4;
}

/* =====================================================
   SERVICE CARD — svc-premium variant
   ===================================================== */
.services-grid {
  display: grid;
  gap: 28px;
}

.services-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

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

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(240, 180, 41, 0.12);
  border-radius: 12px;
  padding: 30px 28px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.2);
  border-color: rgba(240, 180, 41, 0.35);
}

.service-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--light);
  line-height: 1.7;
}

.svc-premium {
  background: rgba(255, 255, 255, 0.04);
}

.svc-icon-wrap {
  width: 54px;
  height: 54px;
  background: rgba(240, 180, 41, 0.1);
  border: 1px solid rgba(240, 180, 41, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--gold);
  transition: background 0.3s;
}

.service-card:hover .svc-icon-wrap {
  background: rgba(240, 180, 41, 0.2);
}

/* theme-light service cards */
.theme-light .service-card {
  background: var(--white);
  border: 1px solid #e8ecf0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.theme-light .service-card h4 {
  color: var(--navy);
}

.theme-light .service-card p {
  color: var(--text);
}

.theme-light .svc-icon-wrap {
  background: rgba(240, 180, 41, 0.1);
  border-color: rgba(240, 180, 41, 0.3);
}

/* =====================================================
   FAQ SECTION
   ===================================================== */
.faq-item {
  border-bottom: 1px solid #e0e6ef;
  padding: 28px 20px;
}

.faq-item:first-of-type {
  border-top: 1px solid #e0e6ef;
}

.faq-item h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.4;
}

.faq-item p {
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.8;
}

/* =====================================================
   HERO BUTTON VARIANTS (used in CTAs on service pages)
   ===================================================== */
.btn-hero-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 36px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(240, 180, 41, 0.3);
}

.btn-hero-gold:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(240, 180, 41, 0.45);
}

.btn-hero-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 34px;
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  letter-spacing: 0.5px;
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
}

.btn-hero-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.hero-btns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* =====================================================
   UTILITY CLASSES
   ===================================================== */
.full-width {
  display: block;
  width: 100%;
  text-align: center;
}

/* =====================================================
   RESPONSIVE — Global & Service Pages
   ===================================================== */
/* Premium Category Hero Images for Services */
.cat-hero-img {
  width: 100%;
  height: 320px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  margin-top: 30px;
  margin-bottom: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.theme-dark .cat-hero-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 22, 40, 0.4) 0%, rgba(10, 22, 40, 0.05) 100%);
  z-index: 1;
  pointer-events: none;
}

.theme-light .cat-hero-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Center Align Layouts for Service Sections */
.service-section h2,
.service-section p.intro,
.svc-cat-title,
.svc-cat-desc {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.svc-cat-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.svc-cat-icon {
  margin-right: 0;
  margin-bottom: 16px;
}

/* How We Differ Table */
.diff-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.diff-table th, .diff-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  text-align: left;
}

.diff-table th {
  background-color: var(--navy);
  color: var(--gold);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
}

.diff-table tbody tr:last-child td {
  border-bottom: none;
}

/* --- Media Queries --- */

@media (max-width: 992px) {
  .services-grid-3,
  .about-grid,
  .testi-grid,
  .blog-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .service-section {
    padding: 70px 20px;
  }
}

@media (max-width: 768px) {
  .about-grid,
  .testi-grid,
  .blog-grid,
  .contact-wrapper,
  .footer-grid,
  .locations-grid,
  .services-grid,
  .services-grid-2,
  .services-grid-3,
  .services-grid-4 {
    grid-template-columns: 1fr !important;
  }

  .cat-hero-img {
    height: 200px;
    margin-top: 20px;
    margin-bottom: 30px;
  }

  /* Responsive Hero Stats Bar */
  .hero-stats-bar {
    flex-direction: column;
    position: static;
  }
  .hero-stat {
    padding: 16px 20px;
  }
  .hstat-divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }

  /* Responsive Table */
  .diff-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  /* Make sure all global heading sizes are responsive on inner pages */
  h1, .hero-heading, .page-header h1 {
    font-size: clamp(2rem, 8vw, 2.5rem) !important;
    line-height: 1.2 !important;
    word-wrap: break-word;
  }

  h2, .section-title, .service-section h2 {
    font-size: clamp(1.8rem, 6vw, 2.2rem) !important;
    line-height: 1.3 !important;
    word-wrap: break-word;
  }

  h3, .svc-cat-title, .service-card h4 {
    font-size: clamp(1.2rem, 5vw, 1.4rem) !important;
    line-height: 1.4 !important;
    word-wrap: break-word;
  }
  
  h4, h5, h6 {
    word-wrap: break-word;
  }

  p, .hero-desc, .section-sub, .intro, .svc-cat-desc, .service-card p {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    word-wrap: break-word;
  }
}

@media (max-width: 600px) {
  .page-header {
    padding: 120px 20px 70px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-hero-gold,
  .btn-hero-outline {
    text-align: center;
    width: 100%;
  }
}