/*
Theme Name: Vadlamani Wealth Custom
Description: Premium bespoke financial advisory theme with modern fintech aesthetics.
Author: Antigravity AI
Version: 2.0.0
*/

:root {
  /* Premium Fintech Palette - Navy & Gold */
  --brand-navy: #0A192F;
  --brand-navy-dark: #060F1C;
  --brand-navy-light: #112A4F;
  --brand-gold: #C5A059;
  --brand-gold-light: #DFB574;
  --brand-gold-gradient: linear-gradient(135deg, var(--brand-gold-light), var(--brand-gold));
  --brand-green: #65A30D;
  --brand-green-gradient: linear-gradient(135deg, #84cc16, #65A30D);
  --bg-main: #FAF9F6;
  --bg-white: #FFFFFF;
  --bg-surface: #F1F5F9;
  --text-main: #1E293B;
  --text-muted: #64748B;
  --border-subtle: rgba(100, 116, 139, 0.2);
  --border-gold: rgba(197, 160, 89, 0.3);
  --glass-bg: rgba(255, 255, 255, 0.85);
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(10, 25, 47, 0.05);
  --shadow-md: 0 12px 30px rgba(10, 25, 47, 0.08);
  --shadow-lg: 0 24px 50px rgba(10, 25, 47, 0.12);
  --shadow-gold: 0 15px 35px rgba(197, 160, 89, 0.2);
  
  /* Layout */
  --section-padding: 100px;
  --container-width: 1200px;
  
  /* Transitions */
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.3s ease;
}

/* Base Styles Refinement */
html { scroll-behavior: smooth; }
body { 
  background: #fdfdfb; /* Softer cream background */
  overflow-x: hidden;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-smooth);
}
.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--bg-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--brand-navy);
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 1rem;
}

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

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--brand-gold-gradient);
  color: var(--bg-white);
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, #ebd1a4, #DFB574);
  opacity: 0;
  z-index: -1;
  transition: var(--transition-smooth);
}
.btn-primary:hover {
  transform: translateY(-2px);
  color: var(--brand-navy);
  box-shadow: 0 14px 30px rgba(197, 160, 89, 0.4);
}
.btn-primary:hover::before { opacity: 1; }

.btn-primary--large { font-size: 1.1rem; padding: 20px 40px; }
.btn-primary--hero { font-size: 1.05rem; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--bg-white);
  padding: 15px 32px;
  border-radius: 8px;
  font-weight: 500;
  border: 1.5px solid rgba(255,255,255,0.4);
  transition: var(--transition-smooth);
  letter-spacing: 0.3px;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--bg-white);
  transform: translateY(-2px);
}
.btn-outline--wa {
  border-color: rgba(101, 163, 13, 0.5);
  color: var(--bg-white);
}
.btn-outline--wa:hover {
  background: rgba(101, 163, 13, 0.1);
  border-color: var(--brand-green);
  color: var(--brand-green);
}

.btn-cta-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--brand-green-gradient);
  color: var(--bg-white);
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 25px rgba(101, 163, 13, 0.3);
}
.btn-cta-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(101, 163, 13, 0.5);
  color: var(--bg-white);
}

/* Header & Nav Premium Update */
.site-header {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: var(--transition-smooth);
}
/* Header states based on page hero */
.header--dark-bg .main-navigation a { color: var(--bg-white); }
.header--dark-bg .site-title-text { color: var(--bg-white); }
.header--dark-bg .mobile-menu-toggle { color: var(--bg-white); }
.header--dark-bg .custom-logo { 
  background: rgba(255, 255, 255, 0.1); 
  border-radius: 50%;
  padding: 3px;
  backdrop-filter: blur(5px);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

/* Ensure logo remains visible on scrolled state */
.site-header.is-scrolled {
  background: rgba(10, 25, 47, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  padding: 5px 0;
}
.site-header.is-scrolled .custom-logo { 
  max-height: 60px; 
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  padding: 2px;
}
.site-header.is-scrolled .main-navigation a { color: var(--bg-white); }
.site-header.is-scrolled .site-title-text { color: var(--bg-white); }
.site-header.is-scrolled .mobile-menu-toggle { color: var(--bg-white); }

.site-header-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}
.site-brand a {
  display: flex;
  align-items: center;
  gap: 12px;
}
.custom-logo {
  max-height: 75px; /* Reduced for a more compact header */
  height: auto;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: var(--transition-smooth);
}
.site-title-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-navy);
  letter-spacing: -0.5px;
}
.custom-logo-text { display: none; }

.main-navigation ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  gap: 32px;
  align-items: center;
}
.main-navigation a {
  font-weight: 500;
  color: var(--text-main);
  position: relative;
  padding-bottom: 4px;
}
.main-navigation a::after {
  content: ''; position: absolute; width: 0; height: 2px;
  bottom: 0; left: 0; background-color: var(--brand-gold);
  transition: width 0.3s ease;
}
.main-navigation a:hover::after { width: 100%; }
.main-navigation a:hover { color: var(--brand-navy); }

