/* --------------------------------------------------
   CSS RESET & BASE CONFIGURATION
-------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Colors */
  --color-dark-bg: #050B12;
  /* Deepest navy/black */
  --color-dark-card: #07111C;
  /* Card & footer navy */
  --color-dark-section: #0B1722;
  /* Medium navy */
  --color-gold: #D49A35;
  /* Primary gold accent */
  --color-gold-hover: #B97920;
  /* Muted hover gold */
  --color-gold-light: rgba(212, 154, 53, 0.15);
  --color-gold-border: rgba(201, 144, 46, 0.35);
  --color-white: #FFFFFF;
  --color-light-bg: #FFFFFF;
  --color-light-gray-bg: #F7F7F5;
  --color-text-dark: #111827;
  /* Charcoal text for white bg */
  --color-text-light: #F3F4F6;
  /* Light gray text for dark bg */
  --color-text-muted: #555B66;
  /* Muted gray text */
  --color-text-muted-light: #9CA3AF;
  --color-border-light: #E5E7EB;
  --color-btn-dark: #07111C;

  /* Typography */
  --font-primary: 'Montserrat', sans-serif;
  --font-headings: var(--font-primary);
  --font-body: 'Inter', sans-serif;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-light-bg);
  color: var(--color-text-dark);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100vw;
}

body,
button,
input,
textarea,
select {
  font-family: var(--font-body);
}

/* --------------------------------------------------
   TYPOGRAPHY & UTILITIES
-------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--color-text-dark);
}

.text-white {
  color: var(--color-white) !important;
}

.text-gold {
  color: var(--color-gold) !important;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
}

/* Section Eyebrow styling */
.section-eyebrow {
  display: block;
  font-family: var(--font-headings);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-headings);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
}

/* --------------------------------------------------
   BUTTONS
-------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  height: 46px;
  /* Fixed height for exact match */
  padding: 0 32px;
  /* Horizontal padding only */
  border-radius: 0;
  /* Sharp corners */
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  gap: 8px;
}

.btn i {
  width: 12px;
  height: 12px;
  stroke-width: 2.5;
  transition: transform 0.3s ease;
}

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

.btn-gradient {
  background: linear-gradient(90deg, #B97920 0%, #E0A33A 100%);
  color: var(--color-white);
  border: none;
}

.btn-gradient:hover {
  background: linear-gradient(90deg, #A86B18 0%, #D49A35 100%);
  box-shadow: 0 4px 15px rgba(185, 121, 32, 0.25);
}

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

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

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

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

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

.btn-dark:hover {
  background-color: var(--color-gold);
  color: var(--color-white);
}

.btn-wide {
  padding-left: 36px;
  padding-right: 36px;
}

/* --------------------------------------------------
   1. HEADER / NAVIGATION
-------------------------------------------------- */
.main-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 85px;
  /* Precise height matching image */
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 100%;
}

.logo-img {
  height: 65px;
  /* Optimized size for 85px header height */
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  list-style: none;
  height: 100%;
}

.nav-link,
.nav-menu a {
  font-family: var(--font-headings);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-white);
  text-decoration: none;
  letter-spacing: 0.08em;
  height: 85px;
  display: flex;
  align-items: center;
  position: relative;
  transition: color 0.3s ease;
  opacity: 0.85;
}

.nav-link:hover,
.nav-menu a:hover {
  color: var(--color-gold);
  opacity: 1;
}

.nav-link.active,
.nav-menu .current-menu-item>a {
  color: var(--color-gold);
  opacity: 1;
}

.nav-link.active::after,
.nav-menu .current-menu-item>a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-gold);
}

/* Dropdown Styles */
.nav-item-dropdown {
  position: relative;
  height: 100%;
}

.dropdown-menu {
  position: absolute;
  top: 85px;
  left: 0;
  min-width: 280px;
  background-color: var(--color-dark-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 3px solid var(--color-gold);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu a.dropdown-link {
  height: auto;
  padding: 12px 24px;
  display: block;
  font-size: 11px;
  opacity: 0.85;
  transition: all 0.2s ease;
  color: var(--color-white);
}

.nav-menu a.dropdown-link:hover {
  background-color: rgba(255, 255, 255, 0.04);
  color: var(--color-gold);
  opacity: 1;
  padding-left: 30px;
}

.header-btn {
  padding: 0 24px;
}

.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  font-size: 24px;
}

/* --------------------------------------------------
   2. HERO SECTION
-------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 480px;
  /* Increase to ensure buttons are fully visible and not cut */
  background-image: url('../images/hero-bg.jpeg');
  background-size: cover;
  background-position: right center;
  /* Align building on the right side */
  display: flex;
  align-items: center;
  padding-top: 80px;
  /* Offset header height */
  padding-bottom: 50px;
  /* Padding below buttons before the next section */
  overflow: hidden;
}

.hero-map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/world-map.svg');
  background-repeat: no-repeat;
  background-position: left center;
  /* Align with left edge of the centered container */
  background-size: 55% auto;
  filter: invert(1) brightness(1.3) opacity(0.06);
  z-index: -1;
  /* Behind text content but above background */
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(5, 11, 18, 0.85) 0%, rgba(5, 11, 18, 0.75) 50%, rgba(5, 11, 18, 0.2) 100%);
  z-index: 1;
}

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

.hero-content {
  max-width: 560px;
  /* Text block width matching reference */
  padding-left: 0;
}

.hero-eyebrow {
  display: block;
  font-family: var(--font-headings);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-top: 16px;
  /* Create a clean visual gap below the header border line */
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-headings);
  font-size: 38px;
  /* Desktop heading size */
  line-height: 1.18;
  /* Precise line-height */
  font-weight: 700;
  /* Balanced bold weight */
  letter-spacing: -0.01em;
  color: var(--color-white);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-divider {
  width: 48px;
  /* Short divider line */
  height: 2px;
  background-color: var(--color-gold);
  margin-bottom: 24px;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.hero-desc p {
  margin-bottom: 14px;
}

.hero-desc p:last-child {
  margin-bottom: 0;
}

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

/* --------------------------------------------------
   3. FEATURE ICONS STRIP
-------------------------------------------------- */
.features-strip {
  background-color: var(--color-light-bg);
  border-bottom: 1px solid var(--color-border-light);
  padding: 36px 0;
}

.features-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: start;
}

.feature-col {
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.feature-col:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 10%;
  right: 0;
  height: 80%;
  width: 1px;
  background-color: var(--color-border-light);
}

.feature-icon {
  color: var(--color-gold);
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
}

.feature-icon i {
  width: 24px;
  height: 24px;
  stroke-width: 1.5;
}

.feature-title {
  font-family: var(--font-headings);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text-dark);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

.feature-text {
  font-size: 11.5px;
  line-height: 1.4;
  color: var(--color-text-muted);
}

/* --------------------------------------------------
   4. PROFESSIONAL BUSINESS PLATFORM
-------------------------------------------------- */
.about-section {
  position: relative;
  background-color: #F7F7F5;
  /* Premium off-white background */
  overflow: hidden;
}

.about-image-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  /* Cover exactly the right half of the viewport */
  height: 100%;
  background-image: url('../images/about-section.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.about-container {
  position: relative;
  z-index: 2;
}

.about-text-col {
  width: 48%;
  /* Occupies left half of the centered container */
  padding: 70px 0;
  /* Centered padding */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.section-divider {
  width: 48px;
  /* Short divider under eyebrow */
  height: 2px;
  background-color: var(--color-gold);
  margin-bottom: 20px;
}

.section-divider-center {
  width: 48px;
  height: 2px;
  background-color: var(--color-gold);
  margin: 0 auto 20px auto;
  /* Centered layout */
}

.about-body {
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-text-dark);
  margin-bottom: 24px;
}

.about-body p {
  margin-bottom: 14px;
}

.about-body p:last-child {
  margin-bottom: 0;
}

/* Dark button gold arrow micro-interaction */
.btn-dark i {
  color: var(--color-gold);
}

/* --------------------------------------------------
   5. AREAS OF ACTIVITY SECTION
-------------------------------------------------- */
.activity-section {
  background-color: var(--color-dark-bg);
  padding: 60px 0;
}

.section-header-center {
  text-align: center;
  margin-bottom: 40px;
}

.section-header-center .section-eyebrow {
  margin-bottom: 8px;
}

.section-header-center .section-title {
  margin-bottom: 0;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  /* Spacing between cards */
  margin-bottom: 40px;
}

