/* ==========================================================================
   GLC GLOBAL LEAD CONSULTANTS - DESIGN SYSTEM & MASTER STYLESHEET v3 (2026)
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* --- Root Design Tokens --- */
:root {
  /* Brand Palette */
  --navy: #2D2E83;
  --navy-dark: #1D1E5E;
  --navy-light: #3D3EA5;
  --green: #6DC040;
  --green-dark: #549A2F;
  --green-light: #88D35E;
  --gold: #C9973A;
  --gold-light: #E0B155;
  --gold-dark: #A57827;
  --cream: #F4F1EA;
  --charcoal: #2A2B3D;
  --dgray: #4A4A5A;
  --mgray: #7A7A8C;
  --lgray: #F8F6F0;
  --line: #E6E1D3;
  --paper: #FBFAF6;
  --white: #FFFFFF;

  /* Fonts */
  --font-heading: 'Outfit', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Layout & Shadows */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 8px rgba(42, 43, 61, 0.06);
  --shadow-md: 0 8px 24px rgba(45, 46, 131, 0.10);
  --shadow-lg: 0 16px 40px rgba(42, 43, 61, 0.16);
  --shadow-gold: 0 8px 20px rgba(201, 151, 58, 0.25);
  --shadow-green: 0 8px 20px rgba(109, 192, 64, 0.25);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- Base & Reset --- */
*, *::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(--paper);
  color: var(--charcoal);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, .serif {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}

p {
  color: var(--dgray);
  font-size: 0.95rem;
}

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

ul {
  list-style: none;
}

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

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

/* --- Layout Utility Classes --- */
.container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 2px;
  background-color: var(--gold);
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 12px;
  color: var(--navy);
}

.section-lead {
  font-size: 1.05rem;
  color: var(--dgray);
  max-width: 820px;
  margin-bottom: 32px;
}

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

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

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

/* --- Buttons & UI Elements --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background-color: var(--gold);
  color: var(--charcoal);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(201, 151, 58, 0.35);
}

.btn-navy {
  background-color: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background-color: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn-outline-navy:hover {
  background-color: var(--navy);
  color: var(--white);
}

.btn-green {
  background-color: var(--green);
  color: var(--white);
  box-shadow: var(--shadow-green);
}

.btn-green:hover {
  background-color: var(--green-dark);
  transform: translateY(-2px);
}

/* --- Sticky Top Announcement Bar --- */
.topbar {
  background-color: var(--navy-dark);
  color: var(--cream);
  font-size: 0.8rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 101;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.topbar-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-badge {
  background: rgba(201, 151, 58, 0.2);
  color: var(--gold-light);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  border: 1px solid var(--gold);
  font-weight: 700;
  font-size: 0.75rem;
}

.topbar-contact {
  display: flex;
  gap: 16px;
}

.topbar-contact a {
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 6px;
}

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

/* --- Main Navigation Header --- */
.main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  padding: 10px 0;
}

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

.brand-logo {
  display: flex;
  align-items: center;
  height: 85px;
}

.brand-logo img, .brand-logo svg {
  height: 100%;
  width: auto;
}

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

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
  position: relative;
  padding: 8px 0;
}

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

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-proposal-btn .btn-icon-mobile {
  display: none;
}

.header-proposal-btn .btn-text {
  display: inline;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  background-color: var(--cream);
  padding: 4px 8px;
  border-radius: var(--radius-full);
  border: 1px solid var(--line);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

.lang-switch span.active {
  background-color: var(--navy);
  color: var(--white);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.lang-switch span.inactive {
  color: var(--mgray);
  padding: 2px 8px;
}

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

/* --- Hero Section (Fixed Image Banner) --- */
.hero-section {
  position: relative;
  min-height: calc(100vh - 116px);
  min-height: calc(100dvh - 116px);
  background-color: var(--charcoal);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 40px 0;
}

.hero-section .container {
  width: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(29, 30, 94, 0.92) 0%, rgba(42, 43, 61, 0.75) 50%, rgba(29, 30, 94, 0.45) 100%);
  z-index: 2;
}

.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  position: relative;
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: var(--white);
  max-width: 740px;
  padding: 60px 0;
  text-align: left;
  margin-left: 0;
  width: 100%;
  flex: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201, 151, 58, 0.2);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
  text-align: left;
}

.hero-title span {
  color: var(--gold-light);
}