.header-cta { display: flex; align-items: center; gap: 16px; }
.btn-sm { padding: 12px 24px; font-size: 0.9rem; }
.mobile-menu-toggle {
  display: none;
  background: none; border: none; cursor: pointer; color: var(--brand-navy);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed; inset: 0; background: var(--bg-white);
  z-index: 2000;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-nav-overlay.is-open { transform: translateX(0); }
.mobile-nav-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 5%; border-bottom: 1px solid var(--border-subtle);
}
.mobile-logo { height: 40px; }
.mobile-menu-close { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--brand-navy); }
.mobile-navigation { padding: 40px 5%; overflow-y: auto; flex-grow: 1; }
.mobile-navigation ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 24px; }
.mobile-navigation a { font-size: 1.5rem; font-family: var(--font-heading); color: var(--brand-navy); }
.mobile-nav-footer { padding: 32px 5%; background: var(--bg-surface); }
.mobile-nav-footer .btn-outline--wa {
  width: 100%; color: var(--brand-green); border-color: var(--brand-green);
}

/* ══════════════════════════════════════
   REFINED HERO SECTION
   ══════════════════════════════════════ */
.hero-section {
  min-height: 95vh;
  padding: 140px 5% 80px;
  background: radial-gradient(circle at 70% 30%, rgba(197, 160, 89, 0.08), transparent 40%),
              radial-gradient(circle at 10% 80%, rgba(17, 42, 79, 0.05), transparent 40%),
              var(--bg-main);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg-glow {
  position: absolute;
  top: -10%; right: -10%;
  width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(197,160,89,0.1), transparent 70%);
  filter: blur(60px);
  z-index: 0;
}
.hero-split {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text-col { position: relative; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(197, 160, 89, 0.1);
  color: var(--brand-gold);
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero-text-col h1 {
  font-size: clamp(3rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 48px;
  font-weight: 300;
  line-height: 1.8;
}
.hero-cta-group {
  display: flex;
  gap: 20px;
  align-items: center;
}
.btn-primary--hero {
  padding: 20px 40px;
  font-size: 1rem;
}
.btn-outline--hero {
  border: 1px solid var(--brand-navy);
  color: var(--brand-navy);
  padding: 18px 36px;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition-smooth);
}
.btn-outline--hero:hover {
  background: var(--brand-navy);
  color: var(--bg-white);
}

.hero-trust-indicators {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.trust-indicator {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-navy);
}
.trust-indicator svg {
  color: var(--brand-gold);
  flex-shrink: 0;
}

.hero-photo-col {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.hero-photo-container {
  position: relative;
  width: 100%;
  max-width: 540px;
}
.hero-photo-container img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.hero-photo-accent {
  position: absolute;
  bottom: -30px; left: -30px;
  width: 200px; height: 200px;
  background: var(--brand-gold);
  border-radius: 20px;
  z-index: 1;
}
.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  animation: float 6s ease-in-out infinite;
}
.floating-card--1 { top: 10%; left: -40px; animation-delay: 0s; }
.floating-card--2 { bottom: 20%; right: -20px; animation-delay: 1s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Trust Banner */
.trust-banner {
  background: var(--bg-white); padding: 40px 5%;
  border-bottom: 1px solid var(--border-subtle);
  transform: translateY(-50%); position: relative; z-index: 10;
  max-width: 1100px; margin: 0 auto; border-radius: 16px;
  box-shadow: var(--shadow-md);
}
.trust-banner-inner { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 20px; }
.trust-item { text-align: center; }
.trust-number { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; color: var(--brand-navy); }
.trust-number-suffix { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; color: var(--brand-gold); }
.trust-label { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); margin-top: 4px; }
.trust-divider { width: 1px; height: 40px; background: var(--border-subtle); }

/* About Intro */
.about-intro-section { padding: 40px 5% 100px; text-align: center; }
.about-intro-container { max-width: 800px; margin: 0 auto; }
.about-intro-badge, .section-badge {
  display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--brand-gold); margin-bottom: 16px;
}
.section-badge--light { color: rgba(255,255,255,0.9); }
.about-intro-section h2, .section-header h2 { font-size: 3rem; margin-bottom: 24px; }
.intro-body, .section-subtitle { font-size: 1.15rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 32px; }
.link-arrow, .card-link { font-weight: 600; color: var(--brand-navy); border-bottom: 2px solid var(--brand-gold); padding-bottom: 2px; }
.link-arrow:hover, .card-link:hover { color: var(--brand-gold); border-color: var(--brand-navy); }

/* Services */
.services-section { background: var(--bg-white); padding: 100px 5%; }
.section-container { max-width: 1280px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 60px; max-width: 700px; margin-inline: auto; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; }
.service-card {
  background: var(--bg-surface); padding: 40px 32px; border-radius: 16px;
  border: 1px solid var(--border-subtle);
  transition: var(--transition-smooth); position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px); box-shadow: var(--shadow-md); background: var(--bg-white);
  border-color: var(--border-gold);
}
.service-card::after {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: var(--brand-gold-gradient); transform: scaleX(0); transform-origin: left; transition: var(--transition-smooth);
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon { width: 64px; height: 64px; background: rgba(197, 160, 89, 0.1); color: var(--brand-gold); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.service-card-content { flex-grow: 1; }
.service-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.service-card p { color: var(--text-muted); margin-bottom: 24px; }
.service-card--premium { background: var(--brand-navy); color: var(--bg-white); border-color: var(--brand-navy); }
.service-card--premium h3, .service-card--premium p { color: var(--bg-white); }
.service-card--premium .service-icon { background: rgba(255,255,255,0.1); color: var(--brand-gold); }
.service-card--premium .card-link { color: var(--brand-gold); border-color: rgba(255,255,255,0.3); }

/* Awards */
.awards-section { background: var(--brand-navy); color: var(--bg-white); padding: 100px 5%; overflow: hidden; }
.awards-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.awards-text h2 { color: var(--bg-white); }
.awards-text p { color: rgba(255,255,255,0.8); }
.awards-list { display: flex; flex-direction: column; gap: 16px; margin: 32px 0; }
.award-item {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.05); padding: 16px 24px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(8px);
}
.award-icon { font-size: 1.8rem; }
.award-item strong { display: block; color: var(--brand-gold); font-size: 1rem; }
.award-item span { color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.awards-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.awards-orb {
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(197,160,89,0.2), transparent);
  border: 1px solid rgba(197, 160, 89, 0.3);
  display: flex; align-items: center; justify-content: center;
  animation: floatOrb 10s ease-in-out infinite alternate;
}
.orb-text { text-align: center; font-family: var(--font-heading); font-size: 4rem; font-weight: 700; line-height: 1; color: var(--brand-gold); }
.orb-text span { display: block; font-size: 1rem; font-family: var(--font-body); text-transform: uppercase; letter-spacing: 2px; color: var(--bg-white); margin-top: 8px; font-weight: 400; }
.awards-credentials { position: absolute; display: flex; flex-direction: column; gap: 12px; right: -20px; }
.credential-pill { background: var(--bg-white); color: var(--brand-navy); padding: 8px 16px; border-radius: 100px; font-size: 0.8rem; font-weight: 600; box-shadow: var(--shadow-md); transform: translateX(20px); opacity: 0.9; }

/* Testimonials */
.testimonials-section { padding: 100px 5%; background: var(--bg-main); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; }
.testimonial-card {
  background: var(--bg-white); padding: 40px; border-radius: 16px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border-subtle);
}
.testimonial-stars { color: var(--brand-gold); font-size: 1.2rem; margin-bottom: 20px; letter-spacing: 2px; }
.testimonial-card blockquote { margin: 0 0 32px 0; font-size: 1.1rem; line-height: 1.7; font-style: italic; color: var(--brand-navy); }
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-avatar { width: 48px; height: 48px; background: var(--brand-navy-light); color: var(--brand-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-heading); }
.testimonial-author strong { display: block; color: var(--brand-navy); font-size: 0.95rem; }
.testimonial-author span { color: var(--text-muted); font-size: 0.8rem; }