.activity-card {
  position: relative;
  height: 360px;
  /* Taller vertical proportions matching design */
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border-radius: 8px;
  /* Rounded corners */
  border: 1px solid rgba(255, 255, 255, 0.08);
  /* Subtle outer border */
  background-color: #050B12;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(5, 11, 18, 0.3) 0%, rgba(5, 11, 18, 0.9) 100%);
  z-index: 1;
  transition: background 0.3s ease;
}

.activity-card:hover .card-overlay {
  background: linear-gradient(180deg, rgba(5, 11, 18, 0.15) 0%, rgba(5, 11, 18, 0.95) 100%);
}

.card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 140px 16px 44px 16px;
  /* Top padding pushes icon start to exactly 140px for straight horizontal row alignment */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* Flow elements from the top down */
  align-items: flex-start;
  box-sizing: border-box;
}

.card-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--color-gold);
  background-color: rgba(184, 134, 11, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  margin-bottom: 16px;
  flex-shrink: 0;
}

.card-icon svg {
  width: 16px;
  /* Target SVG directly for perfect centering */
  height: 16px;
  stroke-width: 2;
  display: block;
}

.card-title {
  font-family: var(--font-headings);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.card-desc {
  font-size: 10.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  /* Brighter white/light text matching reference */
  margin-bottom: 20px;
}

.card-line {
  position: absolute;
  bottom: 24px;
  /* Fixed height from bottom to align lines across all cards */
  left: 16px;
  /* Align horizontally with text container */
  width: 24px;
  height: 2px;
  background-color: var(--color-gold);
  transition: width 0.3s ease;
}

.activity-card:hover .card-line {
  width: 48px;
}

.activity-footer {
  text-align: center;
}

/* --------------------------------------------------
   6. OUR APPROACH STRIP
-------------------------------------------------- */
.approach-section {
  background-color: var(--color-light-bg);
  padding: 60px 0;
  border-bottom: 1px solid var(--color-border-light);
}

.approach-container {
  display: flex;
  align-items: center;
}

.approach-left {
  width: 35%;
  padding-right: 40px;
}

.approach-left .section-title {
  margin-bottom: 0;
}

.approach-right {
  width: 65%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.approach-block {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 28%;
}

.approach-icon {
  color: var(--color-gold);
}

.approach-icon i {
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
}

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

.approach-block-title {
  font-family: var(--font-headings);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text-dark);
  margin-bottom: 4px;
}

.approach-block-text {
  font-size: 10.5px;
  line-height: 1.4;
  color: var(--color-text-muted);
}

.approach-btn {
  white-space: nowrap;
}

/* --------------------------------------------------
   7. CORPORATE INFORMATION DARK SECTION
-------------------------------------------------- */
.corp-info-section {
  background-color: var(--color-dark-card);
  padding: 50px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.corp-info-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.corp-info-left {
  width: 22%;
}

.corp-info-title-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.corp-info-icon-wrapper {
  background-color: var(--color-gold-light);
  color: var(--color-gold);
  border: 1px solid var(--color-gold-border);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.corp-info-icon-wrapper i {
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
}

.corp-info-eyebrow {
  display: block;
  font-family: var(--font-headings);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 6px;
}

.corp-info-desc {
  font-size: 10.5px;
  line-height: 1.4;
  color: var(--color-text-light);
  opacity: 0.75;
}

.corp-info-columns {
  width: 54%;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 0.7fr;
  /* Distributed widths matching content lengths */
  gap: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding-left: 24px;
}

.corp-info-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.corp-info-label {
  font-family: var(--font-headings);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gold);
}

.corp-info-val {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.3;
}

.corp-info-actions {
  width: 24%;
  /* Expand space to prevent button overflow */
  display: flex;
  justify-content: flex-end;
}

.corp-info-actions .btn {
  white-space: nowrap;
}

/* --------------------------------------------------
   8. OFFICIAL CORPORATE COMMUNICATION
-------------------------------------------------- */
.comm-section {
  position: relative;
  background-color: var(--color-dark-bg);
  padding: 60px 0;
  overflow: hidden;
}

.comm-globe-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: url('https://cisltdglobal.com/wp-content/uploads/2026/07/ChatGPT-Image-Jul-14-2026-06_48_48-PM-1.png');
  background-size: cover;
  background-position: right center;
  z-index: 1;
}

.comm-globe-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 100%;
  background: linear-gradient(90deg, var(--color-dark-bg) 0%, rgba(5, 11, 18, 0) 100%);
  z-index: 2;
}

.comm-container {
  position: relative;
  z-index: 3;
}

.comm-content {
  max-width: 480px;
}

.comm-text {
  color: var(--color-white);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
  opacity: 0.88;
}

.comm-btn {
  padding-left: 28px;
  padding-right: 28px;
}

/* --------------------------------------------------
   9. FOOTER
-------------------------------------------------- */
.main-footer {
  background-color: var(--color-dark-card);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.2fr 0.8fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col-logo {
  justify-content: space-between;
}

.footer-logo {
  height: 48px;
  margin-bottom: 24px;
  align-self: flex-start;
}

.copyright-desktop {
  font-size: 11px;
  color: var(--color-text-muted-light);
  opacity: 0.7;
}

.footer-title {
  font-family: var(--font-headings);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gold);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13.5px;
  color: var(--color-text-light);
  opacity: 0.8;
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}

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

.footer-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-info-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-info-list .info-label {
  font-family: var(--font-headings);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-gold-border);
}

.footer-info-list .info-val {
  font-size: 13px;
  color: var(--color-white);
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--color-text-light);
  opacity: 0.8;
}

.footer-contact-list i {
  color: var(--color-gold);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.footer-contact-list a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-list a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
}

.footer-bottom-inner {
  display: flex;
  justify-content: flex-end;
  /* Aligns links to the right on desktop */
  align-items: center;
}

