/* ============================================
   VCS — Veer Consultancy Services
   Premium Financial Advisory Website
   ============================================ */

/* --- Preloader --- */
.preloader {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: var(--navy, #0B1628);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

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

.preloader-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #C9A84C;
  opacity: 0;
  animation: preloaderReveal 1.2s 0.2s forwards;
}

.preloader-line {
  width: 0;
  height: 2px;
  background: #C9A84C;
  margin-top: 1rem;
  animation: preloaderLine 1s 0.5s forwards;
}

@keyframes preloaderReveal {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes preloaderLine {
  0% { width: 0; }
  100% { width: 80px; }
}

/* --- Scroll Progress Bar --- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, #C9A84C, #D4B96A);
  z-index: 1001;
  width: 0;
  transition: width 0.1s linear;
}

/* --- Page Transition --- */
.page-transition {
  opacity: 0;
  animation: pageIn 0.5s 0.1s forwards;
}

@keyframes pageIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #FAFAF7;
  --navy-light: #EAF3EE;
  --navy-mid: #E0EBE4;
  --gold: #1F5A44;
  --gold-light: #2a7a5a;
  --gold-dark: #163D30;
  --white: #1E1E1E;
  --gray: #5B5B5B;
  --gray-light: #D9E2DC;
  --text: #3A3A3A;
  --font-heading: 'Times New Roman', Georgia, serif;
  --font-body: 'Montserrat', 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

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

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

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(11, 22, 40, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(11, 22, 40, 0.98);
  border-bottom-color: rgba(201, 168, 76, 0.25);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  color: var(--gray);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

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

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all var(--transition);
  display: block;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* Parallax layer */
.hero-parallax-bg {
  position: absolute;
  top: -50px; left: 0; right: 0; bottom: -50px;
  background:
    radial-gradient(circle at 15% 85%, rgba(201,168,76,0.04) 0%, transparent 40%),
    radial-gradient(circle at 85% 15%, rgba(201,168,76,0.03) 0%, transparent 35%),
    radial-gradient(circle at 50% 50%, rgba(201,168,76,0.02) 0%, transparent 50%);
  pointer-events: none;
  will-change: transform;
}

.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 1280px) {
  .hero-split { padding: 0 3rem; }
}

.hero-content {
  text-align: left;
  position: relative;
  z-index: 1;
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-visual-card {
  background: rgba(15,30,53,0.8);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 12px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.hero-visual-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.hero-mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.hero-mini-stat {
  padding: 1rem;
  background: rgba(201,168,76,0.04);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 8px;
  text-align: center;
}

.hero-mini-stat .hms-value {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.hero-mini-stat .hms-label {
  font-size: 0.7rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.hero-service-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.hero-service-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text);
  padding: 0.4rem 0;
}

.hero-service-list li svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.hero-sanskrit {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s 0.6s forwards;
}

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

.hero-subtitle {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
  max-width: 550px;
  margin: 0 0 2rem;
  opacity: 0;
  animation: fadeUp 1s 0.9s forwards;
}

.hero-cta {
  display: inline-flex;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 1s 1.2s forwards;
}

@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .hero-content { text-align: center; }
  .hero-subtitle { margin: 0 auto 2rem; }
  .hero-visual-card { max-width: 420px; margin: 0 auto; }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

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

.btn-gold:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}

.btn-outline:hover {
  background: rgba(201, 168, 76, 0.08);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* --- Scroll Divider --- */
.gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto;
}

.gold-line-left {
  margin: 0;
}

/* --- Section Styles --- */
.section {
  padding: 100px 0;
  position: relative;
}

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

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gray);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
}

/* --- Trust Cards (Homepage) --- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.trust-card {
  background: var(--navy-light);
  border: 1px solid rgba(201, 168, 76, 0.1);
  padding: 1.8rem 1.5rem;
  border-radius: 4px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.trust-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.trust-card:hover {
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.trust-card:hover::before { transform: scaleX(1); }

.trust-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.15);
  line-height: 1;
  margin-bottom: 0.6rem;
}

.trust-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.trust-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.65;
}

/* --- Comparison Visual (Side-by-Side) --- */
.comparison-visual {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
}

.comparison-col {
  padding: 2rem;
  border-radius: 10px;
}

.comparison-them {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
}

.comparison-us {
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, rgba(201,168,76,0.03) 100%);
  border: 1px solid rgba(201,168,76,0.2);
  box-shadow: 0 8px 30px rgba(201,168,76,0.08);
}

.comparison-col-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(255,255,255,0.06);
}

.comparison-us .comparison-col-header {
  border-bottom-color: rgba(201,168,76,0.25);
}

.comparison-col-label {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gray);
}

.comparison-us .comparison-col-label {
  color: var(--gold);
}

.comparison-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--gray);
}

.comparison-us .comparison-list li {
  color: var(--text);
}

.comparison-list li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.comparison-them .comparison-list li svg {
  stroke: #e74c3c;
  opacity: 0.5;
}

.comparison-us .comparison-list li svg {
  stroke: var(--gold);
}

.comparison-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
}

.comparison-divider span {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.4;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .comparison-visual { grid-template-columns: 1fr; gap: 1rem; }
  .comparison-divider { padding: 0.5rem 0; }
  .comparison-divider span { font-size: 0.75rem; }
}

/* --- Old Comparison Table (kept for subpages) --- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
}

.comparison-table thead th {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  padding: 1.2rem 1.5rem;
  text-align: left;
  border-bottom: 2px solid var(--gold);
}

.comparison-table thead th:first-child { color: var(--gray); }
.comparison-table thead th:last-child { color: var(--gold); }

.comparison-table tbody td {
  padding: 1rem 1.5rem;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  vertical-align: top;
}

.comparison-table tbody td:first-child {
  color: var(--gray);
  opacity: 0.7;
}

.comparison-table tbody td:last-child {
  color: var(--white);
  font-weight: 500;
}

.comparison-table tbody tr:hover {
  background: rgba(201, 168, 76, 0.03);
}

/* --- Values Page --- */
.values-intro {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}

.shlok-section {
  background: var(--navy-light);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 4px;
  padding: 3.5rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.shlok-section::before,
.shlok-section::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  border-color: var(--gold);
  opacity: 0.3;
}

.shlok-section::before {
  top: 1rem; left: 1rem;
  border-top: 2px solid;
  border-left: 2px solid;
}

.shlok-section::after {
  bottom: 1rem; right: 1rem;
  border-bottom: 2px solid;
  border-right: 2px solid;
}

