/*
 * Stylesheet for Chizle Advisors
 * Strategic Advisory - Blockchain, Government, Sports
 * Premium dark theme with gold/bronze accents
 */

/* ============================================
   CSS Variables & Design Tokens
   ============================================ */
:root {
  /* Colors - Dark Premium Theme */
  --bg-primary: #050505;
  --bg-secondary: #0a0a0a;
  --bg-tertiary: #121212;
  --bg-card: rgba(15, 15, 15, 0.7);

  /* Text */
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-muted: #666666;

  /* Refined Gold/Bronze Palette */
  --gold-primary: #c5a059;
  --gold-light: #e2c286;
  --gold-dark: #8e6d30;
  --bronze: #a67c52;

  /* Accent Gradients */
  --gradient-gold: linear-gradient(135deg, #c5a059 0%, #e2c286 50%, #8e6d30 100%);
  --gradient-dark: linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, 0.9) 100%);
  --glass-gold: rgba(197, 160, 89, 0.05);

  /* Shadows & Floats */
  --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.4);
  --border-subtle: rgba(255, 255, 255, 0.08);

  /* Transitions */
  --transition-bespoke: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   Global Styles
   ============================================ */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  line-height: 1.25;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.3;
}

h5 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

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

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

/* Gradient Text - Gold */
.gradient-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section Labels */
.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 2rem;
  position: relative;
  padding-left: 50px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 35px;
  height: 1px;
  background: var(--gold-primary);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 3rem;
  font-style: italic;
}

.section-header {
  margin-bottom: 3rem;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
  padding: 1.5rem 0;
  transition: all var(--transition-bespoke);
  background-color: transparent;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  padding: 1rem 0;
  background-color: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-left: 2rem;
  color: rgba(255, 255, 255, 0.7) !important;
  transition: all var(--transition-bespoke);
}

.navbar-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-primary) !important;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  width: 45px;
  height: 45px;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-icon {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-nav .nav-link {
  color: var(--text-secondary) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  margin: 0 0.25rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gold-primary) !important;
  background: rgba(212, 175, 55, 0.1);
}

.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

.navbar-toggler {
  border: 1px solid var(--gold-primary);
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23d4af37' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================
   Buttons
   ============================================ */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  border: 2px solid var(--text-primary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
}

.btn-primary-custom:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
}

.btn-primary-custom i {
  transition: transform var(--transition-fast);
}

.btn-primary-custom:hover i {
  transform: translateX(4px);
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--gold-primary);
  font-weight: 600;
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
}

.btn-outline-custom:hover {
  background: var(--gold-primary);
  color: var(--bg-primary);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
  text-transform: none;
  letter-spacing: 0.05em;
}

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

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 2rem;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/hero_boardroom.png');
  background-size: cover;
  background-position: center;
  z-index: -2;
  filter: brightness(0.6) contrast(1.1);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
}

.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.2);
}

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

.hero-logo-wrap {
  margin-bottom: 2rem;
}

.hero-brand-logo {
  width: 100px;
  height: 100px;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.hero-pre-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  font-family: 'Playfair Display', serif;
  color: #ffffff;
  font-style: italic;
}

.hero-tagline-reference {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3.5rem;
  letter-spacing: 0.1em;
  font-weight: 300;
}

.hero-tagline-reference .dot {
  margin: 0 0.75rem;
  color: var(--gold-primary);
}

.btn-hero {
  padding: 0.85rem 3rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  color: #ffffff;
  border-radius: 4px;
  font-weight: 400;
  letter-spacing: 0.1em;
  transition: all var(--transition-bespoke);
  text-decoration: none;
  display: inline-block;
}

.btn-hero:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  transform: translateY(-2px);
}

.hero-tagline {
  font-size: 1.4rem;
  color: var(--text-secondary);
  margin-bottom: 4rem;
  letter-spacing: 0.05em;
  font-weight: 300;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-tagline .separator {
  margin: 0 0.5rem;
  color: var(--text-muted);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.section-vision {
  padding: 160px 0;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-subtle);
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   Focus Areas Section (Three Panels)
   ============================================ */
.focus-areas {
  padding: 0;
  background: var(--bg-primary);
}

.focus-areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  min-height: 850px;
}

.focus-area-card {
  position: relative;
  overflow: hidden;
  min-height: 850px;
  display: flex;
  align-items: flex-end;
  padding: 4rem 2rem;
  background-size: cover;
  background-position: center;
  transition: all var(--transition-bespoke);
  border: none;
}

.focus-area-card:nth-child(1) {
  background-image: url('../images/focus_gov_vertical.png');
}

.focus-area-card:nth-child(2) {
  background-image: url('../images/focus_blockchain_vertical.png');
}

.focus-area-card:nth-child(3) {
  background-image: url('../images/focus_sports_vertical.png');
}

.focus-area-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
  transition: all var(--transition-bespoke);
}