/* Workshops */
.workshops-section { padding: 80px 5%; }
.workshops-inner {
  background: var(--brand-navy); color: var(--bg-white);
  border-radius: 24px; padding: 60px;
  display: grid; grid-template-columns: auto 1fr auto; gap: 40px; align-items: center;
  position: relative; overflow: hidden;
}
.workshops-inner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at right, rgba(197, 160, 89, 0.15), transparent 50%); }
.workshops-icon-wrap { width: 80px; height: 80px; background: rgba(255,255,255,0.1); border-radius: 20px; display: flex; align-items: center; justify-content: center; color: var(--brand-gold); }
.workshops-text h2 { color: var(--bg-white); margin-bottom: 16px; }
.workshops-text p { color: rgba(255,255,255,0.8); margin-bottom: 24px; max-width: 600px; }
.workshops-tags { display: flex; flex-direction: column; gap: 12px; }
.workshop-tag { background: rgba(255,255,255,0.1); padding: 8px 16px; border-radius: 8px; font-size: 0.85rem; font-weight: 500; border: 1px solid rgba(255,255,255,0.1); text-align: center; }

/* FAQ Section */
.faq-section { padding: 100px 5%; background: var(--bg-main); }
.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: var(--bg-white); border-radius: 12px; box-shadow: var(--shadow-sm); overflow: hidden; transition: var(--transition-smooth); border: 1px solid var(--border-subtle); }
.faq-item[open] { border-color: var(--brand-gold); box-shadow: var(--shadow-md); }
.faq-item summary { padding: 24px; font-weight: 600; font-family: var(--font-heading); font-size: 1.2rem; color: var(--brand-navy); cursor: pointer; list-style: none; position: relative; padding-right: 48px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 24px; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--brand-gold); transition: transform 0.3s ease; }
.faq-item[open] summary::after { content: '−'; transform: translateY(-50%); }
.faq-content { padding: 0 24px 24px; color: var(--text-muted); line-height: 1.8; }

