/* ==========================================
   DESIGN SYSTEM & VARIABLES
   ========================================== */
:root {
  --bg-dark-primary: #061C33;   /* Premium deep navy */
  --bg-dark-secondary: #020F1D; /* Darker slate for contrast */
  --bg-light-primary: #FFFFFF;  /* Pure white for editorial feel */
  --bg-light-secondary: #F8FAFC;/* Subtle grey for grid sections */
  
  --color-gold: #C5A880;        /* Elegant metallic gold */
  --color-gold-hover: #D4AF37;  /* Brighter gold for hover states */
  --color-text-light: #F1F5F9;  /* Crisp white for dark backgrounds */
  --color-text-dark: #1E293B;   /* Slate 800 for primary dark text */
  --color-text-muted-light: #94A3B8; /* Muted text for dark sections */
  --color-text-muted-dark: #64748B;  /* Muted text for light sections */
  
  --glass-bg: rgba(6, 28, 51, 0.65);
  --glass-border: rgba(197, 168, 128, 0.15);
  --glass-shadow: 0 8px 32px 0 rgba(0, 3, 10, 0.37);
  
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   RESET & GLOBAL STYLES
   ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark-primary);
  color: var(--color-text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

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

/* ==========================================
   SCROLLBAR STYLES
   ========================================== */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark-secondary);
}
::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border: 2px solid var(--bg-dark-secondary);
  border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold-hover);
}

/* ==========================================
   REUSABLE COMPONENTS (Buttons, Cards, etc.)
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 14px 28px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  text-transform: uppercase;
}

.btn-primary {
  background-color: var(--color-gold);
  color: var(--bg-dark-primary);
  box-shadow: 0 4px 15px rgba(197, 168, 128, 0.25);
}

.btn-primary:hover {
  background-color: var(--color-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 168, 128, 0.4);
}

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

.btn-outline:hover {
  background-color: var(--color-gold);
  color: var(--bg-dark-primary);
  transform: translateY(-2px);
}

.btn-dark-outline {
  background-color: transparent;
  color: var(--color-text-dark);
  border: 2px solid var(--color-text-dark);
}

.btn-dark-outline:hover {
  background-color: var(--color-text-dark);
  color: var(--bg-light-primary);
  transform: translateY(-2px);
}

.btn-block {
  display: flex;
  justify-content: center;
  width: 100%;
}

.section-tag {
  font-family: var(--font-headings);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.section-tag-gold {
  font-family: var(--font-headings);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
  border-bottom: 1px solid rgba(197, 168, 128, 0.3);
  padding-bottom: 6px;
}

.section-title-dark {
  font-size: 2.25rem;
  color: var(--color-text-dark);
  line-height: 1.25;
  margin-bottom: 24px;
}

.section-title-light {
  font-size: 2.25rem;
  color: var(--color-text-light);
  line-height: 1.25;
  margin-bottom: 24px;
}

.section-header-center {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}

/* ==========================================
   NAVIGATION BAR
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  background-color: rgba(6, 28, 51, 0.9);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

.navbar.scroll-nav {
  height: 70px;
  background-color: var(--bg-dark-secondary);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-container {
  max-width: 1240px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-badge {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.1rem;
  background-color: var(--color-gold);
  color: var(--bg-dark-primary);
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  letter-spacing: -0.05em;
}

.logo-text {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
}

.nav-menu {
  display: flex;
  gap: 28px;
}

.nav-link {
  font-family: var(--font-headings);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted-light);
  padding: 8px 0;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-socials {
  display: flex;
  gap: 16px;
}

.nav-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  color: var(--color-text-muted-light);
}

.nav-socials a:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-2px);
}

.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--color-text-light);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 100px;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 70% 30%, rgba(197, 168, 128, 0.08) 0%, transparent 60%), var(--bg-dark-primary);
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54 48c-2 0-3 1-4 2s-2 1-4 1-3-1-4-2-2-1-4-1-3 1-4 2-2 1-4 1-3-1-4-2-2-1-4-1-3 1-4 2-2 1-4 1-3-1-4-2-2-1-4-1-3 1-4 2-2 1-4 1' fill='none' stroke='rgba(255,255,255,0.015)' stroke-width='1.5'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

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

.hero-subtitle {
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  margin-bottom: 16px;
  display: block;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #FFFFFF 50%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-credentials {
  font-family: var(--font-headings);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-text-light);
  margin-bottom: 8px;
}

.hero-credentials .divider {
  color: var(--color-gold);
  margin: 0 8px;
  font-weight: 300;
}

.hero-subcredentials {
  font-family: var(--font-headings);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--color-gold);
  margin-bottom: 36px;
}

.hero-quote-box {
  position: relative;
  border-left: 2px solid var(--color-gold);
  padding: 10px 0 10px 24px;
  margin-bottom: 40px;
  background: rgba(197, 168, 128, 0.03);
}

.quote-icon {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 3rem;
  opacity: 0.05;
  color: var(--color-gold);
}

.hero-quote {
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 400;
  color: var(--color-text-muted-light);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual-frame {
  position: relative;
  width: 100%;
  max-width: 380px;
  border-radius: 12px;
  padding: 8px;
  border: 1px solid rgba(197, 168, 128, 0.2);
  background: var(--bg-dark-secondary);
}

.hero-visual-glow {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.15) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.hero-img {
  border-radius: 8px;
  width: 100%;
  height: 480px;
  object-fit: cover;
  animation: floatImage 6s ease-in-out infinite;
}

.hero-network-dots .dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: var(--color-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-gold);
}

.hero-network-dots .dot-1 { top: 20%; left: -5%; animation: pulseDot 3s infinite; }
.hero-network-dots .dot-2 { bottom: 30%; right: -5%; animation: pulseDot 4s infinite 1s; }
.hero-network-dots .dot-3 { bottom: 10%; left: 40%; animation: pulseDot 3s infinite 2s; }

@keyframes floatImage {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes pulseDot {
  0% { transform: scale(0.9); opacity: 0.5; }
  50% { transform: scale(1.4); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.5; }
}

/* ==========================================
   ABOUT ME SECTION
   ========================================== */
