/* ═══════════════════════════════════════════
   DraftLegals — Custom Styles
   ═══════════════════════════════════════════ */

/* ─── Font Imports ─── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ─── CSS Variables ─── */
:root {
  --font-serif: 'Playfair Display', georgia, serif;
  --font-sans: 'Inter', -apple-system, blinkmacsystemfont, 'Segoe UI', sans-serif;
  --dl-green-900: #022c22;
  --dl-green-800: #064e3b;
  --dl-green-700: #065f46;
  --dl-green-600: #047857;
  --dl-green-500: #059669;
  --dl-green-400: #10b981;
  --dl-green-100: #d1fae5;
  --dl-green-50: #ecfdf5;
  --dl-gold-600: #a67c2e;
  --dl-gold-500: #c9a84c;
  --dl-gold-400: #d4b85a;
  --dl-gold-300: #e5c96e;
  --dl-gold-200: #f0dca0;
  --dl-gold-100: #f7edcc;
  --dl-gold-50: #fdf8f0;
  --dl-cream: #faf7f2;
  --dl-warm-white: #fefdfb;
  --background: #fefdfb;
  --foreground: #1a1a1a;
  --muted: #f5f0e8;
  --muted-foreground: #6b7280;
  --border: #e5e1d8;
  --card-shadow: 0 1px 3px rgb(6 78 59 / 4%), 0 4px 12px rgb(6 78 59 / 3%);
  --card-shadow-hover: 0 4px 12px rgb(6 78 59 / 8%), 0 8px 24px rgb(201 168 76 / 6%);

  /* Surface & Background */
  --dl-white: #fff;
  --dl-surface-dark: #111b15;
  --dl-surface-darker: #121a16;
  --dl-surface-card: #111b12;
  --dl-surface-hover: #1a2420;
  --dl-surface-hover-alt: #1a2820;
  --dl-surface-accent: #162a1f;
  --dl-surface-accent-alt: #142a1e;
  --dl-surface-client: #0d1b14;
  --dl-green-950: #011811;

  /* Extended Greens */
  --dl-green-300: #4ade80;
  --dl-green-200: #6ee7b7;
  --dl-green-750: #16a34a;
  --dl-green-450: #0e9f6e;

  /* Text colors */
  --dl-text-cream: #e8e4dd;
  --dl-text-muted: #c8c3b9;
  --dl-text-gray: #9ba3af;
}

/* ─── Base Styles ─── */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* Bootstrap 5 inset-0 utility (like Tailwind) */
.inset-0 {
  inset: 0;
}

/* Hover state for back-to-top button inner circle */
.back-to-top button:hover .back-to-top-inner {
  opacity: 1 !important;
}

body {
  overflow-x: hidden;
  background-color: var(--dl-warm-white);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
}

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

/* ─── Custom Scrollbar ─── */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--muted);
}

::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: var(--dl-gold-500);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--dl-gold-600);
}

/* ─── Font Families ─── */
.font-serif {
  font-family: var(--font-serif);
}

.font-sans {
  font-family: var(--font-sans);
}

/* ─── Gold Gradient Text ─── */
.text-gold-gradient {
  background: linear-gradient(135deg, var(--dl-gold-400) 0%, var(--dl-gold-500) 40%, var(--dl-gold-600) 100%);
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Green Gradient Text ─── */
.text-green-gradient {
  background: linear-gradient(135deg, var(--dl-green-400) 0%, var(--dl-green-800) 100%);
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Gold Line Divider ─── */
.gold-line {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--dl-gold-500) 50%, transparent 100%);
}

/* ─── Pattern Overlay ─── */
.bg-pattern {
  background-image: radial-gradient(circle at 1px 1px, rgb(201 168 76 / 7%) 1px, transparent 0);
  background-size: 32px 32px;
}

/* ─── Ornament Divider ─── */
.ornament-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

.ornament-divider .line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(201 168 76 / 38%), transparent);
}

.ornament-divider .diamond {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  background: var(--dl-gold-500);
}

/* ─── Section Underline Decoration ─── */
.section-underline {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 28px;
}

.section-underline .line {
  width: 64px;
  height: 2px;
  border-radius: 9999px;
}

.section-underline .diamond {
  width: 6px;
  height: 6px;
  margin: 0 12px;
  transform: rotate(45deg);
  border-radius: 50%;
}

/* ─── Scroll Progress Bar ─── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  height: 3px;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgb(201 168 76 / 40%);
  background: linear-gradient(90deg, var(--dl-gold-600), var(--dl-gold-400), var(--dl-gold-500));
  pointer-events: none;
}

/* ─── Preloader ─── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  background: var(--dl-green-900);
}

.preloader.hidden {
  opacity: 0;
  pointer-events: none;
}

.preloader-spinner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
}

.outer-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: preloaderSpin 3s linear infinite;
  border: 2px solid transparent;
  border-radius: 50%;
  border-top-color: var(--dl-gold-500);
  border-right-color: var(--dl-gold-400);
}

.inner-ring {
  position: absolute;
  width: 70%;
  height: 70%;
  animation: preloaderSpin 2s linear infinite reverse;
  border: 2px solid transparent;
  border-radius: 50%;
  border-bottom-color: var(--dl-green-400);
  border-left-color: rgb(16 185 129 / 60%);
}

.center-dot {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30%;
  height: 30%;
}

.center-dot div {
  width: 8px;
  height: 8px;
  animation: preloaderPulse 1.5s ease-in-out infinite;
  border-radius: 50%;
  background: var(--dl-gold-400);
}

@keyframes preloaderSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes preloaderPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

.preloader-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 3px rgb(212 184 90 / 30%), 0 0 30px rgb(201 168 76 / 15%);
  background: var(--dl-white);
}

.preloader-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.preloader h2 {
  color: var(--dl-white);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.progress-bar-wrap {
  width: 160px;
  height: 2px;
  overflow: hidden;
  border-radius: 4px;
  background: rgb(255 255 255 / 10%);
}

.progress-bar-fill {
  width: 0;
  height: 100%;
  animation: preloaderProgress 2s ease-in-out infinite;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--dl-gold-600), var(--dl-gold-400));
}

@keyframes preloaderProgress {
  0% {
    width: 0;
    margin-left: 0;
  }

  50% {
    width: 60%;
    margin-left: 20%;
  }

  100% {
    width: 0;
    margin-left: 100%;
  }
}

.progress-text {
  color: rgb(255 255 255 / 40%);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ─── Glass Card ─── */
.glass-card {
  border: 1px solid rgb(255 255 255 / 12%);
  background: rgb(255 255 255 / 6%);
  backdrop-filter: blur(12px);
}

/* ─── Shadow Cards ─── */
.shadow-card {
  box-shadow: var(--card-shadow);
}

.shadow-card-hover:hover {
  box-shadow: var(--card-shadow-hover);
}

/* ─── Navbar ─── */
.navbar-draftlegals {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  padding: 0;
  transition: all 0.5s ease;
}

.navbar-inner-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

@media (width >= 768px) {
  .navbar-inner-wrap {
    height: 72px;
  }
}

.navbar-draftlegals.scrolled {
  border-bottom: 1px solid rgb(201 168 76 / 15%);
  box-shadow: 0 1px 20px rgb(0 0 0 / 30%);
  background: rgb(2 44 34 / 92%);
  backdrop-filter: blur(20px);
}

.navbar-draftlegals:not(.scrolled) {
  background: transparent;
}

.navbar-inner {
  max-width: 1280px;
  padding: 0 24px;
  margin: 0 auto;
}

@media (width >= 768px) {
  .navbar-inner {
    padding: 0 32px;
  }
}

@media (width >= 1024px) {
  .navbar-inner {
    padding: 0 48px;
  }
}

.navbar-brand-custom {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
}

.navbar-brand-custom img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: all 0.3s;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgb(212 184 90 / 40%);
  background: var(--dl-white);
}

@media (width >= 768px) {
  .navbar-brand-custom img {
    width: 44px;
    height: 44px;
  }
}

.navbar-brand-custom:hover img {
  transform: scale(1.05);
  box-shadow: 0 0 0 2px rgb(201 168 76 / 70%);
}

.navbar-brand-custom .brand-text .brand-name {
  transition: color 0.3s;
  color: var(--dl-white);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.1;
}

.navbar-draftlegals.scrolled .navbar-brand-custom .brand-text .brand-name {
  color: var(--dl-white);
}

.navbar-brand-custom .brand-text .brand-tagline {
  transition: color 0.3s;
  color: rgb(229 201 110 / 80%);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.navbar-draftlegals.scrolled .navbar-brand-custom .brand-text .brand-tagline {
  color: rgb(229 201 110 / 80%);
}

.navbar-draftlegals .nav-link-custom {
  position: relative;
  padding: 8px 14px;
  transition: all 0.2s;
  border-radius: 8px;
  color: rgb(255 255 255 / 70%);
  font-size: 13px;
  font-weight: 500;
}

.navbar-draftlegals .nav-link-custom:hover {
  background: rgb(255 255 255 / 8%);
  color: var(--dl-white);
}

.navbar-draftlegals.scrolled .nav-link-custom {
  color: rgb(255 255 255 / 70%);
}

.navbar-draftlegals.scrolled .nav-link-custom:hover {
  background: rgb(255 255 255 / 10%);
  color: var(--dl-white);
}

.navbar-draftlegals .nav-link-custom.active {
  background: rgb(255 255 255 / 12%);
  color: var(--dl-white);
}

.navbar-draftlegals.scrolled .nav-link-custom.active {
  background: rgb(255 255 255 / 15%);
  color: var(--dl-white);
}

.nav-link-custom .active-indicator {
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 20px;
  height: 2px;
  transform: translateX(-50%);
  border-radius: 9999px;
  background: var(--dl-gold-500);
}

/* Nav items gap */
.nav-items-gap {
  gap: 2px;
}

/* Mobile toggle */
.nav-toggle-btn {
  padding: 8px;
  transition: all 0.2s;
  border-radius: 9999px;
}

.nav-toggle-btn:hover {
  background: rgb(255 255 255 / 10%);
}

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  transition: all 0.3s;
  border: 1px solid rgb(201 168 76 / 20%);
  border-radius: 9999px;
  background: rgb(255 255 255 / 8%);
  color: var(--dl-gold-400);
  font-size: 13px;
  font-weight: 600;
}

