/*
Theme Name: DMM Executive Growth Suite
Theme URI: https://dmm.gr
Author: DMM.gr
Author URI: https://dmm.gr
Description: Πολυτελές WordPress theme ψηφιακού agency — σκούρο navy και χρυσό, σχεδιασμένο για premium brands. Περιλαμβάνει hero section, υπηρεσίες, μελέτες περιπτώσεων, διαδικασία, μαρτυρίες πελατών και φόρμα επικοινωνίας.
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: dmm-theme
Tags: one-column, custom-menu, featured-images, full-width-template
*/

/* ===================================================================
   0. CSS CUSTOM PROPERTIES
   =================================================================== */

:root {
  /* Core palette */
  --background: hsl(210, 20%, 98%);
  --foreground: hsl(215, 25%, 15%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(215, 25%, 15%);
  --primary: hsl(204, 100%, 28%);
  --primary-foreground: hsl(0, 0%, 100%);
  --muted: hsl(210, 15%, 94%);
  --muted-foreground: hsl(215, 12%, 50%);
  --border: hsl(214, 20%, 90%);

  /* Luxury tokens */
  --navy: hsl(207, 100%, 15%);
  --navy-deep: hsl(222, 47%, 11%);
  --gold: hsl(40, 50%, 57%);
  --gold-light: hsl(40, 45%, 72%);
  --cream: hsl(210, 20%, 98%);

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --radius: 0.5rem;
  --container-max: 1400px;
}


/* ===================================================================
   1. RESET & BASE
   =================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

ul, ol {
  list-style: none;
}


/* ===================================================================
   2. LAYOUT UTILITIES
   =================================================================== */

.container {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-padding {
  padding-top: 7rem;
  padding-bottom: 7rem;
}


/* ===================================================================
   3. BACKGROUNDS & EFFECTS
   =================================================================== */

.luxury-gradient {
  background: linear-gradient(135deg, hsl(204, 100%, 28%) 0%, hsl(222, 47%, 11%) 100%);
}

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

.bg-card {
  background-color: var(--card);
}

.glass-panel {
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
}

.glass-panel:hover {
  background: rgba(255, 255, 255, 0.15);
}

.gold-border-top {
  border-top: 2px solid var(--gold);
}

.gold-line {
  height: 2px;
  width: 4rem;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
}

.gold-line-center {
  height: 2px;
  width: 4rem;
  margin: 1rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}


/* ===================================================================
   4. NAVIGATION
   =================================================================== */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.80);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.site-nav__logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #fff;
}

.site-nav__logo .dot {
  color: var(--gold);
}

/* Desktop links */
.site-nav__links {
  display: none;
  align-items: center;
  gap: 1rem;
}

/* Desktop nav-menu (ul from wp_nav_menu) */
.site-nav__links .nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__links .nav-menu > li {
  position: relative;
}

.site-nav__links .nav-menu > li > a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.70);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  transition: color 0.3s ease, background 0.3s ease;
}

.site-nav__links .nav-menu > li > a:hover,
.site-nav__links .nav-menu > li:hover > a {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* Dropdown arrow for parent items */
.site-nav__links .nav-menu > li.menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 0.4em;
  height: 0.4em;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -0.15em;
  transition: transform 0.3s ease;
}

.site-nav__links .nav-menu > li.menu-item-has-children:hover > a::after {
  transform: rotate(-135deg);
}

/* Desktop sub-menu (dropdown) */
.site-nav__links .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 0.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  transform: translateX(-50%) translateY(8px);
  z-index: 100;
}

/* Invisible bridge so the cursor can travel from parent to dropdown */
.site-nav__links .nav-menu > li.menu-item-has-children::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
  display: none;
}

.site-nav__links .nav-menu > li.menu-item-has-children:hover::after {
  display: block;
}

.site-nav__links .nav-menu > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.site-nav__links .sub-menu li {
  position: relative;
}

