/* --------------------------------------------------
   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;
}

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;
}

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: 52px; /* Optimized size for 85px header height */
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100%;
}

.nav-link {
  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 {
  color: var(--color-gold);
  opacity: 1;
}

.nav-link.active {
  color: var(--color-gold);
  opacity: 1;
}

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

.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.jpg');
  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('../images/footer-globe.jpg');
  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: 40px;
  }

  /* Nav Menu overlay on mobile */
  .mobile-nav-toggle {
    display: block;
    z-index: 110;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background-color: var(--color-dark-bg);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    transition: right 0.3s ease;
    z-index: 105;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.5);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    font-size: 13px;
  }

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

  .hero-section {
    height: 520px;
    padding-top: 70px;
  }

  .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;
}

.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-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .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 45%;
  }

  .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;
}

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

.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: repeat(2, 1fr); }
  .contact-channels-container { flex-direction: column; text-align: center; gap: 28px; }
  .contact-channels-icon { width: 72px; height: 72px; }
  .form-row { grid-template-columns: 1fr; }
}

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


/* --------------------------------------------------
   ENERGY & INFRASTRUCTURE PAGE
-------------------------------------------------- */

.energy-hero {
  position: relative;
  min-height: 560px;
  background-image: url('https://cisltdglobal.com/wp-content/uploads/2026/07/ChatGPT-Image-Jul-21-2026-11_09_23-PM.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding-top: 85px;
  padding-bottom: 60px;
  overflow: hidden;
}

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

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

.energy-hero-content {
  max-width: 650px;
}

.energy-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;
}

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

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

.energy-hero-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
}

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

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

/* Overview Section */
.energy-overview-section {
  padding: 80px 0;
  background-color: var(--color-white);
}

.energy-overview-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.energy-overview-left {
  padding-right: 20px;
}

.energy-overview-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;
}

.energy-overview-title {
  font-family: var(--font-headings);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-dark-bg);
  margin-bottom: 20px;
}

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

.energy-overview-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.energy-overview-text p {
  margin-bottom: 16px;
}

/* Image Accordion Slices */
.energy-slices-container {
  display: flex;
  height: 380px;
  gap: 4px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.energy-slice {
  flex: 1;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

.energy-slice:hover {
  flex: 1.8;
}

/* Areas Covered */
.energy-areas-section {
  padding: 85px 0;
  background-color: var(--color-dark-section);
  color: var(--color-white);
}

.energy-areas-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: 24px;
}

.energy-areas-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.energy-areas-card {
  background-color: var(--color-dark-card);
  border: 1px solid rgba(212, 154, 53, 0.2);
  padding: 36px 16px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.energy-card-icon-wrap {
  color: var(--color-gold);
  margin-bottom: 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  width: 48px;
}

.energy-card-icon-wrap .custom-svg-icon {
  width: 44px;
  height: 44px;
}

.energy-card-title {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.energy-card-desc {
  font-size: 11.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

/* Sector Discipline & Global Perspective Section */
.energy-discipline-section {
  background-color: #f1f1f1;
  padding: 85px 0;
}

.energy-discipline-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
}

.energy-discipline-left {
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  padding-right: 45px;
}

.energy-discipline-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;
}

.energy-discipline-title {
  font-family: var(--font-headings);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-dark-bg);
  margin-bottom: 20px;
}

.energy-discipline-divider,
.energy-global-divider {
  width: 48px;
  height: 2px;
  background-color: var(--color-gold);
  margin-bottom: 24px;
}

.energy-discipline-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.energy-discipline-card {
  background-color: var(--color-white);
  border: 1px solid #E5E7EB;
  border-radius: 4px;
  padding: 24px 16px 44px 16px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
  position: relative;
}

.energy-discipline-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  border-color: var(--color-gold);
}

.energy-discipline-card-icon {
  color: var(--color-gold);
  margin-bottom: 16px;
  display: inline-flex;
}

.energy-discipline-card-icon .custom-svg-icon-small {
  width: 36px;
  height: 36px;
}

.energy-discipline-card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-dark-bg);
  margin-bottom: 8px;
  line-height: 1.2;
}

.energy-discipline-card-desc {
  font-size: 11px;
  line-height: 1.5;
  color: var(--color-text-muted);
  flex-grow: 1;
}