.shlok-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.shlok-text {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.shlok-meaning {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
  max-width: 550px;
  margin: 0 auto 1.5rem;
}

.shlok-note {
  font-size: 0.9rem;
  color: var(--text);
  font-style: italic;
}

/* --- Team Page --- */
.team-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.team-intro .sanskrit {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.team-intro .translation {
  font-size: 0.9rem;
  color: var(--gray);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.team-card {
  background: var(--navy-light);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 4px;
  padding: 2.5rem;
  transition: all var(--transition);
}

.team-card:hover {
  border-color: rgba(201, 168, 76, 0.25);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.team-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: start;
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}

.team-card.featured .team-avatar {
  width: 100px;
  height: 100px;
  font-size: 1.8rem;
}

.team-card-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.team-card.featured .team-card-header {
  margin-bottom: 0;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.03em;
}

.team-bio {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.8;
}

.team-card.featured .team-bio {
  margin-top: 1.5rem;
}

/* --- Services Page --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--navy-light);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  transition: all var(--transition);
  position: relative;
  cursor: pointer;
}

a.service-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.service-card:hover {
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 4px;
  background: rgba(201, 168, 76, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.service-card ul {
  list-style: none;
  padding: 0;
}

.service-card ul li {
  font-size: 0.88rem;
  color: var(--gray);
  padding: 0.3rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.service-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 6px;
  height: 6px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
}

/* Service Detail Section — Two Column Layout */
.service-detail {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.06);
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: start;
}

.service-detail:last-child { border-bottom: none; }

.service-detail-main {
  min-width: 0;
}

.service-detail-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-detail-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.2);
  line-height: 1;
  flex-shrink: 0;
}

.service-detail h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

.service-detail-content {
  max-width: 100%;
}

.service-detail-content p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.service-detail-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.2rem;
}

.service-detail-content ul li {
  font-size: 0.88rem;
  color: var(--text);
  padding: 0.35rem 0 0.35rem 1.5rem;
  position: relative;
}

/* Visual sidebar for service details */
.service-detail-sidebar {
  background: linear-gradient(135deg, rgba(201,168,76,0.1) 0%, rgba(201,168,76,0.04) 100%);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 10px;
  padding: 1.8rem;
  position: sticky;
  top: 100px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2), inset 0 1px 0 rgba(201,168,76,0.15);
}

.sidebar-icon {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--gold);
}

.sidebar-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.sidebar-metrics {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.sidebar-metric {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.sidebar-metric-value {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}

.sidebar-metric-label {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.sidebar-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.15);
  color: var(--gold);
  white-space: nowrap;
}

.sidebar-who {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.6;
  padding-top: 1rem;
  border-top: 1px solid rgba(201,168,76,0.1);
}

.sidebar-who strong {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

/* Services Quick Nav */
.services-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.services-nav a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(201,168,76,0.15);
  color: var(--gray);
  text-decoration: none;
  transition: all 0.3s;
}

.services-nav a:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
  color: var(--gold);
}

/* Lead Capture CTA */
.lead-capture {
  background: linear-gradient(135deg, rgba(201,168,76,0.1) 0%, rgba(201,168,76,0.03) 100%);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: center;
  margin: 3rem 0;
}

.lead-capture-content h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.lead-capture-content p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

.lead-capture-form {
  display: flex;
  gap: 0.5rem;
}

.lead-capture-form input {
  flex: 1;
  padding: 0.85rem 1.2rem;
  border-radius: 6px;
  border: 1px solid rgba(201,168,76,0.2);
  background: rgba(0,0,0,0.3);
  color: var(--white);
  font-size: 0.85rem;
  font-family: var(--font-body);
}

.lead-capture-form input::placeholder {
  color: var(--gray);
}

.lead-capture-form button {
  padding: 0.85rem 1.5rem;
  border-radius: 6px;
  border: none;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s;
}

.lead-capture-form button:hover {
  background: var(--gold-dark, #B8943F);
}

/* Inline CTA Card */
.inline-cta {
  background: var(--navy-light);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 8px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin: 2rem 0;
}

.inline-cta p {
  font-size: 0.95rem;
  color: var(--text);
  margin: 0;
}

.inline-cta p strong {
  color: var(--gold);
}

/* Services Stats Strip */
.services-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.services-stat {
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(201,168,76,0.04);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 8px;
}

.services-stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.services-stat-label {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Fund Visual Cards */
.fund-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin: 1.5rem 0;
}

.fund-card {
  background: rgba(201,168,76,0.04);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 8px;
  padding: 1.5rem;
}

.fund-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.fund-card .fund-card-for {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.fund-card .fund-card-providers {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
}

@media (max-width: 900px) {
  .service-detail { grid-template-columns: 1fr; }
  .service-detail-sidebar { position: static; }
  .lead-capture { grid-template-columns: 1fr; }
  .services-stats { grid-template-columns: repeat(2, 1fr); }
  .fund-cards { grid-template-columns: 1fr; }
}

.service-detail-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 8px;
  height: 1.5px;
  background: var(--gold);
}

/* --- Fund Syndication Table --- */
.fund-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.88rem;
}

.fund-table th {
  background: rgba(201, 168, 76, 0.08);
  color: var(--gold);
  font-weight: 600;
  padding: 0.8rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.fund-table td {
  padding: 0.8rem 1rem;
  color: var(--gray);
  border-bottom: 1px solid rgba(201, 168, 76, 0.06);
  vertical-align: top;
}

.fund-table tr:hover td { background: rgba(201, 168, 76, 0.03); }

/* --- Capabilities Page --- */
.capability-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  align-items: start;
}

.capability-item:last-child { border-bottom: none; }

.capability-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.2);
  line-height: 1;
}

.capability-item h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}

.capability-item p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: rgba(201, 168, 76, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.1rem;
}

.contact-item-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.contact-item-value {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.6;
}

.contact-form {
  background: var(--navy-light);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 4px;
  padding: 2.5rem;
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--navy);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 2px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* --- Footer --- */
.footer {
  background: var(--navy-light);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding: 3rem 0 1.5rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand .nav-logo-text {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--gray);
  max-width: 300px;
  line-height: 1.6;
}

.footer-links h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

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

.footer-links ul li { margin-bottom: 0.4rem; }

.footer-links ul a {
  font-size: 0.85rem;
  color: var(--gray);
}

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

.footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray);
  opacity: 0.7;
}