/* Final CTA */
.cta-section { padding: 120px 5%; text-align: center; background: var(--brand-navy-dark); color: var(--bg-white); position: relative; overflow: hidden; }
.cta-bg-orb { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 800px; height: 800px; background: radial-gradient(circle, rgba(197, 160, 89, 0.1), transparent 60%); z-index: 0; }
.cta-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.cta-inner h2 { color: var(--bg-white); font-size: 3.5rem; margin-bottom: 24px; }
.cta-subtitle { font-size: 1.2rem; color: rgba(255,255,255,0.8); margin-bottom: 48px; }
.cta-btn-group { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 32px; }
.cta-disclaimer { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* Blog & Single Post UI */
.blog-hero { padding: 140px 5% 90px; text-align: center; background: var(--bg-surface); position: relative; }
.blog-hero h1 { font-size: 3.5rem; color: var(--brand-navy); margin-bottom: 24px; font-family: var(--font-heading); }
.blog-hero h1 em { font-style: italic; color: var(--brand-gold); }
.blog-hero p { font-size: 1.2rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.blog-section { padding: 80px 5%; background: var(--bg-main); }
.blog-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.blog-card { background: var(--bg-white); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition-smooth); display: flex; flex-direction: column; border: 1px solid var(--border-subtle); }
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--brand-gold); }
.blog-card-image-wrap { height: 220px; overflow: hidden; display: block; position: relative; }
.blog-card-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-image { transform: scale(1.05); }
.blog-card-placeholder-inner { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--bg-surface); color: var(--brand-gold); }
.blog-card-body { padding: 32px; display: flex; flex-direction: column; flex-grow: 1; }
.blog-card-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.blog-card-category { color: var(--brand-gold); }
.blog-card-date { color: var(--text-muted); }
.blog-card-title { font-size: 1.4rem; margin-bottom: 16px; line-height: 1.4; font-family: var(--font-heading); }
.blog-card-title a { color: var(--brand-navy); text-decoration: none; }
.blog-card-title a:hover { color: var(--brand-gold); }
.blog-card-excerpt { color: var(--text-muted); margin-bottom: 24px; flex-grow: 1; line-height: 1.6; }
.blog-read-more { font-weight: 600; color: var(--brand-navy); border-bottom: 2px solid var(--brand-gold); padding-bottom: 2px; align-self: flex-start; text-decoration: none; display: inline-block; }
.blog-read-more:hover { color: var(--brand-gold); border-color: var(--brand-navy); }
.blog-pagination { display: flex; justify-content: center; margin-top: 60px; gap: 8px; }
.blog-pagination .page-numbers { padding: 10px 16px; background: var(--bg-white); border: 1px solid var(--border-subtle); color: var(--text-main); font-weight: 600; border-radius: 4px; text-decoration: none; transition: all 0.2s; }
.blog-pagination .page-numbers.current, .blog-pagination .page-numbers:hover { background: var(--brand-navy); color: var(--bg-white); border-color: var(--brand-navy); }

/* Single Post Specifics */
.post-hero { position: relative; padding: 80px 5% 40px; text-align: center; background: var(--brand-navy); color: var(--bg-white); overflow: hidden; }
.post-hero-image { position: absolute; inset: 0; z-index: 0; }
.post-hero-image img { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.post-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,25,47,0.8), rgba(10,25,47,0.95)); }
.post-hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.post-hero-title { font-size: 3rem; margin: 24px 0; font-family: var(--font-heading); line-height: 1.2; color: var(--bg-white) !important; }
.post-hero-meta { display: flex; justify-content: center; gap: 16px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; font-size: 0.85rem; color: var(--brand-gold); }
.post-hero-author { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 40px; text-align: left; }
.post-author-avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--brand-gold); color: var(--brand-navy); display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-heading); font-size: 1.2rem; }
.post-layout { max-width: 1200px; margin: 0 auto; padding: 80px 5%; display: grid; grid-template-columns: 2fr 1fr; gap: 60px; align-items: start; }
.post-content-area { font-size: 1.15rem; line-height: 1.8; color: var(--text-main); }
.post-content-area h2, .post-content-area h3 { color: var(--brand-navy); margin: 40px 0 20px; font-family: var(--font-heading); }
.post-content-area p { margin-bottom: 24px; }
.post-content-area ul, .post-content-area ol { margin-bottom: 24px; padding-left: 20px; }
.post-content-area li { margin-bottom: 10px; }
.post-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 40px; }
.post-tag { background: var(--bg-surface); padding: 6px 14px; border-radius: 4px; font-size: 0.85rem; color: var(--text-muted); text-decoration: none; transition: var(--transition-smooth); }
.post-tag:hover { background: var(--brand-gold); color: var(--brand-navy); }
.post-author-box { display: flex; gap: 24px; background: var(--bg-surface); padding: 40px; border-radius: 12px; margin-top: 60px; border-left: 4px solid var(--brand-gold); }
.post-author-avatar--lg { width: 80px; height: 80px; font-size: 1.8rem; flex-shrink: 0; }
.post-author-info strong { display: block; font-size: 1.2rem; color: var(--brand-navy); margin-bottom: 8px; }
.post-sidebar { position: sticky; top: 120px; display: flex; flex-direction: column; gap: 32px; }
.sidebar-widget { background: var(--bg-surface); padding: 32px; border-radius: 12px; border: 1px solid var(--border-subtle); }
.sidebar-widget h3 { font-size: 1.2rem; color: var(--brand-navy); margin-bottom: 16px; font-family: var(--font-heading); }
.sidebar-links { list-style: none; padding: 0; margin: 0; }
.sidebar-links li { margin-bottom: 12px; }
.sidebar-links a { color: var(--text-main); text-decoration: none; font-weight: 500; transition: color 0.2s; display: block; padding-bottom: 12px; border-bottom: 1px solid var(--border-subtle); }
.sidebar-links a:hover { color: var(--brand-gold); }
.sidebar-disclaimer { background: var(--bg-main); font-size: 0.85rem; color: var(--text-muted); border-color: transparent; }

@media (max-width: 992px) {
    .post-layout { grid-template-columns: 1fr; }
    .post-sidebar { position: static; }
}