.energy-discipline-card-arrow {
  position: absolute;
  bottom: 16px;
  right: 16px;
  color: var(--color-gold);
  display: inline-flex;
  transition: transform 0.3s ease;
}

.energy-discipline-card:hover .energy-discipline-card-arrow {
  transform: translateX(4px);
}

.energy-discipline-card-arrow i {
  width: 14px;
  height: 14px;
  stroke-width: 2;
}

/* Global Perspective column */
.energy-global-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 45px;
  position: relative;
  min-height: 380px;
}

.energy-global-content {
  max-width: 58%;
  position: relative;
  z-index: 2;
}

.energy-global-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;
}

.energy-global-title {
  font-family: var(--font-headings);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-dark-bg);
  margin-bottom: 24px;
}

.energy-global-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.energy-global-text p {
  margin-bottom: 16px;
}

.energy-global-globe-wrap {
  position: absolute;
  top: 50%;
  right: calc(-50vw + 600px - 28px);
  transform: translateY(-50%);
  width: 500px;
  height: 115%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
  z-index: 1;
}

.energy-global-globe {
  height: 100%;
  width: auto;
  object-fit: contain;
  opacity: 0.95;
  mix-blend-mode: multiply;
}

/* Horizontal Strip */
.energy-strip-section {
  background-color: #021229;
  background-image: url('../images/rig-blue.jpg');
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
  padding: 50px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.energy-strip-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.energy-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: #ffffff;
  font-family: var(--font-headings);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  flex: 1;
}

.energy-strip-item i,
.energy-strip-item svg,
.energy-strip-item .custom-svg-icon-strip {
  color: var(--color-gold);
  width: 36px;
  height: 36px;
  stroke-width: 1.25;
}

.energy-strip-sep {
  width: 1px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.15);
}

/* Related Areas & Official Corporate Communication */
.energy-related-section {
  padding: 0;
  background-color: var(--color-white);
  overflow: hidden;
}

.energy-related-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
}

.energy-related-left {
  background-color: #fdfdfd;
  padding-top: 85px;
  padding-bottom: 85px;
  padding-right: 48px;
  padding-left: max(28px, calc((100vw - 1200px) / 2 + 28px));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.energy-related-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;
}

.energy-related-title {
  font-family: var(--font-headings);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-dark-bg);
  margin-bottom: 36px;
}

.energy-related-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.energy-related-card {
  background-color: var(--color-white);
  border: 1px solid #E5E7EB;
  border-radius: 4px;
  padding: 24px 16px 44px 16px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
  position: relative;
}

.energy-related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  border-color: var(--color-gold);
}

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

.energy-related-card-icon {
  color: var(--color-gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.energy-related-card-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
}

.energy-related-card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-dark-bg);
  line-height: 1.3;
  margin: 0;
}

.energy-related-card-desc {
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--color-text-muted);
  flex-grow: 1;
  margin: 0;
}

.energy-related-card-arrow {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: inline-flex;
  color: var(--color-gold);
  transition: transform 0.3s ease;
}

.energy-related-card-arrow svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.5;
}

.energy-related-card:hover .energy-related-card-arrow {
  transform: translateX(4px);
}

/* Comm Column */
.energy-comm-right {
  position: relative;
  background-image: url('https://cisltdglobal.com/wp-content/uploads/2026/07/ChatGPT-Image-Jul-22-2026-01_12_54-AM.png');
  background-size: cover;
  background-position: center;
  padding-top: 85px;
  padding-bottom: 85px;
  padding-left: 60px;
  padding-right: max(28px, calc((100vw - 1200px) / 2 + 28px));
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--color-white);
  min-height: 480px;
}

.energy-comm-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #050b12 0%, #050b12 35%, rgba(5, 11, 18, 0.4) 70%, transparent 100%);
  z-index: 1;
}

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

.energy-comm-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;
}

.energy-comm-title {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.energy-comm-text {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 30px;
}

.energy-comm-divider {
  width: 32px;
  height: 2px;
  background-color: var(--color-gold);
  margin-bottom: 24px;
}

.energy-comm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #D49A35 0%, #A3701E 100%);
  border: none;
  border-radius: 4px;
  padding: 14px 28px;
  color: var(--color-white);
  font-family: var(--font-headings);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  width: fit-content;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-decoration: none;
}

.energy-comm-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 154, 53, 0.3);
}

.custom-btn-arrow {
  width: 14px;
  height: 14px;
  stroke-width: 2.5;
}