.focus-area-card:hover::before {
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
}

.focus-area-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: var(--gradient-gold);
  z-index: 2;
  transition: height var(--transition-bespoke);
}

.focus-area-card:hover::after {
  height: 4px;
}

.focus-area-content {
  position: relative;
  z-index: 2;
  text-align: center;
  transform: translateY(0);
  transition: transform var(--transition-bespoke);
}

.focus-area-card:hover .focus-area-content {
  transform: translateY(-10px);
}

.focus-area-content h3 {
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--text-primary);
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  line-height: 1.1;
}

/* ============================================
   Deal & Pilot Types Section (Bento Design)
   ============================================ */
.bento-redesign {
  padding: 120px 0;
  background: var(--bg-primary);
  position: relative;
}

.bento-pilot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 350px);
  gap: 20px;
}

.bento-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
}

/* Bento Sizing */
.bento-tall {
  grid-row: span 2;
}

.bento-wide {
  grid-column: span 2;
}

.bento-glass {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(10, 10, 10, 0.65) 0%,
      rgba(5, 5, 5, 0.85) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-card:hover .bento-glass {
  background: linear-gradient(135deg,
      rgba(10, 10, 10, 0.45) 0%,
      rgba(5, 5, 5, 0.65) 100%);
  backdrop-filter: blur(4px);
}

/* Cinematic Flare Effect */
.bento-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle,
      rgba(197, 160, 89, 0.15) 0%,
      transparent 50%);
  opacity: 0;
  z-index: 2;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.bento-card:hover::before {
  opacity: 1;
  animation: flare-sweep 2s infinite alternate ease-in-out;
}

@keyframes flare-sweep {
  0% {
    transform: translate(-10%, -10%);
  }

  100% {
    transform: translate(10%, 10%);
  }
}

.bento-content {
  position: relative;
  z-index: 2;
  transition: transform 0.5s ease;
}

.bento-card:hover .bento-content {
  transform: translateY(-10px);
}

.bento-wide .bento-content {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  text-align: left;
}

.bento-icon-box {
  width: 90px;
  height: 90px;
  background: rgba(197, 160, 89, 0.05);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  border: 1px solid rgba(197, 160, 89, 0.2);
  box-shadow: inset 0 0 20px rgba(197, 160, 89, 0.05);
  transition: all 0.5s ease;
}

.bento-wide .bento-icon-box {
  margin-bottom: 0;
}

.icon-3d {
  font-size: 3.5rem;
  background: linear-gradient(135deg,
      #ffffff 0%,
      #f5d67b 20%,
      #d4af37 50%,
      #84662d 80%,
      #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter:
    drop-shadow(1px 1px 0px rgba(255, 255, 255, 0.4)) drop-shadow(2px 2px 2px rgba(132, 102, 45, 0.8)) drop-shadow(4px 8px 12px rgba(0, 0, 0, 0.6));
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bento-card:hover .icon-3d {
  transform: scale(1.1) rotate(-5deg);
  filter:
    drop-shadow(1px 1px 0px rgba(255, 255, 255, 0.6)) drop-shadow(3px 3px 4px rgba(132, 102, 45, 0.9)) drop-shadow(6px 12px 20px rgba(0, 0, 0, 0.8)) brightness(1.2);
}

.bento-card:hover .bento-icon-box {
  background: rgba(197, 160, 89, 0.1);
  border-color: rgba(197, 160, 89, 0.4);
  transform: scale(1.05) rotate(5deg);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(197, 160, 89, 0.2);
}

.bento-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.bento-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .bento-pilot-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .bento-tall,
  .bento-wide {
    grid-area: auto;
  }

  .bento-card {
    min-height: 400px;
  }
}

@media (max-width: 576px) {
  .bento-pilot-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Capabilities Section
   ============================================ */
.capabilities {
  padding: 0;
  background: var(--bg-secondary);
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.capability-card {
  position: relative;
  overflow: hidden;
  min-height: 850px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 4rem 2.5rem;
  background-size: cover;
  background-position: center;
  transition: all var(--transition-bespoke);
}

.capability-card:nth-child(1) {
  background-image: url('../images/focus_gov_vertical.png');
}

.capability-card:nth-child(2) {
  background-image: url('../images/focus_blockchain_vertical.png');
}

.capability-card:nth-child(3) {
  background-image: url('../images/focus_sports_vertical.png');
}

.capability-card:nth-child(4) {
  background-image: url('../images/focus_global_vertical.png');
}

.capability-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 5, 5, 0.9);
  z-index: 1;
  transition: all var(--transition-bespoke);
}

.capability-card:hover::before {
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(8px);
}

.capability-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}

