/*
Theme Name: Prosperum
Theme URI: https://prosperum.com
Author: Webabby Services
Author URI: https://webabbyservices.com
Description: A premium financial consultancy WordPress theme with dark navy, gold, and white palette. Features 5 pages: Home, Services, About, Insights, Contact.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: prosperum
Tags: financial, consulting, business, professional, portfolio
*/

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --navy: #1a2744;
  --navy-dark: #0f1a30;
  --navy-mid: #243058;
  --gold: #c9a84c;
  --gold-light: #e0bc70;
  --gold-dark: #a88530;
  --white: #ffffff;
  --off-white: #f7f6f2;
  --light-gray: #f0eff0;
  --mid-gray: #e0dfe0;
  --text-dark: #1a1a2e;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --border: #e5e7eb;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', 'Helvetica Neue', sans-serif;
  --font-mono: 'DM Mono', monospace;

  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 4px 24px rgba(26,39,68,0.10);
  --shadow-lg: 0 16px 48px rgba(26,39,68,0.18);
  --transition: 0.3s ease;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
}

/* =============================================
   TYPOGRAPHY SCALE
   ============================================= */
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.25rem; }
p { margin-bottom: 1rem; color: var(--text-muted); }
p:last-child { margin-bottom: 0; }

/* =============================================
   UTILITY CLASSES
   ============================================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--lg { padding: 120px 0; }
.section--dark { background: var(--navy); }
.section--navy-dark { background: var(--navy-dark); }
.section--off-white { background: var(--off-white); }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-header { margin-bottom: 56px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; max-width: 560px; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}
.btn--primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--navy);
}
.btn--ghost {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
  padding: 9px 20px;
  font-size: 0.8125rem;
}
.btn--ghost:hover {
  background: var(--gold);
  color: var(--white);
}
.btn--sm { padding: 9px 20px; font-size: 0.8125rem; }
.btn--lg { padding: 16px 36px; font-size: 1rem; }

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15, 26, 48, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: all var(--transition);
}
#site-header.scrolled {
  background: rgba(15, 26, 48, 0.98);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.site-logo .logo-icon {
  width: 40px;
  height: 40px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
}
.site-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
}
.main-nav a {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
  letter-spacing: 0.02em;
}
.main-nav a:hover,
.main-nav a.active,
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a {
  color: var(--gold);
}
.main-nav .current-menu-item > a { border-bottom: 2px solid var(--gold); }
.header-cta { display: flex; align-items: center; gap: 16px; }
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--navy-dark);
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,26,48,0.92) 0%, rgba(26,39,68,0.7) 60%, rgba(15,26,48,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
}
.hero h1 span { color: var(--gold); }
.hero p {
  color: rgba(255,255,255,0.72);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-icons {
  position: absolute;
  right: 8%;
  bottom: 15%;
  z-index: 2;
  display: flex;
  gap: 16px;
}
.hero-icon-card {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}
.hero-icon-card:nth-child(2) { background: var(--gold); border-color: var(--gold); transform: translateY(-16px); }
.hero-icon-card svg { width: 32px; height: 32px; stroke: var(--white); fill: none; stroke-width: 1.5; }
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.1);
  z-index: 2;
}
.hero-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide: var(--border);
}
.stat-item {
  padding: 24px 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

/* =============================================
   SERVICES CARDS (Home)
   ============================================= */
.services-preview {
  margin-top: -2px;
  background: var(--white);
  position: relative;
  z-index: 10;
}
.services-preview .container {
  padding-top: 0;
}
.service-card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transform: translateY(-40px);
  border: 1px solid var(--border);
}
.service-card-mini {
  padding: 36px 28px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background var(--transition);
}
.service-card-mini:last-child { border-right: none; }
.service-card-mini:hover { background: var(--off-white); }
.service-card-mini .icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
}
.service-card-mini .icon svg { width: 44px; height: 44px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.service-card-mini h4 { margin-bottom: 10px; font-family: var(--font-heading); font-size: 1.1rem; color: var(--text-dark); }
.service-card-mini p { font-size: 0.875rem; margin-bottom: 20px; }

/* =============================================
   FINANCIAL SOLUTIONS SECTION
   ============================================= */
.solution-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.solution-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.solution-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.solution-card:hover .solution-card-image img { transform: scale(1.05); }
.solution-card-icon {
  position: absolute;
  bottom: -20px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--white);
}
.solution-card-icon svg { width: 22px; height: 22px; stroke: var(--white); fill: none; stroke-width: 2; }
.solution-card-body { padding: 32px 28px 28px; }
.solution-card-body h3 { font-size: 1.2rem; margin-bottom: 12px; }
.solution-card-body p { font-size: 0.875rem; margin-bottom: 20px; }