/* --- Animations --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* --- Page Header Banner --- */
.page-hero {
  padding: 160px 2rem 80px;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(201, 168, 76, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero .section-label { margin-bottom: 0.75rem; }

.page-hero .section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}

/* --- Mobile Responsive --- */
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card.featured { grid-column: span 1; grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 80px; left: 0; right: 0; bottom: 0;
    background: rgba(11, 22, 40, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
  }

  .nav-links.active { display: flex; }
  .hamburger { display: flex; }

  .nav-links a {
    font-size: 1rem;
  }

  .hero { padding: 140px 1.5rem 60px; }
  .hero-sanskrit { font-size: 1.8rem; }

  .section { padding: 60px 0; }
  .section-header { margin-bottom: 2.5rem; }

  .container { padding: 0 1.25rem; }

  .comparison-table { font-size: 0.82rem; }
  .comparison-table thead th,
  .comparison-table tbody td { padding: 0.7rem 0.8rem; }

  .shlok-section { padding: 2rem 1.5rem; }
  .shlok-text { font-size: 1.5rem; }

  .capability-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .capability-number { font-size: 2.5rem; }

  .team-card { padding: 1.5rem; }
  .team-card-header { flex-direction: column; gap: 1rem; }

  .footer-inner { flex-direction: column; gap: 1.5rem; }

  .form-row { grid-template-columns: 1fr; }

  .hero-cta { flex-direction: column; align-items: center; }

  .service-detail-header { flex-direction: column; gap: 0.5rem; }

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

@media (max-width: 480px) {
  html { font-size: 15px; }
  .nav-inner { padding: 0 1rem; }
  .hero { min-height: auto; padding: 120px 1rem 50px; }
}

/* --- Utility --- */
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 9990;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

.whatsapp-float .wa-tooltip {
  position: absolute;
  right: 68px;
  background: var(--navy-light);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  border: 1px solid rgba(201,168,76,0.15);
}

.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9990;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-light);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.back-to-top svg { width: 20px; height: 20px; }

/* ============================================
   STATS COUNTER SECTION
   ============================================ */
.stats-bar {
  background: var(--navy-light);
  border-top: 1px solid rgba(201,168,76,0.08);
  border-bottom: 1px solid rgba(201,168,76,0.08);
  padding: 3.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(201,168,76,0.15);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .stat-item::after { display: none; }
}

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

/* ============================================
   CREDENTIALS / TRUST BADGES
   ============================================ */
.credentials-strip {
  padding: 3.5rem 0;
  background: linear-gradient(180deg, var(--navy-light) 0%, var(--navy) 100%);
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.credentials-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 2rem;
}

.credentials-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.credential-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.5rem;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 6px;
  background: rgba(201,168,76,0.05);
  transition: all var(--transition);
  box-shadow: 0 2px 12px rgba(201,168,76,0.06);
}

.credential-badge:hover {
  border-color: rgba(201,168,76,0.5);
  background: rgba(201,168,76,0.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(201,168,76,0.12);
}

.credential-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.credential-badge-icon svg { width: 16px; height: 16px; }

.credential-badge-text {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 1.3;
}

.credential-badge-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--gold);
  opacity: 0.85;
  margin-top: 1px;
}

@media (max-width: 768px) {
  .credentials-row { gap: 0.8rem; }
  .credential-badge { padding: 0.7rem 1rem; }
}

/* ============================================
   INDIA MAP / REGIONAL PRESENCE
   ============================================ */
.region-section {
  padding: 4rem 0;
}

.region-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.region-map-embed {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.15);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.map-container {
  width: 100%;
  height: 500px;
  position: relative;
  background: var(--navy-light);
  border-radius: 12px;
  overflow: hidden;
}

/* MapLibre GL overrides */
.map-container .maplibregl-popup-content {
  background: #fff;
  color: #333;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  padding: 0;
}
.map-container .maplibregl-popup-tip { border-top-color: #fff; }
.map-container .maplibregl-ctrl-attrib { font-size: 10px; opacity: 0.7; }

.map-office-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(11,22,40,0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  z-index: 10;
}

.map-office-badge svg {
  stroke: var(--gold);
  flex-shrink: 0;
}

.map-office-badge span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.03em;
}

.region-info h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.region-info p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.region-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.region-list li {
  font-size: 0.9rem;
  color: var(--text);
  padding-left: 1.2rem;
  position: relative;
}

.region-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55rem;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

@media (max-width: 768px) {
  .region-grid { grid-template-columns: 1fr; }
  .map-container { height: 350px; }
}

/* ============================================
   AI CHATBOT
   ============================================ */
.chatbot-trigger {
  position: fixed;
  bottom: 170px;
  right: 28px;
  z-index: 9990;
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
  transition: all var(--transition);
}

.chatbot-trigger:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(201,168,76,0.45);
}

.chatbot-trigger svg { width: 26px; height: 26px; fill: var(--navy); }

.chatbot-trigger .cb-tooltip {
  position: absolute;
  right: 68px;
  background: var(--navy-light);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  border: 1px solid rgba(201,168,76,0.15);
}

.chatbot-trigger:hover .cb-tooltip { opacity: 1; }

.chatbot-window {
  position: fixed;
  bottom: 240px;
  right: 28px;
  z-index: 9991;
  width: 380px;
  max-height: 520px;
  background: var(--navy);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.chatbot-window.open { display: flex; }

.chatbot-header {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chatbot-header-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.chatbot-header-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
}

.chatbot-header-name {
  font-weight: 700;
  font-size: 0.9rem;
}

.chatbot-header-status {
  font-size: 0.7rem;
  opacity: 0.8;
}

.chatbot-close {
  background: none;
  border: none;
  color: var(--navy);
  cursor: pointer;
  font-size: 1.3rem;
  padding: 0.25rem;
  line-height: 1;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.chatbot-close:hover { opacity: 1; }

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-height: 340px;
  min-height: 250px;
}

.chatbot-messages::-webkit-scrollbar { width: 4px; }
.chatbot-messages::-webkit-scrollbar-track { background: transparent; }
.chatbot-messages::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.2); border-radius: 2px; }

.cb-msg {
  max-width: 85%;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  font-size: 0.85rem;
  line-height: 1.6;
  animation: cbFadeIn 0.3s ease;
}

@keyframes cbFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.cb-msg.bot {
  background: var(--navy-light);
  color: var(--text);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  border: 1px solid rgba(201,168,76,0.08);
}

