/* Inter (Body) + Playfair Display (Headings) — professional pairing */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600&family=Outfit:wght@400;500;600;700&display=swap');

:root {
  --color-navy: #0f172a;
  --color-navy-light: #1e293b;
  --color-gold: #d97706;
  --color-gold-dark: #b45309;
  --color-text: #1e293b;
  --color-gray: #64748b;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--color-text);
  background: #fff;
  line-height: 1.6;
  width: 100%;
  min-height: 100vh;
}

/* Global heading font */
h1,
h2,
h3,
h4,
h5,
h6,
.font-display {
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.01em;
}

/* ── NAV ── */
/* Nav styles have been replaced by Tailwind utility classes in HTML */

/* ── ANIMATIONS ── */
.anim {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim.from-left {
  transform: translateX(-28px);
}

.anim.from-right {
  transform: translateX(28px);
}

.anim.in {
  opacity: 1;
  transform: translate(0);
}

/* ── GOLD DIVIDER ── */
.gold-bar {
  width: 48px;
  height: 3px;
  background: var(--color-gold);
  border-radius: 2px;
}

.gold-bar.center {
  margin: 0 auto;
}

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: #fff;
  padding: 14px 32px;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: clamp(14px, 1.1vw, 16px);
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(201, 169, 110, 0.35);
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201, 169, 110, 0.45);
}

.btn-navy {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  background: var(--color-navy);
  color: #fff;
  padding: 14px 32px;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: clamp(14px, 1.1vw, 16px);
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(12, 31, 63, 0.25);
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.btn-navy:hover {
  background: var(--color-navy-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(12, 31, 63, 0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: clamp(14px, 1.1vw, 16px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ── HERO ── */
/* Hero styles have been replaced by Tailwind utility classes in HTML */

/* ── STICKY HERO SCROLL SYSTEM (Deloitte-style) ── */
/* page-content wraps everything after the hero and sits on top */
.page-content {
  position: relative;
  z-index: 2;
  /* First section gets a top shadow so it "lifts" over the hero */
}

.page-content>section:first-child,
.page-content>.section:first-child {
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.18);
}

/* ── SECTIONS — Restored comfortable spacing ── */
.section {
  padding: clamp(48px, 8vw, 96px) clamp(16px, 4vw, 24px);
  width: 100%;
  max-width: 100vw;
}

.section-cream {
  background: #fdfbf7;
}

.section-pale-gold {
  background: #faf6ee;
}

.section-white {
  background: #fff;
}

.section-navy {
  background: var(--color-navy);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding-inline: clamp(12px, 3vw, 24px);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .eyebrow {
  color: var(--color-gold);
  font-size: clamp(10px, 1vw, 12px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: clamp(1.5px, 0.3vw, 3px);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(28px, 3vw, 40px);
  color: var(--color-navy);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--color-gray);
  font-size: clamp(14px, 1.3vw, 17px);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── BRAND STATEMENT SECTION (Sticky) ── */
#brand-statement {
  position: sticky;
  top: 0;
  z-index: 2;
  height: 100vh;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

/* Ambient Gold Glows */
.bs-glow-1,
.bs-glow-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}

.bs-glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.4), transparent 70%);
  top: -200px;
  right: -100px;
  animation: drift 15s ease-in-out infinite alternate;
}

.bs-glow-2 {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.25), transparent 70%);
  bottom: -300px;
  left: -200px;
  animation: drift 20s ease-in-out infinite alternate-reverse;
}

@keyframes drift {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(-100px, 50px) scale(1.1);
  }
}

.bs-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 24px;
}

.bs-body {
  font-size: clamp(16px, 1.5vw, 20px);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 650px;
  margin-inline: auto;
  font-weight: 300;
}

/* ── SERVICE CARDS ── */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 2vw, 24px);
}
@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 2vw, 24px);
}
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid #f0ede8;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s, border-color 0.35s;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 48px rgba(12, 31, 63, 0.15);
  border-color: rgba(217, 119, 6, 0.4);
}

.service-card .icon-wrap {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.3s;
}

.service-card .icon-wrap::before {
  content: "";
  position: absolute;
  top: -6px; left: -6px; right: -6px; bottom: -6px;
  border: 1px dashed rgba(217, 119, 6, 0.4);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s;
  animation: spin 8s linear infinite;
  pointer-events: none;
}

.service-card .icon-wrap::after {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  margin-left: -2px;
  width: 4px;
  height: 4px;
  background: var(--color-gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--color-gold);
  opacity: 0;
  transition: opacity 0.3s;
  transform-origin: 50% 32px;
  animation: spin 3s linear infinite;
  pointer-events: none;
}