.hero-subline {
  font-size: 1.1rem;
  color: #DCDDF0;
  margin-bottom: 32px;
  line-height: 1.6;
  text-align: left;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.hero-video-side {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-play-video {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(26, 27, 48, 0.65);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 24px;
  border-radius: 50px;
  color: var(--white);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  text-align: left;
}

.btn-play-video:hover {
  background: rgba(29, 30, 94, 0.9);
  border-color: var(--gold);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 36px rgba(201, 151, 58, 0.35);
  color: var(--white);
}

.play-icon-wrapper {
  position: relative;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.play-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 1rem;
  padding-left: 3px;
  box-shadow: 0 0 18px rgba(201, 151, 58, 0.6);
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.btn-play-video:hover .play-icon {
  transform: scale(1.08);
  background: var(--gold-light);
}

.play-ripple {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--gold);
  animation: ripple-pulse 2s infinite ease-out;
  pointer-events: none;
  z-index: 1;
}

@keyframes ripple-pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.75);
    opacity: 0;
  }
}

.play-btn-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.play-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.3px;
}

.play-sub {
  font-size: 0.75rem;
  color: var(--gold-light);
  font-weight: 500;
}

.hero-controls {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(26, 27, 48, 0.6);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.slider-btn {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 10px;
}

.hero-trust-bar {
  background-color: var(--navy-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 16px 0;
  font-size: 0.85rem;
  border-top: 3px solid var(--gold);
}

.hero-trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

/* --- Section 02: Impact & Statistics Strip --- */
.stats-section {
  padding: 48px 0;
  background: linear-gradient(135deg, var(--charcoal), var(--navy));
  color: var(--white);
}

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

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 16px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: #D9DBEE;
  font-weight: 500;
}

.credentials-strip {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cred-title {
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 700;
}

.cred-badges {
  display: flex;
  gap: 12px;
}

.cred-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 4px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
}

/* --- Section 03: About Us & Leadership --- */
.about-section {
  padding: 90px 0;
  background-color: var(--paper);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(45, 46, 131, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(201, 151, 58, 0.05) 0%, transparent 50%);
  position: relative;
  overflow: hidden;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 60px;
}

.about-text-content .section-title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 16px;
}

.about-text-content .section-title span {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.about-card {
  background-color: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

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

.about-card.delivery-card {
  border-top: 4px solid var(--gold);
}

.card-header-flex {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.card-header-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(45, 46, 131, 0.08);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

.delivery-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-dark);
  background: var(--cream);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-top: 14px;
}

.vision-mission-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vm-item-card {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 18px 20px;
  transition: var(--transition);
  height: 100%;
}

.vm-item-card:hover {
  background: #EFECE3;
  transform: translateX(4px);
}

.vm-item-card h4 {
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--gold-dark);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
}

.vm-item-card p {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--navy);
  font-style: italic;
  line-height: 1.5;
}

/* --- About Visual Showcase Feature --- */
.about-visual-column {
  position: relative;
}

.about-image-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(29, 30, 94, 0.16);
  border: 4px solid var(--white);
  transition: var(--transition);
}

.about-image-frame:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(29, 30, 94, 0.22);
}

.about-featured-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.about-image-frame:hover .about-featured-img {
  transform: scale(1.04);
}

.about-image-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(29, 30, 94, 0.1) 0%, rgba(29, 30, 94, 0.45) 100%);
  pointer-events: none;
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  z-index: 5;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.floating-badge:hover {
  transform: translateY(-3px) scale(1.02);
}

.badge-experience {
  top: 20px;
  left: 20px;
  background: rgba(29, 30, 94, 0.92);
  border: 1.5px solid var(--gold);
  color: var(--white);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.badge-exp-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}

.badge-exp-info {
  display: flex;
  flex-direction: column;
}

.badge-exp-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

.badge-exp-sub {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.75);
}

.badge-stats-card {
  bottom: 20px;
  right: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 14px 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  text-align: center;
}

.badge-stat-item h5 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 2px;
}

.badge-stat-item span {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--dgray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Secondary Graphic Pill */
.about-secondary-visual {
  margin-top: 16px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  height: 96px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

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

.about-secondary-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(29, 30, 94, 0.9) 0%, rgba(29, 30, 94, 0.65) 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  color: var(--white);
}

.sec-visual-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-light);
}

.sec-visual-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 992px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .badge-experience {
    left: 12px;
  }
  
  .about-featured-img {
    height: 380px;
  }
}