.copyright-mobile {
  display: none;
  font-size: 11px;
  color: var(--color-text-muted-light);
  opacity: 0.7;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-bottom-links a {
  font-size: 11px;
  color: var(--color-text-muted-light);
  opacity: 0.8;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.link-separator {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.15);
}

/* --------------------------------------------------
   RESPONSIVE DESIGN / MEDIA QUERIES
-------------------------------------------------- */

@media (max-width: 1024px) {
  .features-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .feature-col:not(:last-child)::after {
    display: none;
  }

  .activity-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .activity-card {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .activity-card:nth-child(3n) {
    border-right: none;
  }

  .approach-container {
    flex-direction: column;
    gap: 30px;
  }

  .approach-left {
    width: 100%;
    padding-right: 0;
  }

  .approach-right {
    width: 100%;
  }

  .corp-info-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .corp-info-left {
    width: 100%;
  }

  .corp-info-columns {
    width: 100%;
    border-left: none;
    padding-left: 0;
  }

  .corp-info-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-col-logo {
    grid-column: span 2;
    margin-bottom: 20px;
  }

  .footer-logo {
    margin-bottom: 12px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }


  .main-header {
    height: 70px;
  }

  .logo-img {
    height: 50px;
  }

  /* Nav Menu overlay on mobile */
  .nav-menu-wp {
    position: absolute;
    width: 0;
    height: 0;
    overflow: visible;
  }

  .mobile-nav-toggle {
    display: block;
    z-index: 110;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: 300px;
    max-width: 100vw;
    height: 100vh;
    background-color: var(--color-dark-bg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 80px 20px 40px;
    gap: 0;
    z-index: 105;
    
    opacity: 1;
    visibility: hidden;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  }

  .nav-menu.active {
    visibility: visible;
    transform: translateX(0);
  }

  .mobile-close-item {
    list-style: none;
    position: absolute;
    top: 15px;
    right: 20px;
    margin: 0 !important;
    padding: 0 !important;
  }

  .mobile-nav-close {
    background: transparent;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    transition: color 0.3s ease;
  }

  .mobile-nav-close:hover {
    color: var(--color-gold);
  }

  /* Fix for submenu extending out of mobile nav */
  .nav-item-dropdown,
  .menu-item-has-children {
    height: auto;
    width: 100%;
  }

  .dropdown-menu,
  .sub-menu {
    position: static !important;
    min-width: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    padding: 0 0 0 15px !important;
    border: none !important;
    background: transparent !important;
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 5px;
    margin-bottom: 15px;
  }

  .nav-link,
  .nav-menu a {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.1em;
    height: auto;
    padding: 12px 20px;
    text-align: left;
    width: 100%;
    color: var(--color-white);
    position: relative;
    transition: color 0.3s ease, letter-spacing 0.3s ease;
  }

  .nav-link:hover,
  .nav-menu a:hover {
    color: var(--color-gold) !important;
    letter-spacing: 0.2em;
    background: transparent !important;
    padding-left: 20px !important; /* override previous hover */
  }

  .nav-menu a.dropdown-link,
  .sub-menu a {
    font-size: 11px !important;
    padding: 12px !important;
    color: rgba(255, 255, 255, 0.6) !important;
    font-weight: 500;
    letter-spacing: 0.1em;
  }
  
  .nav-menu a.dropdown-link:hover,
  .sub-menu a:hover {
    color: var(--color-gold) !important;
  }

  .header-actions {
    display: none;
    /* Hide Contact Us in mobile header */
  }

  .hero-section {
    height: auto;
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .hero-title {
    font-size: 26px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

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

  .about-section {
    display: flex;
    flex-direction: column;
  }

  .about-image-bg {
    position: relative;
    width: 100%;
    height: 250px;
    order: 2;
    /* Place image below text */
  }

  .about-container {
    order: 1;
    /* Place text above image */
  }

  .about-text-col {
    width: 100%;
    padding: 40px 0;
  }

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



  .approach-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .approach-block {
    width: 100%;
  }

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

  .comm-globe-bg {
    display: none;
    /* Hide background image on small screens */
  }

  .comm-section {
    padding: 40px 0;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-col-logo {
    grid-column: span 1;
  }

  .copyright-desktop {
    display: none;
  }

  .copyright-mobile {
    display: block;
    margin-bottom: 12px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .features-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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



  .corp-info-columns {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------
   10. PREMIUM WEB ANIMATIONS
-------------------------------------------------- */

/* Load Animations (Header & Hero) */
@keyframes headerFadeIn {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }

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

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

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

@keyframes mapPulse {
  0% {
    opacity: 0.04;
  }

  50% {
    opacity: 0.07;
  }

  100% {
    opacity: 0.04;
  }
}

/* Apply instant load animations on page ready */
.main-header {
  opacity: 0;
  animation: headerFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@media (max-width: 768px) {
  .main-header {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.hero-eyebrow {
  opacity: 0;
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.hero-title {
  opacity: 0;
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
}

.hero-divider {
  opacity: 0;
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.hero-desc {
  opacity: 0;
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
}

.hero-buttons {
  opacity: 0;
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}

.hero-map-overlay {
  animation: mapPulse 8s ease-in-out infinite;
}

/* Scroll-triggered animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered Delay for child grids (Features strip, activity cards, approach list) */
.features-container .feature-col:nth-child(1) {
  transition-delay: 0.05s;
}

.features-container .feature-col:nth-child(2) {
  transition-delay: 0.15s;
}

.features-container .feature-col:nth-child(3) {
  transition-delay: 0.25s;
}

.features-container .feature-col:nth-child(4) {
  transition-delay: 0.35s;
}

.features-container .feature-col:nth-child(5) {
  transition-delay: 0.45s;
}

.features-container .feature-col:nth-child(6) {
  transition-delay: 0.55s;
}

.activity-grid .activity-card:nth-child(1) {
  transition-delay: 0.05s;
}

.activity-grid .activity-card:nth-child(2) {
  transition-delay: 0.15s;
}

.activity-grid .activity-card:nth-child(3) {
  transition-delay: 0.25s;
}

.activity-grid .activity-card:nth-child(4) {
  transition-delay: 0.05s;
}

/* Row 2 staggers */
.activity-grid .activity-card:nth-child(5) {
  transition-delay: 0.15s;
}

.activity-grid .activity-card:nth-child(6) {
  transition-delay: 0.25s;
}

.approach-right .approach-block:nth-child(1) {
  transition-delay: 0.05s;
}

.approach-right .approach-block:nth-child(2) {
  transition-delay: 0.15s;
}

.approach-right .approach-block:nth-child(3) {
  transition-delay: 0.25s;
}

/* Activity Card Hover Zoom & Gold Glow Details */
.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(184, 134, 11, 0.12);
  /* Faint gold shadow */
}

/* --------------------------------------------------
   11. ABOUT US PAGE STYLES
-------------------------------------------------- */

/* Hero Section */
.about-hero {
  position: relative;
  min-height: 520px;
  background-color: #050B12;
  background-image: url('../images/about-hero-bg.jpg');
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 50% calc(100% - 85px);
  display: flex;
  align-items: center;
  padding-top: 120px;
  /* Offset header height */
  padding-bottom: 80px;
  overflow: hidden;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #050B12 0%, #050B12 48%, rgba(5, 11, 18, 0.4) 100%);
  z-index: 1;
}

.about-hero-container {
  position: relative;
  z-index: 2;
}

.about-hero-content {
  max-width: 600px;
  text-align: left;
}

.about-hero-eyebrow {
  display: block;
  font-family: var(--font-headings);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.about-hero-title {
  font-family: var(--font-primary);
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.about-hero-divider {
  width: 48px;
  height: 2px;
  background-color: var(--color-gold);
  margin-bottom: 24px;
}

.about-hero-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.about-hero-desc p {
  margin-bottom: 14px;
}

.about-hero-desc p:last-child {
  margin-bottom: 0;
}

.about-hero-buttons {
  display: flex;
}

/* 3 Column Intro Section */
.about-intro-section {
  background-color: var(--color-white);
  padding: 70px 0;
}

.about-intro-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.about-intro-col {
  padding: 0;
}

.about-intro-col:not(:last-child) {
  border-right: 1px solid var(--color-border-light);
  padding-right: 50px;
}

.about-intro-icon-wrapper {
  color: var(--color-gold);
  margin-bottom: 20px;
}

.about-intro-icon-wrapper i {
  width: 40px;
  height: 40px;
  stroke-width: 1.2;
}

.about-intro-col-title {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.about-intro-title-line {
  width: 28px;
  height: 1.5px;
  background-color: var(--color-gold);
  margin-bottom: 20px;
}

.about-intro-col-text p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}

.about-intro-col-text p:last-child {
  margin-bottom: 0;
}

/* What Defines Us Section */
.about-defines-section {
  background-color: #07111C;
  padding: 70px 0;
}

.about-defines-header {
  text-align: center;
  margin-bottom: 45px;
}

.about-defines-section-title {
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.about-defines-card {
  border: 1px solid var(--color-gold-border);
  padding: 40px 24px;
  text-align: center;
  transition: all 0.3s ease;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-defines-card:hover {
  border-color: var(--color-gold);
  background-color: rgba(212, 154, 53, 0.04);
}

.about-card-icon {
  color: var(--color-gold);
  margin-bottom: 20px;
}

.about-card-icon i {
  width: 36px;
  height: 36px;
  stroke-width: 1.2;
}

.about-card-title {
  font-family: var(--font-primary);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.about-card-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--color-text-light);
  opacity: 0.85;
}

/* Company Information Section */
.about-info-section {
  background-color: var(--color-white);
  padding: 75px 0;
}

.about-info-container {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 60px;
  align-items: center;
}

.about-info-title {
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.about-info-table {
  width: 100%;
}

.about-table-row {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border-light);
}

.about-table-row:last-child {
  border-bottom: none;
}

.about-table-cell-icon {
  color: var(--color-gold);
  margin-right: 20px;
  display: flex;
  align-items: center;
}

.about-table-cell-icon i {
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
}

.about-table-cell-label {
  font-family: var(--font-headings);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-dark);
  width: 160px;
  flex-shrink: 0;
}

.about-table-cell-val {
  font-size: 14.5px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.about-info-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.about-info-image {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 0;
  /* Premium sharp corners for the plaque sign */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* CTA Section */
.about-cta-section {
  position: relative;
  background-image: url('../images/about-cta-bg.jpg');
  background-repeat: repeat;
  background-size: auto;
  padding: 70px 0;
  color: var(--color-white);
  overflow: hidden;
}

.about-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 11, 18, 0.88);
  z-index: 1;
}

.about-cta-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about-cta-left {
  max-width: 60%;
  text-align: left;
}

.about-cta-title {
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.about-cta-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text-light);
  opacity: 0.9;
}

.about-cta-right {
  display: flex;
  justify-content: flex-end;
}

.about-cta-buttons {
  display: flex;
  gap: 16px;
}

.footer-about-text {
  font-size: 13.5px;
  color: #D8DEE8;
  opacity: 0.85;
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 300px;
}

/* Load Animations for About Us Hero */
.about-hero-eyebrow {
  opacity: 0;
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.about-hero-title {
  opacity: 0;
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
}

.about-hero-divider {
  opacity: 0;
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.about-hero-desc {
  opacity: 0;
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
}

.about-hero-buttons {
  opacity: 0;
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}

/* --------------------------------------------------
   12. ABOUT RESPONSIVE MEDIA QUERIES
-------------------------------------------------- */
@media (max-width: 991px) {
  .about-hero {
    background-size: cover;
    background-position: center;
  }

  .about-hero-overlay {
    background: rgba(5, 11, 18, 0.85);
  }

  .about-intro-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-intro-col {
    border-right: none !important;
    padding-right: 0 !important;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border-light);
  }

  .about-intro-col:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

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

  .about-info-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-cta-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .about-cta-left {
    max-width: 100%;
  }

  .about-cta-right {
    justify-content: flex-start;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .about-hero-title {
    font-size: 32px;
  }

  .about-defines-grid {
    grid-template-columns: 1fr;
  }

  .about-table-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .about-table-cell-label {
    width: 100%;
  }

  .about-cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .about-cta-buttons .btn {
    width: 100%;
  }
}

/* --------------------------------------------------
   13. AREAS OF ACTIVITY PAGE STYLES
-------------------------------------------------- */

/* Hero Section */
.areas-hero {
  position: relative;
  min-height: 520px;
  background-color: #050B12;
  background-image: url('../images/areas-hero-bg.jpg');
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 50% calc(100% - 85px);
  display: flex;
  align-items: center;
  padding-top: 120px;
  /* Offset header height */
  padding-bottom: 80px;
  overflow: hidden;
}

.areas-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #050B12 0%, #050B12 48%, rgba(5, 11, 18, 0.4) 100%);
  z-index: 1;
}

.areas-hero-container {
  position: relative;
  z-index: 2;
}

.areas-hero-content {
  max-width: 600px;
  text-align: left;
}

.areas-hero-eyebrow {
  display: block;
  font-family: var(--font-headings);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.areas-hero-title {
  font-family: var(--font-primary);
  font-size: 44px;
  line-height: 1.18;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.areas-hero-divider {
  width: 48px;
  height: 2px;
  background-color: var(--color-gold);
  margin-bottom: 24px;
}

.areas-hero-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.areas-hero-desc p {
  margin-bottom: 14px;
}

.areas-hero-desc p:last-child {
  margin-bottom: 0;
}

.areas-hero-buttons {
  display: flex;
  gap: 16px;
}

/* Intro Section */
.areas-intro-section {
  background-color: var(--color-white);
  padding: 75px 0 40px;
}

.areas-intro-container {
  text-align: left;
}

.areas-intro-eyebrow {
  display: block;
  font-family: var(--font-headings);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.areas-intro-title {
  font-family: var(--font-primary);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.3;
  margin-bottom: 16px;
}

.areas-intro-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text-muted);
}

/* Activity Cards Grid */
.areas-grid-section {
  background-color: var(--color-white);
  padding: 0 0 80px;
}

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

.areas-activity-card {
  position: relative;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--color-gold-border);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 28px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.areas-activity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(184, 134, 11, 0.15);
  border-color: var(--color-gold);
}

.areas-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(5, 11, 18, 0.4) 0%, rgba(5, 11, 18, 0.8) 50%, rgba(5, 11, 18, 0.95) 100%);
  z-index: 1;
}

.areas-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.areas-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(5, 11, 18, 0.7);
  border: 1px solid var(--color-gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  margin-bottom: 24px;
  align-self: flex-start;
}

.areas-card-icon i {
  width: 22px;
  height: 22px;
  stroke-width: 1.2;
}

.areas-card-title {
  font-family: var(--font-primary);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.areas-card-text p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--color-text-light);
  opacity: 0.85;
  margin-bottom: 8px;
}

.areas-card-text p:last-child {
  margin-bottom: 0;
}

/* Operating Principles */
.areas-principles-section {
  background-color: var(--color-light-gray-bg);
  padding: 75px 0;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.areas-principles-header {
  text-align: center;
  margin-bottom: 45px;
}

.areas-principles-eyebrow {
  display: block;
  font-family: var(--font-headings);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.areas-principles-title {
  font-family: var(--font-primary);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-text-dark);
}

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

.areas-principles-col {
  background-color: var(--color-white);
  border: 1px solid var(--color-gold-border);
  padding: 40px 28px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.areas-principles-col:hover {
  border-color: var(--color-gold);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.areas-principles-icon-wrapper {
  color: var(--color-gold);
  margin-bottom: 20px;
}

.areas-principles-icon-wrapper i {
  width: 36px;
  height: 36px;
  stroke-width: 1.2;
}

.areas-principle-title {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-dark);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.areas-principle-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* Broad Platform Section */
.areas-platform-section {
  position: relative;
  background-color: #050B12;
  padding: 80px 0;
  overflow: hidden;
  color: var(--color-white);
}

.areas-platform-overlay-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/areas-platform-bg.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: invert(1) brightness(1.2) opacity(0.04);
  z-index: 1;
}

.areas-platform-container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.areas-platform-title {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.areas-platform-desc {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--color-text-light);
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto 50px;
}

.areas-platform-icon-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px 0;
}

.areas-platform-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.areas-platform-item i {
  color: var(--color-gold);
  width: 28px;
  height: 28px;
  stroke-width: 1.2;
}

.areas-platform-item span {
  font-family: var(--font-headings);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-white);
  opacity: 0.95;
}

.areas-platform-sep {
  width: 1px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.08);
}

/* Corporate Communication Strip */
.areas-comm-section {
  background-color: var(--color-white);
  padding: 55px 0;
}

.areas-comm-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.areas-comm-left {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 75%;
}

.areas-comm-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--color-gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
}

.areas-comm-icon i {
  width: 30px;
  height: 30px;
  stroke-width: 1.2;
}

.areas-comm-details {
  text-align: left;
}

.areas-comm-title {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.areas-comm-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.areas-comm-right {
  flex-shrink: 0;
}

/* Animations for Areas Hero */
.areas-hero-eyebrow {
  opacity: 0;
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.areas-hero-title {
  opacity: 0;
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
}

.areas-hero-divider {
  opacity: 0;
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.areas-hero-desc {
  opacity: 0;
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
}

.areas-hero-buttons {
  opacity: 0;
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}

/* Responsive Rules for Areas */
@media (max-width: 991px) {
  .areas-hero {
    background-size: cover;
    background-position: center;
  }

  .areas-hero-overlay {
    background: rgba(5, 11, 18, 0.85);
  }

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

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

  .areas-platform-icon-strip {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .areas-platform-item {
    flex: 0 0 30%;
  }

  .areas-platform-sep {
    display: none;
  }

  .areas-comm-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .areas-comm-left {
    max-width: 100%;
  }

  .areas-comm-right {
    width: 100%;
  }

  .areas-comm-right .btn {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .areas-hero-title {
    font-size: 32px;
  }

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

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

  .areas-platform-item {
    flex: 0 0 45%;
  }

  .areas-comm-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* --------------------------------------------------
   14. OUR APPROACH PAGE STYLES
-------------------------------------------------- */

/* Hero Section */
.approach-hero {
  position: relative;
  min-height: 520px;
  background-color: #050B12;
  background-image: url('../images/approach-hero-bg.jpg');
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 50% calc(100% - 85px);
  display: flex;
  align-items: center;
  padding-top: 120px;
  /* Offset header height */
  padding-bottom: 80px;
  overflow: hidden;
}

.approach-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #050B12 0%, #050B12 48%, rgba(5, 11, 18, 0.4) 100%);
  z-index: 1;
}

.approach-hero-container {
  position: relative;
  z-index: 2;
}

.approach-hero-content {
  max-width: 650px;
  text-align: left;
}

.approach-hero-eyebrow {
  display: block;
  font-family: var(--font-headings);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.approach-hero-title {
  font-family: var(--font-primary);
  font-size: 44px;
  line-height: 1.18;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.approach-hero-divider {
  width: 48px;
  height: 2px;
  background-color: var(--color-gold);
  margin-bottom: 24px;
}

.approach-hero-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.approach-hero-desc p {
  margin-bottom: 14px;
}

.approach-hero-desc p:last-child {
  margin-bottom: 0;
}

.approach-hero-buttons {
  display: flex;
  gap: 16px;
}

/* How We Operate Section */
.approach-operate-section {
  background-color: #f2f2f2;
  padding: 85px 0;
  overflow: hidden;
}

.approach-operate-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.approach-operate-left {
  text-align: left;
}

.approach-operate-eyebrow {
  display: block;
  font-family: var(--font-headings);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.approach-operate-title {
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.25;
  margin-bottom: 20px;
}

.approach-operate-text p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}

.approach-operate-text p:last-child {
  margin-bottom: 0;
}

.approach-operate-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.approach-map-image {
  width: 100%;
  max-width: 460px;
  height: auto;
  opacity: 0.9;
}

/* Four Method Cards Section */
.approach-method-section {
  background-color: #f2f2f2;
  padding: 0 0 85px 0;
}

.approach-method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background-color: #050B12;
  /* Dark navy background */
  border: 1px solid rgba(201, 144, 46, 0.35);
  /* Thin gold border */
  border-radius: 8px;
  /* Rounded corners */
  overflow: hidden;
}

.approach-method-card {
  padding: 60px 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 440px;
  transition: all 0.3s ease;
}

.approach-method-card:hover {
  background-color: rgba(255, 255, 255, 0.02);
}

.approach-method-card:last-child {
  border-right: none;
}

.approach-method-card-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.approach-method-number {
  font-family: var(--font-headings);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-gold);
  opacity: 0.9;
}

.approach-method-icon {
  color: var(--color-gold);
  display: flex;
  align-items: center;
}

.approach-method-icon i {
  width: 42px;
  height: 42px;
  stroke-width: 1.2;
}

.approach-method-title {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.08em;
  margin-bottom: 25px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

.approach-method-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 1px;
  background-color: var(--color-gold);
}

.approach-method-text p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-text-light);
  opacity: 0.85;
  margin-bottom: 12px;
}

.approach-method-text p:last-child {
  margin-bottom: 0;
}

/* Professional Standards Section */
.approach-standards-section {
  background-color: var(--color-white);
  padding: 85px 0;
}

.approach-standards-container {
  display: flex;
  flex-direction: column;
  gap: 55px;
}

.approach-standards-left {
  max-width: 900px;
  text-align: left;
}

.approach-standards-eyebrow {
  display: block;
  font-family: var(--font-headings);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.approach-standards-title {
  font-family: var(--font-primary);
  font-size: 30px;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

.approach-standards-text p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  padding: 45px 0;
}

.standards-block {
  padding: 0 35px;
  border-right: 1px solid var(--color-border-light);
  text-align: left;
}

.standards-block:last-child {
  border-right: none;
}

.standards-block:first-child {
  padding-left: 0;
}

.standards-block-icon {
  color: var(--color-gold);
  margin-bottom: 18px;
}

.standards-block-icon i {
  width: 32px;
  height: 32px;
  stroke-width: 1.2;
}

.standards-block-title {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.standards-block-text {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--color-text-muted);
}

/* Our Working Principles Section */
.approach-principles-section {
  position: relative;
  background-color: #050B12;
  padding: 85px 0;
  color: var(--color-white);
  overflow: hidden;
}

.approach-principles-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 11, 18, 0.92);
  z-index: 1;
}

.approach-principles-container {
  position: relative;
  z-index: 2;
}

.principles-header {
  text-align: left;
  margin-bottom: 50px;
}

.principles-eyebrow {
  display: inline-block;
  font-family: var(--font-headings);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  position: relative;
  padding-bottom: 12px;
}

.principles-eyebrow::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background-color: var(--color-gold);
}

.principles-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.principles-col {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

.principles-col-icon {
  color: var(--color-gold);
  margin-bottom: 20px;
}

.principles-col-icon i {
  width: 48px;
  height: 48px;
  stroke-width: 1.0;
}

.principles-col-title {
  font-family: var(--font-primary);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.principles-col-text {
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
}

.principles-sep {
  width: 1px;
  height: 120px;
  background-color: rgba(255, 255, 255, 0.08);
  align-self: center;
}

/* Our Corporate Direction Section */
.approach-direction-section {
  background-color: #f2f2f2;
  padding: 0;
  overflow: hidden;
}

.approach-direction-wrapper {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
}

.approach-direction-left {
  flex: 1.12;
  padding: 70px 60px 70px calc((100vw - 1200px) / 2 + 24px);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #f2f2f2;
}

@media (max-width: 1200px) {
  .approach-direction-left {
    padding: 60px 40px 60px 24px;
  }
}

.approach-direction-eyebrow {
  display: block;
  font-family: var(--font-headings);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.approach-direction-title {
  font-family: var(--font-primary);
  font-size: 30px;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.25;
  margin-bottom: 20px;
}

.approach-direction-divider {
  width: 48px;
  height: 2px;
  background-color: var(--color-gold);
  margin-bottom: 25px;
}

.approach-direction-text p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}

.approach-direction-text p:last-child {
  margin-bottom: 0;
}

.approach-direction-right {
  flex: 0.88;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background-color: #050B12;
}

.approach-direction-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Official Corporate Communication CTA */
.approach-cta-section {
  background-color: #07111C;
  padding: 65px 0;
  color: var(--color-white);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.approach-cta-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.approach-cta-left {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 75%;
}

.approach-cta-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--color-gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
}

.approach-cta-icon i {
  width: 30px;
  height: 30px;
  stroke-width: 1.2;
}

.approach-cta-details {
  text-align: left;
}

.approach-cta-title {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.approach-cta-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--color-text-light);
  opacity: 0.9;
}

.approach-cta-right {
  flex-shrink: 0;
}

/* Animations for Approach Hero */
.approach-hero-eyebrow {
  opacity: 0;
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.approach-hero-title {
  opacity: 0;
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
}

.approach-hero-divider {
  opacity: 0;
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.approach-hero-desc {
  opacity: 0;
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
}

.approach-hero-buttons {
  opacity: 0;
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}

/* Responsive Rules for Our Approach */
@media (max-width: 991px) {
  .approach-hero {
    background-size: cover;
    background-position: center;
  }

  .approach-hero-overlay {
    background: rgba(5, 11, 18, 0.85);
  }

  .approach-operate-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .approach-operate-right {
    justify-content: center;
  }

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

  .approach-method-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    min-height: auto;
  }

  .approach-method-grid .approach-method-card:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .approach-method-grid .approach-method-card:nth-last-child(-n+2) {
    border-bottom: none;
  }

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

  .standards-block {
    padding: 0 10px;
    border-right: none;
  }

  .principles-grid {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }

  .principles-col {
    flex: 0 0 30%;
  }

  .principles-sep {
    display: none;
  }

  .approach-direction-wrapper {
    flex-direction: column;
  }

  .approach-direction-left {
    padding: 60px 20px;
  }

  .approach-direction-right {
    height: 300px;
    width: 100%;
  }

  .approach-direction-right {
    justify-content: center;
  }

  .approach-cta-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .approach-cta-left {
    max-width: 100%;
  }

  .approach-cta-right {
    width: 100%;
  }

  .approach-cta-right .btn {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .approach-hero-title {
    font-size: 32px;
  }

  .approach-method-grid {
    grid-template-columns: 1fr;
  }

  .approach-method-card {
    border-right: none !important;
  }

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

  .standards-block {
    padding-left: 0;
  }

  .principles-col {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }

  .approach-cta-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ==================================================
   CORPORATE INFORMATION PAGE
   ================================================== */

/* ---- Hero Section ---- */
.ci-hero {
  position: relative;
  min-height: 540px;
  background-image: url('../images/corop-hero.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding-top: 85px;
  padding-bottom: 60px;
  overflow: hidden;
}

.ci-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 11, 18, 0.94) 45%, rgba(5, 11, 18, 0.55) 100%);
  z-index: 1;
}

.ci-hero-container {
  position: relative;
  z-index: 2;
  display: block;
  align-items: flex-start;
}

.ci-hero-left {
  max-width: 620px;
  text-align: left;
}

.ci-hero-eyebrow {
  display: block;
  font-family: var(--font-headings);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 14px;
}

.ci-hero-title {
  font-family: var(--font-primary);
  font-size: 44px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 22px;
}

.ci-hero-divider {
  width: 48px;
  height: 3px;
  background-color: var(--color-gold);
  margin-bottom: 25px;
}

.ci-hero-desc p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 13px;
}

.ci-hero-desc p:last-child {
  margin-bottom: 0;
}

.ci-hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

/* Company sign card on right */
.ci-hero-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.ci-sign-card {
  background: rgba(212, 154, 53, 0.12);
  border: 1px solid var(--color-gold-border);
  border-radius: 4px;
  padding: 50px 45px;
  text-align: center;
  min-width: 260px;
}

.ci-sign-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.ci-sign-icon {
  color: var(--color-gold);
  margin-bottom: 4px;
}

.ci-sign-icon i {
  width: 48px;
  height: 48px;
  stroke-width: 1.2;
}

.ci-sign-title {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-align: center;
}

.ci-sign-sub {
  font-family: var(--font-headings);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--color-gold);
  text-align: center;
  line-height: 1.6;
  border-top: 1px solid var(--color-gold-border);
  padding-top: 14px;
  width: 100%;
}

/* ---- Shared CI Eyebrow ---- */
.ci-section-eyebrow {
  display: block;
  font-family: var(--font-headings);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.ci-section-eyebrow.light {
  color: var(--color-gold);
}

/* ---- Section 3: Details + Profile ---- */
.ci-details-section {
  background-color: var(--color-white);
  padding: 85px 0;
}

.ci-details-container {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 60px;
  align-items: start;
}

.ci-section-title {
  font-family: var(--font-primary);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.25;
  margin-bottom: 28px;
}

/* Company Info Table */
.ci-info-table {
  border: 1px solid var(--color-border-light);
  border-radius: 4px;
  overflow: hidden;
}

.ci-info-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--color-border-light);
  padding: 14px 18px;
  align-items: start;
}

.ci-info-row-last {
  border-bottom: none;
}

.ci-info-icon {
  color: var(--color-gold);
  padding-top: 2px;
}

.ci-info-icon i {
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
}

.ci-info-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ci-info-label {
  font-family: var(--font-headings);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--color-text-dark);
  letter-spacing: 0.02em;
}

.ci-info-value {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.ci-status-active {
  color: #16a34a;
  font-weight: 600;
}

/* Vertical separator */
.ci-details-sep {
  width: 1px;
  background: var(--color-border-light);
  align-self: stretch;
}

/* Corporate Profile right */
.ci-profile-title {
  font-family: var(--font-primary);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.25;
  margin-bottom: 18px;
}

.ci-profile-divider {
  width: 42px;
  height: 2px;
  background-color: var(--color-gold);
  margin-bottom: 22px;
}

.ci-profile-text p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}

.ci-profile-text p:last-child {
  margin-bottom: 0;
}

/* ---- Section 4: Business Focus Cards ---- */
.ci-focus-section {
  background-color: #07111C;
  padding: 70px 0 80px;
}

.ci-focus-header {
  margin-bottom: 44px;
}

.ci-focus-title {
  font-family: var(--font-primary);
  font-size: 34px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
  margin-top: 10px;
}

/* 6 individual bordered cards in a row */
.ci-focus-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.ci-focus-card {
  padding: 36px 20px 32px;
  border: 1px solid rgba(212, 154, 53, 0.35);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: border-color 0.3s ease, background 0.3s ease;
  background: transparent;
}

.ci-focus-card:hover {
  border-color: var(--color-gold);
  background: rgba(212, 154, 53, 0.05);
}

.ci-focus-card-icon {
  color: var(--color-gold);
  margin-bottom: 22px;
}

.ci-focus-card-icon i {
  width: 48px;
  height: 48px;
  stroke-width: 1.2;
}

.ci-focus-card-title {
  font-family: var(--font-primary);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.01em;
  text-transform: none;
  margin-bottom: 14px;
  line-height: 1.4;
}

.ci-focus-card-text {
  font-size: 12.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.58);
}

/* ---- Section 5: Corporate Standards + Reference ---- */
.ci-standards-section {
  background-color: var(--color-white);
  padding: 85px 0;
}

.ci-standards-container {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 60px;
  align-items: start;
}

.ci-standards-title {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.25;
  margin-bottom: 32px;
}

/* 4 small standard cards in a 2x2 grid */
.ci-standards-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.ci-std-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--color-border-light);
  border-radius: 4px;
  transition: border-color 0.3s;
}

.ci-std-card:hover {
  border-color: var(--color-gold-border);
}

.ci-std-icon {
  color: var(--color-gold);
}

.ci-std-icon i {
  width: 24px;
  height: 24px;
  stroke-width: 1.5;
}

.ci-std-title {
  font-family: var(--font-primary);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--color-text-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ci-std-text {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--color-text-muted);
}

/* Vertical separator */
.ci-standards-sep {
  width: 1px;
  background: var(--color-border-light);
  align-self: stretch;
}

/* Official Company Reference right */
.ci-ref-intro {
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin-bottom: 26px;
}

.ci-ref-table {
  border: 1px solid var(--color-border-light);
  border-radius: 4px;
  overflow: hidden;
}

.ci-ref-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--color-border-light);
  padding: 13px 16px;
  align-items: start;
}

.ci-ref-row-last {
  border-bottom: none;
}

.ci-ref-icon {
  color: var(--color-gold);
  padding-top: 2px;
}

.ci-ref-icon i {
  width: 16px;
  height: 16px;
  stroke-width: 1.5;
}

.ci-ref-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ci-ref-label {
  font-family: var(--font-headings);
  font-size: 10.5px;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ci-ref-value {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-text-dark);
  line-height: 1.4;
}

/* ---- Section 6: CTA Strip ---- */
.ci-cta-section {
  position: relative;
  background-color: #06101A;
  padding: 42px 0;
  overflow: hidden;
}

/* SVG globe outline watermark on far right */
.ci-cta-globe-watermark {
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  height: 200px;
  color: rgba(212, 154, 53, 0.18);
  pointer-events: none;
}

.ci-cta-globe-watermark svg {
  width: 100%;
  height: 100%;
}

.ci-cta-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 60px;
}

.ci-cta-content {
  flex: 1;
}

.ci-cta-eyebrow {
  display: block;
  font-family: var(--font-headings);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.ci-cta-title {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 10px;
  line-height: 1.2;
}

.ci-cta-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.58);
  max-width: 480px;
}

.ci-cta-right {
  flex-shrink: 0;
}

.ci-cta-btn {
  height: 50px;
  padding: 0 36px;
  font-size: 12px;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .ci-hero-container {
    grid-template-columns: 1fr;
  }

  .ci-hero-right {
    display: none;
  }

  .ci-details-container {
    grid-template-columns: 1fr;
  }

  .ci-details-sep {
    display: none;
  }

  .ci-standards-container {
    grid-template-columns: 1fr;
  }

  .ci-standards-sep {
    display: none;
  }

  .ci-focus-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ci-cta-container {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .ci-hero-title {
    font-size: 28px;
  }

  .ci-hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

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

  .ci-standards-cards {
    grid-template-columns: 1fr;
  }

  .ci-cta-icon {
    display: none;
  }
}

@media (max-width: 480px) {
  .ci-focus-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================================================
   CONTACT PAGE
   ================================================== */

/* ---- 2. Hero ---- */
.contact-hero {
  position: relative;
  min-height: 520px;
  background-image: url('../images/corop-hero.png');
  background-size: cover;
  background-position: center top;
  display: flex;
  align-items: center;
  padding-top: 85px;
  padding-bottom: 60px;
  overflow: hidden;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 11, 18, 0.95) 42%, rgba(5, 11, 18, 0.55) 100%);
  z-index: 1;
}

.contact-hero-container {
  position: relative;
  z-index: 2;
  display: block;
}

.contact-hero-left {
  max-width: 620px;
  text-align: left;
}

.contact-eyebrow {
  display: block;
  font-family: var(--font-headings);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 14px;
}

.contact-hero-title {
  font-family: var(--font-primary);
  font-size: 52px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.12;
  margin-bottom: 22px;
}

.contact-hero-divider {
  width: 44px;
  height: 3px;
  background-color: var(--color-gold);
  margin-bottom: 26px;
}

.contact-hero-desc p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 12px;
  max-width: 420px;
}

.contact-hero-desc p:last-child {
  margin-bottom: 0;
}

.contact-hero-left .btn {
  margin-top: 28px;
}

/* Sign card right */
.contact-hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-hero-sign {
  border: 1px solid rgba(212, 154, 53, 0.3);
  border-radius: 4px;
  padding: 48px 40px;
  text-align: center;
  background: rgba(5, 11, 18, 0.4);
  backdrop-filter: blur(4px);
}

.contact-sign-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.contact-sign-icon {
  color: var(--color-gold);
}

.contact-sign-icon i {
  width: 52px;
  height: 52px;
  stroke-width: 1.2;
}

.contact-sign-title {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
}

/* ---- 3. Contact Info 3-Column Section ---- */
.contact-info-section {
  background-color: var(--color-white);
  padding: 80px 0;
  border-bottom: 1px solid var(--color-border-light);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-col-eyebrow {
  display: block;
  font-family: var(--font-headings);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.contact-col-title {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.25;
  margin-bottom: 24px;
}

/* Contact Detail Box (Col 1) */
.contact-detail-box {
  border: 1px solid var(--color-border-light);
  border-radius: 4px;
  overflow: hidden;
}

.contact-detail-row {
  display: grid;
  grid-template-columns: 46px 1fr;
  border-bottom: 1px solid var(--color-border-light);
  padding: 14px 16px;
  align-items: center;
  transition: background 0.2s;
}

.contact-detail-row:hover {
  background: #fafafa;
}

.contact-detail-row-last {
  border-bottom: none;
}

.contact-detail-icon {
  color: var(--color-gold);
}

.contact-detail-icon i {
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
}

.contact-detail-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-detail-label {
  font-family: var(--font-headings);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-text-dark);
  text-transform: uppercase;
}

.contact-detail-value {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-detail-value:hover {
  color: var(--color-gold);
}

/* Formal Communication text (Col 2) */
.contact-formal-text p {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}

.contact-formal-text p:last-child {
  margin-bottom: 0;
}

/* Company Reference Box (Col 3) */
.contact-ref-box {
  border: 1px solid var(--color-border-light);
  border-radius: 4px;
  overflow: hidden;
}

.contact-ref-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  border-bottom: 1px solid var(--color-border-light);
  padding: 13px 16px;
  align-items: start;
  transition: background 0.2s;
}

.contact-ref-row:hover {
  background: #fafafa;
}

.contact-ref-row-last {
  border-bottom: none;
}

.contact-ref-icon {
  color: var(--color-gold);
  padding-top: 2px;
}

.contact-ref-icon i {
  width: 16px;
  height: 16px;
  stroke-width: 1.5;
}

.contact-ref-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-ref-label {
  font-family: var(--font-headings);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.contact-ref-value {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-dark);
  line-height: 1.4;
}

/* ---- 4. Communication Standards ---- */
.contact-standards-section {
  background-color: #07111C;
  padding: 75px 0;
}

.contact-standards-header {
  margin-bottom: 46px;
}

.contact-eyebrow-light {
  display: block;
  font-family: var(--font-headings);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.contact-standards-title {
  font-family: var(--font-primary);
  font-size: 30px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
  margin-top: 8px;
}

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

.contact-std-card {
  border: 1px solid rgba(212, 154, 53, 0.3);
  border-radius: 4px;
  padding: 38px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.contact-std-card:hover {
  border-color: var(--color-gold);
  background: rgba(212, 154, 53, 0.04);
}

.contact-std-icon {
  color: var(--color-gold);
  margin-bottom: 22px;
}

.contact-std-icon i {
  width: 46px;
  height: 46px;
  stroke-width: 1.2;
}

.contact-std-title {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.contact-std-text {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.58);
}

/* ---- 5. Send a Message Form Section ---- */
.contact-form-section {
  background-color: var(--color-white);
  padding: 85px 0;
  position: relative;
}

.contact-form-container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
}

.contact-form-left {
  position: relative;
}

.contact-form-heading {
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.2;
  margin-top: 10px;
  margin-bottom: 18px;
}

.contact-form-divider {
  width: 44px;
  height: 3px;
  background-color: var(--color-gold);
  margin-bottom: 22px;
}

.contact-form-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* Globe watermark behind left text */
.contact-form-globe {
  position: absolute;
  bottom: -40px;
  left: -30px;
  width: 260px;
  height: 260px;
  color: rgba(212, 154, 53, 0.08);
  pointer-events: none;
  z-index: 0;
}

.contact-form-globe svg {
  width: 100%;
  height: 100%;
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group-full {
  grid-column: 1 / -1 !important;
  width: 100%;
}

.form-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

/* Fix for Contact Form 7 auto-wrapping spans */
.form-input-wrap .wpcf7-form-control-wrap {
  width: 100%;
  display: block;
}

.form-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  stroke-width: 1.5;
  color: var(--color-gold);
  pointer-events: none;
  z-index: 1;
}

.form-icon-top {
  top: 18px;
  transform: none;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px 13px 42px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--color-text-dark);
  background: var(--color-white);
  border: 1px solid #DDE1E7;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.25s ease;
  resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #A0A8B4;
  font-size: 13px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-gold);
  background: #FFFDF8;
}

.contact-form textarea {
  height: 155px;
  padding-top: 14px;
  align-self: flex-start;
}

.form-textarea-wrap {
  align-items: flex-start;
}

.form-submit-row {
  margin-top: 6px;
}

.contact-submit-btn {
  width: 100%;
  height: 52px;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  justify-content: center;
}

/* ---- 6. Official Communication Channels Strip ---- */
.contact-channels-section {
  background-color: #06101A;
  padding: 0;
  overflow: hidden;
}

.contact-channels-container {
  display: flex;
  align-items: stretch;
  min-height: 130px;
}

/* Left: Square envelope icon box */
.contact-channels-icon-box {
  flex-shrink: 0;
  width: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 154, 53, 0.35);
  border-top: none;
  border-bottom: none;
  border-left: none;
  color: var(--color-gold);
}