.service-card:hover .icon-wrap::before,
.service-card:hover .icon-wrap::after {
  opacity: 1;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Loader Styles */
.loader-spinner {
  width: 64px;
  height: 64px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--color-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.loader-logo {
  position: absolute;
  width: 28px;
  height: auto;
}

.service-card:hover .icon-wrap {
  transform: scale(1.1);
}

.service-card h3 {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--color-navy);
  margin-bottom: 12px;
  transition: color 0.2s;
}

.service-card:hover h3 {
  color: #2d5fa8;
}

.service-card p {
  color: var(--color-gray);
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 1.6;
}

.service-card .learn-more {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--color-gold);
  font-size: 14px;
  font-weight: 700;
  margin-top: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover .learn-more {
  opacity: 1;
}

/* ── ABOUT SECTION ── */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(380px, 100%), 1fr));
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.dark-card {
  background: var(--color-navy);
  border-radius: 28px;
  padding: clamp(24px, 4vw, 40px);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.dark-card .glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.15), transparent);
  transform: translate(30%, -30%);
  pointer-events: none;
}

.dark-card .eyebrow {
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.dark-card h3 {
  font-size: clamp(20px, 2vw, 24px);
  margin-bottom: 8px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.check-item .check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-item strong {
  color: #fff;
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 600;
  display: block;
}

.check-item span {
  color: rgba(180, 210, 240, 0.8);
  font-size: 14px;
}

.about-right .eyebrow {
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.about-right h2 {
  font-size: clamp(24px, 3vw, 38px);
  color: var(--color-navy);
  line-height: 1.15;
  margin-bottom: 16px;
}

.about-right p {
  color: var(--color-gray);
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ── TESTIMONIALS ── */
.testimonial-card {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid #f0ede8;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 16px 40px rgba(12, 31, 63, 0.12);
  border-color: rgba(217, 119, 6, 0.3);
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}

.star {
  color: var(--color-gold);
  font-size: 14px;
}

.testimonial-card blockquote {
  color: var(--color-gray);
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid #f0ede8;
}

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

.author-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-navy);
}

.author-role {
  font-size: 13px;
  color: #9ca3af;
}

/* ── BLOG CARDS ── */
.blog-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #f0ede8;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s, border-color 0.35s;
}

.blog-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 48px rgba(12, 31, 63, 0.12);
  border-color: rgba(217, 119, 6, 0.3);
}

.blog-card-top {
  height: 6px;
  background: linear-gradient(90deg, var(--color-navy), #2d5fa8);
}

.blog-card-body {
  padding: 28px;
}

.blog-tag {
  display: inline-flex;
  background: #eff6ff;
  color: #2d5fa8;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.blog-card h3 {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--color-navy);
  line-height: 1.4;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.blog-card:hover h3 {
  color: #2d5fa8;
}

.blog-card p {
  color: var(--color-gray);
  font-size: clamp(13px, 1vw, 14px);
  line-height: 1.7;
  margin-bottom: 20px;
}

.blog-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid #f0ede8;
}

.blog-date {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #9ca3af;
  font-size: 13px;
  font-weight: 500;
}

.blog-read {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--color-gold);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

/* ── CONTACT SECTION ── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(360px, 100%), 1fr));
  gap: clamp(24px, 4vw, 48px);
}

.contact-info {
  background: var(--color-navy);
  border-radius: 24px;
  padding: clamp(24px, 3vw, 36px);
  color: #fff;
}

.contact-info h3 {
  font-size: clamp(20px, 2vw, 26px);
  margin-bottom: 28px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  background: rgba(201, 169, 110, 0.2);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-row .lbl {
  color: rgba(180, 210, 240, 0.6);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.contact-row .val {
  color: #fff;
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 500;
  line-height: 1.5;
}

.contact-form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 36px;
  border: 1px solid #f0ede8;
}

.contact-form-wrap h3 {
  font-size: 26px;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  color: var(--color-text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
  background: #fff;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 16px;
}

/* ── FOOTER ── */
footer {
  background: linear-gradient(rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.4)), url('global-map.png') center center / cover no-repeat;
  color: #fff;
  padding: clamp(40px, 6vw, 64px) clamp(16px, 4vw, 24px) clamp(24px, 4vw, 40px);
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 3vw, 40px);
  margin-bottom: 48px;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.25fr 2.5fr 1fr 1.25fr;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.footer-logo .name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}

