/*
Theme Name: DFCG Executive Consulting
Theme URI: https://dfcg.com
Author: Digital Fusion Consulting Group & Antigravity AI
Author URI: https://dfcg.com
Description: Executive WordPress theme built for DFCG (Digital Fusion Consulting Group), featuring Navy, Gold & White identity, DFCG Executive Operating Framework™, and executive leadership styling.
Version: 2.0.0
License: GNU General Public License v2 or later
Text Domain: dfcg-executive
Tags: executive, consulting, navy-gold, custom-menu, responsive-layout, Gutenberg
*/

/* ==========================================================================
   DFCG Design System & CSS Variables
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* DFCG Executive Navy, Gold & White Palette */
  --navy-dark: #0a1322;
  --navy-main: #0f1c30;
  --navy-surface: #15253f;
  --navy-card: #1c2e4a;
  
  --gold-primary: #c5a059;
  --gold-hover: #b38e46;
  --gold-light: rgba(197, 160, 89, 0.12);
  --gold-border: rgba(197, 160, 89, 0.35);
  --gold-glow: 0 0 25px rgba(197, 160, 89, 0.25);
  
  --text-primary: #0f172a;
  --text-muted: #475569;
  --text-light: #94a3b8;
  --text-white: #ffffff;
  
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border-light: #e2e8f0;
  --border-dark: #233550;

  /* Editorial & Executive Typography */
  --font-serif: 'Cinzel', Georgia, serif;
  --font-heading: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Radius & Shadows */
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 12px 30px rgba(15, 28, 48, 0.08);
  --shadow-lg: 0 20px 40px rgba(10, 19, 34, 0.18);
  
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

a:hover {
  color: var(--gold-hover);
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ==========================================================================
   Executive Buttons & Badges
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

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

.btn-gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  color: var(--navy-dark);
  box-shadow: var(--gold-glow);
}

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

.btn-outline-gold:hover {
  background: var(--gold-light);
  color: var(--text-white);
}

.btn-outline-white {
  background: transparent;
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.4);
}

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

.sub-tag {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-primary);
  margin-bottom: 12px;
  display: inline-block;
}

/* ==========================================================================
   Header & Executive Navigation Bar
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 19, 34, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  padding: 16px 0;
  transition: var(--transition);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dfcg-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.dfcg-logo-text {
  display: flex;
  flex-direction: column;
}

.dfcg-logo-brand {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: 2px;
  line-height: 1;
}

.dfcg-logo-sub {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 3px;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.main-nav a {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
}

.main-nav a:hover {
  color: var(--gold-primary);
}

/* ==========================================================================
   1. Hero Section - Building Stronger Companies
   ========================================================================== */
.hero-executive {
  position: relative;
  background: linear-gradient(135deg, rgba(10, 19, 34, 0.92) 0%, rgba(15, 28, 48, 0.85) 100%),
              url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
  color: var(--text-white);
  padding: 190px 0 120px;
  min-height: 85vh;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-dark);
}

.hero-executive-content {
  max-width: 720px;
}

.hero-executive h1 {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin: 16px 0 20px;
}

.hero-executive h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold-primary);
  margin-bottom: 24px;
}

.hero-executive p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-btn-group {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* ==========================================================================
   2. Our Commitment Section
   ========================================================================== */
.commitment-section {
  padding: 100px 0;
  background: var(--bg-white);
}

.commitment-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.commitment-intro h2 {
  font-size: 2.3rem;
  line-height: 1.25;
  margin-bottom: 20px;
}

.commitment-intro p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.pillar-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 32px;
  transition: var(--transition);
}

.pillar-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gold-light);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 20px;
}

.pillar-card h3 {
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.pillar-card p {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   3. The Challenges We Solve Section
   ========================================================================== */
.challenges-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.challenges-header {
  text-align: center;
  margin-bottom: 60px;
}

.challenges-header h2 {
  font-size: 2.3rem;
}

.challenges-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.challenge-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 28px 20px;
  border-radius: var(--radius-sm);
  text-align: center;
  transition: var(--transition);
}

.challenge-card:hover {
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.challenge-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--gold-primary);
}

