/*
Theme Name: Archimists Architecture
Description: Professional architecture services WordPress theme with Swiss Design system. Built for architecture consulting firms, R&D services, and feasibility studies with focus on MENA and West Africa markets.
Author: MiniMax Agent
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: archimists
Tags: architecture, business, professional, responsive, swiss-design, clean, minimal

Archimists WordPress Theme - Professional Architecture Services
This theme implements Swiss Design principles with exact typography, grid systems, 
and color palette for professional architecture consulting firms.
*/

/* Swiss Design System - CSS Custom Properties */
:root {
  /* Swiss Design Color System */
  --accent-base: #DC143C;
  --accent-dark: #A01028;
  --text-primary: #000000;
  --text-secondary: #1A1A1A;
  --text-body: #333333;
  --text-caption: #666666;
  --text-disabled: #999999;
  --border-default: #CCCCCC;
  --border-light: #E5E5E5;
  --surface-light: #F5F5F5;
  --background-primary: #FFFFFF;

  /* Typography Scale */
  --font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  
  /* Desktop Typography (1920px) */
  --text-display: 64px;
  --text-h1: 48px;
  --text-h2: 32px;
  --text-h3: 24px;
  --text-body-large: 20px;
  --text-body: 16px;
  --text-small: 14px;
  --text-caption: 12px;

  /* Mobile Typography */
  --text-display-mobile: 40px;
  --text-h1-mobile: 32px;
  --text-h2-mobile: 24px;

  /* Spacing (8-Point Grid) */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-8: 64px;
  --space-12: 96px;
  --space-16: 128px;

  /* Layout */
  --container-max-width: 1200px;
  --grid-columns: 12;
  --grid-gap: 24px;
  --nav-height: 80px;
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Global Link Styles */
a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 150ms ease-out;
}

a:hover,
a:focus,
a:active {
  color: var(--accent-base);
}

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

body {
  font-family: var(--font-family);
  background-color: var(--background-primary);
  color: var(--text-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography Classes */
.text-display {
  font-size: var(--text-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text-primary);
}

.text-h1 {
  font-size: var(--text-h1);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--text-primary);
}

.text-h2 {
  font-size: var(--text-h2);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.3;
  color: var(--text-primary);
}

.text-h3 {
  font-size: var(--text-h3);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.3;
  color: var(--text-primary);
}

.text-body-large {
  font-size: var(--text-body-large);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.6;
  color: var(--text-body);
}

.text-body {
  font-size: var(--text-body);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: var(--text-body);
}

.text-small {
  font-size: var(--text-small);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: var(--text-body);
}

.text-caption {
  font-size: var(--text-caption);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.4;
  color: var(--text-caption);
}

/* Mobile Responsive Typography */
@media (max-width: 768px) {
  .text-display {
    font-size: var(--text-display-mobile);
  }
  
  .text-h1 {
    font-size: var(--text-h1-mobile);
  }
  
  .text-h2 {
    font-size: var(--text-h2-mobile);
  }
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-family);
  font-size: var(--text-small);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 150ms ease-out;
  text-align: center;
}

.btn-primary {
  background-color: var(--accent-base);
  color: var(--background-primary);
}

.btn-primary:hover {
  background-color: var(--accent-dark);
}

.btn-secondary {
  background-color: var(--background-primary);
  color: var(--text-primary);
  border: 2px solid var(--text-primary);
}

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

/* Card Styles */
.card {
  background-color: var(--background-primary);
  border: 1px solid var(--border-default);
  padding: var(--space-6);
  transition: border-color 150ms linear;
}

.card:hover {
  border-color: var(--text-disabled);
}

/* Container and Grid System */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.section-padding {
  padding: var(--space-16) 0;
}

.section-padding-sm {
  padding: var(--space-8) 0;
}

/* Grid System */
.grid {
  display: grid;
  gap: var(--grid-gap);
}

.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.grid-cols-6 { grid-template-columns: repeat(6, 1fr); }
.grid-cols-12 { grid-template-columns: repeat(12, 1fr); }

/* Flexbox Utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }

/* Spacing Utilities */
.mt-1 { margin-top: var(--space-1); }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }
.mt-16 { margin-top: var(--space-16); }