.cb-msg.user {
  background: var(--gold);
  color: var(--navy);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
  font-weight: 500;
}

.cb-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.cb-quick-btn {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--gold);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.cb-quick-btn:hover {
  background: var(--gold);
  color: var(--navy);
}

.chatbot-input {
  display: flex;
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 0.75rem;
  gap: 0.5rem;
}

.chatbot-input input {
  flex: 1;
  background: var(--navy-light);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 20px;
  padding: 0.6rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
}

.chatbot-input input:focus { outline: none; border-color: var(--gold); }

.chatbot-input input::placeholder { color: var(--gray); opacity: 0.5; }

.chatbot-input button {
  background: var(--gold);
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
}

.chatbot-input button:hover { background: var(--gold-light); }

.chatbot-input button svg { width: 16px; height: 16px; fill: var(--navy); }

/* ============================================
   TESTIMONIAL CAROUSEL
   ============================================ */
.testimonials-section { padding: 80px 0; }

.testimonial-carousel {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 1rem;
}

.testimonial-card {
  background: var(--navy-light);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 4px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: rgba(201,168,76,0.15);
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  line-height: 1;
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 0.2rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201,168,76,0.2);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.testimonial-dot.active { background: var(--gold); transform: scale(1.3); }

/* ============================================
   PROCESS TIMELINE
   ============================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
  opacity: 0.3;
}

.process-step {
  text-align: center;
  padding: 0 1rem;
  position: relative;
}

.process-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--navy-light);
  border: 2px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  transition: all var(--transition);
  position: relative;
  z-index: 1;
}

.process-step:hover .process-icon {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
  transform: scale(1.08);
}

.process-icon svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 1.5; }

.process-number {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}

.process-step h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .process-grid::before { display: none; }
}

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

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(201,168,76,0.08);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  padding: 1.2rem 2rem 1.2rem 0;
  cursor: pointer;
  position: relative;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--gold); }

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--gold);
  transition: transform var(--transition);
}

.faq-item.open .faq-question::after {
  content: '\2212';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 1.2rem;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1002;
  background: var(--navy-light);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show { transform: translateY(0); }

.cookie-banner p {
  font-size: 0.82rem;
  color: var(--gray);
  flex: 1;
}

.cookie-banner a { color: var(--gold); }

.cookie-accept {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 0.5rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: all var(--transition);
  white-space: nowrap;
}

.cookie-accept:hover { background: var(--gold-light); }

@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; text-align: center; padding: 1rem; }
}

/* ============================================
   INDUSTRY MARQUEE
   ============================================ */
.marquee-section {
  padding: 2rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(201,168,76,0.06);
  border-bottom: 1px solid rgba(201,168,76,0.06);
}

.marquee-label {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  opacity: 0.5;
  margin-bottom: 1rem;
}

.marquee-track {
  display: flex;
  animation: marqueeScroll 25s linear infinite;
  width: max-content;
}

.marquee-track:hover { animation-play-state: paused; }

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 2.5rem;
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray);
  opacity: 0.6;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.marquee-item svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.5; opacity: 0.5; }

/* ============================================
   LINKEDIN LINK ON TEAM CARDS
   ============================================ */
.team-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold);
  opacity: 0.7;
  transition: opacity var(--transition);
}

.team-linkedin:hover { opacity: 1; }

.team-linkedin svg { width: 14px; height: 14px; fill: var(--gold); }

/* ============================================
   BROCHURE DOWNLOAD BUTTON
   ============================================ */
.brochure-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.5rem;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 500;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.brochure-btn:hover {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
  color: var(--gold);
}

.brochure-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

@media (max-width: 480px) {
  .chatbot-window {
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: 100vh;
    border-radius: 0;
  }
  .chatbot-messages { max-height: calc(100vh - 180px); }
  .whatsapp-float { bottom: 90px; right: 16px; }
  .chatbot-trigger { bottom: 155px; right: 16px; }
  .back-to-top { right: 16px; bottom: 20px; }
}

/* ============================================
   VISUAL GRAPHICS SYSTEM
   ============================================ */

/* --- Page Hero Decorative Pattern --- */
.page-hero {
  position: relative;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  opacity: 0.06;
}

.hero-pattern svg {
  width: 100%;
  height: 100%;
}

/* --- Floating Decorative Orbs --- */
.float-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.04;
}

.float-orb-1 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  top: -100px; right: -80px;
  animation: floatOrb 8s ease-in-out infinite;
}

.float-orb-2 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  bottom: -60px; left: -40px;
  animation: floatOrb 10s ease-in-out infinite reverse;
}

.float-orb-3 {
  width: 150px; height: 150px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  top: 50%; left: 60%;
  animation: floatOrb 12s ease-in-out infinite 2s;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(15px, -20px); }
  66% { transform: translate(-10px, 15px); }
}

/* --- Value Card Icons --- */
.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(201,168,76,0.12) 0%, rgba(201,168,76,0.04) 100%);
  border: 1px solid rgba(201,168,76,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  transition: all 0.4s ease;
}

.trust-card:hover .value-icon {
  background: linear-gradient(135deg, rgba(201,168,76,0.2) 0%, rgba(201,168,76,0.08) 100%);
  border-color: rgba(201,168,76,0.4);
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 8px 25px rgba(201,168,76,0.15);
}

.value-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* --- Section Visual Divider --- */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 0;
}

.section-divider-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.section-divider-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-divider-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  opacity: 0.5;
}

/* --- Circular Progress Ring --- */
.progress-ring-wrapper {
  text-align: center;
}

.progress-ring {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
}

.progress-ring svg {
  transform: rotate(-90deg);
}

.progress-ring-bg {
  fill: none;
  stroke: rgba(201,168,76,0.1);
  stroke-width: 4;
}

.progress-ring-fill {
  fill: none;
  stroke: var(--gold);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 326;
  stroke-dashoffset: 326;
  transition: stroke-dashoffset 1.5s ease-out;
}

.progress-ring.animated .progress-ring-fill {
  stroke-dashoffset: var(--offset);
}

.progress-ring-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}