.site-nav__links .sub-menu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav__links .sub-menu li a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* Arrow for sub-menu items that have children (points right) */
.site-nav__links .sub-menu li.menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 0.35em;
  height: 0.35em;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(-45deg);
  flex-shrink: 0;
}

/* Desktop nested sub-menu (flyout to the right) */
.site-nav__links .sub-menu .sub-menu {
  top: -0.5rem;
  left: 100%;
  transform: translateX(8px) translateY(0);
}

/* Invisible bridge for nested flyout */
.site-nav__links .sub-menu li.menu-item-has-children::after {
  content: '';
  position: absolute;
  top: 0;
  right: -12px;
  width: 12px;
  height: 100%;
  display: none;
}

.site-nav__links .sub-menu li.menu-item-has-children:hover::after {
  display: block;
}

.site-nav__links .sub-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0) translateY(0);
}

/* Fallback: direct <a> links (no WP menu) */
.site-nav__links > a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.70);
  padding: 0.5rem 0.75rem;
  transition: color 0.3s ease;
}

.site-nav__links > a:hover {
  color: #fff;
}

/* CTA button in nav */
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--navy-deep) !important;
  transition: background 0.3s ease;
}

.nav-cta:hover {
  background: var(--gold-light);
  color: var(--navy-deep) !important;
}

/* Mobile toggle */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  padding: 0;
  color: rgba(255, 255, 255, 0.80);
  width: 2.5rem;
  height: 2.5rem;
  position: relative;
  z-index: 10;
}

.nav-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
  pointer-events: none;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding: 0.5rem 1.5rem 1.5rem;
  flex-direction: column;
  max-height: 80vh;
  overflow-y: auto;
}

.mobile-menu.is-open {
  display: flex;
  animation: fadeUp 0.3s ease-out forwards;
}

/* Mobile nav-menu (ul from wp_nav_menu) */
.mobile-menu .mobile-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu .mobile-nav-menu li {
  list-style: none;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  color: rgba(255, 255, 255, 0.70);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: #fff;
}

/* Mobile sub-menu toggle arrow */
.mobile-menu .menu-item-has-children > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Mobile sub-menu (hidden by default, toggled via JS) */
.mobile-menu .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.mobile-menu .sub-menu.is-expanded {
  max-height: 2000px;
  overflow: visible;
}

.mobile-menu .sub-menu a {
  padding-left: 1.25rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.50);
}

.mobile-menu .sub-menu a:hover {
  color: rgba(255, 255, 255, 0.90);
}

/* Deeper nested sub-sub-menus on mobile */
.mobile-menu .sub-menu .sub-menu a {
  padding-left: 2.5rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.40);
}

.mobile-menu .sub-menu .sub-menu a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.mobile-menu .sub-menu .sub-menu .sub-menu a {
  padding-left: 3.75rem;
}

/* Mobile sub-menu toggle arrow */
.mobile-menu .submenu-arrow {
  display: inline-flex;
  align-items: center;
  margin-left: auto;
  transition: transform 0.3s ease;
  color: rgba(255, 255, 255, 0.40);
}

.mobile-menu .submenu-arrow.is-rotated {
  transform: rotate(180deg);
}

.mobile-menu .mobile-cta {
  display: block;
  margin-top: 1rem;
  text-align: center;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--navy-deep);
  border-bottom: none;
}

@media (min-width: 768px) {
  .site-nav__links {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
}


/* ===================================================================
   5. HERO
   =================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg-gradient {
  position: absolute;
  inset: 0;
}

.hero__bg-gradient.luxury-gradient {
  z-index: 1;
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.30;
  mix-blend-mode: overlay;
  z-index: 2;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, transparent 60%, rgba(15, 23, 42, 0.60) 100%);
  z-index: 3;
}

.hero__content {
  position: relative;
  z-index: 10;
  padding-top: 8rem;
  padding-bottom: 5rem;
}

/* Hero two-column grid */
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr 420px;
    gap: 4rem;
  }
}

.hero__text {
  /* no extra styles needed */
}

.hero__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #fff;
}