.footer-logo .llp {
  font-size: 9px;
  color: var(--color-gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
}

.footer-desc {
  color: rgba(180, 210, 240, 0.7);
  font-size: 15px;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #fff;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a,
.footer-col ul li button {
  color: rgba(180, 210, 240, 0.7);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}

.footer-col ul li a:hover,
.footer-col ul li button:hover {
  color: var(--color-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: clamp(20px, 3vw, 32px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: rgba(180, 210, 240, 0.5);
  font-size: clamp(12px, 1vw, 14px);
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #16a34a;
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  z-index: 50;
  box-shadow: 0 4px 20px rgba(22, 163, 74, 0.4);
  animation: wa-pulse 2.5s ease-in-out infinite;
  transition: transform 0.3s, background 0.3s;
  overflow: hidden;
  padding: 0;
}

.wa-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wa-float:hover {
  background: #15803d;
  transform: scale(1.1) translateY(-2px);
}

@keyframes wa-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.4);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(22, 163, 74, 0);
  }
}

/* ── MAP ── */
.map-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  margin-top: 24px;
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 31, 63, 0.6);
  backdrop-filter: blur(4px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: #fff;
  border-radius: 24px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.modal-close {
  background: none;
  border: none;
  cursor: pointer;
  color: #9ca3af;
  padding: 4px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.modal-close:hover {
  color: #374151;
  background: #f3f4f6;
}

/* ── CONTACT CTA HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 50%, #2d5fa8 100%);
  padding: 120px 24px 80px;
  text-align: center;
}

.page-hero .eyebrow {
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
  font-family: 'Outfit', sans-serif;
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  color: #fff;
  margin-bottom: 16px;
}

.page-hero h1 .gold {
  color: var(--color-gold);
}

.page-hero p {
  color: rgba(180, 210, 240, 0.9);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--color-navy), #2d5fa8);
  padding: 80px 24px;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(28px, 4vw, 40px);
  color: #fff;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(180, 210, 240, 0.9);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-btns {
  display: flex;
  gap: clamp(10px, 1.5vw, 16px);
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BLOG PAGE ── */
.search-row {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 16px);
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.search-box {
  position: relative;
  flex: 1;
  min-width: 220px;
  max-width: 380px;
}

.search-box input {
  width: 100%;
  padding: 12px 16px 12px 40px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  background: #fafafa;
}

.search-box input:focus {
  border-color: var(--color-gold);
  background: #fff;
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
}

.filter-tags {
  display: flex;
  gap: clamp(6px, 0.8vw, 8px);
  flex-wrap: wrap;
}

.filter-tag {
  padding: 8px 18px;
  border-radius: 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-tag:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.filter-tag.active {
  background: var(--color-navy);
  color: #fff;
  border-color: var(--color-navy);
}

/* ── SERVICES PAGE ── */
.service-section {
  padding: 80px 24px;
}

.service-section:nth-child(odd) {
  background: #fdfbf7;
}

.service-section:nth-child(even) {
  background: #fff;
}

.service-section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}

.service-section-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-section-header h2 {
  font-size: clamp(24px, 3vw, 34px);
  color: var(--color-navy);
}

.check-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid #f0ede8;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.check-list li:hover {
  border-color: var(--color-gold);
  box-shadow: 0 4px 16px rgba(12, 31, 63, 0.07);
}

.check-list .chk {
  color: #16a34a;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-list span {
  font-size: 15px;
  color: #374151;
  font-weight: 500;
  line-height: 1.5;
}

.restructure-box {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border: 1px solid #bfdbfe;
  border-radius: 20px;
  padding: 32px;
}

.restructure-box h3 {
  font-size: 24px;
  color: var(--color-navy);
  margin-bottom: 20px;
}

.restructure-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #374151;
  font-weight: 500;
  font-size: 15px;
}

/* ── DARK THEME OVERRIDES (.section-navy) ── */
.section-navy .section-header h2 {
  color: #fff;
}

.section-navy .section-header p {
  color: rgba(180, 210, 240, 0.7);
}