/* Premium Service Pages */
.service-hero { position: relative; padding: 140px 5% 90px; text-align: center; background: var(--brand-navy); color: var(--bg-white); overflow: hidden; }
.service-hero-bg { position: absolute; inset: 0; z-index: 0; }
.service-hero-content { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.service-eyebrow { display: inline-block; padding: 8px 16px; border-radius: 100px; background: rgba(197, 160, 89, 0.15); color: var(--brand-gold); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 24px; border: 1px solid rgba(197, 160, 89, 0.3); }
.service-hero h1 { font-size: 4.5rem; margin-bottom: 24px; line-height: 1.1; }
.service-hero-sub { font-size: 1.3rem; color: rgba(255,255,255,0.8); line-height: 1.6; margin-bottom: 40px; font-weight: 300; }

.goals-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; margin-top: 48px; }
.goal-card { padding: 40px 32px; text-align: center; transition: var(--transition-smooth); background: var(--bg-white); border-radius: 16px; border: 1px solid var(--border-subtle); box-shadow: var(--shadow-sm); }
.goal-card:hover { transform: translateY(-10px); border-color: rgba(197, 160, 89, 0.3); box-shadow: var(--shadow-md); }
.goal-icon { font-size: 3rem; margin-bottom: 24px; }
.goal-card h3 { color: var(--brand-navy); margin-bottom: 16px; font-size: 1.5rem; }
.goal-card p { color: var(--text-muted); line-height: 1.6; }

.timeline { display: flex; flex-direction: column; gap: 40px; max-width: 800px; margin: 60px auto 0; position: relative; }
.timeline::before { content: ''; position: absolute; left: 24px; top: 0; bottom: 0; width: 2px; background: rgba(10, 25, 47, 0.1); }
.timeline-item { display: flex; gap: 32px; position: relative; }
.timeline-marker { width: 50px; height: 50px; border-radius: 50%; background: var(--brand-navy); color: var(--brand-gold); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 700; z-index: 1; border: 4px solid var(--bg-surface); }
.timeline-content { flex: 1; padding: 32px; background: var(--bg-white); border-radius: 12px; border: 1px solid var(--border-subtle); box-shadow: var(--shadow-sm); }
.timeline-content h4 { color: var(--brand-navy); font-size: 1.3rem; margin-bottom: 12px; }
.timeline-content p { margin: 0; color: var(--text-muted); }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; margin-top: 48px; }
.feature-box { padding: 40px; text-align: left; background: var(--bg-white); border-radius: 16px; border: 1px solid var(--border-subtle); box-shadow: var(--shadow-sm); }
.feature-icon { font-size: 2.5rem; margin-bottom: 24px; }
.feature-box h3 { font-size: 1.4rem; color: var(--brand-navy); margin-bottom: 16px; }

.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-visual { position: relative; background: var(--bg-white); padding: 40px; border-radius: 20px; border: 1px solid var(--border-subtle); box-shadow: var(--shadow-sm); }
.fintech-chart-placeholder { display: flex; align-items: flex-end; gap: 16px; height: 200px; margin-bottom: 24px; border-bottom: 2px solid var(--border-subtle); padding-bottom: 16px; }
.chart-bar { flex: 1; background: var(--brand-navy); border-radius: 4px 4px 0 0; opacity: 0.8; transition: var(--transition-smooth); }
.chart-bar:hover { opacity: 1; background: var(--brand-gold); }

/* Footer */
.site-footer { background: var(--brand-navy-dark); color: rgba(255,255,255,0.7); padding: 80px 5% 0; border-top: 4px solid var(--brand-gold); }
.footer-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 60px; padding-bottom: 60px; }
.footer-brand-name { display: block; font-family: var(--font-heading); font-size: 1.8rem; color: var(--bg-white); font-weight: 700; line-height: 1; margin-bottom: 4px; }
.footer-brand-tagline { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; color: var(--brand-gold); }
.footer-bio { margin: 24px 0; line-height: 1.7; font-size: 0.95rem; }
.footer-compliance-badge { display: inline-flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 12px 16px; border-radius: 8px; }
.footer-compliance-badge svg { color: var(--brand-gold); }
.footer-compliance-badge strong { display: block; color: var(--bg-white); font-size: 0.85rem; }
.footer-compliance-badge span { font-size: 0.75rem; color: rgba(255,255,255,0.6); }

.footer-heading { color: var(--bg-white); font-size: 1.1rem; margin-bottom: 24px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: rgba(255,255,255,0.7); }
.footer-links a:hover { color: var(--brand-gold); padding-left: 4px; }

