/* =============================================
   INTILAND — GLOBAL STYLESHEET
   Color palette derived from the Intiland logo
   ============================================= */

:root {
  --green-light:    #6DC451;   /* logo top chevrons  */
  --green-primary:  #4BAA3C;   /* midpoint green     */
  --green-dark:     #3A8A35;   /* logo base chevrons */
  --green-deep:     #2B6826;   /* deep accent        */
  --green-footer:   #162E13;   /* footer bg          */
  --charcoal:       #333333;   /* logo text colour   */
  --text-body:      #575757;
  --white:          #FFFFFF;
  --off-white:      #F7FAF5;
  --light-tint:     #EBF5E7;
  --border:         #DDEAD9;
  --shadow-sm:      0 4px 20px rgba(0,0,0,.08);
  --shadow-md:      0 10px 40px rgba(0,0,0,.12);
  --shadow-lg:      0 20px 60px rgba(0,0,0,.16);
  --transition:     all .3s ease;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a  { text-decoration: none; color: inherit; }

/* ── Typography helpers ── */
.poppins { font-family: 'Poppins', sans-serif; }

.section-kicker {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--green-primary);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 18px;
}

.section-title.white { color: var(--white); }

.rule {
  width: 56px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--green-light), var(--green-dark));
  margin-bottom: 28px;
}
.rule.center { margin-left: auto; margin-right: auto; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 38px;
  border-radius: 3px;
  transition: var(--transition);
  cursor: pointer;
}

.btn-green {
  background: var(--green-primary);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(58,138,53,.35);
}
.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(58,138,53,.45);
}

.btn-outline {
  border: 2px solid var(--green-light);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  background: var(--green-light);
  color: var(--white);
}

/* ═══════════════════════════════
   NAVIGATION
═══════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  transition: var(--transition);
}

.navbar .logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar .logo-img {
  height: 46px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav-links a {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: .85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--charcoal);
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green-dark);
  border-bottom-color: var(--green-light);
}

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transition: transform 10s ease;
}

.hero:hover .hero__bg { transform: scale(1.04); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(21,56,18,.80) 0%,
    rgba(0,0,0,.45) 60%,
    rgba(0,0,0,.30) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
  max-width: 860px;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Poppins', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 24px;
}
.hero__kicker::before,
.hero__kicker::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--green-light);
  opacity: .7;
}

.hero__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 18px;
  text-shadow: 0 3px 30px rgba(0,0,0,.4);
  letter-spacing: -1px;
}

.hero__title span { color: var(--green-light); }

.hero__sub {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(.9rem, 2vw, 1.15rem);
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: .9;
  margin-bottom: 44px;
}

.hero__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 44px;
}
.hero__dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-light);
  opacity: .6;
}
.hero__dots span:nth-child(2) { opacity: 1; transform: scale(1.4); }

.hero__cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════
   TAGLINE BAND
═══════════════════════════════ */
.tagline-band {
  background: linear-gradient(90deg, var(--green-dark) 0%, var(--green-primary) 50%, var(--green-dark) 100%);
  padding: 22px 6%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.tagline-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.tagline-item .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-light);
}

/* ═══════════════════════════════
   ABOUT SECTION
═══════════════════════════════ */
.about-section {
  padding: 100px 6%;
  background: var(--white);
}

.about-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text p {
  color: var(--text-body);
  font-size: 1.05rem;
  line-height: 1.95;
  margin-bottom: 28px;
}

.about-visual {
  position: relative;
}

.about-visual::before {
  content: '';
  position: absolute;
  top: -18px; right: -18px;
  width: 100%; height: 100%;
  border: 3px solid var(--green-light);
  border-radius: 4px;
  z-index: 0;
}

.about-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
}

.about-badges {
  display: flex;
  gap: 20px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.badge {
  background: var(--light-tint);
  border: 1px solid var(--border);
  border-left: 3px solid var(--green-primary);
  padding: 12px 20px;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: .5px;
}

/* ═══════════════════════════════
   EXPERIENCE SECTION
═══════════════════════════════ */
.experience-section {
  position: relative;
  padding: 110px 6%;
  overflow: hidden;
}

.experience-section .exp-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.experience-section .exp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(21,56,18,.88) 0%, rgba(0,0,0,.72) 100%);
}

