/* =====================================================
   HOME PAGE – STRATEGIC AUTHORITY
   ===================================================== */

/* Hero Section – Diagonal Authority Statement */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  padding: 180px 0 6rem;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 4vw), 0 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(65, 127, 176, 0) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}





.hero .container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
}

.hero-content {
  max-width: 60rem;
}

.hero-content h1 {
  color: #ffffff;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  border-bottom: 3px solid var(--gold);
  display: inline-block;
  padding-bottom: 0.5rem;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 58ch;
  margin-bottom: 2rem;
}

.hero-content .btn {
  margin-top: 1rem;
}

/* Who We Are Section – Immediate Context */
.section-who-we-are {
  padding: 2.5rem 0;
  background: #ffffff;
}

.section-who-we-are .two-col {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: center;
}

.section-who-we-are h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 1.1rem;
  border-left: 4px solid var(--gold);
  padding-left: 1.5rem;
}

.section-who-we-are p {
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.section-who-we-are img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

/* Capabilities New Grid – Refined Authority */
.section-capabilities {
  position: relative;
  padding: 3rem 0;
  background: var(--bg-light-tint);
  clip-path: none;
  /* Removing old diagonal for cleaner image-based look */
  margin-top: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.capabilities-header {
  margin-bottom: 3.5rem;
}

.capabilities-header h2 {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  line-height: 1.05;
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 1.5rem;
  max-width: 22ch;
  letter-spacing: -0.02em;
}

.capabilities-header p {
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 65ch;
  line-height: 1.7;
}

.capabilities-header.center h2,
.capabilities-header.center p {
  margin-inline: auto;
}

.capabilities-grid-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2.5rem;
}

.cap-grid-item {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

/* Image Item Styles */
.cap-image-short {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  height: 320px;
}

.cap-image-tall {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
  height: 100%;
}

.cap-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Card Styles */
.cap-card {
  background: #fdfdfd;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.cap-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
  background: #ffffff;
}

.cap-card-icon {
  margin-left: auto;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.cap-card h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cap-card p {
  font-size: 1.05rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0;
}

/* Grid Item Assignments */
.capabilities-grid-v2 div:nth-child(2) {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.capabilities-grid-v2 div:nth-child(4) {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.capabilities-grid-v2 div:nth-child(5) {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

/* Responsive Adjustments */
@media (max-width: 1100px) {
  .capabilities-grid-v2 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 2rem;
  }

  .cap-image-tall {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
    height: 400px;
  }

  .cap-image-short {
    height: 280px;
  }
}

@media (max-width: 768px) {
  .capabilities-grid-v2 {
    grid-template-columns: 1fr;
  }

  .cap-grid-item {
    grid-column: 1 / 2 !important;
    grid-row: auto !important;
  }

  .cap-image-short,
  .cap-image-tall {
    height: 260px;
  }

  .capabilities-header h2 {
    font-size: 2.2rem;
  }
}

/* Proof of Scale – Credibility Indicators */
.section-scale {
  padding: 2.5rem 0;
  background: #ffffff;
}

.section-scale h2 {
  text-align: center;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 4rem;
}

.scale-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 4rem;
  text-align: center;
}

.scale-item h3 {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0.15em;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 0.35rem;
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.scale-item p {
  color: var(--text-soft);
  font-size: 1.05rem;
  margin: 0 auto;
}


/* 3D Cover Flow Carousel Styles */
.carousel-container {
  position: relative;
  width: 70%;
  max-width: 100%;
  height: 550px;
  margin: 0 auto;
  overflow: visible;
  /* Allow slides to peek out */
  perspective: 1500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, #1a365d00 0%, #0a192f00 100%);
  border-radius: 20px;
  padding: 40px 0;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  position: absolute;
  width: 320px;
  height: 450px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  background: #000;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.8;
  transition: opacity 0.4s ease;
}

.carousel-slide.active img {
  opacity: 1;
}

/* Slide Content Overlay */
.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.5rem 1.5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  color: #fff;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s ease;
  pointer-events: none;
  text-align: left;
}

.carousel-slide.active .slide-content {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.slide-content h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--gold);
  line-height: 1.1;
}

.slide-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.btn-slide {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  border: none;
}

.btn-slide:hover {
  background: #fff;
  color: var(--primary-blue);
  transform: translateY(-2px);
}

.indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: var(--gold);
  transform: scale(1.5);
}

/* 3D Positioning States - Handled by JS via inline styles or classes */
/* But we define base transitions here */

/* Navigation Buttons - Pushed to Screen Edges */
.carousel-nav {
  position: absolute;
  top: 50%;
  width: 150%;
  left: -25%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0;
  z-index: 100;
  pointer-events: none;
}

.carousel-prev,
.carousel-next {
  background: transparent;
  color: #fff;
  border: none;
  width: 100px;
  height: 100px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  /* Ultra thin minimal chevron */
  font-weight: 100;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: auto;
  opacity: 0.4;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: transparent;
  color: var(--gold);
  transform: scale(1.25);
  opacity: 1;
}

/* Indicators - Restored */
.carousel-indicators {
  position: absolute;
  bottom: -4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.4);
}

@media (max-width: 1400px) {
  .carousel-nav {
    width: 130%;
    left: -15%;
  }
}

@media (max-width: 1100px) {
  .carousel-nav {
    width: 100%;
    left: 0;
    padding: 0 5%;
  }

  .carousel-prev,
  .carousel-next {
    width: 60px;
    height: 60px;
    font-size: 2.5rem;
  }
}

@media (max-width: 1024px) {
  .carousel-nav {
    width: 100%;
    left: 0;
    padding: 0 10px;
  }

  .carousel-prev,
  .carousel-next {
    width: 50px;
    height: 50px;
    font-size: 2rem;
  }
}

/* Desktop spacing adjustment */
@media (min-width: 1024px) {
  .carousel-slide {
    width: 380px;
    height: 520px;
  }
}

@media (max-width: 768px) {
  .carousel-container {
    height: 400px;
    perspective: 1000px;
  }

  .carousel-slide {
    width: 240px;
    height: 340px;
  }

  .carousel-nav {
    width: 100%;
    left: 0;
    padding: 0 10px;
  }

  .carousel-prev,
  .carousel-next {
    width: 44px;
    height: 44px;
  }
}



/* ===== INDUSTRIES REDESIGN ===== */
.industries-section {
  padding: 3rem 0;
  background: var(--bg-light-tint);
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.industries-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.industries-header h2 {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 3.8rem);
  line-height: 1.1;
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.industries-intro {
  font-size: 1.15rem;
  color: var(--text-soft);
  max-width: 65ch;
  margin: 0 auto;
  line-height: 1.7;
}

/* Industries 2x2 Grid Section */

.industries-accordion {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.industry-acc-item {
  position: relative;
  height: 450px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  background: #0f172a56;
}

.industry-acc-item:hover,
.industry-acc-item.active,
.industry-acc-item:focus-within {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

/* Background Image */
.acc-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  filter: grayscale(10%);
}

.industry-acc-item:hover .acc-background,
.industry-acc-item.active .acc-background {
  transform: scale(1.05);
  filter: grayscale(0%);
}

/* Overlay */
.acc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.786) 10%, rgba(0, 0, 0, 0.3) 100%);
  transition: background 0.4s ease;
}