.mb-1 { margin-bottom: var(--space-1); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-12 { margin-bottom: var(--space-12); }
.mb-16 { margin-bottom: var(--space-16); }

/* Text Alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Color Utilities */
.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-body { color: var(--text-body); }
.text-caption { color: var(--text-caption); }
.text-accent { color: var(--accent-base); }

/* Background Utilities */
.bg-primary { background-color: var(--background-primary); }
.bg-surface { background-color: var(--surface-light); }
.bg-accent { background-color: var(--accent-base); }

/* Border Utilities */
.border { border: 1px solid var(--border-default); }
.border-light { border: 1px solid var(--border-light); }
.border-b { border-bottom: 1px solid var(--border-default); }

/* Image Styles */
img {
  max-width: 100%;
  height: auto;
}

.image-full {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-hero {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Navigation Styles removed - consolidated below */

/* Table Styles */
table {
  border-collapse: collapse;
  width: 100%;
}

table th,
table td {
  padding: var(--space-3) var(--space-4);
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

table th {
  background-color: var(--surface-light);
  font-size: var(--text-small);
  font-weight: 700;
  color: var(--text-primary);
}

/* Form Styles */
.form-group {
  margin-bottom: var(--space-4);
}

.form-label {
  display: block;
  font-size: var(--text-small);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-3);
  border: 1px solid var(--border-default);
  border-radius: 2px;
  font-family: var(--font-family);
  font-size: var(--text-body);
  color: var(--text-body);
  background-color: var(--background-primary);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--text-primary);
}

/* Responsive Grid */
@media (max-width: 768px) {
  .grid-cols-1 { grid-template-columns: 1fr; }
  .grid-cols-2 { grid-template-columns: 1fr; }
  .grid-cols-3 { grid-template-columns: 1fr; }
  .grid-cols-4 { grid-template-columns: 1fr 1fr; }
  .grid-cols-6 { grid-template-columns: 1fr 1fr; }
}

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-in {
  animation: fadeIn 200ms linear;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Header and Navigation Styles */
.site-header {
  background-color: var(--background-primary);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.main-navigation {
  background-color: var(--background-primary);
  padding: 0;
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  position: relative;
}

/* Site Branding */
.site-branding {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.site-logo {
  display: block;
}

.custom-logo {
  height: 50px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.site-title {
  margin: 0;
  font-size: var(--text-h3);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.site-title a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 150ms ease-out;
}

.site-title a:hover {
  color: var(--accent-base);
}

/* Desktop Navigation */
.nav-menu-desktop {
  display: flex;
  align-items: center;
}

.primary-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--space-1);
}

.primary-nav li {
  position: relative;
}

.primary-nav .nav-link,
.mobile-nav .nav-link {
  display: block;
  color: var(--text-primary) !important;
  font-size: var(--text-small);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-3);
  border-radius: 2px;
  transition: all 150ms ease-out;
  position: relative;
}
}

.primary-nav .nav-link:hover,
.mobile-nav .nav-link:hover,
.primary-nav .nav-link:focus,
.mobile-nav .nav-link:focus {
  color: var(--accent-base) !important;
  background-color: rgba(220, 20, 60, 0.05);
}

.primary-nav .nav-link.active,
.mobile-nav .nav-link.active {
  color: var(--accent-base) !important;
  background-color: rgba(220, 20, 60, 0.1);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  transition: all 150ms ease-out;
}

.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
.nav-menu-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--background-primary);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.nav-menu-mobile.active {
  display: block;
}

.mobile-nav {
  list-style: none;
  margin: 0;
  padding: var(--space-4);
}

.mobile-nav li {
  margin-bottom: var(--space-2);
}

.mobile-nav .nav-link {
  display: block;
  padding: var(--space-3);
  font-size: var(--text-body);
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-menu-desktop {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-3);
  }
  
  .nav-container {
    height: 60px;
  }
  
  .custom-logo {
    height: 40px;
    max-width: 150px;
  }
  
  .site-title {
    font-size: var(--text-h3);
  }
  
  .nav-menu-mobile {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--background-primary);
    overflow-y: auto;
    z-index: 999;
  }
  
  .mobile-nav {
    padding: var(--space-6) var(--space-4);
  }
  
  .mobile-nav .nav-link {
    padding: var(--space-4) var(--space-3);
    font-size: var(--text-body-large);
    border-bottom: 1px solid var(--border-light);
  }
  
  .mobile-nav li:last-child .nav-link {
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .custom-logo {
    height: 35px;
    max-width: 120px;
  }
  
  .site-title {
    font-size: var(--text-body-large);
  }
}

/* ==========================================
   MENA Markets Page - Architectural Design
   ========================================== */

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: var(--space-16) 0;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  min-height: 500px;
}

.hero-text {
  z-index: 2;
}

.hero-subtitle {
  display: block;
  font-size: var(--text-small);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-base);
  margin-bottom: var(--space-2);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.hero-accent {
  color: var(--accent-base);
}

