/* ============================================================
   ICMC THEME — main.css
   International Chain Management & Consulting
   ============================================================ */

:root {
  --blue:    #1565C0;
  --dark:    #0D47A1;
  --navy:    #1A237E;
  --gold:    #E8A020;
  --light:   #F0F4FF;
  --gray:    #546E7A;
  --text:    #1C2B3A;
  --white:   #FFFFFF;
  --radius:  8px;
  --shadow:  0 4px 24px rgba(21,101,192,.12);
  --shadow2: 0 12px 40px rgba(21,101,192,.22);
  --trans:   all .3s ease;
}

/* ── Reset ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: var(--trans); }
a:hover { color: var(--dark); }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
h4 { font-size: 1rem; }

p { max-width: 68ch; }

/* ── Layout helpers ───────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--wide { max-width: 1400px; }
section { padding: 96px 0; }
section.tight { padding: 64px 0; }

/* ── Topbar ───────────────────────────────── */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.85);
  font-size: .8rem;
  padding: 8px 0;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar__left { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar__right { display: flex; gap: 16px; align-items: center; }
.topbar a { color: rgba(255,255,255,.85); font-size: .8rem; }
.topbar a:hover { color: var(--gold); }
.topbar svg { width: 13px; height: 13px; margin-right: 4px; vertical-align: middle; }
.topbar__item { display: flex; align-items: center; }

/* ── Navbar ───────────────────────────────── */
.site-nav {
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow .3s;
}
.site-nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.1);
}
.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.site-nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.site-nav__logo img { height: 50px; width: auto; }
.site-nav__logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.2;
}
.site-nav__logo-sub {
  font-size: .65rem;
  font-weight: 500;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .05em;
  display: block;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-menu a {
  font-size: .92rem;
  font-weight: 500;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--trans);
  white-space: nowrap;
}
.nav-menu a:hover,
.nav-menu .current-menu-item > a {
  color: var(--blue);
  background: var(--light);
}
.nav-menu .btn-nav {
  background: var(--blue);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 6px;
  font-weight: 600;
  margin-left: 8px;
}
.nav-menu .btn-nav:hover {
  background: var(--dark);
  color: var(--white) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--trans);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Dropdown */
.nav-menu .menu-item-has-children { position: relative; }
.nav-menu .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--trans);
}
.nav-menu .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-menu .sub-menu a {
  padding: 10px 20px;
  font-size: .88rem;
  color: var(--text);
  border-radius: 0;
  display: block;
}
.nav-menu .sub-menu a:hover {
  color: var(--blue);
  background: var(--light);
}

/* ── Buttons ──────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: var(--trans);
  text-decoration: none;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow2);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.7);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: #c97d10;
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}
.btn-wa {
  background: #25D366;
  color: var(--white);
}
.btn-wa:hover {
  background: #1ebe5d;
  color: var(--white);
  transform: translateY(-2px);
}
.btn-wa svg { width: 20px; height: 20px; }

/* ── Badge / Tag ──────────────────────────── */
.badge {
  display: inline-block;
  background: var(--light);
  color: var(--blue);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.badge--gold {
  background: rgba(232,160,32,.12);
  color: var(--gold);
}
.badge--white {
  background: rgba(255,255,255,.2);
  color: var(--white);
}

/* ── Section Titles ───────────────────────── */
.section-title { margin-bottom: 48px; }
.section-title--center { text-align: center; }
.section-title--center p { margin: 0 auto; }
.section-title p {
  margin-top: 16px;
  color: var(--gray);
  font-size: 1.05rem;
}
.section-title h2 { position: relative; }
.section-title h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: 14px;
}
.section-title--center h2::after { margin: 14px auto 0; }

/* ── Hero ─────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(13,71,161,.9) 0%,
    rgba(26,35,126,.8) 50%,
    rgba(21,101,192,.6) 100%
  );
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 700px;
  padding: 80px 0;
}
.hero__content h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero__content h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero__content p {
  color: rgba(255,255,255,.88);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 40px;
  max-width: 560px;
}
.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: scroll-bounce 2s infinite;
}
.hero__scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.4);
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* Hero slider */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.hero-slide.active { opacity: 1; }