.hero__title br {
  display: block;
}

.hero__gold-line {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  height: 2px;
  width: 6rem;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero__subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.125rem);
  color: rgba(255, 255, 255, 0.60);
  font-weight: 300;
  max-width: 36rem;
  line-height: 1.7;
}

/* Stat cards in hero (below text) */
.hero__stats {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

@media (max-width: 639px) {
  .hero__stats {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

/* Hero form */
.hero__form-wrap {
  width: 100%;
}

.hero-form {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.75rem;
}

@media (min-width: 640px) {
  .hero-form {
    padding: 2.5rem;
  }
}

.hero-form__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.hero-form__subtitle {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hero-form__field {
  margin-bottom: 0.875rem;
}

.hero-form__field input,
.hero-form__field select,
.hero-form__field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: #fff;
  font-size: 0.875rem;
  transition: border-color 0.3s ease, background 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}

.hero-form__field input::placeholder,
.hero-form__field textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.hero-form__field input:focus,
.hero-form__field select:focus,
.hero-form__field textarea:focus {
  outline: none;
  border-color: rgba(196, 162, 101, 0.50);
  background: rgba(255, 255, 255, 0.10);
}

.hero-form__field select {
  color: rgba(255, 255, 255, 0.55);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.hero-form__field select option {
  background: var(--navy-deep);
  color: #fff;
}

.hero-form__field textarea {
  resize: none;
  min-height: 80px;
}

.hero-form__btn {
  width: 100%;
  margin-top: 0.25rem;
}

/* Hero form success message */
.hero-form__success {
  text-align: center;
  padding: 2rem 1rem;
}

.hero-form__success svg {
  color: var(--gold);
  margin: 0 auto 1rem;
}

.hero-form__success p {
  color: rgba(255, 255, 255, 0.80);
  font-size: 1rem;
  font-weight: 500;
}

/* ---- Contact Form 7 inside Hero ---- */
.hero-form .wpcf7 {
  margin: 0;
}

.hero-form .wpcf7-form label {
  display: block;
  margin-bottom: 0.875rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
}

.hero-form .wpcf7-form input[type="text"],
.hero-form .wpcf7-form input[type="email"],
.hero-form .wpcf7-form input[type="tel"],
.hero-form .wpcf7-form textarea,
.hero-form .wpcf7-form select {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: #fff;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  transition: border-color 0.3s ease, background 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  margin-top: 0.35rem;
}

.hero-form .wpcf7-form input::placeholder,
.hero-form .wpcf7-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.hero-form .wpcf7-form input:focus,
.hero-form .wpcf7-form textarea:focus,
.hero-form .wpcf7-form select:focus {
  outline: none;
  border-color: rgba(196, 162, 101, 0.50);
  background: rgba(255, 255, 255, 0.10);
}

.hero-form .wpcf7-form select {
  color: rgba(255, 255, 255, 0.55);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.hero-form .wpcf7-form select option {
  background: var(--navy-deep);
  color: #fff;
}

.hero-form .wpcf7-form textarea {
  resize: none;
  min-height: 80px;
}

.hero-form .wpcf7-form input[type="submit"] {
  width: 100%;
  margin-top: 0.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-form .wpcf7-form input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(196, 162, 101, 0.35);
}

/* CF7 validation & response messages */
.hero-form .wpcf7-not-valid-tip {
  color: #ff6b6b;
  font-size: 0.78rem;
  margin-top: 0.3rem;
  display: block;
}

.hero-form .wpcf7-response-output {
  border: 1px solid rgba(196, 162, 101, 0.4) !important;
  border-radius: var(--radius);
  padding: 0.75rem 1rem !important;
  margin: 1rem 0 0 !important;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.06);
}

.hero-form .wpcf7-form.sent .wpcf7-response-output {
  border-color: rgba(100, 200, 100, 0.5) !important;
  color: rgba(100, 200, 100, 0.9);
}

.hero-form .wpcf7 .wpcf7-spinner {
  display: block;
  margin: 0.5rem auto 0;
}

/* Buttons */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  transition: background 0.4s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: radial-gradient(circle at center, rgba(196, 162, 101, 0.25) 0%, transparent 70%);
}

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

.btn-gold:hover::after {
  opacity: 1;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.20);
  background: transparent;
  color: rgba(255, 255, 255, 0.80);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  transition: all 0.4s ease;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.90);
}

.stat-card {
  padding: 1.5rem;
  transition: all 0.5s ease;
}

.stat-card__icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  transition: transform 0.5s ease;
}