.hero-description {
  font-size: var(--text-body-large);
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: var(--space-8);
  max-width: 480px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.stat-item {
  text-align: center;
  padding: var(--space-4);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.stat-number {
  display: block;
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--accent-base);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: var(--text-small);
  color: var(--text-caption);
  margin-top: var(--space-1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-cta {
  display: flex;
  gap: var(--space-4);
}

.hero-button {
  background: var(--accent-base);
  color: white;
  padding: var(--space-4) var(--space-6);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 4px;
  transition: all 200ms ease;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.hero-button:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 20, 60, 0.3);
}

.hero-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 300ms ease;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: var(--space-8);
  color: white;
}

.overlay-content h3 {
  font-size: var(--text-h2);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.overlay-content p {
  font-size: var(--text-body);
  opacity: 0.9;
}

/* Featured Projects Grid */
.featured-projects {
  padding: var(--space-16) 0;
  background: var(--background-primary);
}

.projects-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-title {
  font-size: var(--text-h1);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.section-subtitle {
  font-size: var(--text-body-large);
  color: var(--text-body);
  max-width: 600px;
  margin: 0 auto;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-6);
}

.project-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 300ms ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.project-card.featured {
  grid-column: span 2;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.project-image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.project-card.featured .project-image {
  height: 400px;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  padding: var(--space-6);
  color: white;
  transform: translateY(100%);
  transition: transform 300ms ease;
}

.project-card:hover .project-overlay {
  transform: translateY(0);
}

.project-info h3 {
  font-size: var(--text-h3);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.project-info p {
  font-size: var(--text-body);
  opacity: 0.9;
  margin-bottom: var(--space-2);
}

.project-type {
  display: inline-block;
  background: var(--accent-base);
  padding: var(--space-1) var(--space-3);
  font-size: var(--text-small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 20px;
}

/* Market Insights */
.market-insights {
  padding: var(--space-16) 0;
  background: var(--surface-light);
}

.insights-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
}

.insight-card {
  position: relative;
  background: white;
  border-radius: 16px;
  padding: var(--space-8);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 300ms ease;
  overflow: hidden;
}

.insight-card.primary {
  background: linear-gradient(135deg, var(--accent-base), var(--accent-dark));
  color: white;
}

.insight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.card-content {
  position: relative;
  z-index: 2;
}

.insight-icon {
  margin-bottom: var(--space-6);
  color: inherit;
}

.insight-title {
  font-size: var(--text-h3);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.insight-metric {
  margin-bottom: var(--space-6);
}

.metric-value {
  display: block;
  font-size: var(--text-h1);
  font-weight: 700;
  line-height: 1;
}

.metric-label {
  display: block;
  font-size: var(--text-small);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
  margin-top: var(--space-2);
}

.insight-description {
  font-size: var(--text-body);
  line-height: 1.6;
  opacity: 0.9;
}

.card-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.05;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="currentColor" stroke-width="1"/><circle cx="50" cy="50" r="20" fill="none" stroke="currentColor" stroke-width="1"/></svg>');
  background-size: 100px 100px;
  background-repeat: repeat;
}

/* Country Profiles */
.country-profiles {
  padding: var(--space-16) 0;
  background: var(--background-primary);
}

.profiles-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-8);
}

.profile-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 300ms ease;
}

.profile-card.leader {
  border: 2px solid var(--accent-base);
}

.profile-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.profile-header {
  padding: var(--space-6);
  background: var(--surface-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.country-name {
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--text-primary);
}

.market-share {
  background: var(--accent-base);
  color: white;
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 20px;
}

.profile-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  padding: var(--space-6);
}

.stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--accent-base);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: var(--text-small);
  color: var(--text-caption);
  margin-top: var(--space-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.profile-description {
  padding: 0 var(--space-6) var(--space-6);
}

.profile-description p {
  font-size: var(--text-body);
  color: var(--text-body);
  line-height: 1.6;
}

.profile-visual {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.profile-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.profile-card:hover .profile-visual img {
  transform: scale(1.05);
}

/* Design Context */
.design-context {
  padding: var(--space-16) 0;
  background: var(--surface-light);
}

.context-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.context-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

.context-item {
  margin-bottom: var(--space-8);
}

.context-title {
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.context-description {
  font-size: var(--text-body);
  color: var(--text-body);
  line-height: 1.6;
}

.context-gallery {
  display: grid;
  gap: var(--space-6);
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 300ms ease;
}

.gallery-item.primary {
  height: 300px;
}

.gallery-item.secondary {
  height: 200px;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: var(--space-6);
  color: white;
  transform: translateY(100%);
  transition: transform 300ms ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h4 {
  font-size: var(--text-h3);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.gallery-overlay p {
  font-size: var(--text-body);
  opacity: 0.9;
}

/* CTA Section */
.cta-section {
  padding: var(--space-16) 0;
  background: linear-gradient(135deg, var(--accent-base), var(--accent-dark));
  color: white;
}

.cta-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--space-4);
  text-align: center;
}

.cta-title {
  font-size: var(--text-h1);
  font-weight: 700;
  margin-bottom: var(--space-6);
}

.cta-description {
  font-size: var(--text-body-large);
  max-width: 600px;
  margin: 0 auto var(--space-8);
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  padding: var(--space-4) var(--space-6);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 4px;
  transition: all 200ms ease;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.cta-button.primary {
  background: white;
  color: var(--accent-base);
}

.cta-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.cta-button.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-button.secondary:hover {
  background: white;
  color: var(--accent-base);
}

.cta-icon {
  transition: transform 200ms ease;
}

.cta-button:hover .cta-icon {
  transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .project-card.featured {
    grid-column: span 1;
  }
  
  .context-content {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

@media (max-width: 768px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
  }
  
  .insights-grid {
    grid-template-columns: 1fr;
  }
  
  .profiles-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ==========================================
   West Africa Markets Page - Tropical Design
   ========================================== */

/* West Africa Hero Section */
.hero-section-west {
  background: linear-gradient(135deg, #8FBC8F 0%, #6B8E6B 50%, #4A674A 100%);
  padding: var(--space-16) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-west::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="15" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/><circle cx="80" cy="40" r="20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1.5"/><circle cx="40" cy="70" r="10" fill="rgba(255,255,255,0.05)"/></svg>');
  background-size: 200px 200px;
  background-repeat: repeat;
}

.hero-accent {
  color: #DAA520;
}

.hero-stats .stat-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
  color: #DAA520;
}

/* West Africa Projects Section */
.featured-projects-west {
  padding: var(--space-16) 0;
  background: #F8F6F0;
}

.featured-projects-west .section-title {
  color: #2D5016;
}

.featured-projects-west .section-subtitle {
  color: #5A7A2E;
}

.featured-projects-west .project-type {
  background: #6B8E6B;
  color: white;
}

/* West Africa Market Insights */
.market-insights-west {
  padding: var(--space-16) 0;
  background: white;
}

.market-insights-west .section-title {
  color: #2D5016;
}

.market-insights-west .section-subtitle {
  color: #5A7A2E;
}

.market-insights-west .insight-card.primary {
  background: linear-gradient(135deg, #6B8E6B, #4A674A);
  color: white;
}

.metric-value {
  color: #DAA520;
}

/* West Africa Country Profiles */
.country-profiles-west {
  padding: var(--space-16) 0;
  background: #F8F6F0;
}

.country-profiles-west .section-title {
  color: #2D5016;
}

.country-profiles-west .section-subtitle {
  color: #5A7A2E;
}

.country-profiles-west .market-share {
  background: #6B8E6B;
  color: white;
}

.stat-value {
  color: #DAA520;
}

/* West Africa Design Context */
.design-context-west {
  padding: var(--space-16) 0;
  background: linear-gradient(135deg, #F0F8E8, #E8F5E8);
}

.design-context-west .section-title {
  color: #2D5016;
}

.design-context-west .section-subtitle {
  color: #5A7A2E;
}

.context-title {
  color: #2D5016;
}

.gallery-overlay h4 {
  color: #DAA520;
}

/* West Africa CTA Section */
.cta-section-west {
  padding: var(--space-16) 0;
  background: linear-gradient(135deg, #6B8E6B, #4A674A);
  color: white;
}

.cta-section-west::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><path d="M30 10L50 30L30 50L10 30Z" fill="rgba(218,165,32,0.1)"/></svg>');
  background-size: 80px 80px;
  background-repeat: repeat;
}

.cta-button.primary {
  background: #DAA520;
  color: white;
}

.cta-button.primary:hover {
  box-shadow: 0 8px 25px rgba(218, 165, 32, 0.4);
}

.cta-button.secondary:hover {
  background: #DAA520;
  color: white;
}

/* Custom West Africa Color Variables */
:root {
  --west-africa-primary: #6B8E6B;
  --west-africa-secondary: #4A674A;
  --west-africa-accent: #DAA520;
  --west-africa-light: #F8F6F0;
  --west-africa-bg-light: #F0F8E8;
}

/* ==========================================
   Enhanced Navigation Fix - Final Solution
   ========================================== */

/* Force navigation link colors with maximum specificity */
.main-navigation a,
.nav-menu-desktop a,
.nav-menu-mobile a,
.primary-nav a,
.mobile-nav a {
  color: #000000 !important;
  text-decoration: none !important;
  transition: color 150ms ease-out !important;
}

.main-navigation a:hover,
.nav-menu-desktop a:hover,
.nav-menu-mobile a:hover,
.primary-nav a:hover,
.mobile-nav a:hover,
.main-navigation a:focus,
.nav-menu-desktop a:focus,
.nav-menu-mobile a:focus,
.primary-nav a:focus,
.mobile-nav a:focus {
  color: #DC143C !important;
}

.main-navigation a.active,
.nav-menu-desktop a.active,
.nav-menu-mobile a.active,
.primary-nav a.active,
.mobile-nav a.active {
  color: #DC143C !important;
  background-color: rgba(220, 20, 60, 0.1) !important;
}

/* ==========================================
   Homepage - Global Architectural Showcase
   ========================================== */

/* Homepage Hero Section */
.homepage-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #404040 100%);
  padding: var(--space-16) 0;
  position: relative;
  overflow: hidden;
  color: white;
}

.homepage-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="0" y="0" width="20" height="20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/><rect x="40" y="40" width="20" height="20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/><rect x="80" y="0" width="20" height="20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></svg>');
  background-size: 150px 150px;
  background-repeat: repeat;
}

.homepage-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(220, 20, 60, 0.2);
  color: var(--accent-base);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 25px;
  margin-bottom: var(--space-6);
  border: 1px solid rgba(220, 20, 60, 0.3);
}

.homepage-hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-6);
  background: linear-gradient(45deg, #ffffff, #f0f0f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.global-accent {
  color: var(--accent-base);
}

.homepage-hero-subtitle {
  font-size: var(--text-body-large);
  margin-bottom: var(--space-8);
  opacity: 0.9;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

.hero-action {
  padding: var(--space-4) var(--space-8);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 4px;
  transition: all 200ms ease;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.hero-action.primary {
  background: var(--accent-base);
  color: white;
}

.hero-action.primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
}

.hero-action.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.hero-action.secondary:hover {
  background: white;
  color: var(--text-primary);
}

/* Global Markets Grid */
.global-markets {
  padding: var(--space-16) 0;
  background: var(--surface-light);
}

.markets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
}

.market-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 300ms ease;
  position: relative;
}

.market-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.market-card.mena {
  border-top: 4px solid var(--accent-base);
}

.market-card.west-africa {
  border-top: 4px solid #6B8E6B;
}

.market-card.europe {
  border-top: 4px solid #4169E1;
}

.market-card.asia-pacific {
  border-top: 4px solid #FF6347;
}

.market-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.market-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.market-card:hover .market-image img {
  transform: scale(1.05);
}

.market-content {
  padding: var(--space-6);
}

.market-title {
  font-size: var(--text-h2);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.market-description {
  font-size: var(--text-body);
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.market-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.market-stat {
  text-align: center;
  padding: var(--space-3);
  background: var(--surface-light);
  border-radius: 8px;
}

.market-stat-value {
  display: block;
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--accent-base);
  line-height: 1;
}

.market-stat-label {
  display: block;
  font-size: var(--text-small);
  color: var(--text-caption);
  margin-top: var(--space-1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.market-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--accent-base);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 200ms ease;
}

.market-link:hover {
  gap: var(--space-3);
}

/* Featured Projects Carousel */
.featured-projects-home {
  padding: var(--space-16) 0;
  background: white;
}

.projects-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-8);
}

.carousel-project {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 300ms ease;
}

.carousel-project:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.project-status {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  padding: var(--space-1) var(--space-3);
  font-size: var(--text-small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 20px;
  color: white;
  z-index: 2;
}

.project-status.completed {
  background: #28a745;
}

.project-status.progress {
  background: #ffc107;
  color: #000;
}

.project-status.design {
  background: #6c757d;
}

/* Services Overview */
.services-overview {
  padding: var(--space-16) 0;
  background: var(--surface-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
}

.service-card {
  background: white;
  border-radius: 16px;
  padding: var(--space-8);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 300ms ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-base);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-base), var(--accent-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  color: white;
  font-size: var(--text-h2);
}

.service-title {
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.service-description {
  font-size: var(--text-body);
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  position: relative;
  padding-left: var(--space-6);
  margin-bottom: var(--space-2);
  font-size: var(--text-small);
  color: var(--text-body);
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-base);
  font-weight: 700;
}

/* Client Success Stories */
.client-stories {
  padding: var(--space-16) 0;
  background: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: var(--space-8);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 300ms ease;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: var(--space-6);
  font-size: 80px;
  color: var(--accent-base);
  font-family: serif;
  line-height: 1;
}

.testimonial-content {
  font-size: var(--text-body-large);
  font-style: italic;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: var(--space-6);
  padding-top: var(--space-4);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  font-size: var(--text-body);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-1);
}

.author-info p {
  font-size: var(--text-small);
  color: var(--text-caption);
}

.stars {
  color: #ffd700;
  margin-left: auto;
}

/* ==========================================
   About Page - Architectural Team Focus
   ========================================== */

/* About Hero Section */
.about-hero {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
  padding: var(--space-16) 0;
  position: relative;
  overflow: hidden;
  color: white;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="15" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/><circle cx="75" cy="75" r="20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1.5"/><circle cx="50" cy="50" r="10" fill="rgba(255,255,255,0.05)"/></svg>');
  background-size: 200px 200px;
  background-repeat: repeat;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Company Values */
.company-values {
  padding: var(--space-16) 0;
  background: white;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-8);
}

.value-card {
  background: white;
  border-radius: 16px;
  padding: var(--space-8);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 300ms ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-base), var(--accent-dark));
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-base), var(--accent-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  color: white;
  font-size: var(--text-h1);
}