/* ── Stats Bar ────────────────────────────── */
.stats-bar {
  background: var(--navy);
  padding: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide: 1px solid rgba(255,255,255,.1);
}
.stat-item {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
  color: var(--white);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: .88rem;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── Services Grid ────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--trans);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow2);
}
.service-card__img {
  height: 220px;
  overflow: hidden;
}
.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-card__img img { transform: scale(1.05); }
.service-card__body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card__icon {
  width: 52px;
  height: 52px;
  background: var(--light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--blue);
}
.service-card__icon svg { width: 26px; height: 26px; }
.service-card__body h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--navy);
}
.service-card__body p {
  color: var(--gray);
  font-size: .92rem;
  flex: 1;
  line-height: 1.6;
}
.service-card__link {
  margin-top: 20px;
  font-weight: 600;
  font-size: .88rem;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 6px;
}
.service-card__link svg { width: 16px; height: 16px; }
.service-card__link:hover { gap: 10px; }

/* ── Alternating sections ─────────────────── */
.alt-section {
  padding: 80px 0;
}
.alt-section:nth-child(even) { background: var(--light); }
.alt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.alt-row.reverse { direction: rtl; }
.alt-row.reverse > * { direction: ltr; }
.alt-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow2);
}
.alt-img img { width: 100%; height: 420px; object-fit: cover; }
.alt-img::before {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  background: var(--gold);
  border-radius: 50%;
  opacity: .2;
  z-index: -1;
}
.alt-text ul {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.alt-text li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .95rem;
  color: var(--text);
}
.alt-text li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--blue);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10.4l2.3 2.3 3.4-4.5' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: cover;
  margin-top: 2px;
}

/* ── About section ────────────────────────── */
.about-section { background: var(--light); }
.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-imgs {
  position: relative;
  height: 500px;
}
.about-img1, .about-img2 {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow2);
}
.about-img1 {
  width: 65%;
  height: 380px;
  top: 0;
  left: 0;
}
.about-img2 {
  width: 55%;
  height: 280px;
  bottom: 0;
  right: 0;
  border: 4px solid var(--white);
}
.about-img1 img, .about-img2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold);
  color: var(--white);
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow2);
  z-index: 2;
}
.about-badge__num {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}
.about-badge__label {
  font-size: .78rem;
  opacity: .9;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.about-text p { color: var(--gray); margin-bottom: 20px; font-size: 1rem; }
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.value-item {
  background: var(--white);
  border-radius: 10px;
  padding: 20px;
  box-shadow: var(--shadow);
}
.value-item h4 {
  color: var(--navy);
  margin-bottom: 6px;
  font-size: .95rem;
}
.value-item p {
  font-size: .83rem;
  color: var(--gray);
  margin: 0;
  max-width: none;
}

/* ── Why Us ───────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.why-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--trans);
  border-top: 4px solid transparent;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow2);
  border-top-color: var(--blue);
}
.why-icon {
  width: 72px;
  height: 72px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--blue);
  font-size: 1.8rem;
  transition: var(--trans);
}
.why-card:hover .why-icon {
  background: var(--blue);
  color: var(--white);
}
.why-icon svg { width: 32px; height: 32px; }
.why-card h3 { font-size: 1.05rem; margin-bottom: 12px; }
.why-card p { font-size: .9rem; color: var(--gray); max-width: none; }

/* ── Team ─────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--trans);
  text-align: center;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow2);
}
.team-card__photo {
  height: 260px;
  overflow: hidden;
}
.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform .5s ease;
}
.team-card:hover .team-card__photo img { transform: scale(1.04); }
.team-card__body { padding: 24px; }
.team-card__name { font-size: 1rem; margin-bottom: 4px; color: var(--navy); }
.team-card__role { font-size: .83rem; color: var(--blue); font-weight: 500; margin-bottom: 12px; }
.team-card__bio { font-size: .83rem; color: var(--gray); max-width: none; }

/* ── Sectors ──────────────────────────────── */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.sector-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 260px;
  cursor: pointer;
}
.sector-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.sector-card:hover img { transform: scale(1.08); }
.sector-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,71,161,.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: var(--trans);
}
.sector-card:hover .sector-card__overlay {
  background: linear-gradient(to top, rgba(13,71,161,.95) 0%, rgba(13,71,161,.4) 100%);
}
.sector-card__name {
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .95rem;
}