.nav-cta-btn:hover {
  transform: scale(1.02);
  border-color: rgb(201 168 76 / 40%);
  background: rgb(255 255 255 / 14%);
  color: var(--dl-gold-300);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgb(2 44 34 / 50%);
  backdrop-filter: blur(12px);
}

.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 46;
  width: 280px;
  padding: 24px;
  overflow-y: auto;
  box-shadow: -4px 0 20px rgb(0 0 0 / 30%);
  background: var(--dl-surface-darker);
}

.mobile-menu-panel .mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.mobile-menu-panel .mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  transition: all 0.2s;
  border-radius: 12px;
  color: rgb(232 228 221 / 70%);
  font-size: 14px;
  font-weight: 500;
}

.mobile-menu-panel .mobile-nav-link:hover {
  background: rgb(201 168 76 / 5%);
  color: var(--dl-text-cream);
}

.mobile-menu-panel .mobile-nav-link.active {
  background: rgb(201 168 76 / 10%);
  color: var(--dl-text-cream);
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  /* Restore marquee animation so it still scrolls when motion is reduced */
  .marquee-track {
    animation-duration: 30s !important;
    animation-iteration-count: infinite !important;
  }
}

/* ─── Breadcrumb Hover Animation ─── */
.breadcrumb-link {
  position: relative;
  transition: color 0.3s;
}

.breadcrumb-link::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  transition: width 0.3s;
  background: var(--dl-gold-400);
  content: '';
}

.breadcrumb-link:hover::after {
  width: 100%;
}

/* ─── Smooth Link Underline Animation ─── */
.underline-link {
  position: relative;
  text-decoration: none !important;
}

.underline-link::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  transition: width 0.3s ease;
  background: currentcolor;
  content: '';
}

.underline-link:hover::after {
  width: 100%;
}

/* ─── Hero Section ─── */
.hero-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
  background: var(--dl-green-900);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg .bg-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--dl-green-900), rgb(6 78 59 / 95%), var(--dl-green-900));
}

.hero-bg .bg-pattern-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: radial-gradient(circle at 1px 1px, rgb(201 168 76 / 7%) 1px, transparent 0);
  background-size: 32px 32px;
}

.hero-orb-1 {
  position: absolute;
  top: -128px;
  right: -128px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: rgb(201 168 76 / 4%);
  filter: blur(120px);
}

.hero-orb-2 {
  position: absolute;
  bottom: -96px;
  left: -96px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgb(16 185 129 / 5%);
  filter: blur(100px);
}

.hero-orb-3 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgb(201 168 76 / 2%);
  filter: blur(80px);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 0 40px;
  margin: 0 auto;
  text-align: center;
}

@media (width <= 640px) {
  .hero-content {
    padding: 0 24px;
  }
}

.hero-title {
  margin-bottom: 28px;
  color: var(--dl-white);
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgb(0 0 0 / 30%);
}

@media (width >= 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (width >= 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (width >= 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-subtitle {
  margin-bottom: 20px;
  color: rgb(255 255 255 / 60%);
  font-size: 1.125rem;
  line-height: 1.625;
}

@media (width >= 640px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

/* Hero pill badge text */
.hero-pill-text {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-tagline {
  max-width: 32rem;
  margin: 0 auto 48px;
  color: rgb(229 201 110 / 80%);
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-style: italic;
}

/* Hero Pill Badge */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  margin-bottom: 32px;
  border: 1px solid rgb(201 168 76 / 20%);
  border-radius: 9999px;
  background: rgb(201 168 76 / 10%);
  backdrop-filter: blur(4px);
  color: rgb(229 201 110 / 90%);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dl-gold-400);
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.hero-pill-dot,
.hero-pill .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  animation: pulse-dot 1.5s ease-in-out infinite;
  border-radius: 50%;
  background: var(--dl-gold-400);
}

/* Hero Advocate Info */
.hero-advocate {
  padding-top: 32px;
  margin-top: 80px;
  border-top: 1px solid rgb(255 255 255 / 6%);
}

.hero-advocate p {
  margin-bottom: 10px;
  color: rgb(255 255 255 / 40%);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hero-advocate .quals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 12px;
  color: rgb(255 255 255 / 30%);
  font-size: 13px;
}

.hero-advocate .enroll {
  margin-top: 10px;
  color: rgb(255 255 255 / 20%);
  font-size: 12px;
  letter-spacing: 0.02em;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-indicator .mouse {
  display: flex;
  justify-content: center;
  width: 20px;
  height: 36px;
  padding-top: 8px;
  border: 1px solid rgb(201 168 76 / 30%);
  border-radius: 9999px;
}

@keyframes scroll-bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

.scroll-indicator .mouse .dot {
  width: 4px;
  height: 6px;
  animation: scroll-bounce 2s ease-in-out infinite;
  border-radius: 9999px;
  background: var(--dl-gold-400);
}

/* ─── Typing Cursor ─── */
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.typing-cursor {
  animation: blink 1s step-end infinite;
  color: var(--dl-gold-400);
}

/* ─── Mobile Responsive Improvements ─── */
@media (width <= 575px) {
  .hero-title {
    letter-spacing: -0.01em;
  }

  .section-heading h2 {
    font-size: 1.5rem !important;
  }

  .section-heading p {
    font-size: 0.9375rem !important;
  }

  .hero-advocate .quals {
    gap: 2px 8px !important;
    font-size: 11px !important;
  }

  .testimonial-card {
    padding: 20px !important;
  }

  .testimonial-text {
    font-size: 0.9375rem !important;
  }

  .footer-draftlegals .col-sm-6 {
    margin-bottom: 24px;
  }

  .sticky-cta .inner {
    gap: 8px !important;
    padding: 8px 12px !important;
  }

  .cookie-banner {
    padding: 12px 16px !important;
  }

  .cookie-banner .inner {
    padding: 0 !important;
  }

  .floating-whatsapp {
    bottom: 16px !important;
    left: 16px !important;
    width: 48px !important;
    height: 48px !important;
  }

  .back-to-top {
    right: 16px !important;
    bottom: 16px !important;
  }

  .back-to-top button svg {
    width: 40px !important;
    height: 40px !important;
  }

  .services-tab {
    padding: 8px 14px !important;
    font-size: 12px !important;
  }

  .service-tab-item {
    padding: 10px 12px !important;
  }

  .service-tab-item span {
    padding-top: 4px !important;
    font-size: 13px !important;
  }

  .faq-card-header {
    padding: 14px !important;
  }

  .faq-card-question {
    padding-top: 6px !important;
    font-size: 13px !important;
  }

  .faq-card-number {
    width: 30px !important;
    height: 30px !important;
    font-size: 11px !important;
  }

  .faq-card-answer {
    padding: 0 14px 14px !important;
  }

  .faq-card-answer-inner {
    padding-left: 44px !important;
  }

  .faq-card-icon {
    width: 24px !important;
    height: 24px !important;
  }

  .faq-card-answer p {
    font-size: 13px !important;
  }

  .services-tabs {
    gap: 6px !important;
    margin-bottom: 24px !important;
  }

  .service-tab-item:hover {
    transform: none !important;
  }

  .process-card {
    padding: 16px !important;
  }

  .process-card .step-number-bg {
    top: -4px !important;
    right: 0 !important;
    font-size: 2.5rem !important;
  }

  .process-card h3 {
    font-size: 0.875rem !important;
  }

  .process-card p {
    font-size: 12px !important;
  }

  .process-vertical-gap {
    gap: 20px !important;
  }

  .services-tab-content p {
    font-size: 14px !important;
  }

  .insight-card .content {
    padding: 16px !important;
  }

  .insight-card .footer {
    padding: 12px 16px !important;
  }
}

@media (width <= 767px) {
  .service-card-featured {
    padding: 20px !important;
  }

  .why-card {
    padding: 20px !important;
  }

  .consult-modal {
    padding: 20px !important;
    margin: 8px;
  }

  .hero-subtitle {
    font-size: 1rem !important;
  }
}

/* ─── Testimonials Dot Nav ─── */
.testimonial-dot-active {
  width: 32px;
  height: 8px;
  padding: 0;
  transition: all 0.5s;
  border: none;
  border-radius: 9999px;
  background: linear-gradient(to right, var(--dl-gold-500), var(--dl-gold-400));
  cursor: pointer;
}

.testimonial-dot-inactive {
  width: 8px;
  height: 8px;
  padding: 0;
  transition: all 0.3s;
  border: none;
  border-radius: 9999px;
  background: rgb(201 168 76 / 40%);
  cursor: pointer;
}

.testimonial-dot-inactive:hover {
  background: rgb(201 168 76 / 60%);
}

/* Testimonial arrows hidden by default, shown on group hover */
.testimonial-carousel {
  position: relative;
  overflow: visible !important;
}

.testimonial-carousel .testimonial-arrow {
  z-index: 5;
  opacity: 0;
  transition: all 0.3s;
}

.testimonial-carousel:hover .testimonial-arrow {
  opacity: 1;
}

.testimonial-carousel .testimonial-arrow:hover {
  transform: translateY(-50%) scale(1.1) !important;
  box-shadow: 0 4px 16px rgb(0 0 0 / 30%) !important;
  color: var(--dl-text-cream) !important;
}

/* Testimonial carousel wrapper needs padding for arrows */
.testimonial-carousel-wrapper {
  padding: 0 12px;
}

@media (width >= 768px) {
  .testimonial-carousel-wrapper {
    padding: 0 48px;
  }
}

/* ─── Marquee ─── */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-container {
  position: relative;
  padding: 20px 0;
  overflow: hidden;
}

.marquee-fade-left {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 96px;
  background: linear-gradient(to right, var(--dl-green-900), transparent);
}

.marquee-fade-right {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  width: 96px;
  background: linear-gradient(to left, var(--dl-green-900), transparent);
}

.marquee-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgb(212 184 90 / 80%);
  font-size: 14px;
  font-weight: 500;
}

.marquee-item .icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

/* ─── Section Heading ─── */
.section-heading {
  max-width: 768px;
  margin: 0 auto 48px;
  text-align: center;
}

@media (width >= 768px) {
  .section-heading {
    margin-bottom: 64px;
  }
}

.section-heading .label-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  margin-bottom: 20px;
  border: 1px solid;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-heading .label-badge.light {
  border-color: rgb(212 184 90 / 30%);
  background: rgb(201 168 76 / 10%);
  color: rgb(229 201 110 / 90%);
}

.section-heading .label-badge.dark {
  border-color: rgb(201 168 76 / 25%);
  background: rgb(201 168 76 / 10%);
  color: var(--dl-gold-400);
}

.section-heading h2 {
  margin-bottom: 16px;
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.15;
}

@media (width >= 640px) {
  .section-heading h2 {
    font-size: 2.25rem;
  }
}

@media (width >= 1024px) {
  .section-heading h2 {
    font-size: 3rem;
  }
}

.section-heading h2.light {
  color: var(--dl-white);
}

.section-heading h2.dark {
  color: var(--foreground);
}

.section-heading p {
  max-width: 672px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.625;
}

@media (width >= 640px) {
  .section-heading p {
    font-size: 1.125rem;
  }
}

.section-heading p.light {
  color: rgb(255 255 255 / 65%);
}

.section-heading p.dark {
  color: var(--muted-foreground);
}

/* ─── Client Cards ─── */
.client-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  transition: all 0.3s;
  border-left: 3px solid transparent;
  border-radius: 12px;
  background: rgb(13 27 20 / 90%);
  backdrop-filter: blur(4px);
  cursor: default;
}

.client-card:hover {
  background: rgb(201 168 76 / 10%);
  border-left-color: var(--dl-gold-500);
}

.client-card .icon-box {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  transition: all 0.3s;
  border-radius: 8px;
  background: rgb(16 185 129 / 10%);
}

.client-card:hover .icon-box {
  background: var(--dl-green-900);
}

.client-card .icon-box i {
  transition: all 0.3s;
  color: var(--dl-green-400);
  font-size: 16px;
}

.client-card:hover .icon-box i {
  color: var(--dl-gold-400);
}

.client-card span {
  transition: color 0.3s;
  color: rgb(248 245 240 / 85%);
  font-size: 14px;
  font-weight: 500;
}

.client-card:hover span {
  color: var(--dl-white);
}

/* ─── Service Cards (Featured) ─── */
.service-card-featured {
  position: relative;
  padding: 24px;
  overflow: hidden;
  transition: all 0.3s;
  border: 1px solid rgb(201 168 76 / 12%);
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  background: rgb(17 27 21 / 95%);
  backdrop-filter: blur(4px);
}

.service-card-featured:hover {
  transform: translateY(-6px);
  border-color: rgb(201 168 76 / 25%);
  box-shadow: var(--card-shadow-hover);
}

.service-card-featured .icon-box {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  transition: all 0.3s;
  border-radius: 12px;
  background: rgb(16 185 129 / 10%);
}

.service-card-featured:hover .icon-box {
  background: var(--dl-green-900);
}

.service-card-featured .icon-box i {
  transition: all 0.3s;
  color: var(--dl-green-400);
  font-size: 24px;
}

.service-card-featured:hover .icon-box i {
  color: var(--dl-gold-400);
}

.service-card-featured h3 {
  margin-bottom: 6px;
  transition: color 0.3s;
  color: rgb(248 245 240 / 92%);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
}

/* ─── Why Us Cards ─── */
.why-card-wrapper {
  position: relative;
  padding: 1px;
  transform: translateY(0);
  transition: all 0.5s;
  border-radius: 16px;
  background: linear-gradient(135deg, rgb(255 255 255 / 8%), rgb(255 255 255 / 2%));
}

.why-card-wrapper:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, rgb(212 184 90 / 40%), rgb(201 168 76 / 20%), rgb(166 124 46 / 40%));
}