.section-navy .service-card,
.section-navy .testimonial-card,
.section-navy .blog-card,
.section-navy .contact-form-wrap {
  background: var(--color-navy-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.section-navy .service-card:hover,
.section-navy .testimonial-card:hover,
.section-navy .blog-card:hover {
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(217, 119, 6, 0.5);
}

.section-navy .service-card h3,
.section-navy .blog-card h3 {
  color: #fff;
}

.section-navy .service-card:hover h3,
.section-navy .blog-card:hover h3 {
  color: var(--color-gold);
}

.section-navy .service-card p,
.section-navy .blog-card p,
.section-navy .testimonial-card blockquote {
  color: rgba(180, 210, 240, 0.7);
}

.section-navy .testimonial-author .author-name {
  color: #fff;
}

.section-navy .blog-card-foot,
.section-navy .testimonial-author {
  border-color: rgba(255, 255, 255, 0.08);
}

.section-navy .contact-form-wrap h3 {
  color: #fff;
}

.section-navy .form-group label {
  color: rgba(180, 210, 240, 0.8);
}

.section-navy .form-group input,
.section-navy .form-group textarea,
.section-navy .form-group select {
  background: var(--color-navy);
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.section-navy .form-group input:focus,
.section-navy .form-group textarea:focus,
.section-navy .form-group select:focus {
  border-color: var(--color-gold);
  background: var(--color-navy);
}

.section-navy .contact-info {
  background: var(--color-navy-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── BLOG POST DARK THEME (.blog-post-content) ── */
.blog-post-content {
  max-width: 860px;
  margin: 40px auto 60px;
  padding: 64px 56px;
  color: rgba(180, 210, 240, 0.85);
  line-height: 1.85;
  font-size: 17px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.blog-post-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  color: #fff;
  margin: 56px 0 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-post-content h2:first-child {
  margin-top: 0;
  border-bottom: none;
  font-size: 32px;
  color: var(--color-gold);
}

.blog-post-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  color: #fff;
  margin: 40px 0 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-post-content h3::before {
  content: "";
  display: block;
  width: 12px;
  height: 2px;
  background: var(--color-gold);
}

.blog-post-content p {
  margin-bottom: 24px;
}

.blog-post-content p strong {
  color: #fff;
}

.blog-post-content ul,
.blog-post-content ol {
  margin-left: 0;
  margin-bottom: 32px;
  padding-left: 12px;
  list-style-type: none;
}

.blog-post-content li {
  margin-bottom: 16px;
  position: relative;
  padding-left: 20px;
}

.blog-post-content li::before {
  content: "✦";
  color: var(--color-gold);
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .blog-post-content {
    padding: 40px 24px;
  }
}

.page-hero {
  background: var(--color-navy);
}

/* ── SERVICES PAGE DARK THEME OVERRIDES ── */
.service-section {
  background: var(--color-navy) !important;
}

.service-section:nth-child(even) {
  background: #0b1222 !important;
}

.service-section-header h2 {
  color: #fff !important;
  font-family: 'Outfit', sans-serif;
}

.check-list li {
  background: rgba(255, 255, 255, 0.03) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

.check-list li:hover {
  border-color: var(--color-gold) !important;
  background: rgba(255, 255, 255, 0.06) !important;
}

.check-list span {
  color: #fff !important;
}

.restructure-box {
  background: rgba(255, 255, 255, 0.03) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

.restructure-box h3 {
  color: #fff !important;
  font-family: 'Outfit', sans-serif;
}

.restructure-item {
  color: rgba(180, 210, 240, 0.9) !important;
}

/* Mute the brightly colored icon backgrounds for dark mode */
.service-section-icon {
  background: rgba(255, 255, 255, 0.05) !important;
}

.service-section-icon svg {
  stroke: var(--color-gold) !important;
}

/* ── ABOUT SECTION DARK THEME OVERRIDES ── */
.section-navy .about-right h2 {
  color: #fff !important;
  font-family: 'Outfit', sans-serif;
}

.section-navy .about-right p {
  color: rgba(180, 210, 240, 0.8) !important;
}

.section-navy .dark-card {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.section-navy .dark-card h3 {
  font-family: 'Outfit', sans-serif;
  color: #fff;
}

/* ── SOFTENED DARK THEME LAYERS ── */
.section-slate {
  background: #1e293b;
}

.section-midnight {
  background: #0b1222;
}

/* Apply dark theme typography overrides to the new softened sections */
.section-slate .about-right h2,
.section-midnight .about-right h2 {
  color: #fff !important;
  font-family: 'Outfit', sans-serif;
}

.section-slate .about-right p,
.section-midnight .about-right p {
  color: rgba(180, 210, 240, 0.8) !important;
}

.section-slate .dark-card,
.section-midnight .dark-card {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.section-slate .dark-card h3,
.section-midnight .dark-card h3 {
  font-family: 'Outfit', sans-serif;
  color: #fff;
}

.section-slate .section-header h2,
.section-midnight .section-header h2 {
  color: #fff;
}

.section-slate .section-header p,
.section-midnight .section-header p {
  color: rgba(180, 210, 240, 0.7);
}

/* Ensure blog cards in the midnight section (Insights) look good */
.section-midnight .blog-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.section-midnight .blog-card h3 {
  color: #fff;
}

.section-midnight .blog-card:hover h3 {
  color: var(--color-gold);
}

.section-midnight .blog-card p {
  color: rgba(180, 210, 240, 0.7);
}

.section-midnight .blog-card-foot {
  border-color: rgba(255, 255, 255, 0.08);
}