/* ── Testimonials ─────────────────────────── */
.testimonials { background: var(--light); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 24px;
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--blue);
  opacity: .15;
  line-height: 1;
}
.testi-text {
  font-size: .95rem;
  color: var(--text);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.7;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--blue);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testi-info strong { display: block; font-size: .9rem; color: var(--navy); }
.testi-info span { font-size: .78rem; color: var(--gray); }
.testi-stars {
  color: var(--gold);
  font-size: .85rem;
  margin-bottom: 12px;
}

/* ── CTA Banner ───────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: rgba(232,160,32,.1);
  border-radius: 50%;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 16px;
}
.cta-banner p {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  margin: 0 auto 36px;
  max-width: 560px;
}
.cta-banner__btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Contact ──────────────────────────────── */
.contact-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-info-card strong { display: block; font-size: .85rem; color: var(--gray); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.contact-info-card a, .contact-info-card p { color: var(--text); font-weight: 500; margin: 0; }

.contact-form {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form h3 { margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(0,0,0,.1);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: var(--trans);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21,101,192,.12);
}
.form-group textarea { height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── Footer ───────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand img { height: 48px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .88rem; line-height: 1.7; max-width: 280px; }
.footer-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--white);
  font-size: .95rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--gold);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  transition: var(--trans);
}
.footer-links a:hover { color: var(--gold); padding-left: 6px; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: .85rem; }
.footer-contact-item svg { width: 16px; height: 16px; margin-top: 2px; color: var(--gold); flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,.75); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,.65); }
.footer-bottom a:hover { color: var(--gold); }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: var(--trans);
}
.social-link:hover {
  background: var(--blue);
  color: var(--white);
}
.social-link svg { width: 16px; height: 16px; }

/* ── WhatsApp Float ───────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
}
.wa-float a {
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  animation: wa-pulse 2.5s infinite;
}
.wa-float a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.7);
}
.wa-float svg { width: 30px; height: 30px; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,.8), 0 0 0 8px rgba(37,211,102,.15); }
}
.wa-float__tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy);
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: var(--trans);
}
.wa-float:hover .wa-float__tooltip { opacity: 1; }

/* ── Page Header ──────────────────────────── */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}
.breadcrumb {
  color: rgba(255,255,255,.7);
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb__sep { color: rgba(255,255,255,.4); }

/* ── Maps ─────────────────────────────────── */
.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  height: 320px;
  box-shadow: var(--shadow);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ── Utilities ────────────────────────────── */
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.bg-light { background: var(--light); }
.bg-navy { background: var(--navy); }
.mt-auto { margin-top: auto; }
.mb-0 { margin-bottom: 0; }
.gap-y-lg { display: flex; flex-direction: column; gap: 32px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.icon-sm { width: 18px; height: 18px; }

/* ── Responsive ───────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid .stat-item:nth-child(2) { border-right: none; }
  .about-row { grid-template-columns: 1fr; }
  .about-imgs { height: 320px; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .topbar__left { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,.15);
    gap: 4px;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 12px 16px; border-radius: 8px; }
  .nav-menu .btn-nav { margin: 8px 0 0; }
  .nav-menu .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--light);
    border-radius: 8px;
    margin-top: 4px;
    padding: 4px;
    display: none;
  }
  .nav-menu .menu-item-has-children.open .sub-menu { display: block; }
  .site-nav { position: sticky; }
  .site-nav__inner { position: relative; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .alt-row, .alt-row.reverse { grid-template-columns: 1fr; direction: ltr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { min-height: 80vh; }
  .about-imgs { height: 280px; }
  .about-img1 { width: 70%; height: 240px; }
  .about-img2 { width: 60%; height: 200px; }
  .wa-float { bottom: 20px; right: 20px; }
  .wa-float a { width: 52px; height: 52px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .sectors-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stats-grid .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .hero__btns { flex-direction: column; }
  .cta-banner__btns { flex-direction: column; align-items: center; }
  .contact-form { padding: 24px 16px; }
}

/* ── AOS overrides ────────────────────────── */
[data-aos] { backface-visibility: hidden; }