/* =============================================
   HOW WE WORK
   ============================================= */
.how-we-work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.process-step:last-child { border-bottom: none; }
.step-icon {
  width: 52px;
  height: 52px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--border);
  transition: all var(--transition);
}
.process-step:hover .step-icon { background: var(--gold); border-color: var(--gold); }
.process-step:hover .step-icon svg { stroke: var(--white); }
.step-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.5; transition: stroke var(--transition); }
.step-content h4 { margin-bottom: 6px; font-size: 1rem; }
.step-content p { font-size: 0.875rem; margin: 0; }
.consultation-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: sticky;
  top: 100px;
}
.consultation-box h3 { color: var(--white); margin-bottom: 28px; }
.form-group { margin-bottom: 16px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group select option { background: var(--navy); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.testimonial-card .quote-icon {
  width: 40px;
  height: 40px;
  background: rgba(201,168,76,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.testimonial-card .quote-icon svg { width: 20px; height: 20px; fill: var(--gold); }
.testimonial-card p { font-style: italic; color: var(--text-muted); margin-bottom: 24px; line-height: 1.8; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.testimonial-info .name { font-weight: 700; font-size: 0.9rem; color: var(--text-dark); margin: 0; }
.testimonial-info .role { font-size: 0.8rem; color: var(--text-light); margin: 0; }
.stars { color: var(--gold); font-size: 0.875rem; margin-bottom: 12px; letter-spacing: 2px; }

/* =============================================
   CTA BAND
   ============================================= */
.cta-band {
  background: var(--gold);
  padding: 48px 0;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cta-band h2 { color: var(--white); font-size: 1.8rem; margin: 0; }
.cta-band p { color: rgba(255,255,255,0.85); margin: 6px 0 0; }
.btn--white {
  background: var(--white);
  color: var(--gold-dark);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* =============================================
   FOOTER
   ============================================= */
#site-footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-main {
  padding: 72px 0 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-brand .logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.875rem; margin-bottom: 24px; max-width: 280px; }
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
  font-size: 0.875rem;
  border: 1px solid rgba(255,255,255,0.1);
}
.social-link:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.875rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.footer-contact-item svg { width: 18px; height: 18px; stroke: var(--gold); flex-shrink: 0; margin-top: 2px; fill: none; stroke-width: 1.5; }
.footer-contact-item span { color: rgba(255,255,255,0.6); font-size: 0.875rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.8rem; margin: 0; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.footer-bottom-links a:hover { color: var(--gold); }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: var(--navy-dark);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.12) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 520px; font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); font-size: 0.8rem; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); font-size: 0.8rem; }
.breadcrumb .current { color: var(--gold); font-size: 0.8rem; }

/* =============================================
   SERVICES PAGE
   ============================================= */
.service-full-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.service-full-card:last-child { border-bottom: none; }
.service-full-card.reverse { direction: rtl; }
.service-full-card.reverse > * { direction: ltr; }
.service-full-image { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.service-full-image img { width: 100%; height: 100%; object-fit: cover; }
.service-full-content .service-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--border);
  line-height: 1;
  margin-bottom: 8px;
}
.service-full-content h2 { font-size: 2rem; margin-bottom: 16px; }
.service-full-content p { margin-bottom: 20px; }
.service-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.service-feature { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: var(--text-muted); }
.service-feature::before { content: ''; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.pricing-teaser {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  border: 1px solid var(--border);
}
.pricing-teaser .from { font-size: 0.75rem; color: var(--text-light); }
.pricing-teaser .price { font-family: var(--font-heading); font-size: 1.5rem; color: var(--navy); }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrapper {
  position: relative;
}
.about-image-wrapper img {
  border-radius: var(--radius-lg);
  width: 100%;
}
.about-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--gold);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-badge .years { font-family: var(--font-heading); font-size: 2.5rem; line-height: 1; font-weight: 700; }
.about-badge .label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.team-card { text-align: center; }
.team-card-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 4px solid var(--border);
  transition: border-color var(--transition);
}
.team-card:hover .team-card-image { border-color: var(--gold); }
.team-card-image img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { margin-bottom: 4px; }
.team-card .role { color: var(--gold); font-size: 0.85rem; font-weight: 600; display: block; margin-bottom: 10px; }
.team-card p { font-size: 0.85rem; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.value-card:hover { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold), var(--shadow); }
.value-icon { width: 48px; height: 48px; background: rgba(201,168,76,0.1); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.value-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.value-card h4 { margin-bottom: 10px; }

/* =============================================
   INSIGHTS / BLOG PAGE
   ============================================= */
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.post-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.post-card-image { height: 200px; overflow: hidden; }
.post-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.post-card:hover .post-card-image img { transform: scale(1.05); }
.post-card-body { padding: 24px; }
.post-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.post-category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  padding: 3px 8px;
  border-radius: 100px;
}
.post-date { font-size: 0.75rem; color: var(--text-light); }
.post-card h3 { font-size: 1.1rem; margin-bottom: 10px; line-height: 1.4; }
.post-card h3 a { color: var(--text-dark); }
.post-card h3 a:hover { color: var(--gold); }
.post-card p { font-size: 0.85rem; margin-bottom: 16px; }
.post-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--border); }
.read-more { color: var(--gold); font-size: 0.85rem; font-weight: 600; }
.read-more:hover { color: var(--gold-dark); }
.featured-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 56px;
  box-shadow: var(--shadow);
}
.featured-post-image { min-height: 380px; overflow: hidden; }
.featured-post-image img { width: 100%; height: 100%; object-fit: cover; }
.featured-post-body { padding: 48px; display: flex; flex-direction: column; justify-content: center; background: var(--navy-dark); }
.featured-post-body .post-category { margin-bottom: 16px; display: inline-block; }
.featured-post-body h2 { color: var(--white); font-size: 1.8rem; margin-bottom: 16px; }
.featured-post-body p { color: rgba(255,255,255,0.65); margin-bottom: 24px; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: sticky;
  top: 100px;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 8px; }