/* Responsive CSS */
@media (max-width: 1024px) {
  .energy-overview-grid { grid-template-columns: 1fr; gap: 40px; }
  .energy-discipline-grid { grid-template-columns: 1fr; gap: 50px; }
  .energy-discipline-left { border-right: none; padding-right: 0; }
  .energy-global-right { flex-direction: column; padding-left: 0; align-items: stretch; min-height: auto; }
  .energy-global-content { max-width: 100%; }
  .energy-global-globe-wrap { position: relative; top: auto; right: auto; transform: none; width: 100%; height: 240px; justify-content: center; margin-top: 30px; }
  .energy-global-globe { width: auto; height: 100%; }
  .energy-related-grid { grid-template-columns: 1fr; gap: 0; }
  .energy-related-left { padding: 60px 28px; }
  .energy-comm-right { padding: 60px 28px; min-height: auto; }
  .energy-related-cards { grid-template-columns: repeat(2, 1fr); }
  .energy-discipline-cards { grid-template-columns: repeat(2, 1fr); }
  .energy-areas-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .energy-hero-title { font-size: 32px; }
  .energy-areas-grid { grid-template-columns: repeat(2, 1fr); }
  .energy-strip-container { justify-content: center; gap: 30px 10px; }
  .energy-strip-item { flex: none; width: calc(50% - 10px); }
  .energy-strip-sep { display: none; }
}

@media (max-width: 560px) {
  .energy-areas-grid { grid-template-columns: 1fr; }
  .energy-discipline-cards { grid-template-columns: 1fr; }
  .energy-related-cards { grid-template-columns: 1fr; }
  .energy-hero-buttons { flex-direction: column; }
  .energy-slices-container { height: 260px; }
}

/* Real Estate & Development Specific Styles */
.real-estate-hero {
  position: relative;
  min-height: 640px;
  background-color: var(--color-dark-bg);
  background-image: url('https://cisltdglobal.com/wp-content/uploads/2026/07/ChatGPT-Image-Jul-22-2026-01_14_08-AM.png');
  background-size: cover;
  background-position: right center;
  display: flex;
  align-items: center;
  padding: 140px 0 100px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.real-estate-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, 
    #050b12 0%, 
    #050b12 35%, 
    rgba(5, 11, 18, 0.9) 55%, 
    rgba(5, 11, 18, 0) 85%
  );
  z-index: 1;
}

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

.real-estate-hero-content {
  max-width: 680px;
}

.real-estate-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;
}

.real-estate-hero-title {
  font-family: var(--font-headings);
  font-size: 46px;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 22px;
}

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

.real-estate-hero-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 30px;
}

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

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

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

/* Custom button styles to match the reference image exactly */
.btn-real-estate-primary {
  background: #d49a35;
  color: var(--color-white);
  border: 1px solid #d49a35;
}

.btn-real-estate-primary:hover {
  background: #b97920;
  border-color: #b97920;
  box-shadow: 0 4px 15px rgba(212, 154, 53, 0.25);
}

.btn-real-estate-secondary {
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-gold);
}

.btn-real-estate-secondary .custom-btn-arrow {
  color: var(--color-gold);
  stroke: var(--color-gold);
}

.btn-real-estate-secondary:hover {
  background: var(--color-gold);
  color: var(--color-white);
}

.btn-real-estate-secondary:hover .custom-btn-arrow {
  color: var(--color-white);
  stroke: var(--color-white);
}

/* Header contact button outline highlight */
.main-header .btn-outline-gold {
  border-color: var(--color-gold) !important;
  color: var(--color-gold) !important;
  font-weight: 700;
}

.main-header .btn-outline-gold:hover {
  background: var(--color-gold) !important;
  color: var(--color-white) !important;
}

/* Responsive updates for real estate page */
@media (max-width: 1024px) {
  .real-estate-hero-overlay {
    background: linear-gradient(90deg, 
      #050b12 0%, 
      #050b12 50%, 
      rgba(5, 11, 18, 0.95) 70%, 
      rgba(5, 11, 18, 0.4) 100%
    );
  }
}

@media (max-width: 768px) {
  .real-estate-hero-title {
    font-size: 36px;
  }
  .real-estate-hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 60px;
  }
}

@media (max-width: 560px) {
  .real-estate-hero-title {
    font-size: 28px;
  }
  .real-estate-hero-buttons {
    flex-direction: column;
  }
}