.why-card-border-glow {
  position: absolute;
  inset: -1px;
  z-index: -10;
  transition: all 0.5s;
  border-radius: 16px;
  background: linear-gradient(135deg, rgb(212 184 90 / 0%), rgb(201 168 76 / 0%), rgb(166 124 46 / 0%));
  filter: blur(0);
}

.why-card-wrapper:hover .why-card-border-glow {
  background: linear-gradient(135deg, rgb(212 184 90 / 40%), rgb(201 168 76 / 20%), rgb(166 124 46 / 40%));
  filter: blur(1px);
}

.why-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
  transition: all 0.5s;
  border-radius: 16px;
  background: rgb(255 255 255 / 4%);
  backdrop-filter: blur(4px);
}

@media (width >= 768px) {
  .why-card {
    padding: 28px;
  }
}

.why-card-wrapper:hover .why-card {
  background: rgb(255 255 255 / 8%);
}

.why-card .icon-wrap {
  position: relative;
  margin-bottom: 20px;
}

.why-card .icon-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  transition: all 0.5s;
  border-radius: 12px;
  background: linear-gradient(135deg, rgb(201 168 76 / 20%), rgb(166 124 46 / 10%));
}

.why-card-wrapper:hover .icon-box {
  box-shadow: 0 0 20px rgb(201 168 76 / 15%);
  background: linear-gradient(135deg, rgb(201 168 76 / 30%), rgb(166 124 46 / 20%));
}

.why-card .icon-box i {
  transition: all 0.5s;
  color: var(--dl-gold-400);
  font-size: 28px;
}

.why-card-wrapper:hover .icon-box i {
  color: var(--dl-gold-300);
}

.why-card .icon-accent {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 32px;
  height: 2px;
  background: linear-gradient(to right, rgb(201 168 76 / 40%), transparent);
}