.footer-contact-list { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 16px; }
.footer-contact-item { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.9); }
.footer-contact-icon { width: 32px; height: 32px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.footer-contact-icon--wa { background: rgba(101, 163, 13, 0.2); color: #84cc16; }
.footer-wa-cta { display: inline-block; color: var(--brand-gold); font-weight: 600; font-size: 0.95rem; border-bottom: 1px solid var(--brand-gold); padding-bottom: 2px; }
.footer-wa-cta:hover { color: var(--bg-white); border-color: var(--bg-white); }

.footer-disclaimer-text { font-size: 0.8rem; line-height: 1.6; color: rgba(255,255,255,0.5); margin-bottom: 24px; }

.footer-compliance-bar { background: rgba(0,0,0,0.3); border-top: 1px solid rgba(255,255,255,0.05); padding: 16px 5%; }
.footer-compliance-bar-inner { max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.compliance-amfi-row, .compliance-mf-risk { display: flex; align-items: center; gap: 8px; }
.compliance-amfi-row strong { color: var(--brand-gold); }
.footer-bottom { text-align: center; padding: 24px 5%; font-size: 0.85rem; color: rgba(255,255,255,0.4); background: #040A12; }
.footer-bottom-sep { margin: 0 12px; }

/* Sticky Mobile CTA & WhatsApp Float */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: #25D366; color: white; border-radius: 50px; display: flex; align-items: center; padding: 12px; gap: 12px; box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); z-index: 1000; transition: var(--transition-smooth); }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.05); }
.whatsapp-float-label { font-weight: 600; font-size: 0.95rem; padding-right: 8px; }

.mobile-sticky-cta { display: none; position: fixed; bottom: 0; left: 0; width: 100%; background: var(--bg-white); box-shadow: 0 -4px 20px rgba(0,0,0,0.1); z-index: 2000; padding: 12px 5%; gap: 12px; }
.mobile-cta-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px; border-radius: 8px; font-weight: 600; font-size: 0.9rem; text-align: center; }
.mobile-cta-whatsapp { background: rgba(37, 211, 102, 0.1); color: #1da851; border: 1px solid rgba(37, 211, 102, 0.2); }
.mobile-cta-consult { background: var(--brand-navy); color: var(--bg-white); }

/* Animations */
.reveal-on-scroll { opacity: 0; transform: translateY(30px); animation: revealUp 0.8s forwards; animation-delay: var(--delay, 0ms); }
@keyframes revealUp { to { opacity: 1; transform: translateY(0); } }

/* Responsive */
@media (max-width: 1200px) {
  .hero-split { gap: 40px; padding: 80px 5%; }
  .hero-text-col h1 { font-size: 3.5rem; }
}

@media (max-width: 1024px) {
  .hero-split { grid-template-columns: 1fr; text-align: center; padding-top: 60px; gap: 40px; }
  .hero-cta-group { justify-content: center; }
  .hero-trust-pills { justify-content: center; }
  .hero-photo-col { order: -1; }
  .hero-photo { max-width: 320px; }
  .trust-banner { margin: 0 5%; transform: translateY(-20px); }
  .trust-divider { display: none; }
  .awards-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .award-item { justify-content: center; }
  .workshops-inner { grid-template-columns: 1fr; text-align: center; padding: 40px 20px; }
  .workshops-icon-wrap { margin: 0 auto; }
  .workshops-tags { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  
  /* Collapse navigation to mobile menu earlier for iPad/tablets */
  .main-navigation, .header-cta .btn-primary { display: none; }
  .mobile-menu-toggle { display: block; }
  .custom-logo { max-height: 65px; }
}

@media (max-width: 768px) {
  .hero-text-col h1 { font-size: 2.5rem; }
  .hero-sub { font-size: 1.1rem; max-width: 100%; }
  .cta-inner h2 { font-size: 2.2rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-compliance-bar-inner { flex-direction: column; text-align: center; align-items: center; }
  .footer-bottom { padding-bottom: 80px; } /* Space for sticky CTA */
  .whatsapp-float { display: none; } /* Hide float, show sticky */
  .mobile-sticky-cta { display: flex; }
  .custom-logo { max-height: 55px; }
  
  /* Service Pages Mobile */
  .service-hero { padding: 120px 5% 60px; }
  .service-hero h1 { font-size: 2.8rem; }
  .split-layout { grid-template-columns: 1fr; gap: 40px; }
  .timeline::before { left: 20px; }
  .timeline-item { gap: 20px; }
  .timeline-marker { width: 40px; height: 40px; font-size: 1rem; }
  .timeline-content { padding: 24px; }
}

/* =============================================
   SERVICES HUB PAGE — Complete Redesign
   ============================================= */

/* ── Hero ── */
.svcs-hero {
  position: relative;
  background: var(--brand-navy);
  padding: 140px 5% 100px;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.svcs-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  animation: floatOrb 18s ease-in-out infinite alternate;
}
.svcs-hero-orb--1 { width: 600px; height: 600px; background: rgba(197,160,89,0.2); top: -20%; right: -10%; }
.svcs-hero-orb--2 { width: 500px; height: 500px; background: var(--brand-navy-light); bottom: -20%; left: -10%; animation-delay: -8s; }
.svcs-hero-inner { position: relative; z-index: 1; max-width: 780px; }
.svcs-hero-title {
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 1.05;
  color: var(--bg-white);
  margin: 20px 0 28px;
  letter-spacing: -1px;
}
.svcs-hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto 48px;
  font-weight: 300;
}
.svcs-hero-ctas { display: flex; gap: 20px; align-items: center; justify-content: center; flex-wrap: wrap; }
.svcs-hero-wa-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.8); font-weight: 500; font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 2px;
  transition: var(--transition-smooth);
}
.svcs-hero-wa-link:hover { color: var(--bg-white); border-color: var(--bg-white); }
.svcs-hero-scroll-cue {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.3); animation: bounceDown 2s ease-in-out infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Service Cards Grid (2x2) ── */
.svcs-cards-section { background: var(--bg-main); padding: 80px 5%; }
.svcs-cards-wrap {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.svcs-card {
  position: relative; background: var(--bg-white);
  border-radius: 20px; border: 1px solid var(--border-subtle);
  padding: 48px 44px 44px;
  display: flex; flex-direction: column;
  overflow: hidden; transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}
.svcs-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--border-gold); }
.svcs-card--dark { background: var(--brand-navy); border-color: rgba(255,255,255,0.07); }
.svcs-card--dark .svcs-card-title,
.svcs-card--dark .svcs-card-desc { color: rgba(255,255,255,0.9); }
.svcs-card--dark .svcs-card-bullets li { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.08); }
.svcs-card--dark:hover { border-color: rgba(197,160,89,0.35); }
.svcs-card-accent {
  position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: var(--brand-navy); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.svcs-card--dark .svcs-card-accent { background: var(--brand-gold-gradient); }
.svcs-card-accent--gold { background: var(--brand-gold-gradient) !important; }
.svcs-card:hover .svcs-card-accent { transform: scaleX(1); }
.svcs-card-icon-wrap {
  width: 68px; height: 68px; border-radius: 16px;
  background: rgba(10,25,47,0.06); color: var(--brand-navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px; flex-shrink: 0; transition: var(--transition-smooth);
}
.svcs-card--dark .svcs-card-icon-wrap { background: rgba(255,255,255,0.08); color: var(--brand-gold); }
.svcs-card-icon-wrap--gold { background: rgba(197,160,89,0.12) !important; color: var(--brand-gold) !important; }
.svcs-card:hover .svcs-card-icon-wrap { transform: scale(1.08); }
.svcs-card-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--brand-gold); margin-bottom: 12px;
}
.svcs-card--dark .svcs-card-tag { color: rgba(197,160,89,0.85); }
.svcs-card-tag--gold { color: var(--brand-gold); }
.svcs-card-title { font-size: 1.65rem; line-height: 1.2; color: var(--brand-navy); margin: 0 0 16px; }
.svcs-card-desc { font-size: 0.97rem; color: var(--text-muted); line-height: 1.75; margin: 0 0 24px; }
.svcs-card-bullets { list-style: none; padding: 0; margin: 0 0 36px; display: flex; flex-direction: column; gap: 0; }
.svcs-card-bullets li {
  font-size: 0.88rem; color: var(--text-muted); padding: 9px 0;
  border-bottom: 1px solid var(--border-subtle); font-weight: 500;
}
.svcs-card-bullets li:last-child { border-bottom: none; }
.svcs-card-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--brand-navy); border-bottom: 2px solid var(--brand-gold);
  padding-bottom: 3px; width: fit-content; margin-top: auto; transition: var(--transition-smooth);
}
.svcs-card--dark .svcs-card-cta { color: var(--brand-gold); border-color: rgba(197,160,89,0.4); }
.svcs-card-cta--gold { color: var(--brand-gold); border-color: var(--brand-gold); }
.svcs-card-cta:hover { gap: 14px; opacity: 0.85; }