.about-section {
  background-color: var(--bg-light-primary);
  color: var(--color-text-dark);
  padding: 100px 0;
  position: relative;
}

.about-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 0.90fr 1.10fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.about-image-side {
  display: flex;
  justify-content: center;
}

.about-img-frame {
  position: relative;
  padding: 10px;
}

.about-img-frame .frame-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 80%;
  border-top: 3px solid var(--color-gold);
  border-left: 3px solid var(--color-gold);
  z-index: 1;
}

.about-img-frame::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80%;
  height: 80%;
  border-bottom: 3px solid var(--color-gold);
  border-right: 3px solid var(--color-gold);
}

.about-img {
  border-radius: 4px;
  position: relative;
  z-index: 2;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  height: 400px;
  object-fit: cover;
}

.about-content-side {
  max-width: 580px;
}

.about-bio p {
  font-size: 1.05rem;
  color: var(--color-text-muted-dark);
  margin-bottom: 20px;
}

.about-bio strong {
  color: var(--color-text-dark);
}

.mission-box {
  background-color: var(--bg-light-secondary);
  border-left: 4px solid var(--color-gold);
  padding: 24px;
  border-radius: 0 8px 8px 0;
  margin-top: 30px;
}

.mission-tag {
  font-family: var(--font-headings);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  display: block;
  margin-bottom: 8px;
}

.mission-text {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 500;
  color: var(--color-text-dark) !important;
  line-height: 1.5;
  margin-bottom: 0 !important;
}

.about-actions {
  margin-top: 32px;
}

.about-stats-side {
  height: 100%;
  display: flex;
  align-items: center;
}

.stats-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.stat-card {
  background-color: var(--bg-light-secondary);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
}

.stat-card:hover {
  transform: translateX(-5px);
  border-color: rgba(197, 168, 128, 0.4);
  box-shadow: 0 6px 25px rgba(197, 168, 128, 0.15);
}

.stat-icon-wrap {
  width: 48px;
  height: 48px;
  background-color: rgba(197, 168, 128, 0.15);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  color: var(--color-gold);
}

.stat-number {
  font-family: var(--font-headings);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--color-text-dark);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 550;
  color: var(--color-text-muted-dark);
}

/* ==========================================
   CORE AREAS OF EXPERTISE SECTION
   ========================================== */
.expertise-section {
  position: relative;
  padding: 100px 0;
  background-color: var(--bg-dark-secondary);
}