.capability-content {
  position: relative;
  z-index: 2;
  transform: translateY(20px);
  transition: all var(--transition-bespoke);
  opacity: 0.9;
}

.capability-card:hover .capability-content {
  transform: translateY(0);
  opacity: 1;
}

.capability-content h4 {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-style: italic;
  line-height: 1.3;
}

.capability-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ============================================
   Who We Serve Section (Premium Tiles)
   ============================================ */
.who-we-serve {
  padding: 140px 0;
  background: var(--bg-primary);
  position: relative;
}

.serve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
}

.serve-column h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 3.5rem;
  position: relative;
  display: inline-block;
}

.serve-column h4::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gradient-gold);
}

.serve-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.serve-list li {
  background: rgba(15, 15, 15, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.5s var(--transition-bespoke);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.serve-list li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.serve-list li:hover {
  transform: translateY(-8px);
  border-color: rgba(197, 160, 89, 0.3);
  background: rgba(20, 20, 20, 0.6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.serve-list li:hover::before {
  opacity: 1;
}

.serve-list li i {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

/* Ensure icons use the 3D-effect from the bento section */
.serve-list li i.icon-3d {
  background: linear-gradient(135deg, #ffffff 0%, #f5d67b 20%, #d4af37 50%, #84662d 80%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(1px 1px 0px rgba(255, 255, 255, 0.3)) drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.8));
}

.serve-list li span {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.4;
}

@media (max-width: 1200px) {
  .serve-grid {
    gap: 4rem;
  }
}

@media (max-width: 992px) {
  .serve-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .serve-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .serve-list {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Global Regions Section
   ============================================ */
.global-regions {
  padding: 160px 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.global-regions::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/global_map_bg.png') center/cover no-repeat;
  opacity: 0.1;
  filter: contrast(1.2);
  z-index: 0;
}

.global-regions .container {
  position: relative;
  z-index: 1;
}

.regions-list {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 5rem;
}

.regions-list .region {
  padding: 1.5rem 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-primary);
  transition: all var(--transition-bespoke);
  position: relative;
  /* Keep for ::after */
}

.regions-list .region::after {
  display: none;
  /* Removed as per new design */
}

.region:hover {
  border-color: var(--gold-primary);
  background: var(--glass-gold);
  transform: translateY(-5px);
}

.regions-list .region:last-child::after {
  display: none;
}

/* ============================================
   Stats Section
   ============================================ */
.stats-section {
  padding: 4rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.stat-card {
  text-align: center;
  padding: 1.5rem;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================
   Sections
   ============================================ */
section {
  padding: 100px 0;
}

.section-dark {
  background-color: var(--bg-primary);
}

.section-grey {
  background-color: var(--bg-secondary);
}

/* ============================================
   Service Cards - Updated for Gold Theme
   ============================================ */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-gold);
  border-radius: var(--radius-md);
  font-size: 1.75rem;
  color: var(--bg-primary);
}

.service-card h5 {
  margin-bottom: 1rem;
  color: var(--gold-primary);
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--gold-primary);
  transition: gap var(--transition-fast);
}

.service-link:hover {
  gap: 0.75rem;
  color: var(--gold-light);
}

/* ============================================
   Feature Cards - Gold Theme
   ============================================ */
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: all var(--transition-normal);
}

.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.feature-icon-wrap {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--gold-primary);
  transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon-wrap {
  background: var(--gradient-gold);
  border-color: transparent;
  color: var(--bg-primary);
}

/* Feature List */
.feature-list {
  margin-top: 2rem;
}

.feature-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: var(--text-secondary);
}

.feature-list-item i {
  color: var(--gold-primary);
  font-size: 1.25rem;
}

/* ============================================
   Image Card
   ============================================ */
.image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: auto;
  display: block;
}

.image-card-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: var(--gradient-glow);
  filter: blur(60px);
  z-index: -1;
}

/* ============================================
   CTA Section (Refined Glassmorphism)
   ============================================ */
.cta-section {
  padding: 120px 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.05) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

.cta-card {
  position: relative;
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 32px;
  padding: 5rem 4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  z-index: 1;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.5),
    inset 0 0 40px rgba(197, 160, 89, 0.05);
  transition: all 0.6s var(--transition-bespoke);
}

.cta-card:hover {
  transform: translateY(-5px);
  border-color: rgba(197, 160, 89, 0.4);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.6),
    inset 0 0 60px rgba(197, 160, 89, 0.1);
}

.cta-content {
  flex: 1;
  min-width: 300px;
}

.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-weight: 500;
  line-height: 1.1;
}

.cta-content p {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  max-width: 600px;
  line-height: 1.7;
  font-weight: 300;
}