.value-title {
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.value-description {
  font-size: var(--text-body);
  color: var(--text-body);
  line-height: 1.6;
}

/* Leadership Profiles */
.leadership-team {
  padding: var(--space-16) 0;
  background: var(--surface-light);
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
}

.leader-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 300ms ease;
}

.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.leader-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.leader-card:hover .leader-image img {
  transform: scale(1.05);
}

.leader-info {
  padding: var(--space-6);
}

.leader-name {
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.leader-title {
  font-size: var(--text-small);
  color: var(--accent-base);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-4);
}

.leader-bio {
  font-size: var(--text-body);
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

.leader-social {
  display: flex;
  gap: var(--space-3);
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--surface-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-caption);
  text-decoration: none;
  transition: all 200ms ease;
}

.social-link:hover {
  background: var(--accent-base);
  color: white;
}

/* Company Timeline */
.company-timeline {
  padding: var(--space-16) 0;
  background: white;
}

.timeline-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent-base);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: var(--space-12);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: 0;
  margin-right: 50%;
  text-align: right;
  padding-right: var(--space-8);
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 50%;
  margin-right: 0;
  text-align: left;
  padding-left: var(--space-8);
}

.timeline-marker {
  position: absolute;
  left: 50%;
  top: 20px;
  width: 20px;
  height: 20px;
  background: var(--accent-base);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.timeline-content {
  background: white;
  padding: var(--space-6);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  position: relative;
}

.timeline-year {
  font-size: var(--text-h2);
  font-weight: 700;
  color: var(--accent-base);
  margin-bottom: var(--space-3);
}

.timeline-title {
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.timeline-description {
  font-size: var(--text-body);
  color: var(--text-body);
  line-height: 1.6;
}

/* Why Choose Us */
.why-choose-us {
  padding: var(--space-16) 0;
  background: var(--surface-light);
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
}

.choose-item {
  background: white;
  border-radius: 16px;
  padding: var(--space-8);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 300ms ease;
}

.choose-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.choose-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-base), var(--accent-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  color: white;
  font-size: var(--text-h2);
}

.choose-title {
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.choose-description {
  font-size: var(--text-body);
  color: var(--text-body);
  line-height: 1.6;
}

/* ==========================================
   Contact Page - Modern Architectural Style
   ========================================== */

/* Contact Hero Section */
.contact-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #404040 100%);
  padding: var(--space-16) 0;
  position: relative;
  overflow: hidden;
  color: white;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20 20L50 30L80 20L70 50L80 80L50 70L20 80L30 50Z" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
  background-size: 150px 150px;
  background-repeat: repeat;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Enhanced Contact Form */
.contact-form-section {
  padding: var(--space-16) 0;
  background: white;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form {
  background: white;
  border-radius: 16px;
  padding: var(--space-8);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.form-input,
.form-textarea,
.form-select {
  padding: var(--space-4);
  border: 2px solid var(--border-light);
  border-radius: 8px;
  font-size: var(--text-body);
  transition: border-color 200ms ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--accent-base);
  outline: none;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.form-checkbox input {
  width: 20px;
  height: 20px;
  accent-color: var(--accent-base);
}

.form-checkbox label {
  font-size: var(--text-small);
  color: var(--text-body);
}

/* Office Locations */
.office-locations {
  padding: var(--space-16) 0;
  background: var(--surface-light);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
}

.location-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 300ms ease;
}

.location-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.location-map {
  width: 100%;
  height: 200px;
  background: var(--surface-light);
  position: relative;
  overflow: hidden;
}

.location-info {
  padding: var(--space-6);
}

.location-name {
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.location-address {
  font-size: var(--text-body);
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.location-contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-small);
  color: var(--text-body);
}

.contact-item a {
  color: var(--accent-base);
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* Department Contact Cards */
.department-contacts {
  padding: var(--space-16) 0;
  background: white;
}

.departments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-6);
}

.department-card {
  background: white;
  border-radius: 12px;
  padding: var(--space-6);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 200ms ease;
  text-align: center;
}

.department-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.department-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-base), var(--accent-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  color: white;
  font-size: var(--text-h3);
}

.department-name {
  font-size: var(--text-body);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.department-contact {
  font-size: var(--text-small);
  color: var(--text-caption);
}

.department-contact a {
  color: var(--accent-base);
  text-decoration: none;
}

/* Social Media Integration */
.social-media-section {
  padding: var(--space-16) 0;
  background: var(--surface-light);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-6);
}

.social-card {
  background: white;
  border-radius: 12px;
  padding: var(--space-6);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 200ms ease;
  text-align: center;
}

.social-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.social-platform {
  font-size: var(--text-h3);
  margin-bottom: var(--space-3);
}

.social-card.instagram {
  border-top: 4px solid #E4405F;
}

.social-card.linkedin {
  border-top: 4px solid #0077B5;
}

.social-card.behance {
  border-top: 4px solid #1769FF;
}

.social-card.youtube {
  border-top: 4px solid #FF0000;
}

.social-name {
  font-size: var(--text-body);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.social-description {
  font-size: var(--text-small);
  color: var(--text-body);
  margin-bottom: var(--space-4);
}

.social-link-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--accent-base);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: var(--text-small);
  font-weight: 700;
  transition: all 200ms ease;
}