.real-estate-slices-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 480px;
  gap: 4px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.energy-slice-col {
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.energy-slice-col:hover {
  filter: brightness(1.05);
  transform: scale(1.02);
}

.real-estate-overview-section {
  background-color: #F7F7F5;
  padding: 90px 0;
}

.real-estate-overview-title {
  font-family: var(--font-headings);
  font-size: 40px;
  font-weight: 600;
  color: #050b12;
  line-height: 1.25;
  margin-bottom: 22px;
}

@media (max-width: 768px) {
  .real-estate-overview-title {
    font-size: 30px;
  }
}

@media (max-width: 560px) {
  .real-estate-slices-container { height: 260px; }
}

/* Areas Covered Card Styles matching the screenshot exactly */
.energy-areas-section {
  background-color: #050b12 !important; /* Deepest navy/black background */
  padding: 90px 0;
}

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

.energy-areas-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr) !important;
  gap: 16px !important;
}

.energy-areas-card {
  background-color: #050b12 !important; /* Match the dark background */
  border: 1px solid var(--color-gold) !important; /* Solid gold border */
  border-radius: 6px !important;
  padding: 36px 16px !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  transition: all 0.3s ease !important;
}

.energy-areas-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 10px 20px rgba(212, 154, 53, 0.15) !important;
}

.energy-areas-card-icon {
  color: var(--color-gold) !important;
  margin-bottom: 24px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.energy-areas-card-icon svg {
  width: 46px !important;
  height: 46px !important;
  stroke: var(--color-gold) !important;
}

.energy-areas-card-title {
  font-family: var(--font-primary) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: var(--color-white) !important;
  line-height: 1.3 !important;
  margin-bottom: 16px !important;
  letter-spacing: 0.02em !important;
}

.energy-areas-card-text {
  font-family: var(--font-body) !important;
  font-size: 12px !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.7) !important; /* Light grey text */
  margin: 0 !important;
}

@media (max-width: 1024px) {
  .energy-areas-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .energy-areas-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 560px) {
  .energy-areas-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Custom titles and card arrow styling for Sector Discipline section */
.real-estate-discipline-title,
.real-estate-global-title {
  font-family: var(--font-headings);
  font-size: 38px !important;
  font-weight: 600 !important;
  color: #050b12 !important;
  line-height: 1.25 !important;
  margin-bottom: 22px !important;
}

.energy-discipline-card-arrow svg,
.custom-arrow-icon {
  width: 14px !important;
  height: 14px !important;
  stroke: var(--color-gold) !important;
  stroke-width: 2.5 !important;
}

@media (max-width: 768px) {
  .real-estate-discipline-title,
  .real-estate-global-title {
    font-size: 28px !important;
  }
}

/* Horizontal Strip specific styles for Real Estate & Development Focus Areas */
.real-estate-strip-section {
  position: relative;
  background-color: #050b12 !important; /* Deep navy */
  padding: 50px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.real-estate-strip-map-overlay {
  position: absolute;
  inset: 0;
  background-image: url('../images/world-map.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: invert(1) sepia(1) saturate(5) hue-rotate(180deg) brightness(0.08) contrast(1.2); /* faint blue map */
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
}

.real-estate-strip-content {
  position: relative;
  z-index: 2;
}

.real-estate-strip-title-container {
  text-align: center;
  margin-bottom: 30px;
}

.real-estate-strip-eyebrow {
  color: var(--color-gold) !important;
  font-family: var(--font-headings);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Related areas section title styled with serif font */
.real-estate-related-title {
  font-family: var(--font-headings);
  font-size: 36px !important;
  font-weight: 600 !important;
  color: #050b12 !important;
  line-height: 1.25 !important;
  margin-bottom: 36px !important;
}

@media (max-width: 768px) {
  .real-estate-related-title {
    font-size: 28px !important;
  }
}

/* International Trade Page Specific Styles */
.trade-hero {
  position: relative;
  min-height: 640px;
  background-color: var(--color-dark-bg);
  background-image: url('https://cisltdglobal.com/wp-content/uploads/2026/07/ChatGPT-Image-Jul-22-2026-01_20_59-AM.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 140px 0 100px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.trade-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, 
    #050b12 0%, 
    #050b12 35%, 
    rgba(5, 11, 18, 0.85) 55%, 
    rgba(5, 11, 18, 0.3) 100%
  );
  z-index: 1;
}

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

.trade-hero-content {
  max-width: 680px;
}

.trade-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;
}

.trade-hero-title {
  font-family: var(--font-headings);
  font-size: 46px;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 22px;
}

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

.trade-hero-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 30px;
}

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

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

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

/* Trade Overview Grid & Cards */
.trade-overview-section {
  background-color: var(--color-white);
  padding: 90px 0;
}

.trade-overview-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: flex-start;
}

.trade-overview-left {
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  padding-right: 45px;
}

.trade-overview-title {
  font-family: var(--font-headings);
  font-size: 40px;
  font-weight: 600;
  color: #050b12;
  line-height: 1.25;
  margin-bottom: 22px;
}

.trade-areas-right-wrapper {
  padding-left: 10px;
}

.trade-areas-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: 24px;
}