.expertise-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 80%, rgba(197, 168, 128, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.expertise-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

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

.expertise-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 8px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.expertise-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.expertise-card:hover {
  transform: translateY(-8px);
  border-color: rgba(197, 168, 128, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.expertise-card:hover::before {
  transform: translateX(100%);
}

.exp-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.exp-icon {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  border: 1px solid rgba(197, 168, 128, 0.3);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  color: var(--color-gold);
  background-color: rgba(197, 168, 128, 0.05);
  transition: var(--transition-smooth);
}

.expertise-card:hover .exp-icon {
  background-color: var(--color-gold);
  color: var(--bg-dark-primary);
  border-color: var(--color-gold);
  transform: rotateY(360deg);
}

.expertise-card h3 {
  font-size: 1.3rem;
  color: var(--color-text-light);
}

.exp-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.exp-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.95rem;
  color: var(--color-text-muted-light);
}

.exp-list li::before {
  content: '▪';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-size: 0.9rem;
}

/* ==========================================
   PROFESSIONAL JOURNEY (Experience)
   ========================================== */
.journey-section {
  background-color: var(--bg-light-primary);
  color: var(--color-text-dark);
  padding: 100px 0;
  overflow: hidden;
}

.journey-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.timeline-wrapper {
  position: relative;
  margin-top: 80px;
  padding-bottom: 40px;
}

.timeline-line {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--bg-light-secondary);
  z-index: 1;
}

.timeline-scroll-container {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  padding: 20px 10px 40px 10px;
  position: relative;
  z-index: 2;
  scroll-snap-type: x mandatory;
}

.timeline-scroll-container::-webkit-scrollbar {
  height: 8px;
}
.timeline-scroll-container::-webkit-scrollbar-thumb {
  background-color: rgba(197, 168, 128, 0.4);
  border-radius: 4px;
}

.timeline-card-item {
  flex: 0 0 340px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.timeline-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--bg-light-primary);
  border: 4px solid var(--bg-light-secondary);
  display: grid;
  place-items: center;
  font-size: 1rem;
  color: var(--color-text-muted-dark);
  margin-bottom: 30px;
  z-index: 5;
  transition: var(--transition-smooth);
}

.timeline-card-item.active .timeline-badge {
  border-color: var(--color-gold);
  background-color: var(--color-gold);
  color: var(--bg-dark-primary);
  box-shadow: 0 0 15px rgba(197, 168, 128, 0.6);
}

.timeline-card {
  background-color: var(--bg-light-secondary);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 30px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: var(--transition-smooth);
  position: relative;
}

.timeline-card::after {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 0 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent var(--bg-light-secondary) transparent;
}

.timeline-card-item:hover .timeline-card {
  transform: translateY(5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-color: rgba(197, 168, 128, 0.2);
}

.timeline-card-item.active .timeline-card {
  background-color: var(--bg-dark-primary);
  color: var(--color-text-light);
  border-color: var(--bg-dark-primary);
  box-shadow: 0 15px 35px rgba(6, 28, 51, 0.15);
}

.timeline-card-item.active .timeline-card::after {
  border-color: transparent transparent var(--bg-dark-primary) transparent;
}

.timeline-date {
  font-family: var(--font-headings);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.timeline-card h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
  line-height: 1.3;
}

.timeline-card-item.active .timeline-card h3 {
  color: #FFFFFF;
}

.timeline-role {
  font-family: var(--font-headings);
  font-size: 0.95rem;
  font-weight: 550;
  margin-bottom: 16px;
  color: var(--color-text-muted-dark);
}

.timeline-card-item.active .timeline-role {
  color: var(--color-gold);
}

.timeline-company-desc {
  font-size: 0.85rem;
  line-height: 1.5;
  display: block;
  color: var(--color-text-muted-dark);
}

.timeline-card-item.active .timeline-company-desc {
  color: var(--color-text-muted-light);
}

/* ==========================================
   TRAINING & PHILOSOPHY SECTION
   ========================================== */
.philosophy-section {
  position: relative;
  padding: 100px 0;
  background-color: var(--bg-dark-primary);
}

.philosophy-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 10%, rgba(197, 168, 128, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.philosophy-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.training-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  margin-bottom: 80px;
  align-items: center;
}

.training-info-card {
  max-width: 620px;
}

.training-intro-text {
  font-size: 1.15rem;
  color: var(--color-text-muted-light);
  margin-bottom: 30px;
}

.training-intro-text strong {
  color: var(--color-gold);
}

.training-quote {
  position: relative;
  border-left: 2px solid var(--color-gold);
  padding: 16px 0 16px 28px;
  background-color: rgba(197, 168, 128, 0.02);
}

.gold-quote {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 2rem;
  color: var(--color-gold);
  opacity: 0.1;
}

.training-quote p {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--color-gold);
}