.contact-channels-icon-box i {
  width: 48px;
  height: 48px;
  stroke-width: 1.2;
}

/* Vertical gold divider */
.contact-channels-divider {
  width: 1px;
  background: rgba(212, 154, 53, 0.3);
  flex-shrink: 0;
  margin: 24px 0;
}

/* Centre: text */
.contact-channels-content {
  flex: 1;
  padding: 32px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-channels-title {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.contact-channels-text {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.58);
  max-width: 560px;
}

/* Right: network map image */
.contact-channels-map {
  flex-shrink: 0;
  width: 340px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.contact-channels-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.9;
}


/* ---- Contact Page Responsive ---- */
@media (max-width: 1100px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .contact-form-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-hero-container {
    grid-template-columns: 1fr;
  }

  .contact-hero-right {
    display: none;
  }
}

@media (max-width: 768px) {
  .contact-hero-title {
    font-size: 34px;
  }

  .contact-standards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-channels-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 20px;
    padding: 40px 20px 20px;
  }

  .contact-channels-icon-box {
    width: auto;
    border: none;
    justify-content: center;
  }

  .contact-channels-divider {
    display: none;
  }

  .contact-channels-content {
    padding: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .contact-standards-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero-title {
    font-size: 28px;
  }
}

/* ==========================================================================
   Single Activity Template
   ========================================================================== */

.single-activity-hero {
  position: relative;
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 0 80px;
  overflow: hidden;
}

.single-activity-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0, 25, 50, 0.95) 0%, rgba(0, 25, 50, 0.7) 100%);
  z-index: 1;
}