.social-link-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

/* ==========================================
   Services Page - Architectural Services Showcase
   ========================================== */

/* Services Hero Section */
.services-hero {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
  padding: var(--space-16) 0;
  position: relative;
  overflow: hidden;
  color: white;
}

/* Enhanced Services Grid */
.services-detailed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-8);
}

.service-detailed-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 300ms ease;
}

.service-detailed-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-header {
  background: linear-gradient(135deg, var(--accent-base), var(--accent-dark));
  color: white;
  padding: var(--space-6);
  position: relative;
}

.service-header::before {
  content: '';
   position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="15" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/><circle cx="80" cy="40" r="20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1.5"/></svg>');
  background-size: 100px 100px;
  background-repeat: repeat;
}

.service-detailed-icon {
  font-size: var(--text-h1);
  margin-bottom: var(--space-4);
}

.service-detailed-title {
  font-size: var(--text-h2);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.service-subtitle {
  font-size: var(--text-body);
  opacity: 0.9;
}

.service-body {
  padding: var(--space-6);
}

.service-description {
  font-size: var(--text-body);
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

.service-features-list {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-6);
}

.service-features-list li {
  position: relative;
  padding-left: var(--space-6);
  margin-bottom: var(--space-3);
  font-size: var(--text-body);
  color: var(--text-body);
}

.service-features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-base);
  font-weight: 700;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--accent-base);
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 200ms ease;
}