.training-topics-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 8px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.training-topics-card h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
  color: var(--color-gold);
}

.topics-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.topic-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.topic-item i {
  color: var(--color-gold);
}

.philosophy-pillars-wrap {
  margin-top: 100px;
}

.pillars-title {
  font-size: 2rem;
  color: var(--color-text-light);
  margin-top: 10px;
}

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

.pillar-card {
  background-color: var(--bg-dark-secondary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition-smooth);
}

.pillar-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.pillar-num {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(197, 168, 128, 0.15);
  line-height: 1;
  margin-bottom: 16px;
  transition: var(--transition-smooth);
}

.pillar-card:hover .pillar-num {
  color: var(--color-gold);
  transform: scale(1.1);
}

.pillar-card h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--color-text-light);
}

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

/* ==========================================
   INDUSTRIES & COMPANIES SECTION
   ========================================== */
.industries-section {
  background-color: var(--bg-light-secondary);
  color: var(--color-text-dark);
  padding: 100px 0;
}

.industries-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
}

.ind-col, .comp-col {
  display: flex;
  flex-direction: column;
}

.ind-intro, .comp-intro {
  font-size: 1rem;
  color: var(--color-text-muted-dark);
  margin-bottom: 30px;
}

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

.ind-item {
  background-color: var(--bg-light-primary);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  font-weight: 550;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
  transition: var(--transition-smooth);
}

.ind-item:hover {
  transform: translateY(-2px);
  border-color: var(--color-gold);
  box-shadow: 0 6px 20px rgba(197, 168, 128, 0.1);
  color: var(--color-gold);
}

.ind-item i {
  font-size: 1.15rem;
  color: var(--color-gold);
}

.companies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.company-logo-card {
  background-color: var(--bg-light-primary);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 6px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
  transition: var(--transition-smooth);
}

.company-logo-card:hover {
  border-color: var(--color-gold);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.comp-icon-logo {
  font-size: 1.85rem;
  color: var(--color-gold);
  opacity: 0.75;
  transition: var(--transition-smooth);
}

.company-logo-card:hover .comp-icon-logo {
  opacity: 1;
  transform: scale(1.1);
}

.company-logo-card span {
  font-family: var(--font-headings);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-text-dark);
  text-align: center;
}

/* ==========================================
   INTERNATIONAL EXPOSURE (Interactive Map)
   ========================================== */
.international-section {
  position: relative;
  padding: 100px 0;
  background-color: var(--bg-dark-secondary);
}

.intl-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(197, 168, 128, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.intl-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.intl-content {
  max-width: 540px;
}

.intl-desc {
  font-size: 1.05rem;
  color: var(--color-text-muted-light);
  margin-bottom: 30px;
}

.intl-countries-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.country-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-text-light);
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 550;
  padding: 10px 18px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-fast);
}

.country-btn:hover {
  background: rgba(197, 168, 128, 0.08);
  border-color: rgba(197, 168, 128, 0.3);
}

.country-btn.active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--bg-dark-primary);
  box-shadow: 0 4px 15px rgba(197, 168, 128, 0.3);
}

.flag-icon {
  font-size: 0.9rem;
}

.intl-info-box {
  background: rgba(6, 28, 51, 0.5);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  padding: 24px;
  min-height: 120px;
  backdrop-filter: blur(10px);
}

.intl-info-box h4 {
  font-size: 1.15rem;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.intl-info-box p {
  font-size: 0.95rem;
  color: var(--color-text-muted-light);
}

.intl-map-wrapper {
  position: relative;
  width: 100%;
}

.map-glow-under {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.1) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}

.intl-map-svg {
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  background-color: rgba(2, 15, 29, 0.4);
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.5);
}