.progress-ring-label {
  font-size: 0.82rem;
  color: var(--gray);
  font-weight: 500;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (max-width: 768px) {
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- Capability Visual Icons --- */
.capability-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(201,168,76,0.1) 0%, rgba(201,168,76,0.03) 100%);
  border: 1px solid rgba(201,168,76,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.capability-item:hover .capability-icon {
  background: linear-gradient(135deg, rgba(201,168,76,0.18) 0%, rgba(201,168,76,0.06) 100%);
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(201,168,76,0.12);
}

.capability-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* --- Service Card Icons --- */
.service-visual-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(201,168,76,0.12) 0%, rgba(201,168,76,0.04) 100%);
  border: 1px solid rgba(201,168,76,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.35s ease;
}

.service-card:hover .service-visual-icon {
  border-color: rgba(201,168,76,0.4);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(201,168,76,0.1);
}

.service-visual-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* --- Team Expertise Tags --- */
.team-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.8rem;
}

.expertise-tag {
  font-size: 0.68rem;
  font-weight: 500;
  padding: 0.25rem 0.6rem;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 20px;
  color: var(--gold);
  letter-spacing: 0.03em;
}

/* --- Decorative Geometric Background --- */
.geo-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.geo-bg svg {
  position: absolute;
  opacity: 0.03;
}

.geo-bg .geo-diamond {
  width: 200px; height: 200px;
  top: 10%; right: 5%;
  animation: geoRotate 30s linear infinite;
}

.geo-bg .geo-circle {
  width: 300px; height: 300px;
  bottom: 5%; left: 3%;
  animation: geoRotate 40s linear infinite reverse;
}

@keyframes geoRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* --- Enhanced Quote Block --- */
.decorated-quote {
  position: relative;
  padding: 2.5rem 3rem;
  background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, rgba(201,168,76,0.02) 100%);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 8px;
  margin: 2rem 0;
}

.decorated-quote::before,
.decorated-quote::after {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  line-height: 1;
}

.decorated-quote::before {
  content: '\201C';
  top: 0.5rem;
  left: 1rem;
}

.decorated-quote::after {
  content: '\201D';
  bottom: -0.5rem;
  right: 1rem;
}

/* --- Visual Bar Chart --- */
.bar-chart {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.bar-chart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.bar-chart-label {
  min-width: 120px;
  font-size: 0.82rem;
  color: var(--gray);
  text-align: right;
  font-weight: 500;
}

.bar-chart-track {
  flex: 1;
  height: 8px;
  background: rgba(201,168,76,0.08);
  border-radius: 4px;
  overflow: hidden;
}

.bar-chart-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 4px;
  width: 0;
  transition: width 1.2s ease-out;
}

.bar-chart-fill.animated {
  width: var(--fill-width);
}

.bar-chart-value {
  min-width: 40px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
}

/* --- Relationship / Flow Diagram --- */
.flow-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 2rem 0;
}

.flow-node {
  text-align: center;
  padding: 1.2rem 1.5rem;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 8px;
  min-width: 140px;
  transition: all 0.3s ease;
}

.flow-node:hover {
  border-color: rgba(201,168,76,0.4);
  background: rgba(201,168,76,0.1);
  transform: translateY(-3px);
}

.flow-node-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-node-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.flow-node h5 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.flow-node p {
  font-size: 0.72rem;
  color: var(--gray);
}

.flow-arrow {
  color: var(--gold);
  opacity: 0.3;
  font-size: 1.5rem;
  padding: 0 0.5rem;
}

@media (max-width: 768px) {
  .flow-diagram { flex-direction: column; gap: 0.5rem; }
  .flow-arrow { transform: rotate(90deg); }
}

/* --- Animated Gradient Border Cards --- */
.gradient-border-card {
  position: relative;
  padding: 2rem;
  background: var(--navy-light);
  border-radius: 8px;
  overflow: hidden;
}

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

.gradient-border-card:hover::before {
  opacity: 1;
}

/* --- Icon List (for services detail) --- */
.icon-list {
  list-style: none;
  padding: 0;
}

.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.6rem 0;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
}

.icon-list li svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- Visual Section Headers with Icon --- */
.section-header-visual {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}

.section-header-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

/* ============================================
   FLOATING CHAT BUTTONS — Right Edge, Collapsible
   ============================================ */
.chat-float-stack {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.chat-float-stack.visible {
  opacity: 1;
}

.chat-float-stack > * {
  pointer-events: all;
}

/* Toggle button — always visible on the edge */
.chat-float-toggle {
  width: 40px;
  height: 40px;
  border-radius: 8px 0 0 8px;
  background: linear-gradient(135deg, #C9A84C, #B8943F);
  border: none;
  border-right: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: -3px 0 12px rgba(0,0,0,0.3);
  transition: all 0.3s;
  position: relative;
}

.chat-float-toggle:hover {
  width: 44px;
  box-shadow: -4px 0 18px rgba(201,168,76,0.4);
}

.chat-float-toggle svg {
  width: 20px;
  height: 20px;
  fill: #0B1628;
  stroke: #0B1628;
  stroke-width: 0;
  transition: transform 0.3s;
}

.chat-float-stack.expanded .chat-float-toggle svg {
  transform: rotate(180deg);
}

/* Buttons container — slides out */
.chat-float-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  background: #0f1e35;
  border: 1px solid rgba(201,168,76,0.2);
  border-right: none;
  border-radius: 10px 0 0 10px;
  box-shadow: -4px 0 20px rgba(0,0,0,0.4);
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
  pointer-events: none;
  margin-bottom: 8px;
}

.chat-float-stack.expanded .chat-float-buttons {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}

.chat-float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  background: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.chat-float-btn:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(201,168,76,0.15);
}

.chat-float-btn-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* WhatsApp */
.chat-float-wa .chat-float-btn-icon {
  background: #25D366;
}

.chat-float-wa .chat-float-btn-icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