/* ── Trust Bar ── */
.svcs-trust-bar { background: var(--brand-navy-dark); padding: 44px 5%; }
.svcs-trust-bar-inner {
  max-width: 1000px; margin: 0 auto;
  display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 20px;
}
.svcs-trust-item { text-align: center; }
.svcs-trust-num {
  display: block; font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700;
  color: var(--brand-gold); line-height: 1; margin-bottom: 6px;
}
.svcs-trust-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.5); font-weight: 500; }
.svcs-trust-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.1); }

/* ── Workshops Strip ── */
.svcs-workshops-strip { background: var(--brand-navy); padding: 100px 5%; position: relative; overflow: hidden; }
.svcs-workshops-strip::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(197,160,89,0.08), transparent 55%);
}
.svcs-workshops-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  position: relative; z-index: 1;
}
.svcs-workshops-title { font-size: clamp(2rem, 3.5vw, 3rem); color: var(--bg-white); line-height: 1.15; margin: 0 0 20px; }
.svcs-workshops-desc { color: rgba(255,255,255,0.7); line-height: 1.75; font-size: 1rem; margin: 0 0 36px; max-width: 480px; }
.svcs-workshop-tags { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.svcs-workshop-tag {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px;
  border-radius: 8px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.88rem; font-weight: 500; color: rgba(255,255,255,0.85); transition: var(--transition-smooth);
}
.svcs-workshop-tag:hover { background: rgba(197,160,89,0.15); border-color: rgba(197,160,89,0.3); color: var(--bg-white); }
.svcs-workshop-stat-row { display: flex; gap: 40px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); }
.svcs-workshop-stat-num { display: block; font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--brand-gold); line-height: 1; margin-bottom: 4px; }
.svcs-workshop-stat-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.45); font-weight: 500; }