.why-card h3 {
  margin-bottom: 10px;
  color: var(--dl-white);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

@media (width >= 768px) {
  .why-card h3 {
    font-size: 1.125rem;
  }
}

.why-card p {
  flex: 1;
  transition: color 0.5s;
  color: rgb(255 255 255 / 50%);
  font-size: 14px;
  line-height: 1.625;
}

.why-card-wrapper:hover .why-card p {
  color: rgb(255 255 255 / 65%);
}

/* ─── Testimonial Carousel ─── */
.testimonial-card {
  position: relative;
  padding: 32px 40px;
  transition: box-shadow 0.5s;
  border: 1px solid rgb(201 168 76 / 10%);
  border-radius: 16px;
  box-shadow:
    0 1px 3px rgb(0 0 0 / 15%),
    0 8px 32px rgb(0 0 0 / 20%);
  background: var(--dl-surface-dark);
}

.testimonial-card:hover {
  box-shadow:
    0 2px 6px rgb(0 0 0 / 20%),
    0 12px 40px rgb(0 0 0 / 30%);
}

@media (width <= 640px) {
  .testimonial-card {
    padding: 24px;
  }
}

.testimonial-quote {
  position: absolute;
  top: 24px;
  right: 32px;
  color: rgb(201 168 76 / 10%);
  pointer-events: none;
  user-select: none;
}

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

.testimonial-stars i {
  width: 18px;
  height: 18px;
}

.testimonial-text {
  position: relative;
  z-index: 10;
  margin-bottom: 32px;
  color: rgb(232 228 221 / 80%);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.625;
}

@media (width >= 768px) {
  .testimonial-text {
    font-size: 1.125rem;
  }
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgb(201 168 76 / 15%);
}

.testimonial-avatar {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgb(2 44 34 / 40%);
  background: linear-gradient(135deg, var(--dl-green-800), var(--dl-green-900));
}

.testimonial-avatar span {
  color: var(--dl-gold-400);
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.testimonial-author .name {
  color: var(--dl-text-cream);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.testimonial-author .role {
  margin-top: 2px;
  color: rgb(155 163 175 / 70%);
  font-size: 12px;
  font-weight: 500;
}

/* ─── Process Timeline ─── */
.process-node {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 24px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgb(2 44 34 / 20%);
  background: var(--dl-green-900);
  color: var(--dl-gold-400);
}

.process-node-ring {
  position: absolute;
  inset: -6px;
  border: 1px solid rgb(201 168 76 / 20%);
  border-radius: 50%;
}

.process-card {
  position: relative;
  height: 100%;
  padding: 24px;
  transition: all 0.3s;
  border-left: 3px solid var(--dl-gold-500);
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  background: rgb(17 29 22 / 80%);
  backdrop-filter: blur(4px);
}

.process-card:hover {
  box-shadow: var(--card-shadow-hover);
  background: var(--dl-surface-hover);
}

.process-card .step-number-bg {
  position: absolute;
  top: -8px;
  right: -4px;
  color: rgb(201 168 76 / 8%);
  font-family: var(--font-serif);
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.process-card h3 {
  position: relative;
  z-index: 10;
  margin-bottom: 8px;
  color: rgb(248 245 240 / 92%);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
}

@media (width >= 992px) {
  .process-card h3 {
    text-align: center;
  }
}

/* Process vertical timeline spacing */
.process-vertical-gap {
  gap: 32px;
}

.process-card p {
  position: relative;
  z-index: 10;
  color: rgb(200 195 185 / 65%);
  font-size: 14px;
  line-height: 1.625;
}

@media (width >= 992px) {
  .process-card p {
    text-align: center;
  }
}

/* ─── Services Tabs ─── */
.services-tabs {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding-bottom: 8px;
  margin-bottom: 40px;
}

.services-tab {
  position: relative;
  z-index: 2;
  padding: 10px 20px;
  transition: all 0.3s;
  border: 1px solid rgb(201 168 76 / 20%);
  border-radius: 9999px;
  background: rgb(6 78 59 / 85%);
  color: rgb(248 245 240 / 80%);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
}

.services-tab:hover {
  transform: translateY(-2px);
  border-color: rgb(201 168 76 / 40%);
  box-shadow: 0 4px 12px rgb(2 44 34 / 30%);
  background: rgb(2 44 34 / 95%);
  color: var(--dl-white);
}

.services-tab.active {
  border-color: transparent;
  box-shadow: 0 4px 16px rgb(201 168 76 / 25%);
  background: linear-gradient(135deg, var(--dl-gold-500), var(--dl-gold-600));
  color: var(--dl-green-900);
  font-weight: 600;
}

/* Animated gold accent line under active tab */
.services-tab-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 3px;
  transition:
    left 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 9999px;
  box-shadow:
    0 0 8px rgb(201 168 76 / 40%),
    0 0 20px rgb(201 168 76 / 15%);
  background: linear-gradient(90deg, var(--dl-gold-400), var(--dl-gold-500), var(--dl-gold-600));
  pointer-events: none;
}

.services-tab-panel {
  display: none;
}

.services-tab-panel.active {
  display: block;
  animation: tabEnter 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.services-tab-panel.exiting {
  display: block;
  animation: tabExit 0.25s cubic-bezier(0.55, 0, 1, 0.45) forwards;
  pointer-events: none;
}

@keyframes tabEnter {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes tabExit {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateY(-16px) scale(0.98);
  }
}

.service-tab-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  transition: all 0.3s;
  border: 1px solid rgb(201 168 76 / 8%);
  border-radius: 12px;
  background: rgb(17 27 21 / 95%);
  cursor: default;
}

.service-tab-item:hover {
  transform: translateX(4px);
  border-color: rgb(201 168 76 / 20%);
  background: var(--dl-surface-hover-alt);
}

.service-tab-item .icon-wrap {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  transition: all 0.3s;
  border-radius: 8px;
  background: rgb(16 185 129 / 10%);
}

.service-tab-item:hover .icon-wrap {
  background: var(--dl-green-900);
}

.service-tab-item .icon-wrap i {
  transition: all 0.3s;
  color: var(--dl-green-400);
  font-size: 16px;
}

.service-tab-item:hover .icon-wrap i {
  color: var(--dl-gold-400);
}

.service-tab-item span {
  padding-top: 6px;
  color: rgb(200 195 185 / 75%);
  font-size: 14px;
  line-height: 1.4;
}

/* ─── FAQ Modern Card UI ─── */
.faq-card {
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  border: 1px solid rgb(201 168 76 / 8%);
  border-radius: 16px;
  box-shadow:
    0 1px 3px rgb(0 0 0 / 10%),
    0 4px 16px rgb(0 0 0 / 12%);
  background: var(--dl-surface-dark);
}

.faq-card:hover {
  transform: translateY(-2px);
  border-color: rgb(201 168 76 / 15%);
  box-shadow:
    0 2px 6px rgb(0 0 0 / 15%),
    0 8px 24px rgb(0 0 0 / 18%);
}

.faq-card-header {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  transition: all 0.3s;
  cursor: pointer;
  user-select: none;
}

.faq-card-header:hover {
  background: rgb(201 168 76 / 3%);
}

.faq-card.open .faq-card-header {
  background: rgb(201 168 76 / 5%);
}

.faq-card.open .faq-card-header::after {
  position: absolute;
  right: 24px;
  bottom: 0;
  left: 24px;
  height: 1px;
  background: rgb(201 168 76 / 10%);
  content: '';
}

.faq-card-number {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  margin-top: 2px;
  transition: all 0.4s;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgb(2 44 34 / 30%);
  background: linear-gradient(135deg, var(--dl-green-800), var(--dl-green-900));
  color: var(--dl-gold-400);
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 700;
}

.faq-card:hover .faq-card-number {
  box-shadow: 0 3px 10px rgb(2 44 34 / 40%);
}

.faq-card.open .faq-card-number {
  background: linear-gradient(135deg, var(--dl-gold-500), var(--dl-gold-600));
  color: var(--dl-green-900);
}

.faq-card-question {
  flex: 1;
  padding-top: 6px;
  transition: color 0.3s;
  color: rgb(248 245 240 / 90%);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.faq-card.open .faq-card-question {
  color: var(--dl-white);
}

.faq-card-icon {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  margin-top: 2px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 50%;
  background: rgb(201 168 76 / 8%);
}

.faq-card-icon i {
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  color: rgb(200 195 185 / 40%);
  font-size: 14px;
}

.faq-card.open .faq-card-icon {
  background: rgb(201 168 76 / 20%);
}

.faq-card.open .faq-card-icon i {
  transform: rotate(135deg);
  color: var(--dl-gold-400);
}

/* CSS-only smooth expand/collapse using max-height */
.faq-card-answer {
  max-height: 0;
  padding: 0 24px;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s ease,
    padding 0.3s ease;
}

.faq-card.open .faq-card-answer {
  max-height: 1000px;
  padding: 0 24px 20px;
  opacity: 1;
}

.faq-card-answer-inner {
  padding-top: 4px;
  padding-left: 52px;
}

.faq-card-answer p {
  color: rgb(200 195 185 / 70%);
  font-size: 14px;
  line-height: 1.75;
}

/* FAQ Category Badge */
.faq-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  margin-bottom: 2px;
  border: 1px solid rgb(16 185 129 / 15%);
  border-radius: 9999px;
  background: rgb(16 185 129 / 10%);
  color: var(--dl-green-400);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* FAQ Toggle All button refined */
.faq-toggle-all {
  padding: 8px 16px !important;
  transition: all 0.3s !important;
  border-radius: 8px !important;
  background: transparent !important;
  color: rgb(200 195 185 / 50%) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
}

.faq-toggle-all:hover {
  background: rgb(201 168 76 / 5%) !important;
  color: rgb(200 195 185 / 80%) !important;
}

/* ─── Insight Cards ─── */
.insight-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.5s;
  border: 1px solid rgb(201 168 76 / 8%);
  border-radius: 16px;
  box-shadow:
    0 1px 3px rgb(0 0 0 / 10%),
    0 6px 16px rgb(0 0 0 / 8%);
  background: var(--dl-surface-card);
  cursor: default;
}

.insight-card:hover {
  box-shadow:
    0 4px 12px rgb(0 0 0 / 15%),
    0 12px 32px rgb(0 0 0 / 12%);
}

.insight-card .accent-bar {
  width: 100%;
  height: 4px;
  opacity: 0;
  transition: opacity 0.5s;
  background: linear-gradient(to right, var(--dl-green-700), var(--dl-gold-500), var(--dl-green-700));
}

.insight-card:hover .accent-bar {
  opacity: 1;
}

.insight-card .gradient-hover {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: all 0.5s;
  background: linear-gradient(to bottom, rgb(2 44 34 / 0%), rgb(2 44 34 / 0%), rgb(2 44 34 / 0%));
  pointer-events: none;
}

.insight-card:hover .gradient-hover {
  background: linear-gradient(to bottom, rgb(201 168 76 / 2%), rgb(201 168 76 / 4%));
}

.insight-card .content {
  position: relative;
  z-index: 10;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.insight-card .tag-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.insight-card .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border: 1px solid rgb(16 185 129 / 15%);
  border-radius: 9999px;
  background: rgb(16 185 129 / 10%);
  color: var(--dl-green-400);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.insight-card .date {
  margin-left: auto;
  color: rgb(155 163 175 / 60%);
  font-size: 11px;
}

.insight-card h3 {
  display: -webkit-box;
  margin-bottom: 12px;
  overflow: hidden;
  transition: color 0.3s;
  color: rgb(248 245 240 / 92%);
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.insight-card p {
  display: -webkit-box;
  flex: 1;
  overflow: hidden;
  color: rgb(200 195 185 / 65%);
  font-size: 13px;
  line-height: 1.7;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.insight-card .footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  transition: background 0.5s;
  border-top: 1px solid rgb(201 168 76 / 10%);
  background: rgb(201 168 76 / 3%);
}

.insight-card:hover .footer {
  background: rgb(201 168 76 / 6%);
}

.insight-card .read-time {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgb(155 163 175 / 50%);
  font-size: 11px;
}

.insight-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
  color: rgb(200 195 185 / 60%);
  font-size: 12px;
  font-weight: 600;
}

.insight-card:hover .read-more {
  gap: 10px;
  color: var(--dl-gold-400);
}

.insight-card .read-more i {
  transition: transform 0.3s;
}

.insight-card:hover .read-more i {
  transform: translate(2px, -2px);
}

/* ─── Stats ─── */
.stat-card {
  position: relative;
  padding: 24px 28px;
  overflow: hidden;
  transition: all 0.3s;
  border: 1px solid rgb(201 168 76 / 15%);
  border-radius: 16px;
  background: rgb(17 29 22 / 90%);
  backdrop-filter: blur(12px);
  text-align: center;
}

.stat-card:hover {
  border-color: rgb(201 168 76 / 30%);
  background: var(--dl-surface-accent);
}

.stat-card .accent-line {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgb(201 168 76 / 20%), transparent);
}

.stat-card .stat-value {
  margin-bottom: 6px;
  color: rgb(248 245 240 / 95%);
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 700;
}

@media (width >= 768px) {
  .stat-card .stat-value {
    font-size: 2.25rem;
  }
}

.stat-card .stat-label {
  color: rgb(200 195 185 / 70%);
  font-size: 14px;
  font-weight: 500;
}

/* ─── Service Icons Grid ─── */
.service-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px;
  transition: all 0.3s;
  border: 1px solid transparent;
  border-radius: 12px;
  background: rgb(14 26 19 / 80%);
  backdrop-filter: blur(4px);
  cursor: default;
}

.service-icon-item:hover {
  transform: translateY(-4px);
  border-color: rgb(201 168 76 / 20%);
  box-shadow: var(--card-shadow-hover);
  background: var(--dl-surface-accent-alt);
}

.service-icon-item .icon-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  transition: all 0.3s;
  border-radius: 12px;
  background: rgb(16 185 129 / 10%);
}

.service-icon-item:hover .icon-box {
  background: var(--dl-green-900);
}

.service-icon-item .icon-box i {
  transition: all 0.3s;
  color: var(--dl-green-400);
  font-size: 20px;
}

.service-icon-item:hover .icon-box i {
  color: var(--dl-gold-400);
}

.service-icon-item span {
  transition: color 0.3s;
  color: rgb(200 195 185 / 65%);
  font-size: 12px;
  font-weight: 500;
  text-align: center;
}

.service-icon-item:hover span {
  color: rgb(248 245 240 / 90%);
}

/* ─── Advocate Card ─── */
.advocate-card {
  position: relative;
  padding: 32px;
  overflow: hidden;
  border: 1px solid rgb(201 168 76 / 12%);
  border-radius: 16px;
  box-shadow:
    0 2px 8px rgb(0 0 0 / 15%),
    0 8px 32px rgb(0 0 0 / 20%);
  background: rgb(1 24 17 / 90%);
  backdrop-filter: blur(8px);
}

.advocate-card .pattern-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgb(201 168 76 / 5%) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
}