/* AI Chat */
.chat-float-ai .chat-float-btn-icon {
  background: linear-gradient(135deg, #C9A84C, #B8943F);
}

.chat-float-ai .chat-float-btn-icon svg {
  width: 18px;
  height: 18px;
  stroke: #0B1628;
  fill: none;
  stroke-width: 1.5;
}

.chat-float-btn-text {
  font-family: var(--f100 65942  100 65942    0     0   695k      0 --:--:-- --:--:-- --:--:--  699k
ont-body, 'Montserrat', sans-serif);
  font-size: 0.78rem;
  font-weight: 600;
  color: #e8e8e8;
  line-height: 1.3;
}

.chat-float-btn-text small {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  color: #777;
  margin-top: 1px;
}

@media (max-width: 480px) {
  .chat-float-toggle { width: 36px; height: 36px; }
  .chat-float-btn-text { display: none; }
  .chat-float-btn { padding: 8px; }
}

/* ============================================
   THEME TOGGLE BUTTON
   ============================================ */
.theme-toggle {
  background: none;
  border: 1.5px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  margin-left: 1rem;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
  flex-shrink: 0;
}

.theme-toggle:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  transform: scale(1.08);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Day mode (default): show moon icon to switch to night */
.theme-icon-sun { display: none; }
.theme-icon-moon { display: block; }

/* Night mode: show sun icon to switch to day */
[data-theme="night"] .theme-icon-sun { display: block; }
[data-theme="night"] .theme-icon-moon { display: none; }

/* ============================================
   DAY MODE THEME OVERRIDES
   ============================================ */
[data-theme="night"] {
  --navy: #0B1628;
  --navy-light: #11203A;
  --navy-mid: #162844;
  --gold: #C9A84C;
  --gold-light: #D4B96A;
  --gold-dark: #A8893A;
  --white: #FAFAFA;
  --gray: #B8C0CC;
  --gray-light: #E0E4EA;
  --text: #CBD5E1;
  --font-heading: 'Times New Roman', Georgia, serif;
  --font-body: 'Montserrat', 'Segoe UI', sans-serif;
}

/* --- Preloader --- */
[data-theme="day"] .preloader {
  background: #FAFAF7;
}
[data-theme="day"] .preloader-logo {
  color: #1F5A44;
}
[data-theme="day"] .preloader-line {
  background: #1F5A44;
}

/* --- Scroll Progress --- */
[data-theme="day"] .scroll-progress {
  background: linear-gradient(90deg, #1F5A44, #2a7a5a);
}

/* --- Navbar --- */
[data-theme="day"] .navbar {
  background: rgba(250, 250, 247, 0.95);
  border-bottom: 1px solid rgba(31, 90, 68, 0.12);
  backdrop-filter: blur(20px);
}
[data-theme="day"] .navbar.scrolled {
  background: rgba(250, 250, 247, 0.98);
  border-bottom-color: rgba(31, 90, 68, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}
[data-theme="day"] .nav-links a {
  color: #3A3A3A;
}
[data-theme="day"] .nav-links a:hover,
[data-theme="day"] .nav-links a.active {
  color: #1F5A44;
}
[data-theme="day"] .hamburger span {
  background: #3A3A3A;
}

/* --- Theme Toggle in Day Mode --- */
[data-theme="day"] .theme-toggle {
  border-color: rgba(31, 90, 68, 0.3);
}
[data-theme="day"] .theme-toggle:hover {
  border-color: #1F5A44;
  background: rgba(31, 90, 68, 0.08);
}
[data-theme="day"] .theme-toggle svg {
  stroke: #1F5A44;
}

/* --- Mobile Menu --- */
[data-theme="day"] .mobile-menu {
  background: rgba(250, 250, 247, 0.98);
}
[data-theme="day"] .mobile-menu a {
  color: #3A3A3A;
}
[data-theme="day"] .mobile-menu a:hover,
[data-theme="day"] .mobile-menu a.active {
  color: #1F5A44;
}

/* --- Hero Patterns & Backgrounds --- */
[data-theme="day"] .hero-pattern {
  background: radial-gradient(ellipse at 20% 50%, rgba(31, 90, 68, 0.04) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(31, 90, 68, 0.03) 0%, transparent 50%);
}
[data-theme="day"] .section-pattern {
  background: radial-gradient(ellipse at 20% 50%, rgba(31, 90, 68, 0.03) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(31, 90, 68, 0.02) 0%, transparent 50%);
}

/* --- Hero Visual Cards --- */
[data-theme="day"] .hero-visual-card {
  background: rgba(234, 243, 238, 0.8);
  border: 1px solid rgba(31, 90, 68, 0.12);
}
[data-theme="day"] .hero-mini-stat {
  background: rgba(31, 90, 68, 0.04);
  border: 1px solid rgba(31, 90, 68, 0.1);
}

/* --- Trust/Service Cards --- */
[data-theme="day"] .trust-card {
  border: 1px solid rgba(31, 90, 68, 0.1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
[data-theme="day"] .trust-card:hover {
  border-color: rgba(31, 90, 68, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
[data-theme="day"] .trust-card-number {
  color: rgba(31, 90, 68, 0.12);
}

[data-theme="day"] .service-card {
  border: 1px solid rgba(31, 90, 68, 0.1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
[data-theme="day"] .service-card:hover {
  border-color: rgba(31, 90, 68, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
[data-theme="day"] .service-card-icon {
  background: rgba(31, 90, 68, 0.08);
}

/* --- Service Detail --- */
[data-theme="day"] .service-detail {
  border-bottom: 1px solid rgba(31, 90, 68, 0.08);
}
[data-theme="day"] .service-detail-icon {
  color: rgba(31, 90, 68, 0.25);
}
[data-theme="day"] .service-detail-sidebar {
  background: linear-gradient(135deg, rgba(31, 90, 68, 0.08) 0%, rgba(31, 90, 68, 0.03) 100%);
  border: 1px solid rgba(31, 90, 68, 0.18);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(31, 90, 68, 0.1);
}
[data-theme="day"] .service-visual-icon {
  background: rgba(31, 90, 68, 0.08);
}

/* --- Comparison Section --- */
[data-theme="day"] .comparison-them {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
[data-theme="day"] .comparison-us {
  background: linear-gradient(135deg, rgba(31, 90, 68, 0.06) 0%, rgba(31, 90, 68, 0.02) 100%);
  border: 1px solid rgba(31, 90, 68, 0.15);
  box-shadow: 0 8px 30px rgba(31, 90, 68, 0.06);
}
[data-theme="day"] .comparison-col-header {
  border-bottom: 2px solid rgba(0, 0, 0, 0.06);
}
[data-theme="day"] .comparison-us .comparison-col-header {
  border-bottom-color: rgba(31, 90, 68, 0.2);
}
[data-theme="day"] .comparison-table tbody td {
  border-bottom: 1px solid rgba(31, 90, 68, 0.08);
}
[data-theme="day"] .comparison-table tbody tr:hover {
  background: rgba(31, 90, 68, 0.03);
}

/* --- Shlok Section --- */
[data-theme="day"] .shlok-section {
  border: 1px solid rgba(31, 90, 68, 0.12);
}

/* --- Lead Capture / Inline CTA --- */
[data-theme="day"] .lead-capture {
  background: linear-gradient(135deg, rgba(31, 90, 68, 0.06) 0%, rgba(31, 90, 68, 0.02) 100%);
  border: 1px solid rgba(31, 90, 68, 0.15);
}
[data-theme="day"] .lead-capture-form input {
  border: 1px solid rgba(31, 90, 68, 0.2);
  background: rgba(255, 255, 255, 0.8);
  color: #1E1E1E;
}
[data-theme="day"] .lead-capture-form input::placeholder {
  color: #888;
}
[data-theme="day"] .inline-cta {
  border: 1px solid rgba(31, 90, 68, 0.12);
}

/* --- Services Stats --- */
[data-theme="day"] .services-stat {
  background: rgba(31, 90, 68, 0.04);
  border: 1px solid rgba(31, 90, 68, 0.1);
}

/* --- Fund Cards & Table --- */
[data-theme="day"] .fund-card {
  background: rgba(31, 90, 68, 0.04);
  border: 1px solid rgba(31, 90, 68, 0.1);
}
[data-theme="day"] .fund-table th {
  background: rgba(31, 90, 68, 0.06);
  border-bottom: 1px solid rgba(31, 90, 68, 0.15);
}
[data-theme="day"] .fund-table td {
  border-bottom: 1px solid rgba(31, 90, 68, 0.06);
}
[data-theme="day"] .fund-table tr:hover td {
  background: rgba(31, 90, 68, 0.03);
}

/* --- Capability Section --- */
[data-theme="day"] .capability-item {
  border-bottom: 1px solid rgba(31, 90, 68, 0.08);
}
[data-theme="day"] .capability-number {
  color: rgba(31, 90, 68, 0.15);
}
[data-theme="day"] .capability-item-icon {
  background: rgba(31, 90, 68, 0.06);
}
[data-theme="day"] .capability-icon {
  background: linear-gradient(135deg, rgba(31, 90, 68, 0.08) 0%, rgba(31, 90, 68, 0.03) 100%);
  border: 1px solid rgba(31, 90, 68, 0.12);
}

/* --- Contact Form --- */
[data-theme="day"] .contact-form {
  border: 1px solid rgba(31, 90, 68, 0.1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
[data-theme="day"] .form-group input,
[data-theme="day"] .form-group select,
[data-theme="day"] .form-group textarea {
  background: #FFFFFF;
  border: 1px solid rgba(31, 90, 68, 0.18);
  color: #1E1E1E;
}
[data-theme="day"] .form-group input::placeholder,
[data-theme="day"] .form-group textarea::placeholder {
  color: #999;
}
[data-theme="day"] .form-group input:focus,
[data-theme="day"] .form-group select:focus,
[data-theme="day"] .form-group textarea:focus {
  border-color: #1F5A44;
  box-shadow: 0 0 0 3px rgba(31, 90, 68, 0.1);
}

/* --- Footer --- */
[data-theme="day"] .footer {
  background: #163D30;
  border-top: 1px solid rgba(31, 90, 68, 0.2);
}
[data-theme="day"] .footer-tagline,
[data-theme="day"] .footer-links ul a,
[data-theme="day"] .footer-bottom {
  color: #C0D0C8;
}
[data-theme="day"] .footer-title,
[data-theme="day"] .footer .nav-logo-text {
  color: #FAFAFA;
}
[data-theme="day"] .footer .nav-logo-sub {
  color: #C0D0C8;
}
[data-theme="day"] .footer-links ul a:hover {
  color: #FAFAFA;
}
[data-theme="day"] .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- Stats Bar --- */
[data-theme="day"] .stats-bar {
  border-top: 1px solid rgba(31, 90, 68, 0.08);
  border-bottom: 1px solid rgba(31, 90, 68, 0.08);
}
[data-theme="day"] .stats-divider {
  background: rgba(31, 90, 68, 0.12);
}

/* --- Credentials Section --- */
[data-theme="day"] .credentials-section {
  background: linear-gradient(180deg, var(--navy-light) 0%, var(--navy) 100%);
  border-top: 1px solid rgba(31, 90, 68, 0.08);
  border-bottom: 1px solid rgba(31, 90, 68, 0.08);
}
[data-theme="day"] .credential-badge {
  border: 1px solid rgba(31, 90, 68, 0.15);
  background: rgba(31, 90, 68, 0.04);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
[data-theme="day"] .credential-badge:hover {
  border-color: rgba(31, 90, 68, 0.35);
  background: rgba(31, 90, 68, 0.08);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}
[data-theme="day"] .credential-icon {
  background: rgba(31, 90, 68, 0.08);
  border: 1px solid rgba(31, 90, 68, 0.15);
}

/* --- Team Cards --- */
[data-theme="day"] .team-card {
  border: 1px solid rgba(31, 90, 68, 0.1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
[data-theme="day"] .team-card:hover {
  border-color: rgba(31, 90, 68, 0.25);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
[data-theme="day"] .team-card-avatar {
  color: #FAFAF7;
}

/* --- Map Section --- */
[data-theme="day"] .map-container {
  border: 1px solid rgba(31, 90, 68, 0.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
[data-theme="day"] .region-info-box {
  background: rgba(250, 250, 247, 0.95);
  border: 1px solid rgba(31, 90, 68, 0.2);
}

/* --- Process Section --- */
[data-theme="day"] .process-icon {
  border: 2px solid rgba(31, 90, 68, 0.2);
}
[data-theme="day"] .process-step:hover .process-icon {
  border-color: #1F5A44;
  background: rgba(31, 90, 68, 0.06);
}

/* --- FAQ Section --- */
[data-theme="day"] .faq-item {
  border-bottom: 1px solid rgba(31, 90, 68, 0.08);
}

/* --- Testimonial Cards --- */
[data-theme="day"] .testimonial-card {
  border: 1px solid rgba(31, 90, 68, 0.1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
[data-theme="day"] .testimonial-quote-mark {
  color: rgba(31, 90, 68, 0.12);
}
[data-theme="day"] .carousel-dot {
  background: rgba(31, 90, 68, 0.2);
}

/* --- Cookie Banner --- */
[data-theme="day"] .cookie-banner {
  background: #FAFAF7;
  border-top: 1px solid rgba(31, 90, 68, 0.15);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

/* --- Back to Top --- */
[data-theme="day"] .back-to-top {
  border: 1px solid rgba(31, 90, 68, 0.2);
}
[data-theme="day"] .back-to-top:hover {
  background: #1F5A44;
  color: #FAFAF7;
  border-color: #1F5A44;
}

/* --- Marquee / Partners --- */
[data-theme="day"] .marquee-section {
  border-top: 1px solid rgba(31, 90, 68, 0.06);
  border-bottom: 1px solid rgba(31, 90, 68, 0.06);
}
[data-theme="day"] .brochure-btn {
  background: rgba(31, 90, 68, 0.06);
  border: 1px solid rgba(31, 90, 68, 0.15);
}
[data-theme="day"] .brochure-btn:hover {
  background: rgba(31, 90, 68, 0.12);
  border-color: #1F5A44;
}

/* --- Chat Float --- */
[data-theme="day"] .chat-float-toggle {
  background: linear-gradient(135deg, #1F5A44, #163D30);
}
[data-theme="day"] .chat-float-toggle-icon {
  fill: #FAFAF7;
  stroke: #FAFAF7;
}
[data-theme="day"] .chat-float-panel {
  background: #FAFAF7;
  border: 1px solid rgba(31, 90, 68, 0.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}
[data-theme="day"] .chat-float-ai .chat-float-btn-icon {
  background: linear-gradient(135deg, #1F5A44, #163D30);
}
[data-theme="day"] .chat-float-ai .chat-float-btn-icon svg {
  stroke: #FAFAF7;
}
[data-theme="day"] .chat-float-btn-text {
  color: #3A3A3A;
}
[data-theme="day"] .chat-float-btn-text small {
  color: #888;
}

/* --- Chatbot --- */
[data-theme="day"] .chatbot-container {
  background: #FAFAF7;
  border: 1px solid rgba(31, 90, 68, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
[data-theme="day"] .chatbot-header {
  background: linear-gradient(135deg, #1F5A44, #163D30);
  color: #FAFAF7;
}
[data-theme="day"] .chatbot-close-btn {
  color: #FAFAF7;
}
[data-theme="day"] .chatbot-trigger {
  background: #1F5A44;
  color: #FAFAF7;
  box-shadow: 0 4px 20px rgba(31, 90, 68, 0.3);
}
[data-theme="day"] .chatbot-trigger:hover {
  box-shadow: 0 6px 28px rgba(31, 90, 68, 0.45);
}
[data-theme="day"] .chatbot-tooltip {
  background: #FAFAF7;
  border: 1px solid rgba(31, 90, 68, 0.15);
}
[data-theme="day"] .chatbot-messages::-webkit-scrollbar-thumb {
  background: rgba(31, 90, 68, 0.2);
}
[data-theme="day"] .cb-msg.bot {
  border: 1px solid rgba(31, 90, 68, 0.08);
}
[data-theme="day"] .cb-msg.user {
  background: #1F5A44;
  color: #FAFAF7;
}
[data-theme="day"] .cb-quick-btn {
  background: rgba(31, 90, 68, 0.06);
  border: 1px solid rgba(31, 90, 68, 0.18);
}
[data-theme="day"] .cb-quick-btn:hover {
  background: #1F5A44;
  color: #FAFAF7;
}
[data-theme="day"] .chatbot-input {
  border-top: 1px solid rgba(31, 90, 68, 0.1);
}
[data-theme="day"] .chatbot-input input {
  background: #FFFFFF;
  border: 1px solid rgba(31, 90, 68, 0.15);
  color: #1E1E1E;
}
[data-theme="day"] .chatbot-input input:focus {
  border-color: #1F5A44;
}
[data-theme="day"] .chatbot-input input::placeholder {
  color: #999;
}

/* --- WhatsApp Float --- */
[data-theme="day"] .whatsapp-float .wa-tooltip {
  background: #FAFAF7;
  border: 1px solid rgba(31, 90, 68, 0.15);
  color: #3A3A3A;
}

/* --- Buttons in Day Mode --- */
[data-theme="day"] .btn-gold {
  color: #FAFAF7;
}
[data-theme="day"] .btn-gold:hover {
  box-shadow: 0 8px 25px rgba(31, 90, 68, 0.25);
}
[data-theme="day"] .btn-outline:hover {
  background: rgba(31, 90, 68, 0.06);
}

/* --- Hero Pattern SVGs (page heroes) --- */
[data-theme="day"] .page-hero {
  background: var(--navy);
}
[data-theme="day"] .hero-parallax-bg {
  opacity: 0.3;
}

/* --- Page hero SVG strokes override --- */
[data-theme="day"] .hero-pattern svg line,
[data-theme="day"] .hero-pattern svg circle,
[data-theme="day"] .hero-pattern svg path {
  stroke: rgba(31, 90, 68, 0.08);
}

/* --- Smooth transition for theme switch --- */
html, body, .navbar, .footer, .trust-card, .service-card, .team-card,
.testimonial-card, .contact-form, .cookie-banner, .back-to-top, .chatbot-container {
  transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

/* --- Mobile responsive toggle --- */
@media (max-width: 768px) {
  .theme-toggle {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    margin-left: 0;
  }
  .theme-toggle:hover {
    transform: translateY(-50%) scale(1.08);
  }
}

/* ============================================
   EXPANDABLE SERVICE CARDS
   ============================================ */
.service-card {
  display: flex;
  flex-direction: column;
}

.service-card-more {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  transition: color 0.25s ease;
}

.service-card-more::after {
  content: '+';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.4);
  font-size: 1.1rem;
  line-height: 1;
  font-weight: 400;
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.service-card.expanded .service-card-more::after {
  content: '\2212';
  transform: rotate(180deg);
  background: var(--gold);
  color: var(--navy);
}

.service-card:hover .service-card-more {
  color: #e6c069;
}

.service-card-extra {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s ease, opacity 0.35s ease, margin 0.35s ease, padding 0.35s ease;
  margin-top: 0;
  padding-top: 0;
  border-top: 0 solid rgba(201, 168, 76, 0);
}

.service-card.expanded .service-card-extra {
  max-height: 800px;
  opacity: 1;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(201, 168, 76, 0.18);
}

.service-card-extra ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.service-card-extra ul li {
  font-size: 0.86rem;
  color: var(--gray);
  padding: 0.3rem 0 0.3rem 1.2rem;
  position: relative;
  line-height: 1.6;
}

.service-card-extra ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
}

.service-card-jump {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold);
  text-decoration: none;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 4px;
  transition: all 0.25s ease;
  margin-top: 0.5rem;
}

.service-card-jump:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

[data-theme="day"] .service-card-extra ul li {
  color: #4a5568;
}
[data-theme="day"] .service-card-more {
  border-top-color: rgba(201, 168, 76, 0.2);
}