.stat-card:hover .stat-card__icon {
  transform: scale(1.1);
}

.stat-card__value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.025em;
}

.stat-card__label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.50);
  margin-top: 0.25rem;
}


/* ===================================================================
   6. SECTION HEADINGS (shared)
   =================================================================== */

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

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

.section-header__title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}

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

.section-header__title--light {
  color: #fff;
}

.section-header__desc {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.50);
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}


/* ===================================================================
   7. CAPABILITIES
   =================================================================== */

.capabilities {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background: var(--cream);
}

.capabilities__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .capabilities__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .capabilities__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.capability-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  border-top: 2px solid var(--gold);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  transition: all 0.5s ease;
}

.capability-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
}

.capability-card__icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.capability-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.capability-card__desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.capability-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  transition: color 0.3s ease;
}

.capability-card__link:hover {
  color: var(--gold);
}

.capability-card__link svg {
  width: 0.875rem;
  height: 0.875rem;
}


/* ===================================================================
   8. GROWTH INTELLIGENCE
   =================================================================== */

.growth-intelligence {
  padding-top: 7rem;
  padding-bottom: 7rem;
  position: relative;
  overflow: hidden;
}

.growth-intelligence .glass-panel {
  max-width: 56rem;
  margin: 0 auto;
  padding: 2rem;
}

@media (min-width: 640px) {
  .growth-intelligence .glass-panel {
    padding: 3rem;
  }
}

.gi-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .gi-form__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gi-form label {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.60);
  margin-bottom: 0.5rem;
}

.gi-form input,
.gi-form select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: #fff;
  font-size: 0.875rem;
  transition: border-color 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}

.gi-form input::placeholder {
  color: rgba(255, 255, 255, 0.30);
}

.gi-form input:focus,
.gi-form select:focus {
  outline: none;
  border-color: rgba(196, 162, 101, 0.50);
}

.gi-form select option {
  background: var(--navy-deep);
}

/* ---- Contact Form 7 inside Growth Intelligence ---- */
.gi-form .wpcf7 {
  margin: 0;
}

.gi-form .wpcf7-form p {
  margin: 0;
}

.gi-form .wpcf7-form label {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.60);
  margin-bottom: 0.5rem;
}

.gi-form .wpcf7-form .gi-cf7-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .gi-form .wpcf7-form .gi-cf7-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gi-form .wpcf7-form input[type="url"],
.gi-form .wpcf7-form input[type="text"],
.gi-form .wpcf7-form select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: #fff;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  transition: border-color 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  margin-top: 0.35rem;
}

.gi-form .wpcf7-form input::placeholder {
  color: rgba(255, 255, 255, 0.30);
}

.gi-form .wpcf7-form input:focus,
.gi-form .wpcf7-form select:focus {
  outline: none;
  border-color: rgba(196, 162, 101, 0.50);
  background: rgba(255, 255, 255, 0.08);
}

.gi-form .wpcf7-form select {
  color: rgba(255, 255, 255, 0.55);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.gi-form .wpcf7-form select option {
  background: var(--navy-deep);
  color: #fff;
}

.gi-form .wpcf7-form input[type="submit"] {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gi-form .wpcf7-form input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(196, 162, 101, 0.35);
}

.gi-form .wpcf7-not-valid-tip {
  color: #ff6b6b;
  font-size: 0.78rem;
  margin-top: 0.3rem;
  display: block;
}

.gi-form .wpcf7-response-output {
  border: 1px solid rgba(196, 162, 101, 0.4) !important;
  border-radius: var(--radius);
  padding: 0.75rem 1rem !important;
  margin: 1rem 0 0 !important;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.06);
}