.advocate-card .glow {
  position: absolute;
  top: -48px;
  right: -48px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgb(201 168 76 / 6%);
  filter: blur(64px);
}

.advocate-card .content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

@media (width >= 768px) {
  .advocate-card .content {
    flex-direction: row;
  }
}

.advocate-card .avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.advocate-card .avatar-wrap img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 2px solid rgb(201 168 76 / 20%);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgb(2 44 34 / 40%);
}

.advocate-card .check-badge {
  position: absolute;
  right: 4px;
  bottom: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgb(2 44 34 / 30%);
  background: var(--dl-green-450);
  color: var(--dl-white);
  font-size: 14px;
}

/* ─── Trust Bar ─── */
.trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  border: 1px solid rgb(201 168 76 / 8%);
  border-radius: 16px;
  background: rgb(1 24 17 / 70%);
  backdrop-filter: blur(4px);
}

.trust-bar .item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-bar .item .icon-box {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgb(16 185 129 / 10%);
}

.trust-bar .item .icon-box i {
  color: var(--dl-green-400);
  font-size: 18px;
}

.trust-bar .item span {
  color: rgb(248 245 240 / 80%);
  font-size: 13px;
  font-weight: 500;
}

.trust-bar .divider {
  width: 1px;
  height: 40px;
  background: rgb(201 168 76 / 15%);
}

@media (width <= 992px) {
  .trust-bar {
    flex-wrap: wrap;
    gap: 16px;
  }

  .trust-bar .divider {
    display: none;
  }
}

/* ─── Card Badges ─── */
.badge-gold {
  padding: 6px 12px;
  border: 1px solid rgb(201 168 76 / 20%);
  border-radius: 9999px;
  background: rgb(201 168 76 / 8%);
  color: rgb(229 201 110 / 90%);
  font-size: 11px;
  font-weight: 500;
}

/* ─── Contact Section ─── */
.contact-card {
  padding: 28px;
  border: 1px solid rgb(201 168 76 / 12%);
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  background: rgb(17 27 21 / 95%);
}

.contact-card h3 {
  margin-bottom: 16px;
  color: var(--dl-text-cream);
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
}

.contact-item-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  transition: background 0.2s;
  border-radius: 12px;
  text-decoration: none;
}

.contact-item-link .icon-circle {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
}

.contact-item-link .icon-circle.green-dark {
  background: var(--dl-green-900);
  color: var(--dl-gold-400);
}

.contact-item-link .icon-circle.gold-dark {
  background: var(--dl-gold-600);
  color: var(--dl-white);
}

.contact-item-link .label {
  color: var(--dl-text-cream);
  font-size: 13px;
  font-weight: 600;
}

.contact-item-link .value {
  color: var(--muted-foreground);
  font-size: 12px;
}

.contact-item-static {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
}

.contact-item-static .icon-circle {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
}

.contact-item-static .icon-circle.green-light {
  background: rgb(16 185 129 / 10%);
  color: var(--dl-green-400);
}

.contact-item-static .label {
  color: var(--dl-text-cream);
  font-size: 13px;
  font-weight: 600;
}

.contact-item-static .value {
  color: var(--muted-foreground);
  font-size: 12px;
}

/* ─── Banking Note ─── */
.banking-note {
  padding: 24px;
  border: 1px solid rgb(201 168 76 / 12%);
  border-radius: 16px;
  background: rgb(17 27 21 / 95%);
}

.banking-note .icon-box {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgb(201 168 76 / 15%);
}

.banking-note .icon-box i {
  color: var(--dl-gold-500);
  font-size: 20px;
}

.banking-note h3 {
  margin-bottom: 8px;
  color: var(--foreground);
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
}

.banking-note p {
  margin-bottom: 12px;
  color: var(--muted-foreground);
  font-size: 14px;
  line-height: 1.625;
}

.banking-note .note-box {
  padding: 12px;
  border: 1px solid rgb(201 168 76 / 15%);
  border-radius: 8px;
  background: rgb(201 168 76 / 8%);
}

.banking-note .note-box i {
  color: var(--dl-gold-400);
}

.banking-note .note-box p {
  margin: 0;
  color: rgb(229 201 110 / 70%);
  font-size: 13px;
  line-height: 1.5;
}

/* ─── Footer Styles ─── */
.footer-hr {
  margin: 0;
  background: rgb(255 255 255 / 8%);
}

.footer-bottom-text {
  font-size: 12px;
}

.footer-copyright {
  margin: 0;
  color: rgb(255 255 255 / 30%);
}

.footer-credit {
  margin: 0;
  color: rgb(255 255 255 / 25%);
}

.footer-top-link {
  color: rgb(255 255 255 / 30%);
  font-size: 12px;
  text-decoration: none;
}

.footer-sep {
  color: rgb(255 255 255 / 15%);
}

.footer-logo-img {
  width: 40px;
  height: 40px;
  padding: 4px;
  object-fit: contain;
  border: 2px solid rgb(201 168 76 / 20%);
  border-radius: 50%;
  background: rgb(255 255 255 / 10%);
}

.footer-logo-img-simple {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 50%;
}

.footer-brand-name {
  color: var(--dl-white);
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
}

.footer-brand-tagline {
  color: rgb(212 184 90 / 80%);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-desc {
  max-width: 256px;
  margin-bottom: 20px;
  color: rgb(255 255 255 / 50%);
  font-size: 14px;
}

.footer-desc-compact {
  max-width: 256px;
  color: rgb(255 255 255 / 50%);
  font-size: 14px;
}

.footer-link-icon {
  margin-right: 8px;
  color: rgb(166 124 46 / 40%);
  font-size: 12px;
}

.footer-contact-text {
  color: rgb(255 255 255 / 45%);
}

/* ─── Page Banner (Sub-pages) ─── */
.page-banner {
  position: relative;
  padding-top: 96px;
  padding-bottom: 64px;
  overflow: hidden;
  background: var(--dl-green-900);
}

.page-banner .banner-orb-tr {
  position: absolute;
  top: -128px;
  right: -128px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgb(201 168 76 / 4%);
  pointer-events: none;
  filter: blur(120px);
}

.page-banner .banner-orb-bl {
  position: absolute;
  bottom: -96px;
  left: -96px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgb(16 185 129 / 5%);
  pointer-events: none;
  filter: blur(100px);
}

.page-banner .banner-content {
  position: relative;
  z-index: 10;
}

.page-banner .breadcrumb-ol {
  font-size: 14px;
}

.page-banner .breadcrumb-home {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: rgb(212 184 90 / 70%);
  text-decoration: none;
}

.page-banner .breadcrumb-home:hover {
  color: var(--dl-gold-400);
}

.page-banner .breadcrumb-sep {
  color: rgb(212 184 90 / 30%);
}

.page-banner .breadcrumb-current {
  color: rgb(255 255 255 / 60%);
  font-weight: 500;
}

.page-banner h1 {
  margin-bottom: 16px;
  color: var(--dl-white);
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.page-banner .banner-desc {
  max-width: 672px;
  color: rgb(255 255 255 / 50%);
  font-size: 1.125rem;
  line-height: 1.625;
}

.page-banner .banner-divider {
  display: flex;
  align-items: center;
  margin-top: 24px;
}

.page-banner .banner-divider .line-80 {
  width: 80px;
  height: 2px;
  border-radius: 9999px;
  background: linear-gradient(to right, var(--dl-gold-500), transparent);
}

.page-banner .banner-divider .diamond {
  width: 6px;
  height: 6px;
  margin: 0 12px;
  transform: rotate(45deg);
  border-radius: 50%;
  background: rgb(212 184 90 / 50%);
}

.page-banner .banner-divider .line-48 {
  width: 48px;
  height: 2px;
  border-radius: 9999px;
  background: linear-gradient(to right, rgb(201 168 76 / 50%), transparent);
}

/* ─── Content Policy Pages ─── */
.content-section {
  padding: 48px 0;
  background: var(--dl-warm-white);
}

.content-section .content-container {
  max-width: 896px;
  padding: 0 24px;
  margin: 0 auto;
}

.content-section .last-updated {
  margin-bottom: 40px;
  color: var(--muted-foreground);
  font-size: 14px;
}

.content-section h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--foreground);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
}

.content-section h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--foreground);
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
}