.single-activity-hero .container {
  position: relative;
  z-index: 2;
}

.single-activity-eyebrow {
  display: block;
  font-family: var(--font-headings);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.single-activity-title {
  font-family: var(--font-primary);
  font-size: 42px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.single-activity-content-section {
  padding: 80px 0;
  background-color: #f2f2f2;
}

.single-activity-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.single-activity-main {
  background-color: #ffffff;
  padding: 50px;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 25, 50, 0.03);
}

.single-activity-main h2 {
  font-family: var(--font-primary);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 24px;
}

.single-activity-main p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 20px;
}

.single-activity-main ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.single-activity-main ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text);
}

.single-activity-main ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 2px;
  background-color: var(--color-gold);
}

.single-activity-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-widget {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 25, 50, 0.03);
}

.sidebar-widget-title {
  font-family: var(--font-headings);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 25, 50, 0.08);
}

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

.sidebar-nav-list li {
  margin-bottom: 10px;
}

.sidebar-nav-list li:last-child {
  margin-bottom: 0;
}

.sidebar-nav-list a {
  display: flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.sidebar-nav-list a i {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  color: var(--color-gold);
  transition: transform 0.3s ease;
}

.sidebar-nav-list a:hover {
  color: var(--color-primary);
}

.sidebar-nav-list a:hover i {
  transform: translateX(4px);
}

.sidebar-contact-text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .single-activity-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .single-activity-title {
    font-size: 32px;
  }

  .single-activity-main {
    padding: 30px 20px;
  }
}