.gi-form .wpcf7-form.sent .wpcf7-response-output {
  border-color: rgba(100, 200, 100, 0.5) !important;
  color: rgba(100, 200, 100, 0.9);
}

.gi-result {
  display: none;
}

.gi-result.is-visible {
  display: block;
  animation: fadeUp 0.7s ease-out;
}

.gi-result__badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gold);
  margin-bottom: 2rem;
}

.gi-result__badge svg {
  width: 1.25rem;
  height: 1.25rem;
}

.gi-result__badge span {
  font-size: 0.875rem;
  font-weight: 500;
}

.gi-result__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .gi-result__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gi-output-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: background 0.5s ease;
}

.gi-output-card:hover {
  background: rgba(255, 255, 255, 0.10);
}

.gi-output-card__icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.gi-output-card__title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.gi-output-card__desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.40);
}

.gi-output-card__bar {
  margin-top: 0.75rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.10);
  overflow: hidden;
}

.gi-output-card__bar-fill {
  height: 100%;
  border-radius: 9999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  animation: shimmer 2s ease-in-out infinite;
  background-size: 200% 100%;
}


/* ===================================================================
   9. CASE STUDIES
   =================================================================== */

.case-studies {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background: var(--card);
}

.case-studies__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .case-studies__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.case-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  padding: 2rem;
  transition: all 0.5s ease;
}

@media (min-width: 640px) {
  .case-card {
    padding: 2.5rem;
  }
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.2);
}

.case-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
}

.case-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}

.case-card__section {
  margin-bottom: 1rem;
}

.case-card__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.case-card__text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.60);
  line-height: 1.7;
}

.case-card__metric {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding-top: 1.5rem;
  margin-top: 2rem;
}

.case-card__metric-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gold);
}

.case-card__metric-sub {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.40);
  margin-top: 0.25rem;
}


/* ===================================================================
   10. PROCESS
   =================================================================== */

.process {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background: var(--cream);
}

.process__track {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
}

.process__timeline {
  display: none;
}

@media (min-width: 768px) {
  .process__timeline {
    display: block;
    position: absolute;
    top: 3rem;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(196, 162, 101, 0.40), transparent);
  }
}

.process__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .process__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.process-step {
  text-align: center;
}

.process-step__circle {
  position: relative;
  margin: 0 auto 1.5rem;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid rgba(196, 162, 101, 0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.process-step__circle svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gold);
}

.process-step__number {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step__title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.process-step__desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}


/* ===================================================================
   11. TESTIMONIALS
   =================================================================== */

.testimonials {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.testimonial-card {
  padding: 2rem;
  transition: all 0.5s ease;
}

.testimonial-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial-card__avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(196, 162, 101, 0.20);
  border: 1px solid rgba(196, 162, 101, 0.30);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-card__avatar span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
}

.testimonial-card__name {
  color: #fff;
  font-weight: 500;
  font-size: 0.875rem;
}

.testimonial-card__company {
  color: rgba(255, 255, 255, 0.40);
  font-size: 0.75rem;
}

.testimonial-card__quote {
  color: rgba(255, 255, 255, 0.70);
  font-size: 0.875rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-card__metric {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding-top: 1rem;
}

.testimonial-card__metric-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
}


/* ===================================================================
   12. ENGAGEMENT / CONTACT
   =================================================================== */

.engagement {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background: var(--cream);
}

.engagement__inner {
  max-width: 42rem;
  margin: 0 auto;
}

.engagement__header {
  text-align: center;
  margin-bottom: 3rem;
}

.engagement__title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--foreground);
  letter-spacing: -0.025em;
}

.engagement__desc {
  margin-top: 1.5rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.engagement__form {
  background: var(--card);
  border-radius: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.12);
  padding: 2rem;
}