.content-section p {
  margin-bottom: 16px;
  color: var(--muted-foreground);
  font-size: 14px;
  line-height: 1.7;
}

.content-section ul {
  padding-left: 24px;
  margin-bottom: 16px;
  list-style: disc;
}

.content-section ul li {
  margin-bottom: 4px;
  color: var(--muted-foreground);
  font-size: 14px;
  line-height: 1.7;
}

.content-section strong,
.content-section .strong-text {
  color: var(--foreground);
}

.content-section .info-box {
  padding: 24px;
  margin-bottom: 40px;
  border: 1px solid rgb(201 168 76 / 25%);
  border-radius: 12px;
  background: rgb(2 44 34 / 85%);
}

.content-section .info-box ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.content-section .info-box ul li {
  margin-bottom: 8px;
  color: rgb(232 228 221 / 85%);
  font-size: 14px;
  line-height: 1.7;
}

.content-section .info-box ul li:last-child {
  margin-bottom: 0;
}

.content-section .section-divider {
  padding-top: 32px;
  border-top: 1px solid rgb(6 78 59 / 40%);
}

.content-section .info-box strong,
.content-section .info-box .strong-text {
  color: rgb(248 245 240 / 95%);
}

.content-section .info-box a {
  color: var(--dl-gold-400);
}

.content-section .info-box a:hover {
  color: var(--dl-gold-300);
  text-decoration: underline;
}

.doc-link-gold {
  transition: color 0.2s;
  color: var(--dl-gold-400);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.doc-link-gold:hover {
  color: var(--dl-gold-500);
}

/* ─── Mobile Menu Additions ─── */
.mobile-menu-panel .contact-heading {
  margin-bottom: 12px;
  color: rgb(155 163 175 / 70%);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.mobile-menu-panel .contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgb(232 228 221 / 70%);
  font-size: 14px;
  text-decoration: none;
}

.mobile-menu-panel .contact-link:hover {
  color: var(--dl-text-cream);
}

.mobile-menu-panel .contact-link i {
  color: var(--dl-gold-500);
}

.mobile-menu-panel .mm-cta-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 12px 24px;
  border-radius: 12px;
  background: var(--dl-green-900);
  color: var(--dl-gold-400);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.mobile-menu-panel .mm-cta-btn:hover {
  background: var(--dl-green-800);
  color: var(--dl-gold-300);
}

.mm-logo-img {
  width: 36px;
  height: 36px;
  padding: 2px;
  object-fit: contain;
  border: 1px solid rgb(201 168 76 / 20%);
  border-radius: 50%;
  background: rgb(16 185 129 / 10%);
}

.mm-brand-name {
  color: var(--dl-text-cream);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
}

.mm-brand-tagline {
  color: var(--dl-gold-500);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.mm-active-dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dl-gold-500);
}

.mm-close-icon {
  color: var(--dl-text-cream);
}

/* ─── Utility Classes ─── */
.hidden-initially {
  display: none;
}

.border-left-gold-subtle {
  border-left: 1px solid rgb(201 168 76 / 15%);
}

.border-top-gold-subtle {
  border-top: 1px solid rgb(201 168 76 / 15%);
}

.opacity-20 {
  opacity: 0.2;
}

.z-10 {
  z-index: 10;
}

/* ─── Floating WhatsApp ─── */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 40;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  transition: all 0.3s;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgb(16 185 129 / 30%);
  background: linear-gradient(135deg, var(--dl-green-500), var(--dl-green-700));
  color: var(--dl-white);
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgb(16 185 129 / 50%);
  color: var(--dl-white);
}

.pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: waPulse 2s ease-out infinite;
  border: 2px solid rgb(16 185 129 / 40%);
  border-radius: 50%;
  pointer-events: none;
}

@keyframes waPulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.6);
  }
}

.whatsapp-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  padding: 6px 12px;
  opacity: 0;
  transform: translateX(-50%);
  transition: opacity 0.2s;
  border-radius: 8px;
  background: var(--dl-green-900);
  color: var(--dl-white);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  pointer-events: none;
}

.floating-whatsapp:hover .whatsapp-tooltip {
  opacity: 1;
}

/* ─── Back to Top ─── */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.back-to-top button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  transition: all 0.3s;
  border: none;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.back-to-top-inner {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.6;
  transition: all 0.2s;
  border-radius: 50%;
  background: rgb(201 168 76 / 15%);
  color: var(--dl-gold-400);
  pointer-events: none;
}

.scroll-pct {
  font-size: 12px;
  font-weight: 600;
}

/* ─── Back to Top Additions ─── */
.back-to-top button svg {
  transform: rotate(-90deg);
}

.back-to-top-label {
  position: absolute;
  bottom: 100%;
  left: 50%;
  padding: 4px 10px;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateX(-50%);
  transition: opacity 0.2s;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 20%);
  background: var(--dl-green-900);
  color: var(--dl-white);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  pointer-events: none;
}

.back-to-top:hover .back-to-top-label {
  opacity: 1;
}

/* ─── Toast Container ─── */
.toast-container-custom {
  z-index: 9999;
}

/* ─── Ornament Divider Wrapper ─── */
.ornament-wrapper {
  background: var(--dl-warm-white);
}

/* ─── Hero CTA Buttons ─── */
.hero-btn-primary {
  padding: 14px 32px;
  transition: all 0.3s;
  border: none;
  background: var(--dl-gold-500);
  color: var(--dl-green-900);
  font-size: 14px;
  font-weight: 600;
}

.hero-btn-primary:hover {
  background: var(--dl-gold-400);
  color: var(--dl-green-900);
}

.hero-btn-secondary {
  padding: 14px 32px;
  transition: all 0.3s;
  border: 1px solid rgb(201 168 76 / 30%);
  background: transparent;
  color: rgb(229 201 110 / 80%);
  font-size: 14px;
  font-weight: 600;
}

.hero-btn-secondary:hover {
  border-color: rgb(201 168 76 / 60%);
  color: var(--dl-gold-300);
}

/* ─── Section Backgrounds ─── */
.bg-green-50 {
  background: var(--dl-green-50);
}

.bg-gold-50 {
  background: var(--dl-gold-50);
}

.bg-cream {
  background: var(--dl-cream);
}

.bg-warm-white {
  background: var(--dl-warm-white);
}

/* ─── Section Orb Decorations ─── */
.section-orb-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 320px;
  transform: translate(30%, -30%);
  border-radius: 50%;
  background: rgb(247 237 204 / 50%);
  pointer-events: none;
  filter: blur(100px);
}

.section-orb-left {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 240px;
  height: 240px;
  transform: translate(-25%, 30%);
  border-radius: 50%;
  background: rgb(209 250 229 / 50%);
  pointer-events: none;
  filter: blur(80px);
}