.trade-areas-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
}

.trade-areas-card {
  background-color: var(--color-white);
  border: 1px solid #E5E7EB;
  border-radius: 6px;
  padding: 24px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  transition: all 0.3s ease;
}

.trade-areas-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.trade-areas-card-icon {
  color: var(--color-gold);
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
}

.trade-areas-card-icon svg {
  width: 38px;
  height: 38px;
  stroke: var(--color-gold);
}

.trade-areas-card-title {
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 700;
  color: var(--color-dark-bg);
  margin-bottom: 10px;
  line-height: 1.25;
  word-break: break-word;
}

.trade-areas-card-text {
  font-family: var(--font-body);
  font-size: 10.5px;
  line-height: 1.45;
  color: var(--color-text-muted);
  margin: 0;
}

/* Trade Principles Section & Cards */
.trade-principles-section {
  background-color: var(--color-dark-section);
  color: var(--color-white);
  padding: 90px 0;
}

.trade-principles-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: flex-start;
}

.trade-principles-left {
  padding-right: 20px;
}

.trade-principles-title {
  font-family: var(--font-headings);
  font-size: 38px;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.25;
  margin-bottom: 22px;
}

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

.trade-principles-card {
  background-color: #050b12;
  border: 1px solid var(--color-gold-border);
  border-radius: 6px;
  padding: 32px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  transition: all 0.3s ease;
}

.trade-principles-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(212, 154, 53, 0.15);
}