.industry-acc-item:hover .acc-overlay,
.industry-acc-item.active .acc-overlay {
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 20%, rgba(15, 23, 42, 0.4) 100%);
}

/* Content Container */
.acc-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.5rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  z-index: 2;
}

/* Header (Icon + Title) */
.acc-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  transition: all 0.5s ease;
}

.acc-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.industry-acc-item:hover .acc-icon,
.industry-acc-item.active .acc-icon {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  transform: scale(1.1);
}

.acc-header h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

/* Expanded Content - Modified for Grid Hover */
.acc-details {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
}

.industry-acc-item:hover .acc-details,
.industry-acc-item.active .acc-details {
  max-height: 350px;
  opacity: 1;
  margin-top: 0.5rem;
}

.acc-description {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 100%;
}

.acc-highlights {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.acc-highlights span {
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Product list inside grid items */
.acc-details .industry-product-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.5rem;
  margin-top: 1.5rem;
}

.acc-details .industry-product-list a {
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.6rem 0;
  width: 100%;
}

.acc-details .industry-product-list a:hover {
  color: var(--gold);
  padding-left: 8px;
}

.btn-acc-more {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.btn-acc-more:hover {
  color: #fff;
  border-bottom-color: #fff;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .industries-accordion {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .industry-acc-item {
    height: 400px;
  }
}

@media (max-width: 600px) {
  .industry-acc-item {
    height: auto;
    min-height: 350px;
  }

  .acc-content {
    padding: 2rem;
  }

  .acc-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .acc-details .industry-product-list {
    grid-template-columns: 1fr;
  }

  .industry-acc-item:hover .acc-details {
    max-height: 1000px;
    /* Allow more space for stacked list */
  }
}



/* Global Call-to-Action – Moved to style.css */


/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero {
    min-height: 55vh;
    padding: 5rem 0 6.5rem;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8vw), 0 100%);
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .hero-content p {
    font-size: 1.05rem;
  }

  .section-who-we-are .two-col {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .section-capabilities {
    clip-path: polygon(0 8vw, 100% 0, 100% 100%, 0 100%);
    padding: 8rem 0 5rem;
  }

  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
  }
}

