/* =====================================================
   MARCO Consulting Limited - Main Stylesheet
   Brand: Blue #1B4B9B | Orange #F79420
   ===================================================== */

/* Google Fonts — loaded via <link> in HTML */

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

:root {
  --blue:        #1B4B9B;
  --blue-dark:   #0D2B60;
  --blue-mid:    #2356B8;
  --orange:      #F79420;
  --orange-dark: #D97F10;
  --white:       #ffffff;
  --off-white:   #F6F8FC;
  --gray:        #6C757D;
  --gray-light:  #E2E8F0;
  --gray-dark:   #343A40;
  --text:        #1A202C;
  --shadow:      0 4px 24px rgba(27,75,155,0.10);
  --shadow-md:   0 8px 32px rgba(27,75,155,0.18);
  --radius:      8px;
  --transition:  0.28s ease;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, Roboto, sans-serif;
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  background: var(--white);
}

h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.25; color: var(--text); font-family: 'Montserrat', 'Inter', system-ui, sans-serif; }
h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
p  { margin-bottom: 1rem; color: #4A5568; }
a  { text-decoration: none; color: var(--blue); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── UTILITIES ─────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: 90px 0; }
.section-alt { background: var(--off-white); }

.section-head { text-align: center; margin-bottom: 3.5rem; }
.section-head h2 { color: var(--blue-dark); margin-bottom: .75rem; }
.section-head p  { color: var(--gray); max-width: 580px; margin: 0 auto; font-size: 1.05rem; }
.section-head .underline {
  width: 56px; height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin: .85rem auto 0;
}

.tag {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.tag-orange {
  background: rgba(247,148,32,.12);
  color: var(--orange);
  border: 1px solid rgba(247,148,32,.28);
}
.tag-white {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.3);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  letter-spacing: .3px;
}
.btn-orange {
  background: var(--orange); color: var(--white); border-color: var(--orange);
}
.btn-orange:hover {
  background: var(--orange-dark); border-color: var(--orange-dark);
  transform: translateY(-2px); box-shadow: 0 8px 22px rgba(247,148,32,.35);
}
.btn-outline-white {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,.7);
}
.btn-outline-white:hover {
  background: var(--white); color: var(--blue);
  transform: translateY(-2px);
}
.btn-blue {
  background: var(--blue); color: var(--white); border-color: var(--blue);
}
.btn-blue:hover {
  background: var(--blue-dark); border-color: var(--blue-dark);
  transform: translateY(-2px); box-shadow: 0 8px 22px rgba(27,75,155,.3);
}
.btn-white {
  background: var(--white); color: var(--orange); border-color: var(--white);
}
.btn-white:hover {
  background: var(--blue-dark); color: var(--white); border-color: var(--blue-dark);
  transform: translateY(-2px);
}

/* ── NAVIGATION ───────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1180px; margin: 0 auto; padding: .85rem 2rem;
}
.nav-logo img { height: 52px; width: auto; }
.nav-menu {
  display: flex; align-items: center; gap: 2rem;
}
.nav-link {
  color: var(--gray-dark); font-weight: 600; font-size: .875rem;
  text-transform: uppercase; letter-spacing: .4px;
  position: relative; transition: color var(--transition);
}
.nav-link::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 2px; background: var(--orange); transition: width var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--blue); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-cta {
  background: var(--blue) !important; color: var(--white) !important;
  padding: 9px 20px; border-radius: var(--radius); border: none !important;
  transition: background var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--orange) !important; color: var(--white) !important; }
/* Prevent underline on dropdown parent link when dropdown is open */
.has-dropdown > .nav-link::after { bottom: -3px; }

.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 5px; }
.hamburger span {
  display: block; width: 25px; height: 3px;
  background: var(--blue-dark); border-radius: 3px; transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── NAV DROPDOWNS ────────────────────────────── */
.has-dropdown { position: relative; }
.dd-arrow {
  display: inline-block; font-size: .88rem; margin-left: 4px;
  transition: transform .25s ease; vertical-align: middle; line-height: 1;
}
.has-dropdown:hover .dd-arrow,
.has-dropdown.open .dd-arrow { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--white); border-radius: 10px;
  box-shadow: 0 12px 40px rgba(27,75,155,.18);
  min-width: 210px; padding: .5rem 0;
  opacity: 0; visibility: hidden;
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  z-index: 1100;
  border-top: 3px solid var(--orange);
}
.has-dropdown:hover .nav-dropdown {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block; padding: .55rem 1.25rem;
  color: var(--text); font-size: .82rem; font-weight: 600;
  text-transform: none; letter-spacing: 0;
  text-decoration: none; transition: background .15s, color .15s, padding-left .15s;
  white-space: nowrap;
}
.nav-dropdown a:hover { background: rgba(27,75,155,.06); color: var(--blue); padding-left: 1.55rem; }
.nav-dropdown a::after { display: none !important; }
.nav-dropdown .dd-divider { height: 1px; background: var(--gray-light); margin: .3rem .9rem; }
/* Mobile dropdown */
@media (max-width: 900px) {
  .nav-dropdown {
    position: static; box-shadow: none; border-top: none;
    border-left: 3px solid var(--orange);
    background: rgba(27,75,155,.04); border-radius: 0;
    opacity: 1; visibility: hidden;
    max-height: 0; overflow: hidden;
    transform: none; min-width: auto; padding: 0;
    transition: max-height .3s ease, visibility .3s, padding .3s;
  }
  .has-dropdown.open .nav-dropdown {
    visibility: visible; max-height: 320px; padding: .25rem 0;
  }
}