.cta-section .btn-primary-custom {
  background: var(--gradient-gold);
  color: var(--bg-primary);
  border: none;
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(197, 160, 89, 0.3);
  transition: all 0.4s ease;
}

.cta-section .btn-primary-custom:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(197, 160, 89, 0.5);
  filter: brightness(1.1);
}

/* ============================================
   Page Hero (About/Services)
   ============================================ */
.page-hero {
  padding: 160px 0 100px;
  background-color: var(--bg-secondary);
  position: relative;
  overflow: hidden;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/hero_v2.png');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 0;
}

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

@media (max-width: 768px) {
  .cta-card {
    padding: 3rem 2rem;
    text-align: center;
    justify-content: center;
  }

  .cta-content {
    margin-bottom: 2rem;
  }
}

/* ============================================
   Contact Form
   ============================================ */
.contact-form .form-control {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  transition: all var(--transition-normal);
}

.contact-form .form-control::placeholder {
  color: var(--text-muted);
}

.contact-form .form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
  background-color: var(--bg-tertiary);
}

.contact-form .btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-gold);
  color: var(--bg-primary);
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.contact-form .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

/* ============================================
   Footer
   ============================================ */
footer {
  background-color: var(--bg-primary);
  color: var(--text-muted);
  padding: 60px 0 40px;
  border-top: 1px solid var(--border-color);
}

.footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-brand img {
  width: 40px;
  height: 40px;
}

.footer-desc {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.footer-contact i {
  color: var(--gold-primary);
  width: 16px;
}

footer .footer-column h5 {
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  font-size: 1.1rem;
}

footer a {
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.75rem;
  transition: all var(--transition-normal);
}

footer a:hover {
  color: var(--gold-primary);
  transform: translateX(4px);
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  color: var(--text-secondary);
  font-size: 1.1rem;
  transition: all var(--transition-normal);
}

.social-icons a:hover {
  background: var(--gradient-gold);
  border-color: transparent;
  color: var(--bg-primary);
  transform: translateY(-4px);
}

.footer-bottom {
  text-align: center;
  color: var(--text-muted);
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-bottom a {
  color: var(--gold-primary);
  display: inline;
}

footer hr {
  border-color: var(--border-color);
}

/* ============================================
   Reveal Animation
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ============================================
   Page Headers (About, Services, Contact)
   ============================================ */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 100px;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* ============================================
   Approach Timeline
   ============================================ */
.approach-timeline {
  position: relative;
  padding-left: 30px;
}

.approach-timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gradient-gold);
}

.approach-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.approach-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-primary);
  min-width: 50px;
  position: relative;
}

.approach-number::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: var(--gold-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.approach-content h5 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.approach-content p {
  margin: 0;
  font-size: 0.95rem;
}

/* ============================================
   Service Detail Items
   ============================================ */
.service-details {
  margin-top: 2rem;
}

.service-detail-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  margin-bottom: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
}

.service-detail-item:hover {
  border-color: var(--border-hover);
  transform: translateX(8px);
}

.detail-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border-radius: var(--radius-sm);
  color: var(--gold-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.detail-content h6 {
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.detail-content p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ============================================
   Contact Info Card
   ============================================ */
.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  height: 100%;
}

.contact-info-card h3 {
  margin-bottom: 1rem;
}

.contact-intro {
  margin-bottom: 2rem;
}

.contact-info-items {
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-gold);
  border-radius: var(--radius-md);
  color: var(--bg-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-details h6 {
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.contact-details p {
  margin: 0;
  color: var(--text-muted);
}

.contact-social h6 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

/* ============================================
   Contact Form Card
   ============================================ */
.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact-form-card h3 {
  margin-bottom: 0.5rem;
}

.contact-form-card>p {
  margin-bottom: 2rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.contact-form select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1199.98px) {
  .deal-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .capability-card {
    min-height: 400px;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--bg-secondary);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-top: 1rem;
    border: 1px solid var(--border-color);
  }

  .cta-card {
    padding: 2.5rem;
    text-align: center;
    justify-content: center;
  }

  .focus-areas-grid {
    grid-template-columns: 1fr;
  }

  .focus-area-card {
    min-height: 300px;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .focus-area-card:first-child {
    border-top: none;
  }
}

@media (max-width: 767.98px) {
  section {
    padding: 60px 0;
  }

  .hero {
    min-height: 90vh;
  }

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

  .stat-number {
    font-size: 2.25rem;
  }

  .cta-card {
    padding: 2rem;
  }

  .deal-types-grid {
    grid-template-columns: 1fr;
  }

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

  .capability-card {
    min-height: 350px;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .capability-card:first-child {
    border-top: none;
  }

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

  .hero-logo {
    width: 80px;
    height: 80px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-tagline {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
  }
}