.contact-info-card > p { color: rgba(255,255,255,0.65); margin-bottom: 36px; }
.contact-detail { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,168,76,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.contact-detail h5 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 4px; font-family: var(--font-body); }
.contact-detail p { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin: 0; }
.contact-form-wrapper { background: var(--white); }
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; letter-spacing: 0.04em; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--gold); background: var(--white); }
.contact-form textarea { resize: vertical; min-height: 130px; }

/* =============================================
   BREADCRUMB WIDGET
   ============================================= */
nav.breadcrumb-nav { padding: 16px 0; background: var(--off-white); border-bottom: 1px solid var(--border); }
nav.breadcrumb-nav a { color: var(--text-muted); font-size: 0.85rem; }
nav.breadcrumb-nav span.sep { color: var(--text-light); margin: 0 6px; font-size: 0.85rem; }
nav.breadcrumb-nav span.current { color: var(--gold); font-size: 0.85rem; }

/* =============================================
   WIDGET AREAS
   ============================================= */
.widget { margin-bottom: 32px; }
.widget-title { font-size: 1rem; font-weight: 700; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--gold); display: inline-block; }
.sidebar .widget ul li { padding: 6px 0; border-bottom: 1px solid var(--border); }
.sidebar .widget ul li a { color: var(--text-muted); font-size: 0.875rem; }
.sidebar .widget ul li a:hover { color: var(--gold); }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* =============================================
   MOBILE RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
  .how-we-work-grid { grid-template-columns: 1fr; gap: 48px; }
  .consultation-box { position: static; }
  .about-intro { grid-template-columns: 1fr; gap: 48px; }
  .service-full-card { grid-template-columns: 1fr; gap: 32px; }
  .service-full-card.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-info-card { position: static; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .main-nav, .header-cta .btn--primary { display: none; }
  .mobile-menu-toggle { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .service-card-row { grid-template-columns: 1fr; transform: translateY(0); }
  .service-card-mini { border-right: none; border-bottom: 1px solid var(--border); }
  .hero-icons { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .posts-grid { grid-template-columns: 1fr; }
  .featured-post { grid-template-columns: 1fr; }
  .featured-post-image { min-height: 220px; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .section { padding: 56px 0; }
  .stat-item { padding: 16px; }
  .stat-number { font-size: 1.5rem; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-stats-inner { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   MOBILE MENU OVERLAY
   ============================================= */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--navy-dark);
  z-index: 999;
  padding: 24px;
  overflow-y: auto;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: block;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* =============================================
   SINGLE POST
   ============================================= */
.post-single-layout { display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: start; }
.post-content { max-width: 720px; }
.post-content h2, .post-content h3 { margin: 2rem 0 1rem; }
.post-content p { margin-bottom: 1.4rem; }
.post-content img { border-radius: var(--radius-lg); margin: 2rem 0; }
.post-content blockquote {
  border-left: 4px solid var(--gold);
  padding: 16px 24px;
  background: var(--off-white);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text-muted);
}
.sidebar { position: sticky; top: 100px; }

/* =============================================
   MAP EMBED
   ============================================= */
.map-container { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.map-container iframe { display: block; }
/* =============================================
   WHATSAPP FLOAT BUTTON
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 990;
  transition: all 0.3s ease;
  animation: waPulse 2.5s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  background: #1ebe5d;
  color: #fff;
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.7); }
}

/* =============================================
   BACK TO TOP BUTTON
   ============================================= */
#back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 989;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
#back-to-top:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* =============================================
   SEARCH FORM
   ============================================= */
.search-form {
  display: flex;
  gap: 0;
}
.search-field {
  width: 100%;
  padding: 11px 14px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  font-size: 0.875rem;
  font-family: var(--font-body);
  outline: none;
  color: var(--text-dark);
}
.search-field:focus { border-color: var(--gold); }
.search-submit {
  padding: 11px 16px;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: #fff;
  cursor: pointer;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.875rem;
  transition: background 0.3s;
}
.search-submit:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

/* =============================================
   COMMENTS
   ============================================= */
.comments-area h2 { font-size: 1.4rem; margin-bottom: 32px; }
.comment-list { list-style: none; padding: 0; }
.comment { margin-bottom: 24px; }
.comment-body {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border);
}
.comment-author .fn { font-weight: 700; font-size: 0.9rem; }
.comment-metadata { font-size: 0.75rem; color: var(--text-light); }
.comment-content { margin-top: 12px; font-size: 0.9rem; }
.reply a { font-size: 0.8rem; color: var(--gold); font-weight: 600; }
#respond { margin-top: 48px; }
#respond h3 { margin-bottom: 24px; }
.comment-form label { display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 6px; color: var(--text-dark); }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 11px 14px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.3s;
}
.comment-form input:focus,
.comment-form textarea:focus { border-color: var(--gold); }
.comment-form-comment textarea { min-height: 120px; }
.form-submit input[type="submit"] {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.875rem;
  transition: background 0.3s;
}
.form-submit input[type="submit"]:hover { background: var(--gold-dark); }

/* =============================================
   PAGINATION
   ============================================= */
.nav-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 48px;
  justify-content: center;
}
.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: all 0.3s;
}
.page-numbers:hover,
.page-numbers.current {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.page-numbers.dots { border: none; background: none; }

/* =============================================
   ACCESSIBILITY: SKIP LINK
   ============================================= */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: 9999;
  padding: 8px 16px;
  background: var(--gold);
  color: #fff;
  font-size: 0.875rem;
}
.skip-link:focus { top: 0; }

/* =============================================
   PRINT STYLES
   ============================================= */
@media print {
  #site-header, #site-footer, .cta-band, .whatsapp-float, #back-to-top { display: none !important; }
  body { font-size: 12pt; color: #000; }
  a { color: #000; text-decoration: underline; }
  h1, h2, h3 { page-break-after: avoid; }
}