.trade-principles-card-icon {
  color: var(--color-gold);
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.trade-principles-card-icon svg {
  width: 42px;
  height: 42px;
  stroke: var(--color-gold);
}

.trade-principles-card-title {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.trade-principles-card-text {
  font-family: var(--font-body);
  font-size: 11.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Global Perspective Section */
.trade-global-section {
  background-color: #F7F7F5;
  padding: 90px 0;
  overflow: hidden;
}

.trade-global-container {
  display: flex;
  min-height: 420px;
  width: 100%;
}

.trade-global-left-wrapper {
  width: 60%;
  padding-top: 90px;
  padding-bottom: 90px;
  padding-left: max(28px, calc((100vw - 1200px) / 2 + 28px));
  padding-right: 50px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 45px;
  align-items: center;
}

.trade-global-title-col {
  display: flex;
  flex-direction: column;
}

.trade-global-title {
  font-family: var(--font-headings);
  font-size: 38px;
  font-weight: 600;
  color: #050b12;
  line-height: 1.25;
  margin-bottom: 22px;
}

.trade-global-text-col {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.trade-global-text-col p {
  margin-bottom: 16px;
}

.trade-global-text-col p:last-child {
  margin-bottom: 0;
}

.trade-global-right-map {
  width: 40%;
  background-image: url('https://cisltdglobal.com/wp-content/uploads/2026/07/ChatGPT-Image-Jul-22-2026-01_22_22-AM.png');
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 420px;
}

.trade-global-map-fade {
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
  height: 100%;
  background: linear-gradient(90deg, #F7F7F5 0%, rgba(247, 247, 245, 0.85) 30%, transparent 100%);
  z-index: 2;
}

/* Related Areas specific badge */
.trade-activity-focus-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 24px;
}

.trade-activity-focus-badge {
  display: inline-block;
  background-color: #021229;
  color: var(--color-gold);
  font-family: var(--font-headings);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 8px 24px;
  border-radius: 4px;
  text-align: center;
  text-transform: uppercase;
}

/* Responsive styles for Trade page */
@media (max-width: 1024px) {
  .trade-overview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .trade-overview-left {
    border-right: none;
    padding-right: 0;
  }
  .trade-principles-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .trade-principles-left {
    padding-right: 0;
  }
  .trade-global-container {
    flex-direction: column;
    min-height: auto;
  }
  .trade-global-left-wrapper {
    width: 100%;
    padding-left: 28px;
    padding-right: 28px;
    padding-top: 60px;
    padding-bottom: 40px;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .trade-global-right-map {
    width: 100%;
    min-height: 280px;
  }
  .trade-global-map-fade {
    width: 100%;
    height: 100px;
    background: linear-gradient(180deg, #F7F7F5 0%, rgba(247, 247, 245, 0.85) 30%, transparent 100%);
  }
}

@media (max-width: 768px) {
  .trade-hero-title {
    font-size: 36px;
  }
  .trade-hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 60px;
  }
  .trade-areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .trade-principles-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .trade-hero-title {
    font-size: 28px;
  }
  .trade-hero-buttons {
    flex-direction: column;
  }
  .trade-areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trade-principles-cards {
    grid-template-columns: 1fr;
  }
}

/* Related Areas Section on International Trade Page */
.trade-related-section {
  background-color: #F7F7F5;
  padding: 80px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.trade-related-grid {
  display: grid;
  grid-template-columns: 0.85fr 3.15fr;
  gap: 48px;
  align-items: flex-start;
}

.trade-related-left {
  display: flex;
  flex-direction: column;
}

.trade-related-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;
}

.trade-related-title {
  font-family: var(--font-headings);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-dark-bg);
  margin-bottom: 20px;
}

.trade-related-desc {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.trade-related-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trade-related-card {
  background-color: var(--color-white);
  border: 1px solid #E5E7EB;
  border-radius: 6px;
  padding: 30px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  min-height: 280px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.trade-related-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.trade-related-card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 16px;
}

.trade-related-card-icon {
  color: var(--color-gold);
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
}

.trade-related-card-icon svg {
  width: 38px;
  height: 38px;
  stroke: var(--color-gold);
}

.trade-related-card-title {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-dark-bg);
  line-height: 1.25;
}

.trade-related-card-desc {
  font-family: var(--font-body);
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.trade-related-card-arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: var(--color-gold);
  transition: transform 0.3s ease;
}

.trade-related-card-arrow svg {
  width: 16px;
  height: 16px;
}

.trade-related-card:hover .trade-related-card-arrow {
  transform: translateX(4px);
}

/* Official Corporate Communication full-width bar */
.trade-comm-section {
  background-color: #021229;
  padding: 40px 0;
  position: relative;
  color: var(--color-white);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trade-comm-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.trade-comm-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.trade-comm-icon-wrap {
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trade-comm-icon-wrap svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-gold);
}

.trade-comm-divider-line {
  width: 1px;
  height: 56px;
  background-color: var(--color-gold);
  margin: 0 8px 0 12px;
  opacity: 0.6;
  flex-shrink: 0;
}

.trade-comm-text-wrap {
  max-width: 600px;
}

.trade-comm-title {
  font-family: var(--font-headings) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: var(--color-white) !important;
  margin-bottom: 8px !important;
}

.trade-comm-text {
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
  color: rgba(255, 255, 255, 0.75) !important;
  margin: 0 !important;
}

.trade-comm-right {
  position: relative;
  z-index: 2;
}

.trade-comm-btn {
  padding: 12px 32px;
}

/* Responsive queries */
@media (max-width: 1024px) {
  .trade-related-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .trade-related-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .trade-comm-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .trade-comm-divider-line {
    display: none;
  }
}

@media (max-width: 560px) {
  .trade-related-cards {
    grid-template-columns: 1fr;
  }
  .trade-comm-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* --------------------------------------------------
   STRATEGIC COORDINATION PAGE STYLES
   -------------------------------------------------- */
.coordination-hero {
  position: relative;
  background-image: url('../images/coordination-hero-bg-new.jpg?v=5') !important;
  background-size: cover;
  background-position: center;
  min-height: 520px;
  display: flex;
  align-items: center;
  color: var(--color-white);
  padding-top: 140px;
  padding-bottom: 80px;
}

.coordination-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(2, 18, 41, 0.92) 0%, rgba(2, 18, 41, 0.7) 50%, rgba(2, 18, 41, 0.4) 100%);
  z-index: 1;
}

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

.coordination-hero-content {
  max-width: 650px;
}

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

.coordination-hero-title {
  font-family: var(--font-headings);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--color-white);
}

.coordination-hero-divider {
  width: 60px;
  height: 2px;
  background-color: var(--color-gold);
  margin-bottom: 28px;
}

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

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

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

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

.coordination-overview-section {
  background-color: var(--color-white);
  padding: 90px 0;
}

.coordination-overview-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: flex-start;
}

.coordination-overview-left {
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  padding-right: 45px;
}

.coordination-overview-title {
  font-family: var(--font-headings);
  font-size: 40px;
  font-weight: 600;
  color: #050b12;
  line-height: 1.25;
  margin-bottom: 22px;
}

.coordination-areas-right-wrapper {
  padding-left: 10px;
}

.coordination-areas-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
}