/* ─── Section Padding ─── */
.section-py {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* ─── Background Color Utilities ─── */
.bg-green-900 {
  background: var(--dl-green-900);
}

/* ─── Advocate Card Styles ─── */
.advocate-enroll {
  color: rgb(212 184 90 / 80%);
  font-size: 14px;
}

.advocate-bio {
  max-width: 512px;
  color: rgb(255 255 255 / 50%);
  font-size: 14px;
  line-height: 1.625;
}

/* ─── Back to Top Inner ─── */
.back-to-top-inner i {
  font-size: 18px;
}

@media (width >= 768px) {
  .section-py {
    padding-top: 96px;
    padding-bottom: 96px;
  }
}

/* ─── Pill Badge ─── */
.pill-badge {
  color: var(--dl-gold-600);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ─── CTA Title ─── */
.cta-title {
  margin-bottom: 16px;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
}

.cta-desc {
  max-width: 512px;
  margin-right: auto;
  margin-bottom: 40px;
  margin-left: auto;
  color: var(--muted-foreground);
  font-size: 15px;
  line-height: 1.625;
}

/* ─── Hero Advocate Quals Separator ─── */
.qual-sep {
  color: rgb(255 255 255 / 15%);
}

/* ─── Gold Section Sep ─── */
.gold-section-wrap {
  border-top: 1px solid rgb(201 168 76 / 15%);
  border-bottom: 1px solid rgb(201 168 76 / 15%);
  background: var(--dl-green-900);
}

/* ─── Featured Services p style ─── */
.service-card-featured p {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 14px;
  line-height: 1.625;
}

/* ─── About Section Styles ─── */
.about-client-grid {
  max-width: 800px;
  margin: 0 auto 48px;
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
  color: var(--dl-gold-600);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.about-link:hover {
  color: var(--dl-gold-500);
}

.about-link:hover i {
  transform: translateX(4px);
}

.about-link i {
  transition: transform 0.2s;
}

/* ─── Services Tab Content P ─── */
.tab-content-desc {
  margin-bottom: 16px;
  color: rgb(200 195 185 / 70%);
  font-size: 15px;
}

/* ─── Will Note ─── */
.will-note {
  padding: 16px 20px;
  border: 1px solid rgb(201 168 76 / 25%);
  border-left: 3px solid var(--dl-gold-500);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgb(2 44 34 / 20%);
  background: rgb(6 78 59 / 95%);
}

.will-note p {
  margin: 0;
  color: rgb(248 245 240 / 75%);
  font-size: 12px;
  line-height: 1.625;
}

.will-note p i {
  margin-right: 4px;
  color: var(--dl-gold-400);
}

.will-note strong {
  color: var(--dl-gold-400);
}

/* ─── Services Search Container ─── */
.service-search-wrap {
  max-width: 448px;
}

.no-results-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: rgb(201 168 76 / 10%);
}

.no-results-box i {
  color: var(--dl-gold-400);
  font-size: 20px;
}

/* ─── FAQ Search Position ─── */
.faq-search-wrap {
  max-width: 448px;
  margin: 0 auto;
}

.search-icon-pos {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: rgb(107 114 128 / 60%);
  font-size: 16px;
}

.faq-search-icon {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: rgb(107 114 128 / 60%);
  font-size: 16px;
}

.faq-search-input {
  padding-right: 36px;
  padding-left: 40px;
}

.faq-search-clear-btn {
  position: absolute;
  top: 50%;
  right: 12px;
  display: none;
  transform: translateY(-50%);
  color: rgb(107 114 128 / 60%);
}

.faq-count-text {
  margin-top: 10px;
  color: rgb(107 114 128 / 70%);
  font-size: 12px;
  text-align: center;
}

/* ─── Form Styles ─── */
.form-label-custom {
  color: rgb(232 228 221 / 80%);
  font-size: 13px;
  font-weight: 500;
}

.form-label-required {
  color: var(--dl-gold-500);
}

/* ─── Form Input Custom ─── */
.form-input-custom {
  width: 100%;
  padding: 12px 16px;
  transition: all 0.2s;
  border: 1px solid rgb(201 168 76 / 15%);
  border-radius: 10px;
  outline: none;
  background: rgb(17 27 21 / 95%);
  color: var(--dl-text-cream);
  font-size: 14px;
}

.form-input-custom:focus {
  border-color: var(--dl-gold-500);
  box-shadow: 0 0 0 2px rgb(201 168 76 / 10%);
}

.form-input-custom::placeholder {
  color: rgb(155 163 175 / 50%);
}

.form-select-custom {
  width: 100%;
  padding: 12px 16px;
  transition: all 0.2s;
  border: 1px solid rgb(201 168 76 / 15%);
  border-radius: 10px;
  outline: none;
  background: rgb(17 27 21 / 95%);
  color: var(--dl-text-cream);
  font-size: 14px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23d4b85a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form-select-custom:focus {
  border-color: var(--dl-gold-500);
  box-shadow: 0 0 0 2px rgb(201 168 76 / 10%);
}

.form-textarea-custom {
  width: 100%;
  padding: 12px 16px;
  transition: all 0.2s;
  border: 1px solid rgb(201 168 76 / 15%);
  border-radius: 10px;
  outline: none;
  background: rgb(17 27 21 / 95%);
  color: var(--dl-text-cream);
  font-size: 14px;
  resize: vertical;
}

.form-textarea-custom:focus {
  border-color: var(--dl-gold-500);
  box-shadow: 0 0 0 2px rgb(201 168 76 / 10%);
}

.form-textarea-custom::placeholder {
  color: rgb(155 163 175 / 50%);
}

/* ─── Form Status Messages ─── */
.form-status {
  display: none;
  padding: 12px 16px;
  margin-bottom: 16px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
}

.form-status-success {
  border: 1px solid rgb(16 185 129 / 25%);
  background: rgb(16 185 129 / 10%);
  color: var(--dl-green-400);
}

.form-status-error {
  border: 1px solid rgb(239 68 68 / 25%);
  background: rgb(239 68 68 / 10%);
  color: rgb(248 113 113 / 90%);
}

.form-status i {
  margin-right: 8px;
}

/* ─── reCAPTCHA Notice ─── */
.recaptcha-notice {
  margin-top: 12px;
  font-size: 11px;
  color: rgb(155 163 175 / 50%);
  line-height: 1.5;
  text-align: center;
}

.recaptcha-notice a {
  color: var(--dl-gold-400);
  text-decoration: underline;
}

.recaptcha-notice a:hover {
  color: var(--dl-gold-300);
}

.recaptcha-widget-wrap {
  display: flex;
  justify-content: center;
  padding-bottom: 2px;
}

/* ─── Quick Action Buttons ─── */
.quick-action-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  transition: all 0.2s;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

/* ─── Button Lift / Shimmer ─── */
.btn-lift {
  transition: all 0.3s;
}

.btn-lift:hover {
  transform: translateY(-2px);
}

.btn-shimmer {
  position: relative;
  overflow: hidden;
}

.btn-shimmer::after {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  animation: shimmer 3s infinite;
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 15%), transparent);
  content: '';
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 200%;
  }
}

/* ─── Button Styles for Hero Section ─── */
.hero-btn-explore {
  padding: 14px 32px;
  transition: all 0.3s;
  border: none;
  border-radius: 9999px;
  background: var(--dl-gold-500);
  color: var(--dl-green-900);
  font-size: 14px;
  font-weight: 600;
}

.hero-btn-explore:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgb(201 168 76 / 30%);
  background: var(--dl-gold-400);
  color: var(--dl-green-900);
}

.hero-btn-contact {
  padding: 14px 32px;
  transition: all 0.3s;
  border: 1px solid rgb(201 168 76 / 30%);
  border-radius: 9999px;
  background: transparent;
  color: rgb(229 201 110 / 80%);
  font-size: 14px;
  font-weight: 600;
}

.hero-btn-contact:hover {
  transform: translateY(-2px);
  border-color: rgb(201 168 76 / 60%);
  color: var(--dl-gold-300);
}

/* ─── View All Services Button ─── */
.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  transition: all 0.3s;
  border-radius: 9999px;
  background: var(--dl-green-900);
  color: var(--dl-gold-400);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.view-all-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgb(2 44 34 / 30%);
  background: var(--dl-green-800);
  color: var(--dl-gold-300);
}

/* ─── CTA Section Buttons ─── */
.cta-btn-primary {
  padding: 14px 32px;
  transition: all 0.3s;
  border: none;
  border-radius: 9999px;
  box-shadow: 0 4px 16px rgb(201 168 76 / 20%);
  background: var(--dl-gold-500);
  color: var(--dl-green-900);
  font-size: 15px;
  font-weight: 600;
}

.cta-btn-primary:hover {
  background: var(--dl-gold-400);
  color: var(--dl-green-900);
}

.cta-btn-secondary {
  padding: 14px 32px;
  transition: all 0.3s;
  border: 1px solid rgb(201 168 76 / 25%);
  border-radius: 9999px;
  background: transparent;
  color: var(--dl-gold-600);
  font-size: 15px;
  font-weight: 600;
}

.cta-btn-secondary:hover {
  border-color: rgb(201 168 76 / 50%);
  color: var(--dl-gold-500);
}

/* ─── Established Badge ─── */
.est-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border: 1px solid rgb(201 168 76 / 25%);
  border-radius: 9999px;
  background: rgb(201 168 76 / 8%);
  color: rgb(212 184 90 / 80%);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: default;
}

/* ─── Social Link ─── */
.social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  transition: all 0.3s;
  border-radius: 50%;
  background: rgb(255 255 255 / 6%);
  color: rgb(212 184 90 / 60%);
  text-decoration: none;
}

.social-link:hover {
  transform: translateY(-2px);
  background: rgb(201 168 76 / 15%);
  color: var(--dl-gold-400);
}

/* ─── Footer Base ─── */
.footer-draftlegals {
  position: relative;
  border-top: 1px solid rgb(201 168 76 / 10%);
  background: var(--dl-green-950);
}

.top-accent {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgb(201 168 76 / 30%), transparent);
}