/* ── Final CTA ── */
.svcs-final-cta { background: var(--brand-navy-dark); padding: 140px 5%; text-align: center; position: relative; overflow: hidden; }
.svcs-final-cta-orb {
  position: absolute; width: 900px; height: 900px; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(197,160,89,0.08), transparent 60%);
  border-radius: 50%;
}
.svcs-final-cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.svcs-final-cta-title { font-size: clamp(2.2rem, 4.5vw, 3.8rem); color: var(--bg-white); line-height: 1.15; margin: 16px 0 20px; }
.svcs-final-cta-sub { font-size: 1.1rem; color: rgba(255,255,255,0.55); margin: 0 0 48px; font-weight: 300; }
.svcs-final-cta-btns { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 36px; }
.svcs-wa-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(37,211,102,0.12); color: #4ade80;
  border: 1.5px solid rgba(37,211,102,0.3);
  padding: 16px 32px; border-radius: 8px; font-weight: 600; font-size: 0.95rem;
  transition: var(--transition-smooth);
}
.svcs-wa-btn:hover { background: rgba(37,211,102,0.22); border-color: rgba(37,211,102,0.6); color: #86efac; transform: translateY(-2px); }
.svcs-final-cta-disclaimer { font-size: 0.78rem; color: rgba(255,255,255,0.3); margin: 0; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .svcs-cards-wrap { grid-template-columns: 1fr; }
  .svcs-workshops-inner { grid-template-columns: 1fr; gap: 48px; }
  .svcs-trust-divider { display: none; }
}
@media (max-width: 640px) {
  .svcs-hero { padding: 100px 5% 60px; }
  .svcs-hero-title { font-size: 2.8rem; }
  .svcs-card { padding: 36px 28px 32px; }
  .svcs-final-cta { padding: 100px 5%; }
}
.section-padding { padding: 100px 5%; }
.bg-surface { background: var(--bg-surface); }

/* =============================================
   COMPACT PAGE HERO BANNER (About, Contact, etc.)
   ============================================= */
.page-hero-banner {
  background: var(--brand-navy);
  padding: 130px 5% 45px;
  position: relative;
  overflow: hidden;
}
.page-hero-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(197,160,89,0.12), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero-banner-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-hero-breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin: 0 0 16px;
  letter-spacing: 0.3px;
}
.page-hero-breadcrumb a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.page-hero-breadcrumb a:hover { color: var(--brand-gold); }
.page-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--bg-white) !important;
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

/* Also fix: any h1/h2 inside .service-hero should always be white */
.service-hero h1,
.service-hero h2 {
  color: var(--bg-white);
}

/* =============================================
   BLOG PAGE — Improved Hero & Placeholders
   ============================================= */

/* Dark navy hero (matching other page heroes) */
.blog-hero--dark {
  background: var(--brand-navy) !important;
  position: relative;
  overflow: hidden;
}
.blog-hero--dark .blog-hero-inner {
  position: relative;
  z-index: 1;
}
.blog-hero-orb {
  position: absolute;
  top: -30%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(197,160,89,0.15), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.blog-hero-title {
  color: var(--bg-white) !important;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 1.15;
  margin: 16px 0 20px;
}
.blog-hero-title em {
  color: var(--brand-gold);
  font-style: italic;
}
.blog-hero-sub {
  color: rgba(255,255,255,0.68) !important;
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto;
  font-weight: 300;
}

/* Improved placeholder card */
.blog-card-image-placeholder {
  background: linear-gradient(135deg, var(--brand-navy) 0%, #0e2240 100%) !important;
  height: 190px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(197,160,89,0.7);
}
.blog-placeholder-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(197,160,89,0.6);
}

/* =============================================
   PREMIUM CONTACT PAGE REDESIGN
   ============================================= */
.contact-page-redesign {
  background: var(--bg-white);
}

/* Contact Hero */
.contact-hero {
  background: var(--brand-navy);
  padding: 140px 5% 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.contact-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--bg-white);
  margin: 20px 0;
  line-height: 1.1;
}
.contact-hero-sub {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}
.contact-hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-25%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.1), transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* Contact Layout */
.contact-form-section {
  padding: 80px 5%;
  margin-top: -60px; /* Overlap effect */
  position: relative;
  z-index: 5;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

/* Trust Sidebar */
.contact-trust-sidebar {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 40px;
}
.trust-indicator {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.trust-icon {
  width: 48px;
  height: 48px;
  background: rgba(197, 160, 89, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-gold);
  flex-shrink: 0;
}
.trust-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brand-navy);
  margin-bottom: 8px;
}
.trust-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Form Card */
.contact-form-card {
  background: var(--bg-white);
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(10, 25, 47, 0.08);
  border: 1px solid var(--border-subtle);
}
.form-card-header {
  margin-bottom: 40px;
}
.form-card-header h2 {
  font-size: 1.8rem;
  color: var(--brand-navy);
  margin-bottom: 10px;
}
.form-card-header p {
  color: var(--text-muted);
}

/* Premium Form Styling */
.premium-contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.premium-contact-form .form-group {
  margin-bottom: 24px;
}
.premium-contact-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--brand-navy);
  margin-bottom: 8px;
}
.premium-contact-form input,
.premium-contact-form select,
.premium-contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(100, 116, 139, 0.2);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--brand-navy);
  background: #fcfcfc;
  transition: var(--transition-fast);
}
.premium-contact-form input:focus,
.premium-contact-form select:focus,
.premium-contact-form textarea:focus {
  outline: none;
  border-color: var(--brand-gold);
  background: var(--bg-white);
  box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.1);
}
.premium-contact-form textarea {
  resize: vertical;
}

.btn-cta-form {
  width: 100%;
  padding: 18px;
  font-size: 1.1rem;
  justify-content: center;
  margin-top: 10px;
}

/* Success/Error Messages */
.form-success {
  background: rgba(101, 163, 13, 0.05);
  border: 1px solid rgba(101, 163, 13, 0.2);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}
.form-success h3 { color: var(--brand-green); margin-bottom: 10px; }
.form-error {
  background: rgba(220, 38, 38, 0.05);
  border: 1px solid rgba(220, 38, 38, 0.2);
  padding: 20px;
  border-radius: 12px;
  color: #b91c1c;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .contact-trust-sidebar {
    order: 2;
    padding-top: 0;
  }
  .contact-form-card {
    order: 1;
    padding: 30px;
  }
}
@media (max-width: 600px) {
  .premium-contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-hero {
    padding-top: 120px;
  }
}