.experience-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  flex-wrap: wrap;
  text-align: center;
  color: var(--white);
}

.exp-stat { flex-shrink: 0; }

.exp-number {
  font-family: 'Poppins', sans-serif;
  font-size: 7rem;
  font-weight: 800;
  line-height: 1;
  color: var(--green-light);
  text-shadow: 0 0 60px rgba(109,196,81,.5);
}

.exp-label {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 8px;
  color: rgba(255,255,255,.9);
}

.exp-divider {
  width: 2px;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--green-light), transparent);
  opacity: .4;
}

.exp-text {
  max-width: 460px;
  text-align: left;
}

.exp-text .section-title { color: var(--white); margin-bottom: 16px; }

.exp-text p {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  line-height: 1.9;
}

/* ═══════════════════════════════
   MISSION SECTION
═══════════════════════════════ */
.mission-section {
  padding: 100px 6%;
  background: var(--off-white);
  text-align: center;
}

.mission-inner {
  max-width: 820px;
  margin: 0 auto;
}

.mission-inner .section-title { margin-bottom: 8px; }

.mission-inner .section-kicker { justify-content: center; }

.mission-text p {
  color: var(--text-body);
  font-size: 1.08rem;
  line-height: 2;
  margin-bottom: 22px;
}

.mission-text p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════
   PAGE BANNER (inner pages)
═══════════════════════════════ */
.page-banner {
  padding: 150px 6% 90px;
  background: linear-gradient(135deg, var(--green-footer) 0%, var(--green-deep) 60%, var(--green-dark) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(109,196,81,.08);
}

.page-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(109,196,81,.06);
}

.page-banner h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 14px;
  position: relative; z-index: 1;
}

.page-banner .breadcrumb {
  font-size: .85rem;
  letter-spacing: 1px;
  color: rgba(255,255,255,.65);
  position: relative; z-index: 1;
}

.page-banner .breadcrumb a { color: var(--green-light); }
.page-banner .breadcrumb span { margin: 0 8px; }

/* ═══════════════════════════════
   SERVICES — RISK MANAGEMENT
═══════════════════════════════ */
.risk-section {
  padding: 100px 6%;
  background: linear-gradient(135deg, var(--green-footer) 0%, #1e3e1b 100%);
  color: var(--white);
}

.risk-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.risk-left .section-title { color: var(--white); }

.risk-left .rule { background: linear-gradient(90deg, var(--green-light), transparent); }

.risk-right p {
  color: rgba(255,255,255,.82);
  font-size: 1.02rem;
  line-height: 1.95;
  margin-bottom: 20px;
}

.risk-right p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════
   SERVICES — ANALYSING
═══════════════════════════════ */
.analysing-section {
  padding: 100px 6%;
  background: var(--white);
}

.analysing-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.analysing-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-light), var(--green-dark));
  margin-bottom: 28px;
  box-shadow: 0 8px 28px rgba(58,138,53,.35);
}

.analysing-icon svg { width: 36px; height: 36px; fill: var(--white); }

.analysing-text p {
  color: var(--text-body);
  font-size: 1.02rem;
  line-height: 1.9;
  margin-bottom: 16px;
}

.quote-card {
  background: var(--off-white);
  border-left: 5px solid var(--green-primary);
  border-radius: 6px;
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
}

.quote-card::before {
  content: '\201C';
  position: absolute;
  top: -30px; left: 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 180px;
  font-weight: 800;
  color: var(--green-light);
  opacity: .12;
  line-height: 1;
  pointer-events: none;
}

.quote-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.65;
  font-style: italic;
  color: var(--green-deep);
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
}

.quote-source {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-primary);
}

/* ═══════════════════════════════
   OUR EXPERIENCES PARALLAX
═══════════════════════════════ */
.experiences-section {
  position: relative;
  padding: 130px 6%;
  overflow: hidden;
  text-align: center;
}