@media (min-width: 640px) {
  .engagement__form {
    padding: 3rem;
  }
}

.engagement__form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .engagement__form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.engagement__form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.engagement__form input,
.engagement__form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  background: var(--background);
  color: var(--foreground);
  transition: all 0.3s ease;
}

.engagement__form input::placeholder,
.engagement__form textarea::placeholder {
  color: var(--muted-foreground);
}

.engagement__form input:focus,
.engagement__form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 162, 101, 0.15);
}

.engagement__form textarea {
  resize: none;
  min-height: 120px;
}

/* ---- Contact Form 7 inside Engagement ---- */
.engagement__form .wpcf7 {
  margin: 0;
}

.engagement__form .wpcf7-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.engagement__form .wpcf7-form input[type="text"],
.engagement__form .wpcf7-form input[type="email"],
.engagement__form .wpcf7-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  transition: all 0.3s ease;
  margin-top: 0.35rem;
}

.engagement__form .wpcf7-form input::placeholder,
.engagement__form .wpcf7-form textarea::placeholder {
  color: var(--muted-foreground);
}

.engagement__form .wpcf7-form input:focus,
.engagement__form .wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 162, 101, 0.15);
}

.engagement__form .wpcf7-form textarea {
  resize: none;
  min-height: 120px;
}

.engagement__form .wpcf7-form p {
  margin-bottom: 1.5rem;
}

.engagement__form .wpcf7-form p:last-of-type {
  margin-bottom: 0;
}

.engagement__form .wpcf7-form input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.engagement__form .wpcf7-form input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(196, 162, 101, 0.35);
}

.engagement__form .wpcf7-not-valid-tip {
  color: #e74c3c;
  font-size: 0.78rem;
  margin-top: 0.3rem;
  display: block;
}

.engagement__form .wpcf7-response-output {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius);
  padding: 0.75rem 1rem !important;
  margin: 1rem 0 0 !important;
  font-size: 0.85rem;
  background: var(--background);
}

.engagement__form .wpcf7-form.sent .wpcf7-response-output {
  border-color: var(--gold) !important;
  color: var(--gold);
}


/* ===================================================================
   13. FOOTER
   =================================================================== */

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding: 4rem 0;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .site-footer__inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.site-footer__brand {
  text-align: center;
}

@media (min-width: 768px) {
  .site-footer__brand {
    text-align: left;
  }
}

.site-footer__logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.site-footer__logo .dot {
  color: var(--gold);
}

.site-footer__tagline {
  color: rgba(255, 255, 255, 0.30);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.site-footer__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.site-footer__links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.40);
  transition: color 0.3s ease;
}

.site-footer__links a:hover {
  color: rgba(255, 255, 255, 0.70);
}

.site-footer__bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.site-footer__copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.20);
}


/* ===================================================================
   14. ANIMATIONS
   =================================================================== */

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

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
}

.fade-up.is-visible {
  animation: fadeUp 0.7s ease-out forwards;
}

.fade-up-delay-1.is-visible { animation-delay: 0.1s; }
.fade-up-delay-2.is-visible { animation-delay: 0.2s; }
.fade-up-delay-3.is-visible { animation-delay: 0.3s; }
.fade-up-delay-4.is-visible { animation-delay: 0.4s; }


/* ===================================================================
   15. SVG ICON INLINE STYLES
   =================================================================== */

.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon--sm { width: 0.875rem; height: 0.875rem; }
.icon--md { width: 1.25rem; height: 1.25rem; }
.icon--lg { width: 1.5rem; height: 1.5rem; }


/* ===================================================================
   16. WORDPRESS SPECIFIC
   =================================================================== */

/* WordPress alignment classes */
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignleft {
  float: left;
  margin-right: 1.5rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
}

/* Screen reader text (accessibility) */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
}

/* WordPress admin bar fix */
body.admin-bar .site-nav {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .site-nav {
    top: 46px;
  }
}
