/* =====================
   RESET & BASE
===================== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: #0f172a;
}


.header-container,
.section-container,
.about-hero-inner,
.service-container,
.process-container,
.footer-container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

section {
  padding-top: 90px;
  padding-bottom: 90px;
}

#home-hero,
#services-hero,
#about-header,
#about-hero {
  padding-top: 120px;
  padding-bottom: 120px;
}

#site-header {
  width: 100%;
}

#site-header .header-container {
  padding-top: 18px;
  padding-bottom: 18px;
}


.hero-image img,
.service-image img,
.process-step img {
  max-width: 100%;
  display: block;
}

@media (max-width: 768px) {

  .header-container,
  .section-container,
  .about-hero-inner,
  .service-container,
  .process-container,
  .footer-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2937;
  background-color: #ffffff;
  line-height: 1.65;
}

/* =====================
   GLOBAL CONTAINERS
===================== */

/* =====================
   HEADER & NAV
===================== */
#site-header {
  background: #0f172a;
  border-bottom: 1px solid #1e293b;
}

.brand-logo {
  max-height: 48px;
}

#main-navigation .nav-menu {
  list-style: none;
  display: flex;
  gap: 24px;
}

#main-navigation a {
  text-decoration: none;
  color: #cbd5e1;
  font-weight: 500;
}

#main-navigation a:hover,
#main-navigation a[aria-current="page"] {
  color: #ffffff;
}

/* =====================
   HERO SECTIONS
===================== */
#home-hero,
#services-hero,
#process-hero,
#about-hero,
#contact-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  background: #f8fafc;
}

.hero-title {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #020617;
}

.hero-description {
  font-size: 1.05rem;
  max-width: 520px;
}

.hero-image img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 10px;
}

/* =====================
   BUTTONS
===================== */
.primary-action,
.secondary-action,
button {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 26px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.primary-action,
button {
  background: #2563eb;
  color: #ffffff;
  border: none;
}

.primary-action:hover,
button:hover {
  background: #1d4ed8;
}

.secondary-action {
  border: 2px solid #2563eb;
  color: #2563eb;
  margin-left: 12px;
}

/* =====================
   SECTION HEADINGS
===================== */
.section-title {
  font-size: 1.9rem;
  margin-bottom: 24px;
  color: #020617;
}

.section-text {
  max-width: 800px;
  font-size: 1rem;
}

/* =====================
   SERVICES
===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-card h3 {
  margin: 16px;
  font-size: 1.2rem;
}

.service-card p {
  margin: 0 16px 20px;
  font-size: 0.95rem;
}

/* =====================
   SERVICE DETAIL SECTIONS
===================== */
.service-container,
.process-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.service-image img,
.process-image img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 10px;
}

/* =====================
   PROCESS STEPS
===================== */
.process-section {
  border-top: 1px solid #e5e7eb;
}

.process-content h2 {
  margin-bottom: 12px;
}

/* =====================
   LISTS (TRUST, REGIONS, VALUES)
===================== */
ul {
  margin-top: 16px;
  padding-left: 20px;
}

li {
  margin-bottom: 10px;
}

/* =====================
   FORMS
===================== */
form {
  max-width: 600px;
  margin-top: 30px;
}

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

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  margin-top: 6px;
}

/* =====================
   FOOTER
===================== */
#site-footer {
  background: #020617;
  color: #94a3b8;
  padding: 30px 0;
  text-align: center;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 900px) {

  #home-hero,
  #services-hero,
  #process-hero,
  #about-hero,
  #contact-hero,
  .service-container,
  .process-container {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2rem;
  }

  #main-navigation .nav-menu {
    flex-wrap: wrap;
    gap: 14px;
  }
}

/* =====================
   PROCESS IMAGE CONTROL
===================== */
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 50px;
}

.process-step {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 30px;
  align-items: center;
}

/* Force all images to behave */
.process-step img {
  width: 100%;
  max-width: 140px;
  height: auto;
  object-fit: contain;
  display: block;
}

.process-content {
  background: #ffffff;
  padding: 28px 32px;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.06);
}