.challenge-card h3 {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.challenge-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   4. Executive Quote / Belief Banner
   ========================================================================== */
.quote-banner {
  background: linear-gradient(135deg, rgba(10, 19, 34, 0.94) 0%, rgba(15, 28, 48, 0.88) 100%),
              url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
  color: var(--text-white);
  padding: 90px 0;
  text-align: center;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.quote-banner h2 {
  font-size: 2.5rem;
  color: var(--text-white);
  max-width: 900px;
  margin: 12px auto 20px;
}

.quote-banner p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 750px;
  margin: 0 auto 36px;
}

.ppp-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.ppp-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-primary);
}

/* ==========================================================================
   5. What We Do - Executive Priorities
   ========================================================================== */
.services-executive {
  padding: 100px 0;
  background: var(--bg-white);
}

.services-grid-10 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.service-pill-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  padding: 24px 16px;
  border-radius: var(--radius-sm);
  text-align: center;
  transition: var(--transition);
}

.service-pill-card:hover {
  background: var(--navy-main);
  border-color: var(--gold-primary);
  color: var(--text-white);
  transform: translateY(-4px);
}

.service-pill-card:hover h3 {
  color: var(--gold-primary);
}

.service-pill-card .sp-icon {
  font-size: 1.5rem;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.service-pill-card h3 {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
}

/* ==========================================================================
   6. DFCG Executive Operating Framework™ (Circular Step Process)
   ========================================================================== */
.framework-section {
  padding: 110px 0;
  background: var(--navy-dark);
  color: var(--text-white);
  position: relative;
}

.framework-intro {
  max-width: 600px;
  margin-bottom: 60px;
}

.framework-intro h2 {
  font-size: 2.5rem;
  color: var(--text-white);
  margin-bottom: 16px;
}

.framework-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.framework-step-card {
  background: var(--navy-surface);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
}

.framework-step-card:hover {
  border-color: var(--gold-primary);
  box-shadow: var(--gold-glow);
  transform: translateY(-4px);
}

.step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  background: var(--navy-dark);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.framework-step-card h3 {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 12px;
}

.framework-step-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

/* ==========================================================================
   7. Industries We Serve (Image Tiles)
   ========================================================================== */
.industries-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.industry-tile {
  position: relative;
  height: 200px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.industry-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.industry-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 19, 34, 0.9) 0%, rgba(10, 19, 34, 0.3) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.industry-tile h3 {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-white);
}

.industry-tile:hover img {
  transform: scale(1.08);
}

/* ==========================================================================
   8. Executive Operating Experience & Metric Distinction
   ========================================================================== */
.experience-section {
  padding: 110px 0;
  background: var(--bg-white);
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.executive-portrait {
  width: 100%;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.experience-content h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.experience-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.metrics-distinction-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.metric-box {
  border-top: 3px solid var(--gold-primary);
  padding-top: 16px;
}

.metric-box h3 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 4px;
}

.metric-box .m-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-primary);
  display: block;
  margin-bottom: 4px;
}

.metric-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ==========================================================================
   9. Executive Insights Section
   ========================================================================== */
.insights-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.insight-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.insight-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.insight-img {
  height: 200px;
  overflow: hidden;
}

.insight-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insight-body {
  padding: 28px;
}

.insight-category {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-primary);
  margin-bottom: 8px;
}

.insight-body h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  line-height: 1.35;
}

.insight-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* ==========================================================================
   10. Footer & Footer CTA Banner
   ========================================================================== */
.footer-cta-banner {
  background: linear-gradient(135deg, rgba(10, 19, 34, 0.94) 0%, rgba(15, 28, 48, 0.88) 100%),
              url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
  color: var(--text-white);
  padding: 90px 0;
  text-align: center;
  border-top: 1px solid var(--gold-border);
}

.footer-cta-banner h2 {
  font-size: 2.75rem;
  color: var(--text-white);
  margin-bottom: 16px;
}

.footer-cta-banner p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 650px;
  margin: 0 auto 36px;
}

.site-footer {
  background: var(--navy-dark);
  color: var(--text-light);
  padding: 80px 0 30px;
  border-top: 1px solid var(--border-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-white);
  margin-bottom: 20px;
}

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

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

.footer-col a {
  color: var(--text-light);
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--gold-primary);
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 30px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-executive h1 { font-size: 3rem; }
  .challenges-grid, .services-grid-10 { grid-template-columns: repeat(3, 1fr); }
  .framework-steps { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .commitment-grid, .experience-grid { grid-template-columns: 1fr; }
  .pillars-grid, .challenges-grid, .services-grid-10, .insights-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .ppp-badges { flex-direction: column; gap: 16px; }
}