/* --------------------------------------------------
   LEADERSHIP PAGE STYLES
-------------------------------------------------- */

/* Hero Section */
.leadership-hero-section {
  position: relative;
  min-height: 520px;
  background-image: url('https://cisltdglobal.com/wp-content/uploads/2026/07/ChatGPT-Image-Jul-22-2026-02_37_05-AM.png');
  background-size: cover;
  background-position: center right;
  display: flex;
  align-items: center;
  padding-top: 90px;
  padding-bottom: 70px;
  overflow: hidden;
}

.leadership-hero-section .hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(90deg, #050b12 0%, rgba(5, 11, 18, 0.96) 38%, rgba(5, 11, 18, 0.7) 60%, rgba(5, 11, 18, 0.25) 100%);
  z-index: 1;
}

.leadership-hero-section .hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.leadership-hero-section .hero-content {
  max-width: 580px;
}

.leadership-hero-section .hero-eyebrow {
  display: block;
  font-family: var(--font-headings);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.leadership-hero-section .hero-title {
  font-family: var(--font-headings);
  font-size: 38px;
  line-height: 1.18;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.leadership-hero-section .hero-divider {
  width: 36px;
  height: 2.5px;
  background-color: var(--color-gold);
  margin-bottom: 26px;
}

.leadership-hero-section .hero-desc p {
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 400;
}

/* Overview Section */
.leadership-overview-section {
  position: relative;
  background-color: #edeae5;
  background-image: url('../images/led-gl.jpg');
  background-position: right center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  padding: 70px 0;
  overflow: hidden;
}

.leadership-overview-section .overview-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  gap: 60px;
}

.leadership-overview-section .overview-left {
  flex: 1;
  max-width: 440px;
}

.leadership-overview-section .overview-eyebrow {
  display: block;
  font-family: var(--font-headings);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.leadership-overview-section .overview-title {
  font-family: var(--font-headings);
  font-size: 28px;
  line-height: 1.3;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0;
}

.leadership-overview-section .overview-divider {
  width: 32px;
  height: 2px;
  background-color: var(--color-gold);
  margin-top: 24px;
}

.leadership-overview-section .overview-right {
  flex: 1;
  max-width: 520px;
  color: #333333;
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.65;
  padding-top: 28px;
}

.leadership-overview-section .overview-right p {
  margin-bottom: 22px;
}

.leadership-overview-section .overview-right p:last-child {
  margin-bottom: 0;
}

/* Directors Section */
.directors-section {
  background-color: #050b12;
  padding: 60px 0;
}

.directors-eyebrow {
  display: block;
  font-family: var(--font-headings);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.directors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.director-card {
  display: flex;
  background-color: #06111d;
  border: 1px solid rgba(212, 154, 53, 0.4);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.director-img {
  width: 210px;
  min-width: 210px;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  object-position: center top;
  background-color: #101c2a;
}

.director-info {
  padding: 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.director-name {
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
  font-family: var(--font-headings);
}

.director-title {
  color: var(--color-gold);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.director-title-divider {
  width: 30px;
  height: 1.5px;
  background-color: var(--color-gold);
  margin-bottom: 16px;
}

.director-desc {
  color: #b0b6c2;
  font-family: var(--font-body);
  font-size: 12.5px;
  line-height: 1.55;
  margin-bottom: 12px;
}

.director-desc:last-child {
  margin-bottom: 0;
}

.directors-footer {
  text-align: center;
  color: #6a7180;
  font-family: var(--font-body);
  font-size: 12px;
  font-style: italic;
  margin-top: 36px;
}

/* Principles Section */
.principles-section {
  background-color: #edeae5;
  padding: 55px 0 65px;
  text-align: left;
  border-top: 1px solid #e0dcd5;
  border-bottom: 1px solid #e0dcd5;
}

.principles-eyebrow {
  display: block;
  font-family: var(--font-headings);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: 30px;
  text-transform: uppercase;
}

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

.principle-item {
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.principle-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background-color: #d2cebc;
}

.principle-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
  height: 52px;
}

.principle-title {
  color: #1a1a1a;
  font-family: var(--font-headings);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.principle-text {
  color: #4a4a4a;
  font-family: var(--font-body);
  font-size: 12.5px;
  line-height: 1.5;
  max-width: 230px;
  margin: 0 auto;
}

/* Governance Section */
.governance-section {
  display: flex;
  background-color: #050b12;
  border-top: 1px solid #141c26;
  border-bottom: 1px solid #141c26;
  overflow: hidden;
  align-items: stretch;
}

.governance-image {
  flex: 0 0 42%;
  max-width: 42%;
  position: relative;
}

.governance-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  min-height: 220px;
}

.governance-content-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 40px 60px;
  background-color: #050b12;
}

.governance-content {
  max-width: 600px;
}

.governance-eyebrow {
  display: block;
  font-family: var(--font-headings);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.governance-title {
  color: #ffffff;
  font-family: var(--font-headings);
  font-size: 26px;
  line-height: 1.25;
  font-weight: 500;
  margin-bottom: 0;
}

.governance-divider {
  width: 32px;
  height: 2px;
  background-color: var(--color-gold);
  margin-top: 10px;
  margin-bottom: 16px;
}

.governance-text {
  color: #a5acb8;
  font-family: var(--font-body);
  font-size: 12.5px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.governance-text:last-child {
  margin-bottom: 0;
}

/* Official Comm Section */
.official-comm-section {
  background-color: #edeae5;
  padding: 32px 0;
  border-top: 1px solid #e0dcd5;
  border-bottom: 1px solid #e0dcd5;
}

.comm-banner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.comm-banner-left {
  display: flex;
  align-items: center;
}

.comm-banner-icon {
  width: 56px;
  height: 56px;
  background-color: #050b12;
  border: 1.5px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.comm-divider-line {
  width: 1px;
  height: 42px;
  background-color: #c8c3b6;
  margin: 0 32px;
  flex-shrink: 0;
}

.comm-banner-text {
  max-width: 540px;
}

.comm-banner-title {
  font-family: var(--font-headings);
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.comm-banner-desc {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: #555555;
  line-height: 1.45;
}

.comm-right-group {
  display: flex;
  align-items: center;
}

.comm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  height: 44px;
  padding: 0 28px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  gap: 8px;
  background: linear-gradient(90deg, #A86915 0%, #D49A35 100%);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(168, 105, 21, 0.25);
}

.comm-btn:hover {
  background: linear-gradient(90deg, #965c10 0%, #c48c2b 100%);
  box-shadow: 0 4px 12px rgba(168, 105, 21, 0.35);
  transform: translateY(-1px);
}

.comm-btn i {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

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

/* --------------------------------------------------
   LEADERSHIP PAGE RESPONSIVENESS (MOBILE & TABLET)
-------------------------------------------------- */

@media (max-width: 991px) {
  .leadership-hero-section {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 60px;
    background-position: center;
  }
  
  .leadership-hero-section .hero-title {
    font-size: 32px;
  }

  .leadership-overview-section {
    background-image: none !important;
    padding: 60px 0;
  }

  .leadership-overview-section .overview-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .leadership-overview-section .overview-left,
  .leadership-overview-section .overview-right {
    max-width: 100%;
    width: 100%;
  }

  .leadership-overview-section .overview-right {
    padding-top: 0;
  }

  .directors-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .director-card {
    flex-direction: row;
  }

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

  .principle-item:nth-child(2n)::after {
    display: none !important;
  }

  .governance-section {
    flex-direction: column;
  }

  .governance-image {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .governance-image img {
    height: 350px;
  }

  .governance-content-wrapper {
    padding: 40px 24px;
  }

  .comm-banner-container {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .comm-banner-left {
    flex-direction: column;
    gap: 16px;
  }

  .comm-divider-line {
    display: none !important;
  }

  .comm-right-group {
    flex-direction: column;
    width: 100%;
  }

  .comm-btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 768px) {
  .director-card {
    flex-direction: column;
  }

  .director-img {
    width: 100%;
    min-width: 100%;
    height: 320px;
  }

  .director-info {
    padding: 24px 20px;
  }

  .principles-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .principle-item::after {
    display: none !important;
  }

  .principle-item {
    padding: 0;
  }
}

@media (max-width: 576px) {
  .leadership-hero-section .hero-title {
    font-size: 28px;
  }

  .leadership-overview-section .overview-title {
    font-size: 24px;
  }

  .director-name {
    font-size: 20px;
  }

  .governance-title {
    font-size: 22px;
  }

  .comm-banner-title {
    font-size: 18px;
  }
}