.experiences-section .exp-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.experiences-section .exp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22,46,19,.91) 0%, rgba(0,0,0,.78) 100%);
}

.experiences-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto;
}

.experiences-content .section-title { color: var(--white); }

.experiences-content p {
  font-size: 1.08rem;
  line-height: 1.95;
  color: rgba(255,255,255,.82);
}

/* ═══════════════════════════════
   REACH / CONTACT IMAGE SECTION
═══════════════════════════════ */
.reach-section {
  padding: 100px 6%;
  background: var(--white);
}

.reach-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.reach-img img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}

.reach-text p {
  color: var(--text-body);
  font-size: 1.02rem;
  line-height: 1.9;
  margin-bottom: 20px;
}

/* ═══════════════════════════════
   MAP SECTION
═══════════════════════════════ */
.map-section {
  position: relative;
}

.map-label {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: var(--green-dark);
  color: var(--white);
  padding: 11px 28px;
  font-family: 'Poppins', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  border-radius: 2px;
  box-shadow: 0 6px 24px rgba(0,0,0,.3);
  white-space: nowrap;
}

.map-section iframe {
  width: 100%;
  height: 460px;
  display: block;
  border: none;
}

/* ═══════════════════════════════
   CONTACT CARDS
═══════════════════════════════ */
.contact-section {
  padding: 100px 6%;
  background: var(--off-white);
}

.contact-inner {
  max-width: 960px;
  margin: 0 auto;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 36px;
  margin-top: 16px;
}

.contact-card {
  background: var(--white);
  border-radius: 8px;
  padding: 44px 38px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--green-primary);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-flag { font-size: 2.4rem; margin-bottom: 16px; }

.card-country {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.card-company {
  font-family: 'Poppins', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 20px;
  letter-spacing: .5px;
}

.card-address {
  color: var(--text-body);
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.card-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--charcoal);
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
}

.card-phone:hover { color: var(--green-dark); }

.phone-bubble {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-light), var(--green-dark));
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--white);
}

/* ═══════════════════════════════
   ABOUT PAGE — FULL LAYOUT
═══════════════════════════════ */
.about-page-section {
  padding: 100px 6%;
  background: var(--white);
}

.about-page-inner {
  max-width: 1180px;
  margin: 0 auto;
}

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
footer {
  background: linear-gradient(160deg, #162E13 0%, #0d1e0b 100%);
  color: rgba(255,255,255,.75);
  padding: 80px 6% 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 56px;
  max-width: 1180px;
  margin: 0 auto;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.footer-logo-mark {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer-logo-mark .chevron {
  width: 28px;
  height: 6px;
  clip-path: polygon(0% 100%, 50% 0%, 100% 100%);
}
.footer-logo-mark .chevron:nth-child(1) { background: var(--green-light); }
.footer-logo-mark .chevron:nth-child(2) { background: var(--green-dark); }

.footer-brand-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.5px;
}

.footer-brand p {
  font-size: .88rem;
  line-height: 1.85;
  color: rgba(255,255,255,.55);
  max-width: 300px;
}

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  color: var(--white);
  margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green-primary);
  display: inline-block;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--green-light); padding-left: 4px; }

.footer-contact-item {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-contact-item strong {
  display: block;
  color: rgba(255,255,255,.8);
  font-weight: 600;
  margin-bottom: 2px;
}

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

.footer-bottom .tagline-small {
  color: var(--green-primary);
  font-weight: 600;
  letter-spacing: 1px;
}

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 900px) {
  .about-inner,
  .analysing-inner,
  .risk-inner,
  .reach-inner,
  .exp-text { grid-template-columns: 1fr; gap: 48px; }

  .exp-divider { display: none; }

  .exp-text { text-align: center; max-width: 100%; }

  .about-visual::before { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .nav-links { gap: 18px; }
  .nav-links a { font-size: .75rem; letter-spacing: .5px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .exp-number { font-size: 5rem; }
  .hero__title { letter-spacing: -1px; }
}