@media (max-width: 580px) {
  .capabilities-grid {
    grid-template-columns: 1fr;
  }
}

.scale-grid {
  grid-template-columns: 1fr;
  gap: 3rem;
}

/* Handled by industries-grid-v3 media queries */

/* =====================================================
   GLOBAL PRESENCE & EXECUTION FLOW
   ===================================================== */

.global-presence-section {
  display: flex;
  flex-direction: column;
}

/* --- TOP PART: GLOBAL PRESENCE BAND (SLIM CONNECTOR) --- */
.presence-band {
  background: #09355b;
  /* More muted, professional gold */
  color: #fff;
  padding: 2rem 0;
  /* Slimmer padding */
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Background decorative lines - very low opacity */
.presence-band::before,
.presence-band::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background-image: url("data:image/svg+xml,%3Csvg width='400' height='400' viewBox='0 0 400 400' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 400C150 250 250 150 400 0M50 400C200 250 300 150 450 0M100 400C250 250 350 150 500 0' stroke='white' stroke-opacity='0.1' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  pointer-events: none;
  opacity: 0.3;
  /* Muted patterns */
}

.presence-band::before {
  top: -50px;
  left: -50px;
}

.presence-band::after {
  bottom: -100px;
  right: -50px;
  transform: rotate(180deg);
}

.presence-content {
  display: flex;
  flex-direction: column;
  /* Stacked layout for cleaner scanning */
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.presence-text h2 {
  color: #fff;
  font-size: 1.15rem;
  /* Significant reduction */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0;
  opacity: 0.9;
}

.presence-text p {
  display: none;
  /* Hide supporting subtext to keep it slim as per request */
}

.presence-regions {
  background: transparent;
  /* Remove card-like container */
  padding: 0;
  border-radius: 0;
  backdrop-filter: none;
  border: none;
}

.region-labels {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-weight: 800;
  font-size: 1.5rem;
  /* Larger than headline as centerpiece */
  letter-spacing: 0.12em;
  color: #ffffff;
}

.region-item {
  white-space: nowrap;
}

.region-arrow {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.2rem;
  font-weight: 400;
}

/* --- BOTTOM PART: EXECUTION FLOW --- */
.execution-flow {
  background: #fff;
  padding: 8rem 0;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  position: relative;
}

/* Horizontal Connector Line */
.flow-grid::before {
  content: "";
  position: absolute;
  top: 55px;
  left: 10%;
  right: 10%;
  height: 2px;
  background-image: linear-gradient(to right, #ccc 40%, rgba(255, 255, 255, 0) 0%);
  background-position: top;
  background-size: 10px 1px;
  background-repeat: repeat-x;
  z-index: 1;
}

.flow-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-icon-wrapper {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-number {
  position: absolute;
  top: -10px;
  right: -5px;
  background: var(--gold);
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 4px 10px rgba(185, 28, 28, 0.3);
}

.step-hexagon {
  width: 100%;
  height: 100%;
  background: #f8fafc;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.step-hexagon svg {
  width: 40px;
  height: 40px;
}

.flow-step:hover .step-hexagon {
  background: var(--primary-blue);
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(14, 58, 95, 0.15);
}

.step-content h4 {
  font-size: 1.15rem;
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.step-content p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-soft);
  max-width: 18ch;
  margin: 0 auto;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1024px) {
  .presence-content {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }

  .presence-text p {
    margin: 0 auto;
  }

  .flow-grid::before {
    display: none;
  }

  .flow-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 2rem;
  }
}

@media (max-width: 768px) {
  .region-labels {
    font-size: 1rem;
    gap: 1rem;
  }

  .flow-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .step-icon-wrapper {
    margin-bottom: 1.5rem;
  }
}

.product-enquiry {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.product-enquiry:hover {
  text-decoration: underline;
}

/* =====================================================
   INFO PAGES SECTION
   ===================================================== */

.section-info-pages {
  padding: 4rem 0;
  background: #ffffff;
}

.info-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  margin-bottom: 6rem;
  background: #f8fafc;
}

.info-card:last-child {
  margin-bottom: 0;
}

/* Reverse layout for alternating design */
.info-card-reverse {
  direction: ltr;
}

.info-card-reverse .info-card-content {
  order: 1;
}

.info-card-reverse .info-card-image {
  order: 2;
}

/* Image container with diagonal accent */
.info-card-image {
  position: relative;
  overflow: hidden;
  height: 66%;
  min-height: 400px;
}

.info-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Diagonal accent line - positioned outside image as corner decoration */
.diagonal-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
  height: 180px;
  z-index: 3;
  pointer-events: none;
}

.diagonal-accent::before {
  content: '';
  position: absolute;
  top: -30px;
  left: -30px;
  width: 140px;
  height: 3px;
  background: var(--gold);
  transform: rotate(-35deg);
  transform-origin: left;
}

.diagonal-accent::after {
  content: '';
  position: absolute;
  top: -30px;
  left: -30px;
  width: 3px;
  height: 140px;
  background: var(--gold);
  transform: rotate(-35deg);
  transform-origin: top;
}

/* Reverse diagonal for alternating cards - bottom right corner */
.diagonal-accent-reverse {
  top: auto;
  left: auto;
  bottom: 0;
  right: 0;
}

.diagonal-accent-reverse::before {
  top: auto;
  left: auto;
  bottom: -30px;
  right: -30px;
  transform: rotate(-35deg);
  transform-origin: right;
}

.diagonal-accent-reverse::after {
  top: auto;
  left: auto;
  bottom: -30px;
  right: -30px;
  transform: rotate(-35deg);
  transform-origin: bottom;
}

/* Content area */
.info-card-content {
  padding: 4rem 5rem;
  background: #ffffff;
}

.info-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.info-card-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--primary-blue);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.info-card-content p {
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.info-card-content p:last-of-type {
  margin-bottom: 2rem;
}

/* Learn More button */
.btn-info {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--gold);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(185, 28, 28, 0.2);
}