@media (max-width: 640px) {
  .about-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .badge-stats-card {
    grid-template-columns: 1fr;
    gap: 8px;
    bottom: 12px;
  }
  
  .badge-experience {
    top: 12px;
    padding: 10px 14px;
  }
  
  .badge-exp-number {
    font-size: 1.75rem;
  }
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition);
}

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

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--navy);
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  font-size: 1.25rem;
}

.value-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.8rem;
  line-height: 1.45;
}

/* Founder Leadership Spotlight (About Us ONLY) */
.founder-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: center;
  margin-top: 40px;
  border-top: 4px solid var(--gold);
}

.founder-img-wrapper {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 4px solid var(--gold);
  overflow: hidden;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

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

.founder-info h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.founder-role {
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 12px;
  display: block;
}

.founder-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  color: #E2E4F6;
  margin-bottom: 16px;
  line-height: 1.5;
}

.founder-roles-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.founder-tag {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  color: var(--cream);
}

/* --- Section 04: Services & Solutions (7 Practice Areas) --- */
.services-section {
  padding: 80px 0;
  background-color: var(--cream);
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--navy);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--navy);
}

.service-card:hover::before {
  background: var(--gold);
}

.service-header {
  margin-bottom: 16px;
}

.service-num {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold-dark);
  margin-bottom: 8px;
}

.service-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(45, 46, 131, 0.06);
  border: 1px solid var(--line);
  color: var(--navy);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  transition: var(--transition);
}

.service-card:hover .service-icon-box {
  background: var(--navy);
  border-color: var(--navy);
}

.service-card:hover .service-icon-box svg {
  stroke: var(--gold-light);
}

.service-title {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.service-tag {
  background: var(--lgray);
  color: var(--dgray);
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  border: 1px solid var(--line);
}

.btn-service-detail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.btn-service-detail:hover {
  color: var(--gold-dark);
}

/* --- Section 05: How We Work (Engagement & Delivery Timeline) --- */
.work-section {
  padding: 80px 0;
  background-color: var(--paper);
}

.track-toggle-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.track-tab {
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: 2px solid var(--line);
  background: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dgray);
  cursor: pointer;
  transition: var(--transition);
}

.track-tab.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}

.timeline-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  position: relative;
  transition: var(--transition);
}

.timeline-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.8rem;
  color: var(--dgray);
}

/* --- Section 06 & 07: Clients, Sectors & Testimonials --- */
.clients-section {
  padding: 80px 0;
  background-color: var(--white);
}

.sector-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.sector-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}

.sector-card:hover {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.sector-logo-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 6px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.sector-card:hover .sector-logo-box {
  border-color: var(--gold);
  transform: scale(1.06);
  box-shadow: 0 6px 16px rgba(45, 46, 131, 0.12);
}

.sector-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
}

.sector-info h4 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.sector-partner {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dgray);
  margin-top: 4px;
}

.testimonials-wrapper {
  margin-top: 40px;
}

.testimonial-card {
  background: var(--cream);
  border-left: 5px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 32px 36px;
  margin-bottom: 24px;
}

.quote-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--navy);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}

.quote-author {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}

.author-info h5 {
  font-size: 1.05rem;
  color: var(--navy);
}

.author-info p {
  font-size: 0.85rem;
  color: var(--dgray);
}

.result-badge {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--green-dark);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
}

/* --- Section 08: Media Center & Insights --- */
.media-section {
  padding: 80px 0;
  background-color: var(--paper);
}

.news-carousel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 36px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.news-pill-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--gold-dark);
  background: rgba(201, 151, 58, 0.12);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
}

.news-section-subtitle {
  font-size: 1.5rem;
  color: var(--navy);
  margin: 0;
}

.news-carousel-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.news-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(20, 21, 56, 0.15);
  background: var(--white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.news-nav-btn:hover {
  background: var(--navy);
  color: var(--gold-light);
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(20, 21, 56, 0.2);
}

.news-carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 8px;
}

.news-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(20, 21, 56, 0.2);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-dot.active {
  width: 28px;
  border-radius: 12px;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(201, 151, 58, 0.4);
}

.news-carousel-wrapper {
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-md);
  margin-bottom: 40px;
  padding: 10px 4px 20px 4px;
}

.news-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  gap: 24px;
}

.news-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 0;
  box-sizing: border-box;
}

@media (max-width: 992px) {
  .news-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 640px) {
  .news-card {
    flex: 0 0 100%;
  }
}

.news-card-inner {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(20, 21, 56, 0.08);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.news-card-inner:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(20, 21, 56, 0.12);
  border-color: rgba(201, 151, 58, 0.4);
}

.news-img-holder {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: var(--navy);
}