.coordination-areas-card {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 4px;
  padding: 24px 6px;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease;
}

.coordination-areas-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border-color: var(--color-gold);
}

.coordination-areas-card-icon {
  color: var(--color-gold);
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
}

.coordination-areas-card-icon svg {
  width: 38px;
  height: 38px;
  stroke: var(--color-gold);
}

.coordination-areas-card-title {
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 700;
  color: var(--color-dark-bg);
  margin-bottom: 10px;
  line-height: 1.25;
  word-break: break-word;
}

.coordination-areas-card-text {
  font-family: var(--font-body);
  font-size: 10.5px;
  line-height: 1.45;
  color: var(--color-text-muted);
  margin: 0;
}

/* Principles Section */
.coordination-principles-section {
  background-color: var(--color-dark-section);
  color: var(--color-white);
  padding: 90px 0;
}

.coordination-principles-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: flex-start;
}

.coordination-principles-left {
  padding-right: 45px;
}

.coordination-principles-title {
  font-family: var(--font-headings);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 22px;
  color: var(--color-white);
}

.coordination-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;
}

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

.coordination-principles-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 36px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

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

.coordination-principles-card-icon {
  color: var(--color-gold);
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
}

.coordination-principles-card-icon svg {
  stroke: var(--color-gold);
}

.coordination-principles-card-title {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
}

.coordination-principles-card-text {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Global Section */
.coordination-global-section {
  background-color: #F7F7F5;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.coordination-global-container {
  display: flex;
  min-height: 420px;
  width: 100%;
}

.coordination-global-left-wrapper {
  width: 60%;
  padding-top: 90px;
  padding-bottom: 90px;
  padding-left: max(28px, calc((100vw - 1200px) / 2 + 28px));
  padding-right: 50px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 45px;
  align-items: center;
}

/* Responsive Coordination */
@media (max-width: 1024px) {
  .coordination-overview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .coordination-overview-left {
    border-right: none;
    padding-right: 0;
  }
  .coordination-principles-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .coordination-principles-left {
    padding-right: 0;
  }
  .coordination-global-container {
    flex-direction: column;
    min-height: auto;
  }
  .coordination-global-left-wrapper {
    width: 100%;
    padding-left: 28px;
    padding-right: 28px;
    padding-top: 60px;
    padding-bottom: 40px;
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .coordination-hero-title {
    font-size: 36px;
  }
  .coordination-hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 60px;
  }
  .coordination-areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .coordination-principles-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .coordination-hero-title {
    font-size: 28px;
  }
  .coordination-hero-buttons {
    flex-direction: column;
  }
  .coordination-areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .coordination-principles-cards {
    grid-template-columns: 1fr;
  }
}

/* Coordination Page Custom Buttons */
.btn-coordination-solid {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: var(--font-headings) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  height: 46px !important;
  padding: 0 32px !important;
  border-radius: 0 !important;
  border: none !important;
  cursor: pointer !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  gap: 8px !important;
  background: linear-gradient(90deg, #B97920 0%, #E0A33A 100%) !important;
  color: var(--color-white) !important;
}

.btn-coordination-solid:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.btn-coordination-outline {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: var(--font-headings) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  height: 46px !important;
  padding: 0 32px !important;
  border-radius: 0 !important;
  border: 1px solid #E0A33A !important;
  cursor: pointer !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  gap: 8px !important;
  background: transparent !important;
  color: var(--color-white) !important;
}

.btn-coordination-outline:hover {
  background: rgba(224, 163, 58, 0.1) !important;
  transform: translateY(-2px);
}