.btn-info:hover {
  background: #c41f1f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(185, 28, 28, 0.3);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .info-card-content {
    padding: 3rem 3.5rem;
  }

  .diagonal-accent {
    border-width: 3px;
  }
}

@media (max-width: 768px) {
  .section-info-pages {
    padding: 5rem 0;
  }

  .info-card {
    grid-template-columns: 1fr;
    margin-bottom: 4rem;
  }

  .info-card-reverse .info-card-content,
  .info-card-reverse .info-card-image {
    order: initial;
  }

  .info-card-image {
    min-height: 350px;
  }

  .info-card-content {
    padding: 2.5rem 2rem;
  }

  .diagonal-accent {
    border-width: 3px;
  }
}

@media (max-width: 480px) {
  .info-card-image {
    min-height: 280px;
  }

  .info-card-content {
    padding: 2rem 1.5rem;
  }

  .info-card-content h2 {
    font-size: 1.6rem;
  }
}

/* ===== Company Stats Section ===== */

.stat-card {
  background: #fff;
  padding: 1.8rem 1.2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  transition: 0.25s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.stat-card h3 {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.stat-card p {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-blue);
}

/* NEW STYLES FOR REDESIGNED SECTIONS */

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.service-icon {
  margin: 0 auto 1.5rem;
  width: 60px;
  height: 60px;
  background: var(--bg-light-tint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--gold);
  color: white;
}

.service-card h3 {
  font-size: 1.3rem;
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.6;
}

/* Why Partner With Us Section */
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.why-us-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.why-us-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.why-us-content p {
  margin-bottom: 2rem;
  color: var(--text-soft);
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.benefit-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--bg-light-tint);
  border: 1px solid var(--border);
  color: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-text h4 {
  font-size: 1.15rem;
  color: var(--primary-blue);
  margin-bottom: 0.25rem;
}

.benefit-text p {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