.process-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #0f172a;
}

.process-content p {
  font-size: 0.98rem;
  color: #475569;
  max-width: 650px;
}

#process-overview {
  background: #f8fafc;
}

.process-step {
  position: relative;
}

.process-step::before {
  content: "";
  position: absolute;
  left: 60px;
  top: -40px;
  width: 2px;
  height: 40px;
  background: #2563eb;
}

.process-step:first-child::before {
  display: none;
}

@media (max-width: 768px) {

  .process-step {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .process-step img {
    max-width: 110px;
    margin: 0 auto;
  }

  .process-content {
    padding: 22px;
  }

}

.service-section {
  padding: 90px 0;
}

.service-section:nth-child(even) {
  background: #f8fafc;
}

.service-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.service-image img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.service-content h2 {
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.service-content p {
  margin-bottom: 22px;
  line-height: 1.1;
  color: #475569;
}

.service-content strong {
  display: block;
  margin-bottom: 6px;
  color: #0f172a;
}

@media (max-width: 900px) {

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

  .service-image img {
    max-height: 260px;
  }

}


#about-hero .hero-title {
  font-size: 2.6rem;
  max-width: 520px;
}

#about-hero .hero-description {
  font-size: 1.05rem;
  color: #475569;
  max-width: 520px;
}
#about-hero .hero-image img {
  max-height: 420px;
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}


#about-page section {
  padding: 100px 0;
}

#about-page section:nth-of-type(even) {
  background: #f8fafc;
}



#about-page h2 {
  font-size: 2rem;
  margin-bottom: 28px;
  color: #020617;
  max-width: 700px;
}

#about-page p {
  font-size: 1rem;
  color: #475569;
  max-width: 760px;
  line-height: 1.8;
}

.about-block {
  background: #ffffff;
  padding: 48px 52px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
}


#about-page ul {
  list-style: none;
  padding-left: 0;
  margin-top: 24px;
}

#about-page ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  font-weight: 500;
}

#about-page ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-size: 1.5rem;
  line-height: 1;
}


.capability-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.capability-list li {
  background: #ffffff;
  padding: 18px 22px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  font-weight: 600;
}


@media (max-width: 900px) {

  #about-hero {
    background: #ffffff;
  }

  #about-hero .hero-title {
    font-size: 2.1rem;
  }

  #about-page section {
    padding: 70px 0;
  }

}

/* =====================
   ABOUT HEADER (CLEAN)
===================== */
#about-hero {
  padding: 80px 0 60px;
  background: #ffffff;
}

.about-hero-inner {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: #2563eb;
  font-weight: 600;
}

.about-hero-text h1 {
  font-size: 2.4rem;
  margin: 12px 0 18px;
  color: #020617;
}

.about-hero-text p {
  font-size: 1.05rem;
  color: #475569;
  max-width: 520px;
  line-height: 1.7;
}

.about-hero-image img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.10);
}

/* MOBILE */
@media (max-width: 900px) {
  .about-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-hero-text h1 {
    font-size: 2rem;
  }

  .about-hero-image img {
    max-height: 240px;
  }
}


/* =====================
   ABOUT PAGE HEADER (EXECUTIVE)
===================== */
#about-header {
  padding: 90px 0 70px;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.about-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 14px;
}

.about-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #020617;
  margin-bottom: 20px;
}

.about-intro {
  max-width: 680px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #475569;
}


/* =========================
   GLOBAL PAGE CONTAINER FIX
========================= */

.page-wrapper {
  width: 100%;
  overflow-x: hidden;
}

/* Force all sections to be centered */
.page-wrapper section {
  width: 100%;
}

/* Inner content constraint */
.page-wrapper section > * {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

/* Hero sections FIX */
#home-hero,
#services-hero,
#process-hero,
#contact-hero {
  background: #f8fafc;
}

#home-hero > *,
#services-hero > *,
#process-hero > *,
#contact-hero > * {
  max-width: 1200px;
  margin: auto;
}

/* Remove edge sticking */
.hero-image img {
  border-radius: 16px;
}