.service-cta:hover {
  gap: var(--space-3);
}

/* Process Timeline */
.process-timeline {
  padding: var(--space-16) 0;
  background: white;
}

.timeline-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-8);
  position: relative;
}

.timeline-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border-light);
  z-index: 1;
}

.process-step {
  position: relative;
  z-index: 2;
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--accent-base);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-h2);
  font-weight: 700;
  margin: 0 auto var(--space-4);
  box-shadow: 0 4px 16px rgba(220, 20, 60, 0.3);
}

.step-title {
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.step-description {
  font-size: var(--text-body);
  color: var(--text-body);
  line-height: 1.6;
}

/* Service Area Coverage */
.service-areas {
  padding: var(--space-16) 0;
  background: var(--surface-light);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-6);
}

.area-card {
  background: white;
  border-radius: 12px;
  padding: var(--space-6);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 200ms ease;
  text-align: center;
}

.area-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.area-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-base), var(--accent-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  color: white;
  font-size: var(--text-h3);
}

.area-name {
  font-size: var(--text-body);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

/* Client Testimonials */
.client-testimonials {
  padding: var(--space-16) 0;
  background: white;
}

.testimonials-detailed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
}

.testimonial-detailed-card {
  background: white;
  border-radius: 16px;
  padding: var(--space-8);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 300ms ease;
  position: relative;
}

.testimonial-detailed-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: var(--space-6);
  font-size: 80px;
  color: var(--accent-base);
  font-family: serif;
  line-height: 1;
}

.testimonial-content {
  font-size: var(--text-body);
  font-style: italic;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: var(--space-6);
  padding-top: var(--space-4);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-info h4 {
  font-size: var(--text-body);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-1);
}

.testimonial-info p {
  font-size: var(--text-small);
  color: var(--text-caption);
}

/* ==========================================
   Portfolio Page - Project Showcase Grid
   ========================================== */

/* Portfolio Hero Section */
.portfolio-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #404040 100%);
  padding: var(--space-16) 0;
  position: relative;
  overflow: hidden;
  color: white;
}

/* Project Statistics */
.portfolio-stats {
  padding: var(--space-8) 0;
  background: white;
  border-bottom: 1px solid var(--border-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-6);
}

.stat-card {
  text-align: center;
  padding: var(--space-4);
}

.stat-card-value {
  font-size: var(--text-h1);
  font-weight: 700;
  color: var(--accent-base);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-card-label {
  font-size: var(--text-small);
  color: var(--text-caption);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Filtering System */
.portfolio-filters {
  padding: var(--space-8) 0;
  background: var(--surface-light);
  border-bottom: 1px solid var(--border-light);
}

.filters-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.filter-button {
  padding: var(--space-3) var(--space-6);
  background: white;
  color: var(--text-body);
  border: 1px solid var(--border-default);
  border-radius: 25px;
  font-size: var(--text-small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 200ms ease;
}

.filter-button:hover,
.filter-button.active {
  background: var(--accent-base);
  color: white;
  border-color: var(--accent-base);
}

.filter-count {
  margin-left: var(--space-2);
  font-size: var(--text-caption);
  opacity: 0.7;
}

/* Advanced Project Grid */
.projects-showcase {
  padding: var(--space-16) 0;
  background: white;
}

.projects-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: var(--space-8);
}

.project-showcase-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 300ms ease;
  position: relative;
}

.project-showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.project-showcase-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.project-showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.project-showcase-card:hover .project-showcase-image img {
  transform: scale(1.05);
}

.project-badges {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  right: var(--space-4);
  display: flex;
  justify-content: space-between;
  z-index: 2;
}

.project-badge {
  padding: var(--space-1) var(--space-3);
  font-size: var(--text-small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 20px;
  color: white;
}

.project-badge.award {
  background: #ffd700;
  color: #000;
}

.project-badge.featured {
  background: var(--accent-base);
}

.project-category {
  background: rgba(0, 0, 0, 0.7);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 20px;
  color: white;
}

.project-showcase-info {
  padding: var(--space-6);
}

.project-showcase-title {
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.project-showcase-location {
  font-size: var(--text-small);
  color: var(--text-caption);
  margin-bottom: var(--space-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.project-showcase-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.project-stat {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-small);
  color: var(--text-body);
}

.project-stat-icon {
  color: var(--accent-base);
}

.project-showcase-description {
  font-size: var(--text-body);
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.project-sustainability {
  padding: var(--space-3);
  background: #f8f9fa;
  border-radius: 8px;
  margin-bottom: var(--space-4);
}

.sustainability-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2);
}

.sustainability-metric {
  font-size: var(--text-small);
  color: var(--text-body);
}

.sustainability-value {
  font-weight: 700;
  color: #28a745;
}

.project-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--accent-base);
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 200ms ease;
}

.project-cta:hover {
  gap: var(--space-3);
}

/* Case Study Preview */
.case-study-preview {
  padding: var(--space-16) 0;
  background: var(--surface-light);
}

.case-study-container {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.case-study-content {
  padding: var(--space-8);
}

.case-study-title {
  font-size: var(--text-h1);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.case-study-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}

.case-study-stat {
  text-align: center;
  padding: var(--space-4);
  background: var(--surface-light);
  border-radius: 8px;
}

.case-study-stat-value {
  font-size: var(--text-h2);
  font-weight: 700;
  color: var(--accent-base);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.case-study-stat-label {
  font-size: var(--text-small);
  color: var(--text-caption);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================
   Insights Page - Thought Leadership Content
   ========================================== */

/* Insights Hero Section */
.insights-hero {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
  padding: var(--space-16) 0;
  position: relative;
  overflow: hidden;
  color: white;
}

/* Featured Article */
.featured-article {
  padding: var(--space-16) 0;
  background: white;
}

.featured-article-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.featured-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.featured-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.featured-content {
  padding: var(--space-8);
}

.article-meta {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.article-category {
  background: var(--accent-base);
  color: white;
  padding: var(--space-1) var(--space-3);
  font-size: var(--text-small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 20px;
}

.article-date {
  font-size: var(--text-small);
  color: var(--text-caption);
  align-self: center;
}

.featured-article-title {
  font-size: var(--text-h1);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: var(--space-4);
}

.featured-excerpt {
  font-size: var(--text-body-large);
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

.article-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-details h4 {
  font-size: var(--text-body);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-1);
}

.author-details p {
  font-size: var(--text-small);
  color: var(--text-caption);
}

.read-time {
  margin-left: auto;
  font-size: var(--text-small);
  color: var(--text-caption);
  font-weight: 700;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--accent-base);
  color: white;
  padding: var(--space-4) var(--space-6);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 4px;
  transition: all 200ms ease;
}

.read-more-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

/* Article Grid */
.articles-grid {
  padding: var(--space-16) 0;
  background: var(--surface-light);
}

.articles-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
}

.article-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 300ms ease;
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.article-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.article-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.article-card:hover .article-card-image img {
  transform: scale(1.05);
}

.article-card-content {
  padding: var(--space-6);
}

.article-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-3);
}

.article-card-title {
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: var(--space-3);
}

.article-card-excerpt {
  font-size: var(--text-body);
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.article-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-light);
}

/* Sidebar */
.insights-sidebar {
  padding: var(--space-16) 0;
  background: white;
}

.sidebar-section {
  margin-bottom: var(--space-8);
}

.sidebar-title {
  font-size: var(--text-h2);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-6);
}