.news-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-card-inner:hover .news-img {
  transform: scale(1.08);
}

.news-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 21, 56, 0.6) 0%, transparent 60%);
}

.news-category-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(20, 21, 56, 0.85);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(201, 151, 58, 0.3);
  text-transform: uppercase;
  z-index: 2;
}

.news-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--mgray);
  margin-bottom: 12px;
}

.news-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.news-date svg {
  color: var(--gold);
}

.news-read-time {
  background: var(--cream);
  color: var(--gold-dark);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
}

.news-title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--navy);
  margin-bottom: 12px;
  transition: color 0.25s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-inner:hover .news-title {
  color: var(--gold-dark);
}

.news-description {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-footer {
  border-top: 1px solid rgba(20, 21, 56, 0.06);
  padding-top: 16px;
  margin-top: auto;
}

.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
}

.btn-read-more svg {
  transition: transform 0.25s ease;
  color: var(--gold);
}

.btn-read-more:hover {
  color: var(--gold-dark);
}

.btn-read-more:hover svg {
  transform: translateX(5px);
}

/* --- Section 09: Creative Contact & Proposal --- */
.contact-section {
  padding: 95px 0;
  background: 
    linear-gradient(135deg, rgba(20, 21, 56, 0.88) 0%, rgba(15, 16, 42, 0.93) 100%),
    url('../images/contact_bg_texture.jpg') center/cover no-repeat;
  background-attachment: fixed;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(201, 151, 58, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.contact-section .section-label {
  color: var(--gold-light);
}

.contact-section .section-title {
  color: var(--white);
}

.contact-section .section-lead {
  color: rgba(255, 255, 255, 0.8);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 36px;
  align-items: stretch;
}

.contact-info-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}

.contact-info-card h3 {
  color: var(--navy) !important;
}

.contact-badge-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.contact-items-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 24px 0;
}

.contact-item-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--gold-light);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-item-detail h5 {
  font-size: 0.8rem;
  color: var(--gold-dark) !important;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 2px;
  font-weight: 800;
}

.contact-item-detail a, .contact-item-detail p {
  color: var(--navy) !important;
  font-size: 0.98rem;
  font-weight: 700;
}

.contact-item-detail a:hover {
  color: var(--gold-dark) !important;
}

.quick-actions-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn-whatsapp {
  background: #25D366;
  color: #000;
  font-weight: 700;
  border: none;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  transition: var(--transition);
}

.btn-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

/* Proposal Form Card */
.proposal-form-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.proposal-form-card h3 {
  color: var(--white) !important;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.form-group-creative {
  margin-bottom: 20px;
}

.form-group-creative label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9) !important;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.form-control-dark {
  width: 100%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--white) !important;
  font-size: 0.92rem;
  transition: var(--transition);
}

.form-control-dark::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.form-control-dark:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 14px rgba(201, 151, 58, 0.35);
}

.form-control-dark option {
  background: var(--charcoal);
  color: var(--white);
}

.timeline-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.timeline-pill-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.9);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.timeline-pill-btn.active, .timeline-pill-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal) !important;
  font-weight: 700;
}

/* --- Newsletter Showcase Box ("GLC Insights") --- */
.newsletter-box {
  position: relative;
  background: linear-gradient(135deg, var(--navy-dark) 0%, #151642 100%);
  border: 1px solid rgba(201, 151, 58, 0.35);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(29, 30, 94, 0.22);
  margin-top: 44px;
}

.newsletter-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(201, 151, 58, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter-content-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.newsletter-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 151, 58, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.newsletter-title {
  color: var(--white) !important;
  font-size: 2rem;
  margin-bottom: 10px;
  line-height: 1.2;
}

.newsletter-desc {
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.newsletter-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.perk-item {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
}

.newsletter-form-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.newsletter-input-group {
  position: relative;
  width: 100%;
}

.newsletter-input-group .input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-light);
  font-size: 1.1rem;
  pointer-events: none;
}

.newsletter-input {
  width: 100%;
  padding: 14px 16px 14px 46px;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 0.95rem;
  transition: var(--transition);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 16px rgba(201, 151, 58, 0.35);
}

.btn-newsletter {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.newsletter-privacy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

@media (max-width: 992px) {
  .newsletter-box {
    padding: 32px 24px;
  }
  .newsletter-content-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .newsletter-title {
    font-size: 1.65rem;
  }
}

/* --- Section 09: Contact & Proposal Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

.contact-info-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 36px;
}

/* Legacy contact rules removed for dark glassmorphism layout */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--charcoal);
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(45, 46, 131, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* --- Footer --- */
.footer {
  background-color: var(--charcoal);
  color: #C9CBEF;
  padding: 64px 0 32px;
  font-size: 0.85rem;
  border-top: 6px solid var(--gold);
}

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

.footer-brand p {
  color: #A9ABD4;
  margin-top: 16px;
  font-size: 0.85rem;
}

.footer-col h5 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: var(--gold);
}

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

.footer-links a {
  color: #A9ABD4;
}

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

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--mgray);
  font-size: 0.8rem;
}