/* ── HOME HERO ────────────────────────────────── */
.hero {
  background: linear-gradient(140deg, #091D42 0%, #0D2B60 40%, #1B4B9B 100%);
  padding: 130px 0 110px; color: var(--white); position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute;
  top: -120px; right: -80px;
  width: 550px; height: 550px;
  background: rgba(247,148,32,.07); border-radius: 50%;
}
.hero::after {
  content: ''; position: absolute;
  bottom: -150px; left: -60px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,.04); border-radius: 50%;
}
.hero-inner { position: relative; z-index: 2; max-width: 760px; }
.hero h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero h1 em { font-style: normal; color: var(--orange); }
.hero p  { color: rgba(255,255,255,.82); font-size: 1.13rem; max-width: 620px; margin-bottom: 2.5rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── PAGE HERO (inner pages) ──────────────────── */
.page-hero {
  background: linear-gradient(140deg, #091D42 0%, #0D2B60 45%, #1B4B9B 100%);
  padding: 80px 0; text-align: center; color: var(--white);
}
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p  { color: rgba(255,255,255,.82); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.breadcrumb {
  display: flex; justify-content: center; gap: .5rem;
  margin-top: 1rem; font-size: .875rem; color: rgba(255,255,255,.6);
}
.breadcrumb a { color: var(--orange); }

/* ── STATS BAR ────────────────────────────────── */
.stats-bar {
  background: var(--blue-dark); padding: 50px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem; text-align: center;
}
.stat-item h3 {
  font-size: 2.8rem; font-weight: 900;
  color: var(--orange); margin-bottom: .2rem;
}
.stat-item p { color: rgba(255,255,255,.75); font-size: .9rem; margin: 0; }

/* ── SERVICE CARDS (home overview) ───────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.service-card {
  background: var(--white); border-radius: 12px;
  box-shadow: var(--shadow); overflow: hidden;
  border-top: 4px solid var(--blue);
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--orange);
}
.service-card-body { padding: 1.75rem; flex: 1; }
.service-num-label {
  font-size: .75rem; font-weight: 700;
  color: var(--orange); text-transform: uppercase;
  letter-spacing: 1.2px; margin-bottom: .5rem;
}
.service-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 1.4rem; margin-bottom: 1rem;
}
.service-card h3 { color: var(--blue-dark); font-size: 1.05rem; margin-bottom: .6rem; }
.service-card p  { color: var(--gray); font-size: .9rem; margin: 0; }
.service-card-footer {
  padding: .9rem 1.75rem;
  border-top: 1px solid var(--gray-light);
}
.service-card-footer a {
  font-size: .85rem; font-weight: 700; color: var(--blue);
  text-transform: uppercase; letter-spacing: .5px; transition: color var(--transition);
}
.service-card-footer a:hover { color: var(--orange); }

/* ── WHY MARCO ────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}
.why-card {
  text-align: center; padding: 2rem 1.25rem;
  background: var(--white); border-radius: 12px;
  box-shadow: var(--shadow); transition: var(--transition);
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.why-icon { font-size: 2.2rem; margin-bottom: .85rem; }
.why-card h4 { color: var(--blue-dark); font-size: .95rem; margin-bottom: .5rem; }
.why-card p  { font-size: .85rem; color: var(--gray); margin: 0; }

/* ── FOCUS AREAS ──────────────────────────────── */
.focus-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.focus-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.2rem 1.5rem; background: var(--white);
  border-radius: 10px; box-shadow: var(--shadow);
  border-left: 4px solid var(--orange); transition: var(--transition);
}
.focus-item:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.focus-num {
  width: 38px; height: 38px; background: var(--blue);
  color: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .85rem; flex-shrink: 0;
}
.focus-item h4 { color: var(--blue-dark); font-size: .95rem; margin: 0; }

/* ── CTA BANNER ───────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #D97F10, var(--orange));
  padding: 75px 0; text-align: center; color: var(--white);
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p  { color: rgba(255,255,255,.9); max-width: 500px; margin: 0 auto 2rem; }

/* ── ABOUT PAGE ───────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-visual {
  background: linear-gradient(140deg, #091D42, #1B4B9B);
  border-radius: 16px; min-height: 440px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 3rem; color: var(--white); position: relative;
  overflow: hidden;
}
.about-visual::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: rgba(247,148,32,.12); border-radius: 50%;
}
.about-visual .av-icon { font-size: 4rem; margin-bottom: 1rem; position: relative; z-index: 1; }
.about-visual h3 { color: var(--white); position: relative; z-index: 1; }
.about-visual p  { color: rgba(255,255,255,.7); font-size: .9rem; position: relative; z-index: 1; }

.about-text h2  { color: var(--blue-dark); margin-bottom: 1.25rem; }
.about-text p   { color: #4A5568; line-height: 1.8; }
.diff-list      { display: flex; flex-direction: column; gap: .85rem; margin-top: 1.5rem; }
.diff-item {
  display: flex; gap: .85rem; align-items: flex-start;
  padding: .85rem 1.1rem; background: var(--off-white);
  border-radius: 8px; transition: var(--transition);
}
.diff-item:hover { background: var(--gray-light); }
.diff-item .di-icon {
  width: 40px; height: 40px; background: var(--blue);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.diff-item h5  { color: var(--blue-dark); font-size: .9rem; margin-bottom: .15rem; }
.diff-item p   { color: var(--gray); font-size: .82rem; margin: 0; }

/* Vision / Mission */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.vm-card { padding: 2.5rem; border-radius: 14px; }
.vm-vision  { background: linear-gradient(140deg, #091D42, #1B4B9B); }
.vm-mission { background: linear-gradient(140deg, #D97F10, var(--orange)); }
.vm-card .vm-label {
  font-size: .75rem; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: .5rem;
}
.vm-card h3 { color: var(--white); margin-bottom: 1rem; }
.vm-card p  { color: rgba(255,255,255,.88); line-height: 1.8; margin: 0; }

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.25rem; }
.value-card {
  text-align: center; padding: 2rem 1rem;
  background: var(--white); border-radius: 12px;
  box-shadow: var(--shadow); border-bottom: 4px solid var(--orange);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.value-card .v-icon { font-size: 2rem; margin-bottom: .65rem; }
.value-card h4 {
  color: var(--blue-dark); font-size: .78rem;
  text-transform: uppercase; letter-spacing: .6px; margin: 0;
}

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 2rem; }
.team-card {
  background: var(--white); border-radius: 14px;
  box-shadow: var(--shadow); overflow: hidden;
  text-align: center; transition: var(--transition);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.team-photo {
  height: 210px;
  background: linear-gradient(140deg, #091D42, #1B4B9B);
  display: flex; align-items: center; justify-content: center;
  font-size: 4.5rem; color: rgba(255,255,255,.35);
  overflow: hidden;
}
.team-photo.alt { background: linear-gradient(140deg, #D97F10, var(--orange)); }
.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
.team-info { padding: 1.5rem; }
.team-info h4 { color: var(--blue-dark); margin-bottom: .25rem; }
.team-info .role {
  color: var(--orange); font-size: .8rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
}

/* ── SERVICES DETAIL PAGE ─────────────────────── */
.svc-overview-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-bottom: 1rem;
}
.svc-ov-card {
  background: var(--white); border-radius: 10px;
  padding: 1.5rem; box-shadow: var(--shadow);
  border-left: 4px solid var(--blue); transition: var(--transition);
  cursor: default;
}
.svc-ov-card:hover { border-left-color: var(--orange); transform: translateX(4px); }
.svc-ov-card .ov-num {
  font-size: .75rem; font-weight: 800; color: var(--orange);
  text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: .35rem;
}
.svc-ov-card h4 { color: var(--blue-dark); font-size: .95rem; margin: 0; }

.service-detail-section { padding: 60px 0; border-bottom: 1px solid var(--gray-light); }
.service-detail-section:last-of-type { border-bottom: none; }
.sds-inner {
  display: grid; grid-template-columns: 260px 1fr; gap: 3.5rem; align-items: start;
}
.sds-label {
  position: sticky; top: 90px;
}
.sds-big-num {
  font-size: 5rem; font-weight: 900;
  color: var(--gray-light); line-height: 1; margin-bottom: .4rem;
}
.sds-label .svc-tag {
  font-size: .72rem; font-weight: 800; color: var(--orange);
  text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: .35rem;
}
.sds-label h3 { color: var(--blue-dark); font-size: 1.25rem; line-height: 1.3; }
.sds-body p { font-size: .98rem; line-height: 1.8; color: #4A5568; margin-bottom: 1.5rem; }
.sds-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: .65rem;
}
.sds-list li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: .9rem; color: #4A5568;
}
.sds-list li::before { content: '→'; color: var(--orange); font-weight: 700; flex-shrink: 0; }

/* Sectors */
.sector-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.sector-item {
  background: var(--white); padding: .9rem 1.1rem;
  border-radius: 8px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: .65rem;
  font-size: .88rem; font-weight: 600; color: var(--blue-dark);
  transition: var(--transition);
}
.sector-item:hover { background: var(--blue); color: var(--white); transform: translateX(3px); }
.sector-item .s-dot {
  width: 8px; height: 8px; background: var(--orange);
  border-radius: 50%; flex-shrink: 0;
}
.sector-item:hover .s-dot { background: var(--white); }

/* Approach */
.approach-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.approach-card {
  padding: 2rem 1.5rem; background: var(--white);
  border-radius: 12px; box-shadow: var(--shadow);
  border-top: 4px solid var(--blue); transition: var(--transition);
}
.approach-card:hover { border-top-color: var(--orange); transform: translateY(-4px); }
.approach-card .a-icon { font-size: 2rem; margin-bottom: .85rem; }
.approach-card h4 { color: var(--blue-dark); margin-bottom: .5rem; }
.approach-card p  { font-size: .88rem; color: var(--gray); margin: 0; }

/* ── CONTACT PAGE ─────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 3.5rem; }
.contact-info-col h3 { color: var(--blue-dark); margin-bottom: 2rem; }
.contact-item {
  display: flex; align-items: flex-start;
  gap: 1rem; margin-bottom: 1.75rem;
}
.c-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.contact-item h5 {
  font-size: .78rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .8px; color: var(--gray); margin-bottom: .3rem;
}
.contact-item p, .contact-item a {
  color: var(--text); font-size: .95rem; margin: 0;
}
.contact-item a:hover { color: var(--orange); }
.hours-box {
  background: var(--off-white); padding: 1.25rem 1.5rem;
  border-radius: 10px; border-left: 4px solid var(--orange); margin-top: .5rem;
}
.hours-box h5 { color: var(--blue-dark); font-size: .85rem; margin-bottom: .3rem; }
.hours-box p  { color: var(--gray); font-size: .85rem; margin: 0; }

.contact-form-box {
  background: var(--white); padding: 2.5rem 2.8rem;
  border-radius: 16px; box-shadow: var(--shadow-md);
}
.contact-form-box h3 { color: var(--blue-dark); margin-bottom: 1.75rem; }
.form-group { margin-bottom: 1.25rem; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
label {
  display: block; font-size: .85rem; font-weight: 700;
  color: var(--gray-dark); margin-bottom: .45rem;
}
input, select, textarea {
  width: 100%; padding: 11px 15px;
  border: 2px solid var(--gray-light); border-radius: var(--radius);
  font-size: .95rem; font-family: inherit; color: var(--text);
  transition: border-color var(--transition); background: var(--off-white);
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--blue); background: var(--white);
}
textarea { resize: vertical; min-height: 130px; }

.map-box {
  background: linear-gradient(135deg, #dce8f5, #c5d8ef);
  height: 320px; border-radius: 14px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 2rem;
  border: 2px dashed rgba(27,75,155,.2);
  margin-top: 3rem;
}
.map-box .m-icon { font-size: 3rem; margin-bottom: .75rem; }
.map-box p { color: var(--blue); font-weight: 700; margin-bottom: .25rem; }
.map-box small { color: var(--gray); font-size: .85rem; }

/* Social badges */
.social-badges { display: flex; gap: .75rem; margin-top: 1.5rem; }
.social-badge {
  display: flex; align-items: center; gap: .5rem;
  padding: 8px 16px; border-radius: 50px;
  font-size: .82rem; font-weight: 700;
  background: var(--off-white); color: var(--blue-dark);
  border: 1.5px solid var(--gray-light); transition: var(--transition);
}
.social-badge:hover {
  background: var(--blue); color: var(--white);
  border-color: var(--blue); transform: translateY(-2px);
}

/* ── FOOTER ───────────────────────────────────── */
.footer {
  background: var(--blue-dark); color: rgba(255,255,255,.78);
  padding: 65px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand img { height: 52px; margin-bottom: 1.25rem; }
.footer-brand p  { color: rgba(255,255,255,.82); font-size: .88rem; line-height: 1.75; margin-bottom: 1.2rem; }
.footer-tagline  { color: var(--orange) !important; font-weight: 700; font-style: italic; font-size: .95rem !important; }
.f-socials { display: flex; gap: .65rem; }
.f-social {
  width: 36px; height: 36px; background: rgba(255,255,255,.1);
  border-radius: 7px; display: flex; align-items: center;
  justify-content: center; color: var(--white); font-size: .78rem;
  font-weight: 700; transition: var(--transition);
}
.f-social:hover { background: var(--orange); transform: translateY(-3px); }

.footer-col h4 {
  color: var(--orange); font-size: .82rem;
  text-transform: uppercase; letter-spacing: 1.2px;
  margin-bottom: 1.25rem; padding-bottom: .5rem;
  border-bottom: 2px solid rgba(247,148,32,.35);
}
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { color: rgba(255,255,255,.82); font-size: .88rem; transition: var(--transition); }
.footer-links a:hover { color: var(--orange); padding-left: 4px; }

.f-contact-item { display: flex; gap: .7rem; margin-bottom: .85rem; align-items: flex-start; }
.f-contact-item .fi { color: var(--orange); font-size: .85rem; margin-top: 3px; flex-shrink: 0; }
.f-contact-item span { color: rgba(255,255,255,.82); font-size: .85rem; line-height: 1.55; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem 0; display: flex;
  justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: rgba(255,255,255,.65); font-size: .82rem; margin: 0; }

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid      { grid-template-columns: repeat(3, 1fr); }
  .values-grid   { grid-template-columns: repeat(3, 1fr); }
  .sector-grid   { grid-template-columns: repeat(3, 1fr); }
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .sds-inner     { grid-template-columns: 200px 1fr; }
}
@media (max-width: 900px) {
  .about-grid        { grid-template-columns: 1fr; gap: 2.5rem; }
  .vm-grid           { grid-template-columns: 1fr; }
  .contact-grid      { grid-template-columns: 1fr; }
  .svc-overview-grid { grid-template-columns: 1fr 1fr; }
  .focus-grid        { grid-template-columns: 1fr 1fr; }
  .stats-grid        { grid-template-columns: repeat(3, 1fr); }
  .photo-split       { grid-template-columns: 1fr; }
  .photo-split-img   { min-height: 280px; }
  .cs-grid           { grid-template-columns: 1fr; }
  .team-grid         { grid-template-columns: repeat(2, 1fr); }
  .diff-grid         { grid-template-columns: 1fr 1fr; }
}

/* ── MOBILE NAV & LAYOUT (768px) ── */
@media (max-width: 768px) {
  /* Nav */
  .hamburger { display: flex; }
  .nav-menu {
    display: none; flex-direction: column; align-items: stretch;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); padding: 0;
    box-shadow: 0 12px 40px rgba(0,0,0,.15);
    border-top: 3px solid var(--orange);
    gap: 0; max-height: 85vh; overflow-y: auto;
  }
  .nav-menu.open { display: flex; }
  .nav-menu > li { border-bottom: 1px solid var(--gray-light); }
  .nav-menu > li:last-child { border-bottom: none; }
  .nav-menu .nav-link {
    display: block; padding: 1rem 1.5rem;
    font-size: .95rem; font-weight: 700;
    color: var(--blue-dark); text-align: left;
    min-height: 52px; display: flex; align-items: center;
  }
  .nav-menu .nav-link.active { color: var(--orange); }
  .nav-menu .nav-link.nav-cta {
    background: var(--blue); color: var(--white);
    margin: .75rem 1.5rem; border-radius: 8px;
    justify-content: center; min-height: 48px;
  }
  .nav-menu .nav-link.nav-cta:hover { background: var(--blue-dark); }
  /* Force override ALL desktop dropdown styles on mobile */
  .nav-dropdown {
    display: none !important;
    position: static !important;
    left: auto !important; top: auto !important;
    transform: none !important;
    opacity: 1 !important; visibility: visible !important;
    max-height: none !important; overflow: visible !important;
    box-shadow: none !important;
    border-top: none !important; border-left: none !important;
    border-radius: 0 !important; min-width: 0 !important;
    width: 100% !important; padding: 0 !important;
    background: #eef2f9 !important;
    transition: none !important;
  }
  .has-dropdown.open .nav-dropdown {
    display: block !important;
  }
  .nav-dropdown a {
    display: block !important;
    width: 100% !important;
    padding: 10px 1.5rem 10px 1.75rem !important;
    font-size: .8rem !important; font-weight: 600 !important;
    color: #0D2B60 !important;
    white-space: normal !important; word-break: break-word !important;
    line-height: 1.4 !important; min-height: unset !important;
    box-sizing: border-box !important;
    border-bottom: 1px solid rgba(27,75,155,.08) !important;
  }
  .nav-dropdown a:last-child { border-bottom: none !important; }
  .nav-dropdown a:hover { background: #dde6f5 !important; color: #1B4B9B !important; }
  .dd-arrow { float: right; margin-left: auto; }

  /* Hero */
  .hero { padding: 70px 0 55px; }
  .hero h1 { font-size: 2rem; line-height: 1.2; margin-bottom: 1rem; }
  .hero p  { font-size: .97rem; margin-bottom: 1.75rem; }
  .hero-btns { flex-direction: column; align-items: stretch; gap: .75rem; }
  .hero-btns .btn { text-align: center; padding: .9rem 1.5rem; }
  .hero-trust { gap: .5rem; }
  .ht-item { font-size: .78rem; }
  .hero-download { margin-top: 1.25rem; font-size: .82rem; }
  .hero-badge { font-size: .72rem; }

  /* Page hero */
  .page-hero { padding: 55px 0; }
  .page-hero h1 { font-size: 1.75rem; }
  .page-hero p  { font-size: .92rem; }

  /* Stats */
  .stats-bar { padding: 32px 0; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: .75rem; }
  .stat-item h3 { font-size: 1.6rem; }
  .stat-item p  { font-size: .72rem; }

  /* Sections */
  .section { padding: 56px 0; }
  .section-head h2 { font-size: 1.55rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { flex-direction: column; }
  .service-card-body { padding: 1.25rem; }
  .service-icon { width: 44px; height: 44px; font-size: 1.2rem; margin-bottom: .5rem; }

  /* How we work */
  .hww-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .hww-card { padding: 1.25rem 1rem; }
  .hww-icon { font-size: 1.6rem; }
  .hww-num  { font-size: 1.8rem; }

  /* Why cards */
  .why-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .why-card { padding: 1.25rem 1rem; }

  /* Focus grid */
  .focus-grid { grid-template-columns: 1fr; gap: .75rem; }

  /* Projects */
  .cs-grid { grid-template-columns: 1fr; }
  .cs-card-img { height: 200px; }

  /* Photo split */
  .photo-split { grid-template-columns: 1fr; }
  .photo-split-img { min-height: 240px; order: -1; }
  .photo-split-content { padding: 2rem 1.5rem; }
  .ps-stats { grid-template-columns: repeat(3, 1fr); gap: .75rem; }
  .ps-stat-num { font-size: 1.5rem; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Team */
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  /* Values */
  .values-grid { grid-template-columns: repeat(3, 1fr); }

  /* Sector */
  .sector-grid { grid-template-columns: 1fr 1fr; }

  /* Approach */
  .approach-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* Services detail */
  .sds-inner  { grid-template-columns: 1fr; }
  .sds-label  { position: static; }
  .sds-big-num { font-size: 3rem; }
  .sds-list   { grid-template-columns: 1fr; }
  .svc-overview-grid { grid-template-columns: 1fr; }

  /* Download section */
  .download-btns { flex-direction: column; align-items: center; gap: 1rem; }
  .btn-download  { width: 100%; text-align: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer { padding: 45px 0 0; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }
  .contact-form-box { padding: 1.5rem; }

  /* CTA banner */
  .cta-banner { padding: 50px 0; }
  .cta-banner h2 { font-size: 1.55rem; }
}

/* ── SMALL PHONES (500px) ── */
@media (max-width: 500px) {
  .container  { padding: 0 1.1rem; }
  .section    { padding: 48px 0; }

  /* Nav */
  .nav-logo img { height: 42px; }

  /* Hero */
  .hero { padding: 60px 0 48px; }
  .hero h1 { font-size: 1.75rem; }
  .hero-btns .btn { font-size: .88rem; padding: .8rem 1.25rem; }

  /* Stats — 2 columns */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: .6rem; }
  .stat-item { padding: 1.1rem .75rem; }
  .stat-item h3 { font-size: 1.45rem; }

  /* Cards — single column */
  .why-grid      { grid-template-columns: 1fr; }
  .hww-grid      { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .values-grid   { grid-template-columns: repeat(2, 1fr); }
  .sector-grid   { grid-template-columns: 1fr; }
  .focus-grid    { grid-template-columns: 1fr; }
  .svc-overview-grid { grid-template-columns: 1fr; }
  .team-grid     { grid-template-columns: 1fr; }
  .diff-grid     { grid-template-columns: 1fr; }

  /* Section heads */
  .section-head h2 { font-size: 1.35rem; }
  .page-hero h1    { font-size: 1.5rem; }

  /* Partner grid */
  .partner-grid { grid-template-columns: 1fr 1fr; }

  /* Footer */
  .footer-bottom { flex-direction: column; text-align: center; gap: .5rem; }
  .ps-stats { grid-template-columns: repeat(3, 1fr); }

  /* Insights */
  .insights-grid { grid-template-columns: 1fr; }

  /* Clients bar */
  .clients-bar .section-head h2 { font-size: 1.3rem; }
}

/* ── NAVBAR SHRINK ON SCROLL ──────────────────── */
.navbar.scrolled {
  padding: 0;
  box-shadow: 0 4px 24px rgba(0,0,0,.12);
}
.navbar.scrolled .nav-logo img { height: 42px; }

/* ── HERO PATTERN OVERLAY ─────────────────────── */
.hero-pattern {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; }

/* ── HERO DOWNLOAD BADGE ──────────────────────── */
.hero-download {
  display: inline-flex; align-items: center; gap: .6rem;
  margin-top: 1.75rem;
  color: rgba(255,255,255,.65); font-size: .88rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  padding: 9px 18px; border-radius: 50px; cursor: pointer;
  transition: var(--transition); text-decoration: none;
}
.hero-download:hover {
  background: rgba(247,148,32,.18); color: var(--orange);
  border-color: rgba(247,148,32,.3);
}
.hero-download .dl-icon { font-size: 1rem; }

/* ── CLIENTS / PARTNERS SECTION ───────────────── */
.clients-bar {
  background: var(--white);
  padding: 50px 0;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}
.clients-bar .section-head { margin-bottom: 2.5rem; }
.clients-bar .section-head p { font-size: .92rem; }
.clients-grid {
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center;
  gap: 1.5rem 2.5rem;
}
.client-logo {
  display: flex; align-items: center; justify-content: center;
  width: 160px; height: 64px;
  background: var(--off-white);
  border: 1.5px solid var(--gray-light);
  border-radius: 10px; padding: .75rem 1.25rem;
  transition: var(--transition);
}
.client-logo:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.client-logo span {
  font-size: .78rem; font-weight: 800;
  color: var(--gray); text-align: center; line-height: 1.3;
  text-transform: uppercase; letter-spacing: .5px;
}
.client-logo:hover span { color: var(--blue); }

/* ── TESTIMONIALS ─────────────────────────────── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.testimonial-card {
  background: var(--white); border-radius: 14px;
  padding: 2rem; box-shadow: var(--shadow);
  border-left: 4px solid var(--orange);
  position: relative; transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-card .quote-icon {
  font-size: 3.5rem; color: var(--orange); opacity: .18;
  position: absolute; top: 1rem; right: 1.5rem;
  font-family: Georgia, serif; line-height: 1;
}
.testimonial-card p {
  font-size: .95rem; line-height: 1.75; color: #4A5568;
  font-style: italic; margin-bottom: 1.5rem; position: relative; z-index: 1;
}
.testimonial-author { display: flex; align-items: center; gap: .85rem; }
.author-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800; color: var(--white);
  flex-shrink: 0;
}
.author-avatar.alt { background: linear-gradient(135deg, var(--orange-dark), var(--orange)); }
.author-info h5 { color: var(--blue-dark); font-size: .9rem; margin-bottom: .15rem; }
.author-info span { color: var(--gray); font-size: .8rem; }
.stars { color: var(--orange); font-size: .9rem; margin-bottom: .85rem; letter-spacing: 2px; }

/* ── DOWNLOAD PROFILE SECTION ─────────────────── */
.download-section {
  background: linear-gradient(140deg, #091D42 0%, #1B4B9B 100%);
  padding: 70px 0; text-align: center; color: var(--white);
}
.download-section h2 { color: var(--white); margin-bottom: .75rem; }
.download-section p  { color: rgba(255,255,255,.82); max-width: 520px; margin: 0 auto 2rem; }
.download-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.btn-download {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--orange); color: var(--white);
  padding: 13px 28px; border-radius: var(--radius);
  font-weight: 700; font-size: .95rem; transition: var(--transition);
  border: 2px solid var(--orange);
}
.btn-download:hover {
  background: var(--orange-dark); border-color: var(--orange-dark);
  transform: translateY(-2px); box-shadow: 0 8px 22px rgba(247,148,32,.4);
}

/* ── FLOATING WHATSAPP BUTTON ─────────────────── */
.whatsapp-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: all .3s ease; cursor: pointer;
  text-decoration: none;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37,211,102,.55);
}
.whatsapp-btn svg { width: 30px; height: 30px; fill: #fff; }
.whatsapp-tooltip {
  position: absolute; right: 68px;
  background: var(--gray-dark); color: var(--white);
  padding: 6px 12px; border-radius: 6px;
  font-size: .8rem; font-weight: 600; white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease;
}
.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; }
.whatsapp-tooltip::after {
  content: ''; position: absolute; left: 100%; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--gray-dark);
}

/* ── SCROLL TO TOP BUTTON ─────────────────────── */
.scroll-top {
  position: fixed; bottom: 96px; right: 28px; z-index: 9998;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; cursor: pointer; border: none;
  box-shadow: var(--shadow-md); transition: all .3s ease;
  opacity: 0; pointer-events: none;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--orange); transform: translateY(-3px); }

/* ── ANNOUNCEMENT STRIP ───────────────────────── */
.top-strip {
  background: var(--blue-dark); color: rgba(255,255,255,.88);
  padding: 8px 0; font-size: .82rem; text-align: center;
}
.top-strip a { color: var(--orange); font-weight: 700; }
.top-strip .strip-close {
  position: absolute; right: 2rem; top: 50%; transform: translateY(-50%);
  cursor: pointer; font-size: 1rem; opacity: .7;
}

/* ── 404 PAGE ─────────────────────────────────── */
.page-404 {
  min-height: 80vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 3rem 2rem;
}
.page-404 .err-code {
  font-size: clamp(5rem, 15vw, 10rem); font-weight: 900;
  color: var(--gray-light); line-height: 1; margin-bottom: .5rem;
}
.page-404 h2 { color: var(--blue-dark); margin-bottom: 1rem; }
.page-404 p  { color: var(--gray); max-width: 440px; margin: 0 auto 2rem; }

/* ── RESPONSIVE ADDITIONS ─────────────────────── */
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 650px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .whatsapp-btn { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .scroll-top   { bottom: 82px; right: 20px; }
  .clients-grid { gap: 1rem; }
  .client-logo  { width: 130px; }
}

/* ─────────────────────────────────────────────────
   NEW PAGES — PROJECTS, INSIGHTS, COMMUNITY
   ───────────────────────────────────────────────── */

/* Nav gap for 6 items */
.nav-menu { gap: 1.5rem; }

/* ── TEAM CARD ENHANCEMENTS ───────────────────── */
.team-photo-initials {
  height: 210px;
  background: linear-gradient(140deg, #091D42, #1B4B9B);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.8rem; font-weight: 900; color: rgba(255,255,255,.55);
  letter-spacing: -1px;
}
.team-photo-initials.alt { background: linear-gradient(140deg, #D97F10, var(--orange)); }
.team-info .team-creds {
  font-size: .77rem; color: var(--gray); margin: .4rem 0 .8rem; font-style: italic;
}
.team-tags { display: flex; flex-wrap: wrap; gap: .35rem; }
.team-tag {
  font-size: .66rem; font-weight: 700; padding: 2px 9px; border-radius: 50px;
  background: rgba(27,75,155,.08); color: var(--blue);
  border: 1px solid rgba(27,75,155,.18); text-transform: uppercase; letter-spacing: .4px;
}

/* ── PROJECTS / CASE STUDIES ──────────────────── */
.cs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.cs-card {
  background: var(--white); border-radius: 14px; box-shadow: var(--shadow);
  overflow: hidden; transition: var(--transition); display: flex; flex-direction: column;
}
.cs-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.cs-card-img {
  height: 180px; position: relative;
  display: flex; align-items: flex-end; padding: 1.5rem; overflow: hidden;
}
.cs-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(9,29,66,.88), rgba(9,29,66,.06));
}
.cs-card-img.edu { background: linear-gradient(135deg, #1B4B9B, #2356B8); }
.cs-card-img.tpm { background: linear-gradient(135deg, #0D2B60, #1B4B9B); }
.cs-card-img.hum { background: linear-gradient(135deg, #D97F10, #F79420); }
.cs-card-img.mkt { background: linear-gradient(135deg, #0D5932, #1a8a50); }
.cs-icon-big {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-55%); font-size: 3.2rem; z-index: 1;
}
.cs-location {
  position: relative; z-index: 2; color: rgba(255,255,255,.82); font-size: .78rem;
}
.cs-card-body { padding: 1.5rem 1.75rem; flex: 1; display: flex; flex-direction: column; }
.cs-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .8rem; }
.cs-tag {
  font-size: .68rem; font-weight: 700; padding: 3px 10px; border-radius: 50px;
  background: rgba(27,75,155,.08); color: var(--blue); border: 1px solid rgba(27,75,155,.2);
  text-transform: uppercase; letter-spacing: .4px;
}
.cs-tag.orange { background: rgba(247,148,32,.1); color: var(--orange); border-color: rgba(247,148,32,.28); }
.cs-card-body h3 { color: var(--blue-dark); font-size: 1.05rem; line-height: 1.35; margin-bottom: .55rem; }
.cs-card-body p  { color: var(--gray); font-size: .87rem; line-height: 1.7; flex: 1; margin: 0; }
.cs-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding: .85rem 1.75rem; border-top: 1px solid var(--gray-light); background: var(--off-white);
}
.cs-meta .cs-client { font-size: .76rem; font-weight: 700; color: var(--blue-dark); }
.cs-meta .cs-year   { font-size: .73rem; color: var(--gray); }
.cs-meta .cs-value  { font-size: .82rem; font-weight: 800; color: var(--orange); }

/* Full case study detail cards */
.cs-detail-card {
  background: var(--white); border-radius: 16px; box-shadow: var(--shadow);
  margin-bottom: 3rem; overflow: hidden;
}
.cs-detail-header {
  padding: 2.5rem 3rem; position: relative; overflow: hidden;
  background: linear-gradient(140deg, #091D42, #1B4B9B); color: var(--white);
}
.cs-detail-header.cs-orange { background: linear-gradient(140deg, #D97F10, #F79420); }
.cs-detail-header.cs-green  { background: linear-gradient(140deg, #0D5932, #1a8a50); }
.cs-detail-header::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; background: rgba(255,255,255,.06); border-radius: 50%;
}
.cs-detail-header .case-num {
  font-size: .7rem; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: .45rem;
}
.cs-detail-header h2 { color: var(--white); font-size: 1.45rem; margin-bottom: .8rem; line-height: 1.3; }
.cs-detail-meta { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.25rem; }
.cs-dm-item {
  background: rgba(255,255,255,.1); padding: .5rem 1rem;
  border-radius: 8px; display: flex; flex-direction: column; min-width: 100px;
}
.cs-dm-item span:first-child {
  font-size: .62rem; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; color: rgba(255,255,255,.5);
}
.cs-dm-item span:last-child { font-size: .88rem; color: var(--white); font-weight: 600; margin-top: 2px; }
.cs-detail-body { padding: 2.5rem 3rem; }
.pias-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-bottom: 1.75rem; }
.pia-block { padding: 1.5rem; border-radius: 10px; background: var(--off-white); }
.pia-label {
  font-size: .67rem; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--orange); margin-bottom: .55rem;
}
.pia-block h4 { color: var(--blue-dark); margin-bottom: .55rem; font-size: .95rem; }
.pia-block p  { color: #4A5568; font-size: .88rem; line-height: 1.75; margin: 0; }
.pia-block ul { list-style: none; }
.pia-block ul li {
  font-size: .86rem; color: #4A5568; padding: .28rem 0;
  border-bottom: 1px solid var(--gray-light);
  display: flex; align-items: flex-start; gap: .5rem;
}
.pia-block ul li::before { content: '→'; color: var(--orange); font-weight: 700; flex-shrink: 0; }
.pia-block ul li:last-child { border-bottom: none; }
.cs-impact-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  padding: 1.5rem 1.75rem; background: var(--off-white); border-radius: 10px;
}
.csi-item { text-align: center; }
.csi-num   { font-size: 1.65rem; font-weight: 900; color: var(--blue); line-height: 1; margin-bottom: .25rem; }
.csi-label { font-size: .73rem; color: var(--gray); }

/* ── INSIGHTS / BLOG PAGE ─────────────────────── */
.featured-insight {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--white); border-radius: 16px;
  box-shadow: var(--shadow-md); overflow: hidden; margin-bottom: 3.5rem;
}
.fi-img {
  background: linear-gradient(140deg, #091D42, #1B4B9B);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; min-height: 320px;
}
.fi-body { padding: 3rem; }
.fi-cat {
  font-size: .7rem; font-weight: 800; padding: 4px 14px; border-radius: 50px;
  letter-spacing: 1px; text-transform: uppercase; display: inline-block;
  background: rgba(247,148,32,.12); color: var(--orange);
  border: 1px solid rgba(247,148,32,.3); margin-bottom: 1rem;
}
.fi-body h2 { color: var(--blue-dark); font-size: 1.55rem; margin-bottom: .85rem; line-height: 1.3; }
.fi-body p  { color: var(--gray); margin-bottom: 1.5rem; line-height: 1.8; }
.fi-meta { font-size: .8rem; color: var(--gray); display: flex; gap: 1.25rem; flex-wrap: wrap; }

.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.insight-card {
  background: var(--white); border-radius: 12px; box-shadow: var(--shadow);
  overflow: hidden; transition: var(--transition); display: flex; flex-direction: column;
}
.insight-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.ic-img {
  height: 155px; display: flex; align-items: center;
  justify-content: center; font-size: 3rem;
}
.ic-img.ic-blue   { background: linear-gradient(135deg, #091D42, #1B4B9B); }
.ic-img.ic-orange { background: linear-gradient(135deg, #D97F10, #F79420); }
.ic-img.ic-green  { background: linear-gradient(135deg, #0D5932, #1a8a50); }
.ic-img.ic-purple { background: linear-gradient(135deg, #3a0d6e, #6b2faa); }
.ic-img.ic-teal   { background: linear-gradient(135deg, #0d5c65, #117a87); }
.ic-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.ic-cat {
  font-size: .67rem; font-weight: 800; padding: 3px 10px; border-radius: 50px;
  letter-spacing: 1px; text-transform: uppercase; display: inline-block;
  background: rgba(27,75,155,.08); color: var(--blue); border: 1px solid rgba(27,75,155,.18);
  margin-bottom: .7rem; align-self: flex-start;
}
.ic-body h4 { color: var(--blue-dark); font-size: .97rem; line-height: 1.4; margin-bottom: .55rem; }
.ic-body p  { color: var(--gray); font-size: .86rem; line-height: 1.7; flex: 1; margin: 0 0 .85rem; }
.ic-meta { font-size: .75rem; color: var(--gray); display: flex; justify-content: space-between; }
.read-link {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .8rem; font-weight: 700; color: var(--blue);
  text-transform: uppercase; letter-spacing: .5px; transition: color var(--transition); margin-top: .8rem;
}
.read-link:hover { color: var(--orange); }
.read-link::after { content: ' →'; }

.newsletter-box {
  background: linear-gradient(140deg, #091D42, #1B4B9B);
  border-radius: 16px; padding: 3.5rem; text-align: center; color: var(--white); margin-top: 4rem;
}
.newsletter-box h3 { color: var(--white); margin-bottom: .6rem; }
.newsletter-box > p { color: rgba(255,255,255,.8); margin-bottom: 2rem; }
.newsletter-form { display: flex; gap: .75rem; max-width: 480px; margin: 0 auto; }
.newsletter-form input {
  flex: 1; background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2); color: var(--white);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.45); }
.newsletter-form input:focus { border-color: var(--orange); background: rgba(255,255,255,.15); }

/* ── COMMUNITY ENGAGEMENT PAGE ────────────────── */
.initiative-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.initiative-card {
  background: var(--white); border-radius: 14px; box-shadow: var(--shadow);
  overflow: hidden; transition: var(--transition);
}
.initiative-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.init-header {
  padding: 2rem 2.25rem; display: flex; align-items: center; gap: 1.1rem;
  background: linear-gradient(135deg, #091D42, #1B4B9B);
}
.init-header.orange { background: linear-gradient(135deg, #D97F10, #F79420); }
.init-header.green  { background: linear-gradient(135deg, #0D5932, #1a8a50); }
.init-icon {
  width: 54px; height: 54px; background: rgba(255,255,255,.15);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 1.6rem; flex-shrink: 0;
}
.init-header h3 { color: var(--white); font-size: 1.05rem; }
.init-header p  { color: rgba(255,255,255,.72); font-size: .82rem; margin: .25rem 0 0; }
.init-body { padding: 1.5rem 2.25rem; }
.init-body p { color: var(--gray); font-size: .9rem; line-height: 1.75; margin-bottom: .85rem; }
.init-stats { display: flex; gap: 2rem; padding-top: .85rem; border-top: 1px solid var(--gray-light); }
.isn { font-size: 1.5rem; font-weight: 900; color: var(--orange); line-height: 1; }
.isl { font-size: .72rem; color: var(--gray); text-transform: uppercase; letter-spacing: .5px; margin-top: 2px; }
.impact-banner { background: var(--blue-dark); padding: 65px 0; }
.impact-banner .section-head h2 { color: var(--white); }
.impact-banner .section-head p  { color: rgba(255,255,255,.65); }
.impact-nums-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.in-item .inn { font-size: 2.75rem; font-weight: 900; color: var(--orange); line-height: 1; margin-bottom: .3rem; }
.in-item .inl { color: rgba(255,255,255,.7); font-size: .9rem; }

/* ── PROPOSAL FORM SECTION ────────────────────── */
.proposal-section { padding: 90px 0; background: var(--off-white); }
.proposal-header { text-align: center; margin-bottom: 3rem; }
.proposal-header h2 { color: var(--blue-dark); margin-bottom: .65rem; }
.proposal-header p  { color: var(--gray); max-width: 580px; margin: 0 auto; }
.proposal-wrapper {
  max-width: 840px; margin: 0 auto; background: var(--white);
  border-radius: 20px; box-shadow: var(--shadow-md); padding: 3rem;
}
.budget-options { display: grid; grid-template-columns: repeat(4, 1fr); gap: .65rem; margin-bottom: 1.25rem; }
.budget-opt { position: relative; }
.budget-opt input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.budget-opt label {
  display: block; padding: .8rem .65rem; text-align: center;
  border: 2px solid var(--gray-light); border-radius: 8px; cursor: pointer;
  transition: var(--transition); font-size: .8rem; font-weight: 700;
  color: var(--gray-dark); background: var(--off-white); line-height: 1.3;
}
.budget-opt input[type="radio"]:checked + label {
  border-color: var(--blue); background: var(--blue); color: var(--white);
}
.budget-opt label:hover { border-color: var(--blue); color: var(--blue); background: var(--white); }

/* ── RESPONSIVE — NEW PAGES ───────────────────── */
@media (max-width: 1100px) {
  .cs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .pias-grid { grid-template-columns: 1fr; }
  .featured-insight { grid-template-columns: 1fr; }
  .fi-img { min-height: 200px; }
  .initiative-grid { grid-template-columns: 1fr; }
  .impact-nums-grid { grid-template-columns: repeat(2, 1fr); }
  .budget-options { grid-template-columns: repeat(2, 1fr); }
  .cs-impact-row { grid-template-columns: repeat(2, 1fr); }
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .cs-grid { grid-template-columns: 1fr; }
  .cs-detail-header, .cs-detail-body { padding: 1.75rem; }
  .newsletter-form { flex-direction: column; }
  .proposal-wrapper { padding: 1.75rem; }
}
@media (max-width: 500px) {
  .insights-grid { grid-template-columns: 1fr; }
  .impact-nums-grid { grid-template-columns: 1fr 1fr; }
  .budget-options { grid-template-columns: 1fr 1fr; }
}

/* ── GEO MAP GRID ─────────────────────────────── */
@media (max-width: 820px) {
  .geo-grid { grid-template-columns: 1fr !important; }
  .geo-grid img { max-width: 380px; margin: 0 auto; }
}

/* ═══════════════════════════════════════════════
   DESIGN UPGRADE — PREMIUM VISUAL SYSTEM
   ═══════════════════════════════════════════════ */

/* ── ANIMATED HERO GRADIENT ─────────────────────── */
.hero {
  background: linear-gradient(-45deg, #040d1e, #0D2B60, #173d80, #062448) !important;
  background-size: 400% 400% !important;
  animation: gradientFlow 18s ease infinite;
}
@keyframes gradientFlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ── HERO ORBS ──────────────────────────────────── */
.hero-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 1;
}
.hero-orb-1 {
  width: 520px; height: 520px; top: -130px; right: -130px;
  background: radial-gradient(circle at 40% 40%, rgba(247,148,32,.20), transparent 65%);
  animation: orbFloat 28s ease-in-out infinite;
}
.hero-orb-2 {
  width: 340px; height: 340px; bottom: -100px; left: -80px;
  background: radial-gradient(circle at 60% 60%, rgba(255,255,255,.07), transparent 65%);
  animation: orbFloat 22s ease-in-out infinite reverse;
}
.hero-orb-3 {
  width: 200px; height: 200px; top: 38%; left: 55%;
  background: radial-gradient(circle at 50% 50%, rgba(247,148,32,.10), transparent 65%);
  animation: orbFloat 16s ease-in-out infinite;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(22px, -28px) scale(1.06); }
  66%       { transform: translate(-16px, 16px) scale(.95); }
}

/* ── SHIMMER GRADIENT HERO TEXT ─────────────────── */
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #F79420 0%, #ffca70 40%, #F79420 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: unset;
  animation: shimmerText 4s linear infinite;
}
@keyframes shimmerText { to { background-position: 200% center; } }

/* ── HERO BADGE ─────────────────────────────────── */
.hero-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  border-radius: 50px; padding: .45rem 1.2rem .45rem .75rem;
  font-size: .78rem; font-weight: 700; color: rgba(255,255,255,.9);
  letter-spacing: .5px; text-transform: uppercase; margin-bottom: 1.4rem;
  backdrop-filter: blur(8px);
}
.hero-badge .badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,.28);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,.28); }
  50%       { box-shadow: 0 0 0 6px rgba(34,197,94,.12); }
}

/* ── LOGO TREATMENTS (transparent PNG) ─────────── */
.nav-logo img {
  /* drop-shadow adds contrast so logo is visible on any background */
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.18));
}
.footer-brand img {
  /* show real logo colors; drop-shadow lifts it off the dark background */
  filter: drop-shadow(0 1px 6px rgba(0,0,0,0.45)) brightness(1.08);
  opacity: 1;
}

/* ── SCROLL PROGRESS BAR ────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 10000;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, #F79420, #ffca70, #F79420);
  background-size: 200% auto;
  box-shadow: 0 0 10px rgba(247,148,32,.6);
  pointer-events: none;
  transition: width .06s linear;
}

/* ── CUSTOM SCROLLBAR ───────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f0f4fa; }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }

/* ── WAVE SECTION DIVIDERS ──────────────────────── */
.wave-divider { display: block; line-height: 0; margin-bottom: -1px; }
.wave-divider svg { display: block; width: 100%; }

/* ── GLASSMORPHISM SERVICE CARDS ────────────────── */
.service-card {
  background: rgba(255,255,255,.97) !important;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(27,75,155,.07) !important;
}

/* ── CTA BUTTON SHIMMER ─────────────────────────── */
.btn-orange { position: relative; overflow: hidden; }
.btn-orange::after {
  content: ''; position: absolute; top: 0; left: -110%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  transform: skewX(-18deg);
  animation: btnShimmer 3s ease-in-out infinite;
}
@keyframes btnShimmer {
  0%   { left: -110%; }
  55%  { left: 130%; }
  100% { left: 130%; }
}

/* ── ANIMATED CTA BANNER ────────────────────────── */
.cta-banner {
  background: linear-gradient(-45deg, #c56d08, #F79420, #e8a332, #D97F10) !important;
  background-size: 300% 300% !important;
  animation: gradientFlow 10s ease infinite;
}

/* ── WHY CARD HOVER BORDER GLOW ─────────────────── */
.why-card {
  border: 1px solid transparent;
  position: relative;
}
.why-card:hover {
  border-color: rgba(247,148,32,.25);
  box-shadow: 0 12px 40px rgba(27,75,155,.15), 0 0 0 1px rgba(247,148,32,.1);
}

/* ── FOCUS ITEM HOVER STATE ─────────────────────── */
.focus-item:hover { background: var(--blue) !important; transform: translateX(5px); }
.focus-item:hover h4 { color: var(--white) !important; }
.focus-item:hover .focus-num {
  background: rgba(255,255,255,.18) !important; color: var(--white) !important;
}

/* ── TESTIMONIAL SIDE REVEAL ────────────────────── */
.testimonial-card { position: relative; overflow: hidden; }
.testimonial-card::before {
  content: ''; position: absolute; left: 0; top: 0;
  width: 4px; height: 0;
  background: linear-gradient(180deg, var(--orange), var(--blue));
  transition: height .55s ease;
}
.testimonial-card:hover::before { height: 100%; }

/* ── NAVBAR BLUR WHEN SCROLLED ──────────────────── */
.navbar.scrolled {
  background: rgba(255,255,255,.92) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(27,75,155,.12) !important;
}

/* ── CLIENT LOGO CARD ENHANCED ──────────────────── */
.client-logo {
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}
.client-logo:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(27,75,155,.12);
  transform: translateY(-3px);
}

/* ── PAGE HERO ANIMATED ─────────────────────────── */
.page-hero {
  background: linear-gradient(-45deg, #040d1e, #0D2B60, #173d80, #062448) !important;
  background-size: 400% 400% !important;
  animation: gradientFlow 20s ease infinite;
}

/* ── STATS BAR ENHANCED ─────────────────────────── */
.stat-item h3 { text-shadow: 0 0 40px rgba(247,148,32,.25); }

/* ── DOWNLOAD SECTION ENHANCED ──────────────────── */
.download-section {
  background: linear-gradient(-45deg, #040d1e, #0D2B60, #173d80, #062448) !important;
  background-size: 400% 400% !important;
  animation: gradientFlow 22s ease infinite;
}

/* ── HERO TRUST INDICATORS ──────────────────────── */
.hero-trust {
  display: flex; flex-wrap: wrap; gap: .65rem 1.5rem;
  margin-top: 2.5rem;
}
.ht-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .8rem; color: rgba(255,255,255,.72);
  font-weight: 500; letter-spacing: .2px;
}
.ht-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
}

/* ── HOW WE DELIVER RESULTS ─────────────────────── */
.hww-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem;
}
.hww-card {
  background: var(--white); border-radius: 14px;
  padding: 2.25rem 1.75rem; box-shadow: var(--shadow);
  position: relative; overflow: hidden;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.hww-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--orange);
}
.hww-num {
  font-size: 3.5rem; font-weight: 900;
  color: var(--gray-light); line-height: 1;
  position: absolute; top: 1rem; right: 1.25rem;
  font-family: 'Montserrat', sans-serif;
}
.hww-icon { font-size: 2rem; margin-bottom: .85rem; }
.hww-card h3 { color: var(--blue-dark); font-size: 1.05rem; margin-bottom: .6rem; }
.hww-card p  { color: var(--gray); font-size: .9rem; line-height: 1.75; margin: 0; }

/* ── 7-COLUMN SERVICES GRID ─────────────────────── */
.services-grid-7 {
  grid-template-columns: repeat(4, 1fr);
}
.services-grid-7 .service-card:last-child {
  grid-column: span 1;
}
@media (max-width: 1100px) {
  .services-grid-7 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .hww-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid-7 { grid-template-columns: repeat(2, 1fr); }
  .hero-trust { gap: .5rem 1rem; }
}
@media (max-width: 500px) {
  .hww-grid { grid-template-columns: 1fr; }
  .services-grid-7 { grid-template-columns: 1fr; }
}

/* ── HERO BACKGROUND PHOTO ──────────────────────── */
.hero-bg-img-wrap {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: .14; mix-blend-mode: luminosity;
  filter: grayscale(35%) blur(1px);
}

/* ── CANVAS PARTICLE LAYER ──────────────────────── */
#heroCanvas {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
}

/* ── INFINITE LOGO MARQUEE (ASAL-style) ─────────── */
.logo-marquee-outer {
  overflow: hidden; padding: .5rem 0;
  -webkit-mask: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.logo-track {
  display: flex; align-items: center;
  gap: 2rem; width: max-content;
  animation: logoScroll 32s linear infinite;
}
.logo-marquee-outer:hover .logo-track {
  animation-play-state: paused;
}
@keyframes logoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── PHOTO SPLIT SECTION (ASAL "Our Story" style) ── */
.photo-split {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 520px; overflow: hidden;
}
.photo-split-img {
  position: relative; overflow: hidden; min-height: 420px;
}
.photo-split-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block; transition: transform .6s ease;
}
.photo-split:hover .photo-split-img img { transform: scale(1.04); }
.photo-split-img .ps-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(140deg, rgba(13,43,96,.55), rgba(27,75,155,.25));
}
.photo-split-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 4rem 4.5rem; background: var(--white);
}
.photo-split-content .ps-tag {
  font-size: .72rem; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--orange); margin-bottom: 1rem;
  display: flex; align-items: center; gap: .5rem;
}
.photo-split-content .ps-tag::before {
  content: ''; width: 24px; height: 2px; background: var(--orange);
}
.photo-split-content h2 { color: var(--blue-dark); margin-bottom: 1.25rem; }
.photo-split-content p  { color: #4A5568; line-height: 1.85; margin-bottom: 1.25rem; }
.ps-stats { display: flex; gap: 2.5rem; margin-top: 1.5rem; }
.ps-stat-num { font-size: 2rem; font-weight: 900; color: var(--blue); line-height: 1; }
.ps-stat-label { font-size: .78rem; color: var(--gray); margin-top: 2px; }

/* ── PROJECT CARD WITH REAL PHOTO ───────────────── */
.cs-card-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block; z-index: 0;
}
.cs-card-img::after { z-index: 1; }
.cs-icon-big { z-index: 2 !important; }
.cs-location  { z-index: 3 !important; }

/* ── CLIENT LOGO IMAGE SUPPORT ───────────────────── */
.client-logo img {
  max-width: 120px; max-height: 44px;
  width: auto; height: auto;
  object-fit: contain; display: block;
  filter: none;
  transition: transform var(--transition), filter var(--transition);
}
.client-logo:hover img { transform: scale(1.06); }

/* ── INSIGHT CARD WITH REAL PHOTO ───────────────── */
.ic-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 900px) {
  .photo-split { grid-template-columns: 1fr; }
  .photo-split-img { min-height: 280px; }
  .photo-split-content { padding: 2.5rem 2rem; }
  .ps-stats { gap: 1.5rem; }
}
@media (max-width: 500px) {
  .photo-split-content { padding: 2rem 1.25rem; }
  .ps-stats { flex-wrap: wrap; gap: 1rem; }
}

/* ── HERO INNER Z-INDEX ──────────────────────────── */
.hero-inner { z-index: 3 !important; }

/* ── CLICKABLE PROJECT CARDS ────────────────────── */
a.cs-card-link {
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  cursor: pointer;
}
a.cs-card-link:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
a.cs-card-link:hover .cs-cta { color: var(--orange); }
.cs-cta {
  font-size: .82rem; font-weight: 800; color: var(--blue);
  text-transform: uppercase; letter-spacing: .5px;
  transition: color var(--transition);
}

/* (logo handled in LOGO TREATMENTS block above) */

/* ── RESPONSIVE ADJUSTMENTS ─────────────────────── */
@media (max-width: 768px) {
  .hero-orb-1 { width: 320px; height: 320px; top: -80px; right: -80px; }
  .hero-orb-2 { width: 220px; height: 220px; }
  .hero-orb-3 { display: none; }
}

/* ═══════════════════════════════════════════════
   SCROLL REVEAL SYSTEM v2
   ═══════════════════════════════════════════════ */

[data-reveal] {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1);
}
[data-reveal="left"]  { transform: translateX(-60px); }
[data-reveal="right"] { transform: translateX(60px); }
[data-reveal="scale"] { transform: scale(0.88) translateY(20px); }
[data-reveal="fade"]  { transform: none; }
[data-reveal].in-view { opacity: 1; transform: none; }
[data-reveal].in-view.d1 { transition-delay: .10s; }
[data-reveal].in-view.d2 { transition-delay: .20s; }
[data-reveal].in-view.d3 { transition-delay: .30s; }
[data-reveal].in-view.d4 { transition-delay: .40s; }

/* Section underline reveals left→right */
[data-reveal] .underline  { width: 0 !important; transition: width .7s ease .5s; }
[data-reveal].in-view .underline { width: 56px !important; }

/* Stagger grid parent */
[data-stagger] > * {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity .55s cubic-bezier(.22,1,.36,1), transform .55s cubic-bezier(.22,1,.36,1);
}
[data-stagger].in-view > * { opacity: 1; transform: none; }
[data-stagger].in-view > *:nth-child(1) { transition-delay: .04s; }
[data-stagger].in-view > *:nth-child(2) { transition-delay: .11s; }
[data-stagger].in-view > *:nth-child(3) { transition-delay: .18s; }
[data-stagger].in-view > *:nth-child(4) { transition-delay: .25s; }
[data-stagger].in-view > *:nth-child(5) { transition-delay: .32s; }
[data-stagger].in-view > *:nth-child(6) { transition-delay: .39s; }
[data-stagger].in-view > *:nth-child(7) { transition-delay: .46s; }
[data-stagger].in-view > *:nth-child(8) { transition-delay: .53s; }

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-stagger] > * {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
}

/* ═══════════════════════════════════════════════
   EXPANDABLE FOCUS ITEMS
   ═══════════════════════════════════════════════ */

.focus-item.expandable {
  flex-direction: column; align-items: stretch;
  cursor: pointer; user-select: none;
}
.focus-item-top {
  display: flex; align-items: center; gap: 1rem; width: 100%;
}
.expand-arrow {
  margin-left: auto; color: var(--orange);
  font-size: .72rem; font-weight: 900;
  transition: transform .3s ease; flex-shrink: 0;
  line-height: 1;
}
.focus-item.expandable.open .expand-arrow { transform: rotate(180deg); }

.focus-expand-body {
  max-height: 0; overflow: hidden; opacity: 0;
  font-size: .86rem; color: #4A5568; line-height: 1.78;
  transition: max-height .38s ease, opacity .28s ease, padding .3s ease, margin .3s ease;
  padding-top: 0; margin-top: 0;
}
.focus-item.expandable.open .focus-expand-body {
  max-height: 160px; opacity: 1;
  padding-top: .7rem; margin-top: .55rem;
  border-top: 1px solid rgba(27,75,155,.1);
}
.focus-item.expandable.open {
  background: rgba(27,75,155,.04);
  border-left-color: var(--blue);
}
.focus-item.expandable:not(.open):hover { background: rgba(247,148,32,.04); }

/* ═══════════════════════════════════════════════
   EXPANDABLE WHY-CARDS
   ═══════════════════════════════════════════════ */

.why-card.expandable {
  cursor: pointer; user-select: none;
  position: relative; overflow: hidden;
}
.why-card.expandable::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  transition: width .35s ease;
}
.why-card.expandable.open::after { width: 100%; }

.why-expand-detail {
  max-height: 0; overflow: hidden; opacity: 0;
  font-size: .84rem; color: #4A5568; line-height: 1.72; text-align: left;
  transition: max-height .38s ease, opacity .28s ease, padding .3s ease, margin .3s ease;
  padding-top: 0; margin-top: 0;
}
.why-card.expandable.open .why-expand-detail {
  max-height: 200px; opacity: 1;
  padding-top: .8rem; margin-top: .75rem;
  border-top: 1px solid var(--gray-light);
}
.why-toggle-btn {
  display: block; width: 100%;
  background: none; border: none; cursor: pointer;
  font-size: .71rem; font-weight: 800; color: var(--orange);
  text-transform: uppercase; letter-spacing: .6px;
  padding: .45rem 0 0; text-align: center;
  transition: color var(--transition);
}
.why-toggle-btn:hover { color: var(--blue); }
.why-card.expandable.open .why-toggle-btn { color: var(--gray); }

/* ── SVC-OV-CARD EXPANDABLE ─────────────────────── */
.svc-ov-card.expandable {
  cursor: pointer; user-select: none;
}
.svc-ov-body {
  max-height: 0; overflow: hidden; opacity: 0;
  font-size: .84rem; color: var(--gray); line-height: 1.72;
  transition: max-height .38s ease, opacity .28s ease, padding .3s ease;
  padding-top: 0;
}
.svc-ov-card.expandable.open .svc-ov-body {
  max-height: 120px; opacity: 1; padding-top: .6rem;
}
.svc-ov-card .ov-arrow {
  float: right; font-size: .7rem; color: var(--orange);
  transition: transform .3s ease; font-weight: 900;
}
.svc-ov-card.expandable.open .ov-arrow { transform: rotate(180deg); }

/* ── PARALLAX / IMAGE FADE ENHANCEMENT ──────────── */
.photo-split-img[data-reveal="left"],
.photo-split-content[data-reveal="right"] {
  transition-duration: .9s;
}

/* ── SECTION COUNT-UP REVEAL ─────────────────────── */
.stats-grid[data-stagger] > * {
  opacity: 0;
  transform: translateY(30px) scale(.95);
  transition: opacity .6s ease, transform .6s ease;
}
.stats-grid[data-stagger].in-view > * {
  opacity: 1; transform: none;
}

/* ── FINAL POLISH ────────────────────────────────── */
.section-head h2 { letter-spacing: -.3px; }
.hero h1 { letter-spacing: -.5px; }
.hww-card { transition: transform .3s ease, box-shadow .3s ease, border-bottom-color .3s ease; }
.service-card { transition: transform .3s ease, box-shadow .3s ease, border-top-color .3s ease; }

/* Why-card center alignment fix when expanded */
.why-card.expandable { text-align: center; }
.why-card.expandable .why-expand-detail { text-align: left; }

/* Focus item top flex fix */
.focus-item.expandable .focus-item-top h4 { margin: 0; }

/* Service overview card arrow inline */
.svc-ov-card .ov-num { display: flex; align-items: center; justify-content: space-between; }
.svc-ov-card .ov-num .ov-arrow { font-size: .65rem; color: var(--orange); transition: transform .3s ease; margin-top: 0; }
.svc-ov-card.expandable.open .ov-num .ov-arrow { transform: rotate(180deg); }

/* Smooth image loading placeholder */
.photo-split-img img { background: var(--gray-light); }
.cs-card-img img { background: var(--gray-light); }

/* Hover glow on nav-cta button */
.nav-cta:hover { box-shadow: 0 4px 16px rgba(247,148,32,.35) !important; }

/* Footer brand image sizing */
.footer-brand img {
  height: 48px;
  filter: drop-shadow(0 1px 8px rgba(0,0,0,0.50)) brightness(1.1);
}

/* Stats bar: number glow pulse on hover */
.stat-item:hover h3 { color: var(--orange); text-shadow: 0 0 20px rgba(247,148,32,.4); }
.stat-item { cursor: default; transition: transform .25s ease; }
.stat-item:hover { transform: translateY(-3px); }

/* Testimonial card: higher quality quote mark */
.testimonial-card .quote-icon { font-family: 'Montserrat', Georgia, serif; }

/* CTA banner: sharper text */
.cta-banner h2 { text-shadow: 0 2px 12px rgba(0,0,0,.15); }

/* Improve mobile hero button stack */
@media (max-width: 480px) {
  .hero-btns .btn { width: 100%; text-align: center; justify-content: center; }
  .ps-stats { gap: 1.25rem; }
  .ps-stat-num { font-size: 1.6rem; }
}

/* Restore normal hover transitions after stagger reveal */
.hww-grid[data-stagger].in-view .hww-card {
  transition: transform .3s ease, box-shadow .3s ease, border-bottom-color .3s ease;
}

/* ═══════════════════════════════════════════════
   FIX: Focus item hover — expandable items must NOT
   turn blue (text becomes unreadable over blue bg)
   ═══════════════════════════════════════════════ */
.focus-item.expandable:hover {
  background: rgba(247,148,32,.08) !important;
  transform: translateX(3px) !important;
}
.focus-item.expandable:hover h4 {
  color: var(--blue-dark) !important;
}
.focus-item.expandable:hover .focus-num {
  background: var(--blue) !important;
  color: var(--white) !important;
}
.focus-item.expandable.open:hover {
  background: rgba(27,75,155,.06) !important;
  transform: none !important;
}
.focus-item.expandable .focus-expand-body { color: #4A5568; }

/* ── Insight card image support ─────────────────── */
.ic-img { position: relative; overflow: hidden; }
.ic-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: brightness(0.58) saturate(1.1);
  z-index: 0;
  transition: transform .5s ease;
}
.insight-card:hover .ic-img img { transform: scale(1.05); }
.ic-img > *:not(img) { position: relative; z-index: 1; }

/* ── About visual background image support ─────── */
.about-visual { position: relative; overflow: hidden; }
.about-visual-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: .22; filter: grayscale(15%);
  z-index: 0;
}
.about-visual .av-icon,
.about-visual h3,
.about-visual p  { position: relative; z-index: 1; }

/* ── Service card image header support ──────────── */
.service-card-img {
  height: 160px; position: relative; overflow: hidden;
}
.service-card-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
  transition: transform .5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.06); }

/* ── Initiative card header image support ────────── */
.init-header { position: relative; overflow: hidden; }
.init-header img.init-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: .18; filter: grayscale(25%);
  z-index: 0; transition: opacity .4s ease;
}
.initiative-card:hover .init-header img.init-bg { opacity: .28; }
.init-header > *:not(img) { position: relative; z-index: 1; }

/* ── Focus area background image support ─────────── */
.focus-item { position: relative; overflow: hidden; }
.focus-item img.focus-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  opacity: .07; filter: grayscale(20%); z-index: 0;
  transition: opacity .4s ease;
}
.focus-item:hover img.focus-bg { opacity: .14; }
.focus-item > *:not(img) { position: relative; z-index: 1; }

/* ── Approach card image support ─────────────────── */
.approach-card { position: relative; overflow: hidden; }
.approach-card img.approach-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: .07; filter: grayscale(40%);
  z-index: 0; transition: opacity .4s ease;
}
.approach-card:hover img.approach-bg { opacity: .14; }
.approach-card > *:not(img) { position: relative; z-index: 1; }