.recent-insights {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.recent-insight {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-4);
  background: var(--surface-light);
  border-radius: 8px;
  transition: all 200ms ease;
}

.recent-insight:hover {
  background: var(--border-light);
}

.recent-insight-image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.recent-insight-content h4 {
  font-size: var(--text-small);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: var(--space-2);
}

.recent-insight-date {
  font-size: var(--text-caption);
  color: var(--text-caption);
}

/* Newsletter Signup */
.newsletter-signup {
  background: linear-gradient(135deg, var(--accent-base), var(--accent-dark));
  color: white;
  padding: var(--space-8);
  border-radius: 16px;
  text-align: center;
}

.newsletter-title {
  font-size: var(--text-h3);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.newsletter-description {
  font-size: var(--text-body);
  opacity: 0.9;
  margin-bottom: var(--space-6);
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: var(--space-3);
  max-width: 300px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: var(--space-3);
  border: none;
  border-radius: 4px;
  font-size: var(--text-body);
}

.newsletter-btn {
  padding: var(--space-3) var(--space-6);
  background: white;
  color: var(--accent-base);
  border: none;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  transition: all 200ms ease;
}

.newsletter-btn:hover {
  transform: translateY(-2px);
}

/* Tags Cloud */
.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.tag {
  padding: var(--space-2) var(--space-4);
  background: var(--surface-light);
  color: var(--text-body);
  text-decoration: none;
  border-radius: 20px;
  font-size: var(--text-small);
  transition: all 200ms ease;
}

.tag:hover {
  background: var(--accent-base);
  color: white;
}

/* Expert Commentary */
.expert-quotes {
  background: var(--surface-light);
  padding: var(--space-8);
  border-radius: 16px;
  text-align: center;
}

.quote-text {
  font-size: var(--text-body-large);
  font-style: italic;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

.quote-author {
  font-size: var(--text-body);
  font-weight: 700;
  color: var(--text-primary);
}

.quote-title {
  font-size: var(--text-small);
  color: var(--text-caption);
}

/* ==========================================
   CGU Page - Clean, Readable Layout
   ========================================== */

/* CGU Hero Section */
.cgu-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: var(--space-16) 0;
  text-align: center;
}

.legal-badge {
  display: inline-block;
  background: var(--accent-base);
  color: white;
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 25px;
  margin-bottom: var(--space-6);
}

.cgu-title {
  font-size: var(--text-h1);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-6);
}