/* Map pin states */
.map-pin {
  cursor: pointer;
}

.pin-pulse {
  fill: var(--color-gold);
  opacity: 0.25;
  animation: mapPulse 2s infinite ease-in-out;
  transform-origin: center;
}

.pin-core {
  fill: var(--color-gold);
  stroke: var(--bg-dark-secondary);
  stroke-width: 1.5;
  transition: var(--transition-fast);
}

.pin-label {
  font-family: var(--font-headings);
  font-size: 11px;
  font-weight: 700;
  fill: var(--color-text-muted-light);
  opacity: 0.7;
  pointer-events: none;
  transition: var(--transition-fast);
}

.map-connection-line {
  fill: none;
  stroke: var(--color-gold);
  stroke-width: 1.5;
  stroke-dasharray: 6 6;
  opacity: 0.25;
  transition: var(--transition-smooth);
}

/* Hover & Active Pin styling */
.map-pin:hover .pin-core, .map-pin.active .pin-core {
  fill: #FFFFFF;
  stroke: var(--color-gold);
  stroke-width: 2.5;
  r: 7;
}

.map-pin:hover .pin-label, .map-pin.active .pin-label {
  fill: #FFFFFF;
  opacity: 1;
}

.map-pin:hover .pin-pulse, .map-pin.active .pin-pulse {
  animation-duration: 1.2s;
  fill: #FFFFFF;
}

.map-pin.active-connection .map-connection-line {
  stroke-dasharray: 0;
  opacity: 0.85;
  stroke-width: 2;
  filter: drop-shadow(0 0 4px var(--color-gold));
}

@keyframes mapPulse {
  0% { transform: scale(0.6); opacity: 0.7; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ==========================================
   FOOTER & CONTACT SECTION
   ========================================== */
.footer-section {
  background-color: var(--bg-dark-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 20px;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.footer-left h3 {
  font-size: 1.75rem;
  margin-bottom: 6px;
  color: #FFFFFF;
}

.footer-tagline {
  font-family: var(--font-headings);
  font-size: 0.95rem;
  color: var(--color-gold);
  margin-bottom: 24px;
}

.footer-text {
  font-size: 0.95rem;
  color: var(--color-text-muted-light);
  margin-bottom: 36px;
  max-width: 500px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.contact-info-item i {
  color: var(--color-gold);
  width: 18px;
  font-size: 1.1rem;
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  color: var(--color-text-muted-light);
}

.footer-socials a:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--bg-dark-primary);
  transform: translateY(-3px);
}

.social-links-wrap {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-label {
  font-family: var(--font-headings);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-gold);
}

.footer-socials.highlighted {
  display: flex;
  gap: 16px;
}

.footer-socials.highlighted a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(197, 168, 128, 0.2);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  color: var(--color-gold);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition-smooth);
}

.footer-socials.highlighted a:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--bg-dark-primary);
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(197, 168, 128, 0.5);
}

.footer-promo-card {
  background: var(--glass-bg);
  border: 1px solid rgba(197, 168, 128, 0.3);
  box-shadow: var(--glass-shadow);
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.footer-promo-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.promo-icon {
  font-size: 4rem;
  color: #25D366;
  margin-bottom: 20px;
  animation: pulseIcon 2s infinite ease-in-out;
  display: inline-block;
}

@keyframes pulseIcon {
  0% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(37, 211, 102, 0)); }
  50% { transform: scale(1.08); filter: drop-shadow(0 0 12px rgba(37, 211, 102, 0.4)); }
  100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(37, 211, 102, 0)); }
}

.footer-promo-card h4 {
  font-size: 1.6rem;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.footer-promo-card p {
  font-size: 0.95rem;
  color: var(--color-text-muted-light);
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn-whatsapp-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #25D366;
  color: #FFFFFF;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 16px 32px;
  border-radius: 99px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  width: 100%;
}

.btn-whatsapp-primary:hover {
  background-color: #20BA5A;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
  color: #FFFFFF;
}

.btn-whatsapp-primary .font-icon {
  font-size: 1.25rem;
}

.promo-phone {
  display: block;
  margin-top: 20px;
  font-family: var(--font-headings);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-gold);
}

.footer-bottom {
  max-width: 1240px;
  margin: 60px auto 0;
  padding: 20px 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-muted-light);
}