/* --- Floating WhatsApp Button & Drawer --- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--green);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.75rem;
  box-shadow: var(--shadow-green);
  cursor: pointer;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  background-color: var(--green-dark);
}

.whatsapp-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* --- Modal Dialogues --- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(42, 43, 61, 0.75);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 24px;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--white);
  border-radius: var(--radius-md);
  max-width: 680px;
  width: 100%;
  padding: 36px;
  position: relative;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}

.modal-card.video-modal-card {
  max-width: 860px;
  padding: 28px;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--charcoal);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.modal-backdrop.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--cream);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: var(--dgray);
  z-index: 10;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--gold-light);
  color: var(--navy);
}

/* --- Results We Have Achieved (2-Column Carousel) --- */
.testimonials-wrapper {
  margin-top: 56px;
  position: relative;
}

.results-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}

.results-carousel-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--cream);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--line);
}

.results-nav-btn {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--navy);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.results-nav-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.results-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.results-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: var(--transition);
}

.results-dot.active {
  background: var(--gold);
  width: 22px;
  border-radius: 10px;
}

.results-carousel-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  border-radius: var(--radius-lg);
  padding: 4px;
}

.results-carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.results-slide {
  flex: 0 0 100%;
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.results-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
}

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

.results-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.sector-pill {
  background: var(--cream);
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--line);
}

.quote-mark {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: rgba(201, 151, 58, 0.3);
  line-height: 0.8;
}

.results-card .quote-text {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--navy);
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 20px;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: var(--gold-light);
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  border: 2px solid var(--cream);
}

.author-info h5 {
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 2px;
  line-height: 1.2;
}

.author-info p {
  font-size: 0.78rem;
  color: var(--mgray);
}

.result-badge {
  background: rgba(201, 151, 58, 0.12);
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-top: auto;
}

/* --- Responsive Media Queries --- */
@media (max-width: 992px) {
  .hero-section {
    min-height: calc(100vh - 80px);
    min-height: calc(100dvh - 80px);
    padding: 30px 0;
  }
  .hero-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .hero-content {
    max-width: 100%;
    padding: 20px 0 10px;
  }
  .hero-video-side {
    align-self: flex-start;
    margin-bottom: 20px;
  }
}

@media (max-width: 1024px) {
  .hero-title { font-size: 2.75rem; }
  .grid-3, .services-grid, .sector-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .timeline-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Mobile Navigation Menu Fix */
  .main-header {
    position: relative;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(29, 30, 94, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 20px 24px;
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 9999;
  }

  .nav-menu.active {
    display: flex !important;
  }

  .nav-menu .nav-link {
    color: var(--white) !important;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
  }

  .nav-menu .nav-link:last-child {
    border-bottom: none;
  }

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

  .mobile-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--navy);
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
  }

  /* Mobile View "Request a Proposal" button change to icon button */
  .header-proposal-btn {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .header-proposal-btn .btn-text {
    display: none !important;
  }

  .header-proposal-btn .btn-icon-mobile {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }

  .hero-title { font-size: 2.2rem; }
  .grid-2, .grid-3, .grid-4, .sector-cards-grid { grid-template-columns: 1fr; }
  
  /* Section 04: Seven Specialized Consultancy Practice Areas Mobile Fix */
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .service-card {
    padding: 24px 20px !important;
  }

  .services-grid .service-card[style*="grid-column"] {
    grid-column: span 1 / auto !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  /* Section 07: Results Carousel Mobile 1 Column (One by One Single Card Slide) */
  .results-slide {
    display: contents !important;
  }

  .results-card {
    flex: 0 0 100% !important;
    min-width: 100% !important;
    box-sizing: border-box !important;
  }

  .results-header-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .results-carousel-controls {
    align-self: flex-start;
  }
.topbar-info{
  display: none;
}
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .founder-card { grid-template-columns: 1fr; text-align: center; }
  .featured-media-card { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .timeline-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
}