.cgu-meta {
  display: flex;
  justify-content: center;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.meta-item {
  font-size: var(--text-small);
  color: var(--text-caption);
}

/* Navigation Sidebar */
.cgu-navigation {
  padding: var(--space-8) 0;
  background: white;
  border-right: 1px solid var(--border-light);
  position: sticky;
  top: var(--nav-height);
  height: calc(100vh - var(--nav-height));
  overflow-y: auto;
}

.toc-container {
  padding: var(--space-4);
}

.toc-title {
  font-size: var(--text-body);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.toc-list {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-8);
}

.toc-list li {
  margin-bottom: var(--space-2);
}

.toc-link {
  display: block;
  padding: var(--space-2) var(--space-3);
  color: var(--text-body);
  text-decoration: none;
  border-radius: 4px;
  transition: all 200ms ease;
  font-size: var(--text-small);
}

.toc-link:hover,
.toc-link.active {
  background: var(--accent-base);
  color: white;
}

.quick-actions {
  border-top: 1px solid var(--border-light);
  padding-top: var(--space-6);
}

.quick-actions-title {
  font-size: var(--text-body);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.action-button {
  display: block;
  width: 100%;
  padding: var(--space-3);
  background: var(--surface-light);
  color: var(--text-body);
  text-decoration: none;
  border-radius: 4px;
  text-align: center;
  font-size: var(--text-small);
  font-weight: 700;
  margin-bottom: var(--space-2);
  transition: all 200ms ease;
}

.action-button:hover {
  background: var(--accent-base);
  color: white;
}

/* Legal Content */
.cgu-content {
  padding: var(--space-16) 0;
  background: white;
}

.content-container {
  max-width: 800px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: var(--space-12);
  scroll-margin-top: calc(var(--nav-height) + var(--space-8));
}

.section-number {
  display: inline-block;
  background: var(--accent-base);
  color: white;
  padding: var(--space-1) var(--space-3);
  font-size: var(--text-small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  margin-bottom: var(--space-4);
}

.section-title {
  font-size: var(--text-h2);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-6);
}

.legal-text {
  font-size: var(--text-body);
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: var(--space-6);
}

.legal-list {
  margin: var(--space-6) 0;
  padding-left: var(--space-6);
}

.legal-list li {
  margin-bottom: var(--space-3);
  line-height: 1.6;
}

.legal-highlight {
  background: rgba(220, 20, 60, 0.1);
  border-left: 4px solid var(--accent-base);
  padding: var(--space-4);
  margin: var(--space-6) 0;
  border-radius: 0 4px 4px 0;
}

.company-info {
  background: var(--surface-light);
  padding: var(--space-6);
  border-radius: 8px;
  margin: var(--space-6) 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.info-item {
  display: flex;
  flex-direction: column;
}

.info-label {
  font-size: var(--text-small);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-value {
  font-size: var(--text-body);
  color: var(--text-body);
}

/* Print Styles */
@media print {
  .cgu-navigation,
  .hero-section,
  .footer {
    display: none !important;
  }
  
  .cgu-content {
    padding: var(--space-4) 0;
  }
  
  .legal-section {
    page-break-inside: avoid;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  .section-title {
    page-break-after: avoid;
  }
}

/* ==========================================
   CGV Page - Business-Focused Layout
   ========================================== */

/* CGV Hero Section */
.cgv-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #404040 100%);
  padding: var(--space-16) 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cgv-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="10" y="10" width="20" height="20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/><rect x="40" y="40" width="20" height="20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/><rect x="70" y="10" width="20" height="20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></svg>');
  background-size: 150px 150px;
  background-repeat: repeat;
}

.cgv-hero-content {
  position: relative;
  z-index: 2;
}

/* Structured Content */
.cgv-content {
  padding: var(--space-16) 0;
  background: white;
}

.cgv-grid {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: var(--space-8);
}

.cgv-nav {
  position: sticky;
  top: var(--nav-height);
  height: calc(100vh - var(--nav-height));
  overflow-y: auto;
  padding: var(--space-4);
}

.cgv-nav-title {
  font-size: var(--text-body);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cgv-nav-list {
  list-style: none;
  padding: 0;
}

.cgv-nav-list li {
  margin-bottom: var(--space-2);
}

.cgv-nav-link {
  display: block;
  padding: var(--space-3);
  color: var(--text-body);
  text-decoration: none;
  border-radius: 8px;
  transition: all 200ms ease;
  font-size: var(--text-small);
}

.cgv-nav-link:hover,
.cgv-nav-link.active {
  background: var(--accent-base);
  color: white;
}

.cgv-main-content {
  max-width: 700px;
}

.cgv-section {
  margin-bottom: var(--space-12);
  scroll-margin-top: calc(var(--nav-height) + var(--space-8));
}

.cgv-section-number {
  background: var(--accent-base);
  color: white;
  padding: var(--space-1) var(--space-3);
  font-size: var(--text-small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: var(--space-4);
}

.cgv-section-title {
  font-size: var(--text-h2);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-6);
}

.cgv-section-text {
  font-size: var(--text-body);
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: var(--space-6);
}

.highlight-box {
  background: rgba(220, 20, 60, 0.05);
  border: 1px solid var(--accent-base);
  border-radius: 8px;
  padding: var(--space-6);
  margin: var(--space-6) 0;
}

.highlight-box.info {
  background: rgba(59, 130, 246, 0.05);
  border-color: #3b82f6;
}

.highlight-box.warning {
  background: rgba(245, 158, 11, 0.05);
  border-color: #f59e0b;
}

.highlight-title {
  font-size: var(--text-body);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.highlight-content {
  font-size: var(--text-body);
  color: var(--text-body);
  line-height: 1.6;
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-6);
  margin: var(--space-8) 0;
}

.process-step {
  text-align: center;
  padding: var(--space-6);
  background: var(--surface-light);
  border-radius: 12px;
  position: relative;
}

.process-step::after {
  content: '→';
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--text-h2);
  color: var(--accent-base);
}

.process-step:last-child::after {
  display: none;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--accent-base);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-body);
  font-weight: 700;
  margin: 0 auto var(--space-4);
}

.step-title {
  font-size: var(--text-body);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.step-description {
  font-size: var(--text-small);
  color: var(--text-body);
  line-height: 1.5;
}

.cgv-contact {
  background: var(--surface-light);
  padding: var(--space-8);
  border-radius: 16px;
  margin-top: var(--space-12);
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-6);
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-base);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-h3);
}

.contact-label {
  font-size: var(--text-small);
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-value {
  font-size: var(--text-body);
  color: var(--text-body);
}

.contact-value a {
  color: var(--accent-base);
  text-decoration: none;
}

/* Responsive Design for New Components */
@media (max-width: 1024px) {
  .featured-article-container {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  
  .cv-grid {
    grid-template-columns: 1fr;
  }
  
  .cgv-nav {
    position: static;
    height: auto;
    margin-bottom: var(--space-8);
  }
  
  .process-flow {
    grid-template-columns: 1fr;
  }
  
  .process-step::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .homepage-hero-title {
    font-size: var(--text-h1);
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .stat-card-value {
    font-size: var(--text-h2);
  }
  
  .filters-container {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: var(--space-2);
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--surface-light);
}

::-webkit-scrollbar-thumb {
  background: var(--border-default);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-disabled);
}

/* Focus Styles for Accessibility */
*:focus {
  outline: 2px solid var(--accent-base);
  outline-offset: 2px;
}

button:focus,
.btn:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--accent-base);
  outline-offset: 2px;
}

/* Smooth Scrolling Enhancement */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
  
  .project-card,
  .service-card,
  .leader-card,
  .testimonial-card,
  .article-card,
  .market-card {
    transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
  }
}

/* Performance Optimizations */
.hero-image,
.project-image,
.leader-image,
.article-card-image,
.market-image {
  will-change: transform;
}

.project-card:hover .project-image img,
.leader-card:hover .leader-image img,
.article-card:hover .article-card-image img,
.market-card:hover .market-image img {
  will-change: transform;
}