/* ==========================================
   MODAL WINDOWS
   ========================================== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(2, 15, 29, 0.85);
  backdrop-filter: blur(10px);
}

.modal-box {
  background-color: var(--bg-dark-primary);
  border: 1px solid var(--color-gold);
  border-radius: 8px;
  width: 90%;
  max-width: 520px;
  padding: 40px;
  position: relative;
  z-index: 10;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal.open .modal-box {
  transform: scale(1);
}

.modal-large {
  max-width: 720px;
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--color-text-muted-light);
  font-size: 1.25rem;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  color: #FFFFFF;
  border-color: var(--color-gold);
  background-color: rgba(255, 255, 255, 0.02);
}

.modal-header {
  text-align: center;
  margin-bottom: 28px;
}

.modal-icon {
  font-size: 2.5rem;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.modal-icon.success {
  color: #25D366;
}

.modal-header h3 {
  font-size: 1.5rem;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.modal-header p {
  font-size: 0.85rem;
  color: var(--color-text-muted-light);
}

.modal-body-scroll {
  max-height: 400px;
  overflow-y: auto;
  padding-right: 10px;
}

.modal-body-scroll h4 {
  font-size: 1.1rem;
  color: var(--color-gold);
  margin: 20px 0 10px;
}

.modal-body-scroll h4:first-of-type {
  margin-top: 0;
}

.modal-body-scroll p {
  font-size: 0.95rem;
  color: var(--color-text-muted-light);
  margin-bottom: 16px;
}

.modal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.modal-list li {
  font-size: 0.9rem;
  color: var(--color-text-muted-light);
  position: relative;
  padding-left: 20px;
}

.modal-list li::before {
  content: '▪';
  position: absolute;
  left: 0;
  color: var(--color-gold);
}

.modal-list strong {
  color: var(--color-gold);
}

.modal-body-text {
  text-align: center;
  font-size: 0.95rem;
  color: var(--color-text-muted-light);
}

.modal-body-text code {
  background-color: var(--bg-dark-secondary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--color-gold);
  padding: 2px 6px;
  border-radius: 4px;
}

/* ==========================================
   RESPONSIVE DESIGN (Media Queries)
   ========================================== */

/* Up to 1024px: Tablets & Laptops */
@media screen and (max-width: 1024px) {
  html {
    font-size: 15px;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding-top: 20px;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-quote-box {
    border-left: none;
    border-top: 1px solid var(--color-gold);
    border-bottom: 1px solid var(--color-gold);
    padding: 20px 0;
    background: transparent;
  }
  
  .quote-icon {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .about-image-side {
    max-width: 320px;
    margin: 0 auto;
  }
  
  .about-content-side {
    max-width: 100%;
  }
  
  .mission-box {
    border-left: none;
    border-top: 4px solid var(--color-gold);
    border-radius: 8px;
  }
  
  .about-stats-side {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
  
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .training-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .industries-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .intl-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .intl-content {
    max-width: 100%;
    text-align: center;
  }
  
  .intl-countries-list {
    justify-content: center;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .footer-left {
    text-align: center;
  }
  
  .footer-contact-info {
    align-items: center;
  }
  
  .footer-socials {
    justify-content: center;
  }
  
  .whatsapp-sticky {
    text-align: center;
  }
}

/* Up to 768px: Mobile Nav Activation & Small Devices */
@media screen and (max-width: 768px) {
  .mobile-nav-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--bg-dark-secondary);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    transition: var(--transition-smooth);
    z-index: 999;
  }
  
  .navbar.scroll-nav .nav-menu {
    top: 70px;
    height: calc(100vh - 70px);
  }
  
  .nav-menu.open {
    left: 0;
  }
  
  .nav-socials {
    display: none;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .expertise-grid {
    grid-template-columns: 1fr;
  }
  
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .form-group-2 {
    grid-template-columns: 1fr;
  }
}

/* Up to 480px: Small Mobile */
@media screen and (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-credentials {
    font-size: 1.15rem;
  }
  
  .hero-subcredentials {
    font-size: 1rem;
  }
  
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  
  .industries-grid {
    grid-template-columns: 1fr;
  }
  
  .companies-grid {
    grid-template-columns: 1fr;
  }
  
  .modal-box {
    padding: 24px;
  }
}