/* ─── Footer Quick Links ─── */
.footer-draftlegals h4 {
  margin-bottom: 20px;
  color: rgb(255 255 255 / 60%);
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-draftlegals ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

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

.footer-draftlegals ul li a {
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
  color: rgb(255 255 255 / 45%);
  font-size: 14px;
  text-decoration: none;
}

.footer-draftlegals ul li a:hover {
  padding-left: 4px;
  color: rgb(212 184 90 / 80%);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.contact-item i {
  flex-shrink: 0;
  width: 16px;
  color: rgb(212 184 90 / 50%);
}

.contact-item a {
  transition: color 0.3s;
  color: rgb(255 255 255 / 45%);
  text-decoration: none;
}

.contact-item a:hover {
  color: rgb(212 184 90 / 80%);
}

/* ─── Footer Logo Image ─── */
.footer-logo-img-full {
  width: 40px;
  height: 40px;
  padding: 4px;
  object-fit: contain;
  border: 2px solid rgb(201 168 76 / 20%);
  border-radius: 50%;
  background: rgb(255 255 255 / 10%);
}

/* ─── Sticky CTA Override Styles ─── */
.sticky-cta .inner {
  gap: 16px;
}

.sticky-cta-btn-call {
  padding: 8px 12px;
  border: 1px solid rgb(232 228 221 / 20%);
  border-radius: 8px;
  color: var(--dl-text-cream);
  font-size: 12px;
  font-weight: 600;
}

.sticky-cta-btn-call:hover {
  background: rgb(255 255 255 / 8%);
  color: var(--dl-white);
}

.sticky-cta-btn-wa {
  padding: 8px 12px;
  border: 1px solid rgb(74 222 128 / 20%);
  border-radius: 8px;
  color: var(--dl-green-200);
  font-size: 12px;
  font-weight: 600;
}

.sticky-cta-btn-wa:hover {
  background: rgb(74 222 128 / 8%);
  color: var(--dl-green-300);
}

.sticky-cta-btn-consult {
  padding: 8px 16px;
  border: none;
  border-radius: 8px;
  background: var(--dl-gold-500);
  color: var(--dl-green-900);
  font-size: 12px;
  font-weight: 600;
}

.sticky-cta-btn-consult:hover {
  background: var(--dl-gold-400);
  color: var(--dl-green-900);
}

.sticky-cta-dismiss-btn {
  color: var(--muted-foreground);
}

.sticky-cta-dismiss-btn:hover {
  color: var(--dl-text-cream);
}

.sticky-cta-info-text {
  margin: 0;
  overflow: hidden;
  color: var(--dl-text-cream);
  font-size: 14px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sticky-cta-info-desc {
  color: var(--muted-foreground);
}

@media (width >= 768px) {
  .sticky-cta-info-desc {
    display: inline;
  }
}

/* ─── Cookie Banner Styles ─── */
.cookie-banner {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 45;
  padding: 16px 24px;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.4s ease;
  border-top: 1px solid rgb(201 168 76 / 15%);
  background: var(--dl-surface-dark);
  backdrop-filter: blur(12px);
}

.cookie-banner.visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
}

.cookie-banner .inner i {
  flex-shrink: 0;
  color: var(--dl-gold-400);
  font-size: 24px;
}

.cookie-banner .inner p {
  flex: 1;
  min-width: 240px;
  margin: 0;
  color: rgb(200 195 185 / 75%);
  font-size: 13px;
  line-height: 1.5;
}

.cookie-banner .inner .btn-group {
  display: flex;
  flex-shrink: 0;
  gap: 8px;
}

/* Cookie banner dismiss button */
.cookie-dismiss {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  padding: 0;
  transition: all 0.2s;
  border: 1px solid rgb(201 168 76 / 15%);
  border-radius: 50%;
  background: transparent;
  color: rgb(200 195 185 / 40%);
  font-size: 14px;
  cursor: pointer;
}

.cookie-dismiss:hover {
  border-color: rgb(201 168 76 / 40%);
  background: rgb(201 168 76 / 10%);
  color: var(--dl-gold-400);
}

.cookie-btn-accept {
  padding: 8px 16px;
  border: none;
  border-radius: 8px;
  background: var(--dl-green-900);
  color: var(--dl-gold-400);
  font-size: 14px;
  font-weight: 600;
}

.cookie-btn-accept:hover {
  background: var(--dl-green-800);
  color: var(--dl-gold-300);
}

.cookie-btn-decline {
  padding: 8px 16px;
  border: 1px solid rgb(201 168 76 / 30%);
  border-radius: 8px;
  background: transparent;
  color: rgb(229 201 110 / 80%);
  font-size: 14px;
  font-weight: 500;
}

.cookie-btn-decline:hover {
  border-color: rgb(201 168 76 / 50%);
  color: var(--dl-gold-300);
}

/* ─── Inline CSS Replacement Utilities ─── */

/* Decorative section orbs */
.orb-gold-featured {
  position: absolute;
  top: 80px;
  left: 40px;
  width: 288px;
  height: 288px;
  border-radius: 50%;
  background: rgb(247 237 204 / 40%);
  pointer-events: none;
  filter: blur(100px);
}

.orb-green-featured {
  position: absolute;
  right: 40px;
  bottom: 80px;
  width: 224px;
  height: 224px;
  border-radius: 50%;
  background: rgb(209 250 229 / 40%);
  pointer-events: none;
  filter: blur(80px);
}

.orb-why-top {
  position: absolute;
  top: 0;
  left: 50%;
  width: 900px;
  height: 500px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgb(201 168 76 / 4%);
  pointer-events: none;
  filter: blur(120px);
}

.orb-why-bottom {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgb(6 78 59 / 8%);
  pointer-events: none;
  filter: blur(100px);
}

.orb-cta-tr {
  position: absolute;
  top: 0;
  right: 0;
  width: 384px;
  height: 384px;
  transform: translate(30%, -30%);
  border-radius: 50%;
  background: rgb(209 250 229 / 30%);
  pointer-events: none;
  filter: blur(100px);
}

.orb-cta-bl {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 288px;
  height: 288px;
  transform: translate(-30%, 30%);
  border-radius: 50%;
  background: rgb(240 220 160 / 30%);
  pointer-events: none;
  filter: blur(80px);
}

.orb-faq-tr {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgb(240 220 160 / 15%);
  pointer-events: none;
  filter: blur(100px);
}

.orb-faq-bl {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 256px;
  height: 256px;
  border-radius: 50%;
  background: rgb(209 250 229 / 50%);
  pointer-events: none;
  filter: blur(80px);
}

.orb-process-tr {
  position: absolute;
  top: 0;
  right: 0;
  width: 384px;
  height: 384px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgb(209 250 229 / 40%);
  pointer-events: none;
  filter: blur(100px);
}

.orb-process-bl {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 288px;
  height: 288px;
  transform: translateY(30%);
  border-radius: 50%;
  background: rgb(240 220 160 / 30%);
  pointer-events: none;
  filter: blur(80px);
}

.orb-section-tr {
  position: absolute;
  top: 80px;
  right: 0;
  width: 288px;
  height: 288px;
  border-radius: 50%;
  background: rgb(240 220 160 / 30%);
  pointer-events: none;
  filter: blur(100px);
}

.orb-section-bl {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 224px;
  height: 224px;
  border-radius: 50%;
  background: rgb(209 250 229 / 40%);
  pointer-events: none;
  filter: blur(80px);
}

/* Contact option borders */
.contact-option-phone {
  border: 1px solid rgb(16 185 129 / 10%) !important;
}

.contact-option-whatsapp {
  border: 1px solid rgb(74 222 128 / 10%) !important;
}

.contact-option-email {
  border: 1px solid rgb(201 168 76 / 10%) !important;
}

/* Arrow icon colors */
.arrow-gold-600 {
  color: var(--dl-gold-600);
}

.arrow-green-200 {
  color: var(--dl-green-200);
}

.arrow-gold-500 {
  color: var(--dl-gold-500);
}

/* Calendar icon wrapper */
.sticky-cta-icon-wrap {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--dl-green-900);
}

.sticky-cta-icon-wrap i {
  color: var(--dl-gold-400);
}

/* Search input */
.search-input-padded {
  padding-right: 36px;
  padding-left: 40px;
}

.search-clear-btn {
  position: absolute;
  top: 50%;
  right: 12px;
  display: none;
  transform: translateY(-50%);
  color: rgb(107 114 128 / 60%);
}

.service-count-text {
  margin-top: 10px;
  color: rgb(107 114 128 / 70%);
  font-size: 12px;
  text-align: center;
}

.service-no-results-box {
  display: none;
}

.no-results-title {
  color: var(--foreground);
  font-size: 14px;
  font-weight: 600;
}

.no-results-desc {
  color: var(--muted-foreground);
  font-size: 12px;
}

/* FAQ card content flex column */
.faq-card-content {
  flex: 1;
  min-width: 0;
}

/* CTA section max width */
.cta-container {
  max-width: 768px;
  margin: 0 auto;
}

/* Featured services max width */
.featured-services-container {
  max-width: 800px;
  margin: 0 auto;
}

/* Est badge icon */
.est-badge-icon {
  font-size: 12px;
}

/* Quick action borders */
.quick-action-whatsapp {
  border: 1px solid rgb(74 222 128 / 20%) !important;
  background: transparent !important;
  color: var(--dl-green-200) !important;
}

.quick-action-call {
  border: 1px solid rgb(201 168 76 / 20%) !important;
  background: transparent !important;
  color: var(--dl-gold-400) !important;
}

/* Contact item borders */
.contact-item-phone {
  border: 1px solid rgb(16 185 129 / 10%);
}

.contact-item-email {
  border: 1px solid rgb(201 168 76 / 10%);
}

.contact-item-neutral {
  border: 1px solid rgb(16 185 129 / 8%);
}

/* Quick action card */
.quick-action-card {
  padding: 24px;
  border: 1px solid rgb(201 168 76 / 12%);
  border-radius: 16px;
  background: rgb(17 27 21 / 95%);
  text-align: center;
}

.quick-action-text {
  margin-bottom: 16px;
  color: var(--muted-foreground);
  font-size: 13px;
}

/* Form heading */
.form-heading {
  font-size: 1.25rem;
}

/* Submit button */
.submit-btn-form {
  padding: 12px 24px !important;
  transition: all 0.3s !important;
  border: none !important;
  border-radius: 12px !important;
  background: var(--dl-gold-500) !important;
  color: var(--dl-green-900) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
}

/* Banking section */
.banking-section {
  background: var(--dl-green-950);
}

.banking-building-icon {
  color: var(--dl-gold-500);
}

.banking-info-icon {
  color: var(--dl-gold-400);
}

/* About why section bg */
.about-why-section {
  background: var(--dl-green-900);
}

/* Contact detail heading */

/* ─── Consult Modal Styles ─── */
.consult-modal .modal-close-btn {
  top: 16px;
  right: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgb(201 168 76 / 10%);
  color: rgb(232 228 221 / 70%);
  text-decoration: none;
}

.consult-modal .modal-close-btn:hover {
  background: rgb(201 168 76 / 20%);
  color: var(--dl-white);
}

.consult-modal .modal-icon-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--dl-green-900);
  color: var(--dl-gold-400);
}

.consult-modal .modal-title {
  margin-bottom: 8px;
  color: var(--dl-text-cream);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
}

.consult-modal .modal-desc {
  color: var(--muted-foreground);
  font-size: 14px;
  line-height: 1.5;
}

.consult-modal .contact-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  transition: background 0.2s;
  border-radius: 12px;
  text-decoration: none;
}

.consult-modal .contact-option:hover {
  background: rgb(255 255 255 / 3%);
}

.consult-modal .contact-option .icon-box {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
}

.consult-modal .contact-option .icon-box.green-bg {
  background: var(--dl-green-900);
  color: var(--dl-gold-400);
}

.consult-modal .contact-option .icon-box.whatsapp-bg {
  background: var(--dl-green-750);
  color: var(--dl-white);
}

.consult-modal .contact-option .icon-box.gold-bg {
  background: var(--dl-gold-600);
  color: var(--dl-white);
}

.consult-modal .contact-option .option-label {
  color: var(--dl-text-cream);
  font-size: 14px;
  font-weight: 600;
}

.consult-modal .contact-option .option-value {
  color: var(--muted-foreground);
  font-size: 12px;
}

.consult-modal .contact-option .option-arrow {
  margin-left: auto;
}

.consult-modal .modal-footer-text {
  padding-top: 12px;
  margin-top: 16px;
  border-top: 1px solid rgb(201 168 76 / 15%);
  text-align: center;
}

.consult-modal .modal-footer-text p {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 12px;
}

.consult-modal .modal-footer-text i {
  margin-right: 4px;
  color: var(--dl-gold-500);
}
