/* ═══════════════════════════════════════════════════════════
   OPSYS GLOBAL — style.css
   Brand color: #0B72B7 (logo blue)
   Accent dark:  #0a3d6e
   Font: DM Sans
═══════════════════════════════════════════════════════════ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,900;1,400&display=swap');

/* ── Design Tokens ── */
:root {
  --blue:      #0B72B7;
  --blue-dk:   #0a3d6e;
  --blue-lt:   #3a9de8;
  --dark:      #111827;
  --mid:       #4b5563;
  --light:     #9ca3af;
  --cream:     #f4f7fb;
  --white:     #ffffff;
  --border:    #e2e8f0;
  --font:      'DM Sans', sans-serif;
  --max-w:     1500px;
  --px:        clamp(16px, 4vw, 60px);
  --radius:    16px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--cream); color: var(--dark); overflow-x: hidden; }
a { text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Wrapper utility ── */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

/* ════════════════════════════════════════════
   INFO BAR
════════════════════════════════════════════ */
.info-bar {
  background: var(--blue);
  color: #fff;
  font-size: 13px;
}
.info-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 8px var(--px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.info-bar-left {
  display: none;
  align-items: center;
  gap: 20px;
}
@media (min-width: 768px) { .info-bar-left { display: flex; } }
.info-bar-left a,
.info-bar-left span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
}
.info-bar-left a:hover { opacity: 0.8; }
.info-bar-social { display: flex; align-items: center; gap: 16px; }
.info-bar-social a { color: #fff; font-size: 16px; transition: opacity 0.2s; }
.info-bar-social a:hover { opacity: 0.75; }

/* ════════════════════════════════════════════
   STICKY HEADER
════════════════════════════════════════════ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  height: 64px;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.logo-link img { width: 140px; object-fit: contain; }

.main-nav {
  display: none;
  align-items: center;
  gap: 28px;
}
@media (min-width: 768px) { .main-nav { display: flex; } }

.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--blue); }

.main-nav .whatsapp-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #16a34a;
  font-weight: 600;
}
.main-nav .whatsapp-link:hover { color: #15803d; }

/* Mobile nav */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 16px;
}
@media (min-width: 768px) { .mobile-menu-btn { display: none; } }

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  z-index: 200;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  padding: 13px var(--px);
  border-bottom: 1px solid var(--border);
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover { background: #f0f6ff; color: var(--blue); }
.mobile-nav .whatsapp-link { color: #16a34a; }

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  min-height: 92vh;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: rgba(11,114,183,0.05);
  pointer-events: none;
}

/* scroll hint */
.side-scroll {
  position: absolute;
  right: 18px; bottom: 60px;
  z-index: 5;
  writing-mode: vertical-rl;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--light);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.side-scroll::after {
  content: '';
  width: 1px; height: 40px;
  background: currentColor;
}
.s-arrow { animation: s-bounce 2.2s ease-in-out infinite; }
@keyframes s-bounce {
  0%,100% { opacity: 0.35; transform: translateY(-3px); }
  50%      { opacity: 1;   transform: translateY(3px); }
}
@media (max-width: 768px) { .side-scroll { display: none; } }

/* ── Hero content ── */
.hero-content {
  position: relative;
  z-index: 5;
  padding: 56px var(--px) 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Badge */
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.2s;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--blue);
  border-radius: 50%;
  animation: dotpulse 2.6s ease-in-out infinite;
}
@keyframes dotpulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.7); opacity: 0.5; }
}
.badge-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--mid);
  text-transform: uppercase;
}

/* Heading + buttons row */
.hero-main-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.5s;
}

.hero-heading {
  font-size: clamp(26px, 3.2vw, 48px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--dark);
  flex: 1;
}
.hero-heading .h-static { color: var(--dark); }
.hero-heading .h-typed  { color: var(--blue); }

.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 0.9em;
  background: var(--blue);
  vertical-align: middle;
  margin-left: 3px;
  animation: blink 0.75s step-end infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

/* CTA — side by side */
.cta-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  padding-top: 6px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 13px 26px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  font-family: var(--font);
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--blue-dk);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(11,114,183,0.25);
}
.btn-icon {
  width: 24px; height: 24px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  color: var(--dark);
  font-size: 14px;
  font-weight: 500;
  padding: 13px 26px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  font-family: var(--font);
}
.btn-secondary:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: .65rem 1.5rem;
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  border-radius: .5rem;
  text-decoration: none;
  transition: background .2s;
}
.btn-outline:hover { background: rgba(255,255,255,.1); }

/* ════════════════════════════════
   HERO WATERMARK
════════════════════════════════ */
.hero-watermark {
  position: absolute; top: 55%; left: 0; width: 100%;
  transform: translateY(-50%); text-align: center;
  font-family: var(--font-display); font-weight: 900;
  font-size: 22vw; line-height: 1; letter-spacing: -0.015em;
  white-space: nowrap; color: #ffffff38;
  -webkit-text-stroke: 1.8px rgba(27, 111, 203, 0.35);
  animation: watermark-glow 3s ease-in-out infinite;
  user-select: none; pointer-events: none; z-index: 1; opacity: 1.001;
}
@keyframes watermark-glow {
  0%, 100% {
    -webkit-text-stroke: 1.8px rgba(27, 111, 203, 0.30);
    filter: drop-shadow(0 0 18px rgba(27, 111, 203, 0.50))
            drop-shadow(0 0 50px rgba(27, 111, 203, 0.25))
            drop-shadow(0 0 100px rgba(27, 111, 203, 0.12));
  }
  50% {
    -webkit-text-stroke: 1.8px rgba(27, 111, 203, 0.55);
    filter: drop-shadow(0 0 28px rgba(27, 111, 203, 0.80))
            drop-shadow(0 0 80px rgba(27, 111, 203, 0.45))
            drop-shadow(0 0 140px rgba(27, 111, 203, 0.22));
  }
}

/* ════════════════════════════════
   STATS BAR
════════════════════════════════ */
.hero-stats {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 22px var(--px) 28px;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.55);
}

.stat-item {
  padding-right: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-item + .stat-item {
  border-left: 1px solid var(--border);
  padding-left: 24px;
}

.stat-num {
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 36px);
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.13em;
  color: var(--light);
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .hero-stats   { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-item    { padding: 0; border: none !important; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .hero-content  { padding-top: 36px; }
  .hero-main-row { flex-direction: column; gap: 20px; }
  .cta-group     { flex-wrap: wrap; }
}

/* ════════════════════════════════════════════
   ABOUT SECTION
════════════════════════════════════════════ */
.about-section {
  background: var(--white);
  padding: 80px 0;
}
.about-top {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 64px;
  align-items: center;
  text-align: center;
}
@media (min-width: 1024px) {
  .about-top {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.about-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
}
.about-eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--blue);
  border-radius: 50%;
}
.about-eyebrow-text {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
}

.about-heading {
  font-weight: 400;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
  color: var(--dark);
  text-align: center;
}
.about-heading em {
  font-style: italic;
  font-weight: 400;
  color: var(--blue);
}
.about-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--mid);
  flex-shrink: 0;
  text-align: center;
}
.about-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 1024px) { .about-cards { grid-template-columns: repeat(3, 1fr); } }

.about-card {
  position: relative;
  border-radius: 28px;
  padding: 40px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(11,114,183,0.1);
}
.about-card--white { background: var(--white); }
.about-card--blue  { background: var(--blue); border-color: var(--blue); }

.about-card-num {
  position: absolute;
  top: 12px; right: 24px;
  font-weight: 900;
  font-size: 100px;
  line-height: 1;
  color: rgba(0,0,0,0.04);
  user-select: none;
}
.about-card--blue .about-card-num { color: rgba(255,255,255,0.07); }

.about-card-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
  transition: transform 0.35s ease;
}
.about-card:hover .about-card-icon { transform: rotate(8deg); }

.about-card--white:first-child .about-card-icon { background: #dbeafe; }
.about-card--white:last-child  .about-card-icon { background: #e0f2fe; }
.about-card--blue .about-card-icon { background: rgba(255,255,255,0.2); }

.about-card-title {
  font-weight: 700;
  font-size: 24px;
  color: var(--dark);
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}
.about-card--blue .about-card-title { color: #fff; }
.about-card-text {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--mid);
  position: relative;
  z-index: 2;
}
.about-card--blue .about-card-text { color: rgba(255,255,255,0.82); }

/* ════════════════════════════════════════════
   SERVICES SECTION (homepage)
════════════════════════════════════════════ */
.services-section {
  background: var(--cream);
  padding: 80px 0 0;
  overflow: hidden;
}
.services-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  margin-bottom: 48px;
}

.services-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.services-h2 {
  font-weight: 300;
  font-size: clamp(28px, 4vw, 52px);
  color: var(--dark);
  line-height: 1.15;
  text-align: center;
}

/* Slider */
.services-track {
  display: flex;
  gap: 28px;
  width: max-content;
  padding-bottom: 40px;
  animation: serviceScroll 26s linear infinite;
}

.services-slider {
  overflow: hidden;
  width: 100%;
}

.services-slider-wrap {
  padding: 0 var(--px);
  overflow: hidden;
}

.service-card {
  position: relative;
  width: 450px;
  min-width: 450px;
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.service-card:hover img { transform: scale(1.06); }
.service-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgb(10 61 110), rgba(11, 114, 183, 0.35), rgba(24, 144, 255, .2));
}
.service-content {
  position: absolute;
  left: 36px; right: 36px; bottom: 36px;
  z-index: 2;
}
.service-content span {
  display: inline-flex;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 16px;
}
.service-content h3 {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-content p {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  line-height: 1.7;
  max-width: 440px;
}
@keyframes serviceScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-608px * 2)); }
}
@media (max-width: 768px) {
  .service-card { width: 300px; min-width: 300px; height: 380px; }
  .service-content { left: 22px; right: 22px; bottom: 22px; }
  .service-content h3 { font-size: 24px; }
}

/* ════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════ */
.testimonials-section { padding: 80px 0 0; background: var(--white); overflow: hidden; }
.testimonials-heading { text-align: center; margin-bottom: 52px; }
.testimonials-heading h2 {
  font-weight: 400;
  font-size: clamp(24px, 3.5vw, 40px);
  color: var(--blue);
  line-height: 1.2;
}
.testimonials-heading h3 {
  font-weight: 700;
  font-size: clamp(22px, 3vw, 36px);
  color: var(--dark);
}

.swiper { width: 100%; padding-top: 55px; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
.swiper-pagination-bullet { width: 10px; height: 10px; background: #d1d5db; opacity: 1; }
.swiper-pagination-bullet-active { background: var(--blue) !important; }

.testimonial-card {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  padding: 60px 44px 44px;
  text-align: center;
}
.testimonial-avatar {
  position: absolute;
  left: 50%; top: -48px;
  transform: translateX(-50%);
  width: 96px; height: 96px;
  border-radius: 50%;
  border: 6px solid var(--blue);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-quote-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; opacity: 0.035; overflow: hidden;
}
.testimonial-quote-bg span {
  font-size: 220px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}
.testimonial-text {
  font-size: 16px;
  line-height: 2;
  font-weight: 300;
  color: #222;
  max-width: 640px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 2;
}
.testimonial-name {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: var(--dark);
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
.testimonial-role {
  font-size: 14px;
  color: var(--mid);
  margin-top: 6px;
  position: relative;
  z-index: 2;
}

/* Logo strips */
.logo-strip { margin-top: 48px; }
.logo-slider { overflow: hidden; width: 100%; margin-bottom: 16px; }
.logo-track {
  display: flex;
  align-items: center;
  width: calc(180px * 14);
  animation: scroll-logos 30s linear infinite;
}
.logo-slider.reverse .logo-track { animation: scroll-logos-rev 30s linear infinite; }
.logo-track img {
  width: 120px; height: 48px;
  object-fit: contain;
  margin: 0 24px;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: 0.3s;
}
.logo-track img:hover { filter: grayscale(0%); opacity: 1; }
@keyframes scroll-logos     { 0% { transform: translateX(0); }              100% { transform: translateX(calc(-180px * 7)); } }
@keyframes scroll-logos-rev { 0% { transform: translateX(calc(-180px * 7)); } 100% { transform: translateX(0); } }

/* ════════════════════════════════════════════
   AWARDS SECTION
════════════════════════════════════════════ */
.awards-section {
  background: #1a1a1a;
  overflow: hidden;
}

.awards-photo-banner {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
}

.awards-photo-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(100%);
}

.awards-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,20,20,0.35) 0%,
    rgba(20,20,20,0.10) 40%,
    rgba(20,20,20,0.60) 100%
  );
}

.awards-photo-label {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Georgia', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 80px);
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.04em;
  white-space: nowrap;
  z-index: 2;
}

.awards-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.12);
}

.awards-grid-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

.awards-icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

@media (max-width: 768px) {
  .awards-icon-grid { grid-template-columns: repeat(2, 1fr); }
}

.award-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 24px 44px;
  position: relative;
  cursor: default;
  transition: background 0.3s;
}

.award-cell:hover { background: rgba(255,255,255,0.04); }

.award-cell + .award-cell { border-left: 1px solid rgba(255,255,255,0.10); }

@media (max-width: 768px) {
  .award-cell:nth-child(2n+1) { border-left: none; }
  .award-cell:nth-child(n+3)  { border-top: 1px solid rgba(255,255,255,0.10); }
}

.award-trophy {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 20px;
  transition: transform 0.35s ease;
}

.award-cell:hover .award-trophy { transform: translateY(-6px) scale(1.08); }

.award-cell-title {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.03em;
}

.award-cell-title strong {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* ════════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════════ */
.cta-banner {
  position: relative;
  height: 460px;
  overflow: hidden;
  border-radius: 28px 28px 0 0;
  margin-top: 80px;
}
.cta-banner img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.cta-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,61,110,0.88) 0%, rgba(11,114,183,0.65) 55%, rgba(0,0,0,0.3) 100%);
}
.cta-banner-content {
  position: absolute; inset: 0;
  display: flex; align-items: center;
}
.cta-banner-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px); width: 100%; }
.cta-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.cta-h2 {
  font-size: clamp(30px, 5vw, 60px);
  font-weight: 300;
  line-height: 1.15;
  color: #fff;
  max-width: 720px;
  margin-bottom: 20px;
}
.cta-h2 strong { font-weight: 800; }
.cta-p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin-bottom: 32px;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--white);
  color: var(--blue);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.25s, box-shadow 0.25s;
}
.cta-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

/* ════════════════════════════════════════════
   FAQ SECTION (shared across all pages)
════════════════════════════════════════════ */
.faq-section,
.faq-contact-section,
.faq-services-section {
  position: relative;
  background: #f8fbff;
  padding: 5rem var(--px, 24px);
  overflow: hidden;
}

/* Glow decoration (contact & services pages) */
.faq-contact-glow,
.faq-services-glow {
  position: absolute;
  top: 0; right: 0;
  width: 500px; height: 500px;
  background: rgba(8,112,183,.05);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

/* Two-column layout (contact & services pages) */
.faq-contact-inner,
.faq-services-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Homepage FAQ two-column layout */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 1024px) { .faq-grid { grid-template-columns: 1fr 1fr; } }

/* Left-side labels */
.faq-left-tag,
.faq-contact-eyebrow,
.faq-services-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* Left-side headings */
.faq-h2 {
  font-size: clamp(30px, 4.5vw, 56px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 16px;
}
.faq-h2 strong { font-weight: 800; color: var(--blue); }

.faq-contact-heading,
.faq-services-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: #111;
  line-height: 1.2;
  margin: 1.25rem 0 0;
}
.faq-contact-heading span,
.faq-services-heading span {
  font-weight: 700;
  color: #0870b7;
}

.faq-p,
.faq-contact-desc,
.faq-services-desc {
  font-size: .95rem;
  color: #6b7280;
  line-height: 1.9;
  margin: 1.25rem 0 0;
  max-width: 480px;
}
.faq-p { margin-bottom: 36px; }

/* Help/contact card (homepage) */
.faq-help-box {
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.faq-help-icon {
  width: 52px; height: 52px;
  min-width: 52px;
  border-radius: 14px;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.faq-help-box h4 { font-weight: 700; font-size: 18px; color: var(--dark); margin-bottom: 8px; }
.faq-help-box p  { font-size: 14px; line-height: 1.7; color: var(--mid); margin-bottom: 12px; }
.faq-help-box a  { font-size: 14px; font-weight: 600; color: var(--blue); display: flex; align-items: center; gap: 6px; }
.faq-help-box a:hover { color: var(--blue-dk); }

/* Help/contact card (contact & services pages) */
.faq-contact-card,
.faq-services-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: #fff;
  border-radius: 1.75rem;
  box-shadow: 0 10px 30px rgba(0,0,0,.07);
  border: 1px solid rgba(8,112,183,.1);
  padding: 2rem;
  margin-top: 2.5rem;
}
.faq-contact-card__icon,
.faq-services-card__icon {
  width: 4rem; height: 4rem;
  min-width: 4rem;
  border-radius: .875rem;
  background: #0870b7;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.faq-contact-card__title,
.faq-services-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111;
  margin: 0 0 .5rem;
}
.faq-contact-card__desc,
.faq-services-card__desc {
  font-size: .88rem;
  color: #6b7280;
  line-height: 1.8;
  margin: 0 0 1rem;
}
.faq-contact-card__link,
.faq-services-card__link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #0870b7;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: gap .2s;
}
.faq-contact-card__link:hover,
.faq-services-card__link:hover { gap: .75rem; }

/* FAQ accordion items (shared) */
.faq-list { display: flex; flex-direction: column; gap: 1.25rem; }

.faq-item {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(8,112,183,.1);
  box-shadow: 0 10px 30px rgba(0,0,0,.04);
  transition: border-color .3s, box-shadow .3s;
}
.faq-item.active {
  border-color: #0870b7;
  box-shadow: 0 15px 40px rgba(8,112,183,.12);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 30px;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: #111827;
  background: #fff;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: color .3s;
}
.faq-question:hover { color: #0870b7; }

.faq-icon {
  width: 42px; height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: #0870b7;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 500;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-item.active .faq-answer { max-height: 300px; }

.faq-answer p {
  padding: 0 30px 30px;
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.9;
  margin: 0;
}

/* ════════════════════════════════════════════
   CONTACT FORM (shared: homepage, contact, services)
════════════════════════════════════════════ */
.contact-section  { background: #f3f4f6; padding: 5rem var(--px, 24px); }
.contact-form-section { background: #f0f6ff; padding: 64px 24px; }

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: 520px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: 0 8px 40px rgba(0,0,0,.08);
  max-width: 1000px;
  margin: 0 auto;
}

/* Also used as contact-split on About page */
.contact-split {
  max-width: var(--max-w, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: .875rem;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.12);
}

/* ── LEFT PANEL ── */
.contact-left,
.contact-split__left {
  background: linear-gradient(145deg, #0B3C5D 0%, #0870b7 60%, #0ea5e9 100%);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  overflow: hidden;
}
.contact-left::before,
.contact-split__left::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.contact-left::after,
.contact-split__left::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}

.c-panel-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.15);
  color: #e0f2fe;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  width: fit-content;
}
.c-panel-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: #22d3ee;
  border-radius: 50%;
  display: block;
}

.c-panel-heading {
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.3;
  margin: 14px 0 0;
}
.c-panel-heading span { color: #7dd3fc; display: block; }

.c-panel-desc {
  color: #bae6fd;
  font-size: 13.5px;
  line-height: 1.8;
  font-weight: 300;
  margin-top: 10px;
}

/* About page left-panel heading/desc */
.contact-split__heading {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0 0 .75rem;
}
.contact-split__desc {
  font-size: .88rem;
  color: rgba(255,255,255,.75);
  line-height: 1.75;
  margin: 0;
}

.c-trust-list,
.contact-trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-trust-item,
.contact-trust li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e0f2fe;
  font-size: 13px;
}
.c-check-dot,
.contact-trust__check {
  width: 20px; height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: rgba(34,211,238,.2);
  border: 1.5px solid #22d3ee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #22d3ee;
}
.contact-trust__check i { font-size: .6rem; color: #67e8f9; }

.c-chips { display: flex; flex-direction: column; gap: 8px; margin-top: auto; }
.c-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 0.5px solid rgba(255,255,255,.15);
  border-radius: 10px;
  padding: 9px 14px;
  color: #e0f2fe;
  font-size: 12.5px;
}
.c-chip i { color: #7dd3fc; }

/* Contact details pinned to bottom (About page) */
.contact-split__details {
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.contact-split__detail-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .85rem;
  color: rgba(255,255,255,.8);
}
.contact-split__detail-row i {
  font-size: .9rem;
  color: rgba(255,255,255,.45);
  width: 1rem;
  text-align: center;
}

/* ── RIGHT PANEL ── */
.contact-right,
.contact-split__right {
  padding: 36px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.c-form-title,
.contact-split__form-heading { font-size: 21px; font-weight: 600; color: #0f172a; margin: 0 0 4px; }
.c-form-sub,
.contact-split__form-sub     { font-size: 13px; color: #64748b; margin: 0 0 24px; }

.c-form-grid,
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.c-field,
.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.c-field--full,
.contact-form__group:only-child { grid-column: 1 / -1; }

.c-field label,
.contact-form__group label {
  font-size: 12px;
  font-weight: 500;
  color: #64748b;
  letter-spacing: .3px;
}
.req { color: #ef4444; }

/* Input wrapper */
.c-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.c-icon {
  position: absolute;
  left: 12px;
  font-size: 15px;
  color: #94a3b8;
  pointer-events: none;
  transition: color .2s;
  z-index: 1;
}
.c-icon--top { top: 12px; }
.c-select-arrow {
  position: absolute;
  right: 12px;
  pointer-events: none;
  font-size: 13px;
  color: #94a3b8;
}

.c-input-wrap input,
.c-input-wrap select,
.c-input-wrap textarea,
.contact-form__group input,
.contact-form__group select,
.contact-form__group textarea {
  width: 100%;
  font-family: inherit;
  font-size: 13.5px;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 9px;
  color: #0f172a;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}
.c-input-wrap input,
.c-input-wrap select,
.contact-form__group input,
.contact-form__group select { height: 42px; padding: 0 12px 0 38px; }
.c-input-wrap textarea,
.contact-form__group textarea { padding: 10px 12px 10px 38px; resize: none; height: 84px; }
.c-input-wrap select,
.contact-form__group select { cursor: pointer; padding-right: 2.2rem; }

/* Custom select arrow for contact-form__group */
.contact-form__group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .9rem center;
  padding-right: 2.5rem;
}

.c-input-wrap input:focus,
.c-input-wrap select:focus,
.c-input-wrap textarea:focus,
.contact-form__group input:focus,
.contact-form__group select:focus,
.contact-form__group textarea:focus {
  border-color: #0870b7;
  box-shadow: 0 0 0 3px rgba(8,112,183,.12);
  background: #fff;
}
.c-input-wrap:focus-within .c-icon { color: #0870b7; }

.contact-form__hint { font-size: .72rem; color: #9ca3af; margin: 0; }

/* Submit buttons */
.c-submit,
.contact-form__submit {
  width: 100%;
  height: 46px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  background: linear-gradient(90deg, #0870b7, #0ea5e9);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity .2s, transform .15s;
  letter-spacing: .02em;
  margin-top: .25rem;
}
.c-submit:hover,
.contact-form__submit:hover   { opacity: .9; transform: translateY(-1px); }
.c-submit:active,
.contact-form__submit:active  { transform: scale(.98); }
.c-submit:disabled,
.contact-form__submit:disabled { opacity: .65; cursor: not-allowed; transform: none; background: #93c5fd; }

.c-submit__spinner,
.contact-form__submit-spinner {
  display: none;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: c-spin .7s linear infinite;
}
.c-submit.loading .c-submit__spinner,
.contact-form__submit.loading .contact-form__submit-spinner { display: block; }
.contact-form__submit.loading .contact-form__submit-text { opacity: .7; }

@keyframes c-spin { to { transform: rotate(360deg); } }

/* Feedback messages */
.c-form-success,
.c-form-error,
.contact-form__success,
.contact-form__error {
  font-size: .84rem;
  text-align: center;
  border-radius: .5rem;
  padding: .6rem 1rem;
  margin: 4px 0 0;
  display: none;
}
.c-form-success,
.contact-form__success { background: #ecfdf5; color: #065f46; border: 1px solid #6ee7b7; }
.c-form-error,
.contact-form__error   { background: #fef2f2; color: #991b1b; border: 1px solid #fca5a5; }
.c-form-success.visible,
.c-form-error.visible,
.contact-form__success.visible,
.contact-form__error.visible { display: block; }

/* ════════════════════════════════════════════
   OFFICES SECTION (homepage)
════════════════════════════════════════════ */
.offices-section { background: #0a0a0a; padding: 0 0 72px; }
.skyline-divider { width: 100%; height: 1px; background: rgba(255,255,255,0.08); margin-bottom: 56px; }
.offices-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
@media (max-width: 900px) { .offices-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 0; } }
@media (max-width: 520px)  { .offices-grid { grid-template-columns: 1fr; } }

.office-card { text-align: center; padding: 0 28px; position: relative; }
.office-card + .office-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 1px; background: rgba(255,255,255,0.07);
}
.office-country { font-size: 11px; font-weight: 500; letter-spacing: 0.18em; color: rgba(255,255,255,0.45); text-transform: uppercase; margin-bottom: 5px; }
.office-city { font-size: 20px; font-weight: 700; letter-spacing: 0.06em; color: #fff; text-transform: uppercase; margin-bottom: 20px; }
.office-info { font-size: 13px; line-height: 2; color: rgba(255,255,255,0.55); }
.office-info a { display: block; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.office-info a:hover { color: var(--blue-lt); }
.map-icon-wrap { margin-top: 18px; display: flex; align-items: center; justify-content: center; }
.map-icon-wrap svg { width: 22px; height: 22px; stroke: rgba(255,255,255,0.35); fill: none; transition: stroke 0.2s; cursor: pointer; stroke-width: 1.4; }
.map-icon-wrap:hover svg { stroke: var(--blue-lt); }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.site-footer { background: var(--blue-dk); color: #cbd5e1; font-family: var(--font); }
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 60px var(--px) 0; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 36px; }
@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }

.footer-brand-logo { height: 30px; width: auto; filter: brightness(0) invert(1); margin-bottom: 14px; }
.footer-brand-desc { font-size: 15px; line-height: 1.75; margin-bottom: 18px; }
.footer-social { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer-social-label { font-size: 15px; color: #94a3b8; }
.footer-social a { color: #cbd5e1; font-size: 17px; transition: color 0.2s; }
.footer-social a:hover { color: #fff; }
.footer-contact { font-size: 15px; line-height: 1.9; }
.footer-contact strong { color: #fff; }
.footer-col h4 { font-size: 20px; font-weight: 600; color: #fff; margin-bottom: 14px; letter-spacing: 0.05em; text-transform: uppercase; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 15px; color: #cbd5e1; transition: color 0.2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-address-label { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 5px; }
.footer-address-text { font-size: 15px; color: #93c5fd; line-height: 1.75; margin-bottom: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 44px;
  padding: 22px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-bottom p { font-size: 13px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: #cbd5e1; transition: color 0.2s; }
.footer-bottom-links a:hover { color: #fff; }

/* ════════════════════════════════════════════
   SECTION HEADINGS (shared utility)
════════════════════════════════════════════ */
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* ════════════════════════════════════════════
   ABOUT PAGE — HERO
════════════════════════════════════════════ */
.about-hero {
  position: relative;
  background: linear-gradient(135deg, #0B3C5D 0%, #0F5C8C 50%, #0B3C5D 100%);
  color: #fff;
  overflow: hidden;
}
.about-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.about-hero__glow--tl {
  top: -6rem; left: -6rem;
  width: 24rem; height: 24rem;
  background: rgba(59,130,246,.2);
}
.about-hero__glow--br {
  bottom: 0; right: 0;
  width: 20rem; height: 20rem;
  background: rgba(34,211,238,.1);
}
.about-hero__inner {
  position: relative;
  max-width: var(--max-w, 1280px);
  margin: 0 auto;
  padding: 3.5rem var(--px, 24px);
}
.about-hero__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  padding: .4rem 1rem;
  border-radius: 999px;
  font-size: .8rem;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,.8);
}
.about-hero__breadcrumb .sep { opacity: .5; }
.about-hero__breadcrumb .current { color: #67e8f9; font-weight: 500; }
.about-hero__brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}
.about-hero__brand-icon {
  width: 2.5rem; height: 2.5rem;
  background: rgba(34,211,238,.2);
  border-radius: .5rem;
  display: flex; align-items: center; justify-content: center;
  color: #67e8f9;
  font-weight: 700;
  font-size: 1rem;
}
.about-hero__brand span {
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .75rem;
  font-weight: 600;
  color: #67e8f9;
}
.about-hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 1rem;
}
.about-hero__accent { color: #67e8f9; }
.about-hero__desc {
  font-size: .95rem;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 2rem;
}
.about-hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ════════════════════════════════════════════
   ABOUT PAGE — INTRO
════════════════════════════════════════════ */
.about-intro {
  background: #f3f4f6;
  padding: 5rem var(--px, 24px);
}
.about-intro__inner {
  max-width: var(--max-w, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.about-intro__image-wrap {
  background: #fff;
  border-radius: .75rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  overflow: hidden;
  padding: 1rem;
}
.about-intro__image-wrap img { width: 100%; border-radius: .5rem; display: block; object-fit: cover; }
.about-intro__text-wrap {
  background: #fff;
  border-radius: .75rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  padding: 2.5rem;
}
.about-intro__heading { font-size: clamp(1.4rem, 2.5vw, 1.8rem); font-weight: 700; color: #111827; margin: 0 0 1rem; }
.about-intro__body { font-size: .9rem; color: #4b5563; line-height: 1.8; margin: 0; }
@media (max-width: 768px) { .about-intro__inner { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════
   ABOUT PAGE — VALUES GRID
════════════════════════════════════════════ */
.values-section { background: #f3f4f6; padding: 4rem var(--px, 24px); }
.values-section__inner {
  max-width: var(--max-w, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 1.25rem;
}
.values-card { background: #fff; border-radius: .75rem; border: 1px solid #e5e7eb; padding: 1.5rem; }
.values-card--large { grid-row: span 3; border-color: #bfdbfe; padding: 2rem; }
.values-card--large .values-card__heading { font-size: 1.2rem; font-weight: 700; color: #111827; margin: 0 0 1.25rem; line-height: 1.4; }
.values-card__link { color: #2563eb; font-weight: 500; text-decoration: none; }
.values-card__link:hover { text-decoration: underline; }
.values-card--sm .values-card__title { font-size: .95rem; font-weight: 600; color: #111827; margin: 0 0 .5rem; }
.values-card__body { font-size: .82rem; color: #4b5563; line-height: 1.7; margin: 0; }
@media (max-width: 900px) {
  .values-section__inner { grid-template-columns: 1fr 1fr; }
  .values-card--large { grid-row: span 1; grid-column: span 2; }
}
@media (max-width: 560px) {
  .values-section__inner { grid-template-columns: 1fr; }
  .values-card--large { grid-column: span 1; }
}

/* ════════════════════════════════════════════
   ABOUT PAGE — FOUNDER
════════════════════════════════════════════ */
.founder-section { background: rgba(75,86,117,.12); padding: 5rem var(--px, 24px); }
.founder-section__inner { max-width: var(--max-w, 1280px); margin: 0 auto; }
.founder-section__heading { font-size: clamp(1.6rem, 3vw, 2rem); font-weight: 700; color: #1f2937; margin: 0 0 2rem; }
.founder-section__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.founder-section__text { display: flex; flex-direction: column; gap: 1rem; color: #374151; font-size: .9rem; line-height: 1.8; }
.founder-section__text p { margin: 0; }
.founder-section__image { display: flex; justify-content: flex-end; }
.founder-section__image img { width: 100%; max-width: 380px; border-radius: .75rem; box-shadow: 0 8px 30px rgba(0,0,0,.15); object-fit: cover; }
@media (max-width: 768px) {
  .founder-section__grid { grid-template-columns: 1fr; }
  .founder-section__image { justify-content: center; }
}

/* ════════════════════════════════════════════
   ABOUT PAGE — OFFICES GALLERY
════════════════════════════════════════════ */
.offices-wrap { background: #f9fafb; padding: 5rem var(--px, 24px); }
.offices-wrap__inner { max-width: var(--max-w, 1280px); margin: 0 auto; }
.offices-wrap__intro { max-width: 680px; margin-bottom: 2.5rem; }
.offices-wrap__heading { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: #0f172a; margin: 0 0 .75rem; }
.offices-wrap__desc { color: #4b5563; font-size: .9rem; line-height: 1.7; margin: 0; }
.offices-wrap__gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.offices-wrap__gallery-item { border-radius: .75rem; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,.08); }
.offices-wrap__gallery-item img { width: 100%; height: 15rem; object-fit: cover; display: block; transition: transform .3s ease; }
.offices-wrap__gallery-item:hover img { transform: scale(1.04); }
@media (max-width: 768px) {
  .offices-wrap__gallery { grid-template-columns: 1fr; }
  .offices-wrap__gallery-item img { height: 12rem; }
}

/* ════════════════════════════════════════════
   CONTACT PAGE — HERO
   (shared glow/breadcrumb/brand patterns with About hero)
════════════════════════════════════════════ */
.contact-hero,
.services-hero {
  position: relative;
  background: linear-gradient(135deg, #0B3C5D 0%, #0F5C8C 50%, #0B3C5D 100%);
  color: #fff;
  overflow: hidden;
}
.contact-hero__glow,
.services-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.contact-hero__glow--tl,
.services-hero__glow--tl {
  top: -8rem; left: -8rem;
  width: 28rem; height: 28rem;
  background: rgba(59,130,246,.2);
}
.contact-hero__glow--br,
.services-hero__glow--br {
  bottom: 0; right: 0;
  width: 22rem; height: 22rem;
  background: rgba(34,211,238,.1);
}
.contact-hero__inner,
.services-hero__inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 3.5rem 24px;
}
.contact-hero__breadcrumb,
.services-hero__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  padding: .4rem 1rem;
  border-radius: 999px;
  font-size: .8rem;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,.8);
}
.contact-hero__breadcrumb .sep,
.services-hero__breadcrumb .sep { opacity: .5; }
.contact-hero__breadcrumb .current,
.services-hero__breadcrumb .current { color: #67e8f9; font-weight: 500; }
.contact-hero__brand,
.services-hero__brand { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.contact-hero__brand-icon,
.services-hero__brand-icon {
  width: 2.5rem; height: 2.5rem;
  background: rgba(34,211,238,.2);
  border-radius: .5rem;
  display: flex; align-items: center; justify-content: center;
  color: #67e8f9;
  font-weight: 700;
}
.contact-hero__brand span,
.services-hero__brand span {
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .75rem;
  font-weight: 600;
  color: #67e8f9;
}
.contact-hero__title,
.services-hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 1rem;
}
.contact-hero__accent,
.services-hero__accent { color: #67e8f9; }
.contact-hero__desc,
.services-hero__desc {
  font-size: .95rem;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 2rem;
}
.contact-hero__cta,
.services-hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ════════════════════════════════════════════
   SERVICES PAGE — SERVICES LISTING
════════════════════════════════════════════ */
.services-section--page {
  background: #f9fafb;
  padding: 5rem 0;
}
.services-section__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 90%;
}
.services-section__header { text-align: center; margin-bottom: 3.5rem; }
.services-section__title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: #111827; margin: 0 0 .75rem; }
.services-section__sub { font-size: .92rem; color: #6b7280; max-width: 560px; margin: 0 auto; line-height: 1.7; }

.service-category {
  display: flex;
  flex-direction: column;
  padding-bottom: 4rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid #e5e7eb;
}
.service-category:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.service-category__heading { font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 700; color: #0771BB; margin: 0 0 1.25rem; }
.service-category__row { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.service-category__desc p { font-size: .9rem; color: #6b7280; line-height: 1.75; max-width: 380px; }
.service-category__links { display: flex; flex-direction: column; gap: .5rem; text-align: right; }
.service-category__links a { font-size: 1rem; font-weight: 500; color: #1f2937; text-decoration: none; transition: color .2s; padding: .25rem 0; }
.service-category__links a:hover { color: #0771BB; text-decoration: underline; }
@media (max-width: 768px) {
  .service-category__row { grid-template-columns: 1fr; gap: 1.5rem; }
  .service-category__links { text-align: left; }
  .services-section__inner { width: 100%; }
}

/* ════════════════════════════════════════════
   SERVICES PAGE — CTA STRIP
════════════════════════════════════════════ */
.services-cta { background: #fff; padding: 3.5rem 24px; }
.services-cta__inner { max-width: 896px; margin: 0 auto; text-align: center; }
.services-cta__title { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 600; color: #111827; margin: 0 0 .75rem; }
.services-cta__desc { font-size: .9rem; color: #6b7280; margin: 0 0 1.5rem; line-height: 1.6; }
.services-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .75rem 1.75rem;
  background: #0771BB;
  color: #fff;
  font-weight: 500;
  font-size: .9rem;
  border-radius: .5rem;
  text-decoration: none;
  transition: background .2s;
}
.services-cta__btn:hover { background: #0558a0; }

/* ════════════════════════════════════════════
   RESPONSIVE (global overrides)
════════════════════════════════════════════ */
@media (max-width: 900px) {
  .contact-split          { grid-template-columns: 1fr; }
  .contact-split__left    { padding: 2.5rem 1.75rem; }
  .contact-split__details { margin-top: 0; }
  .contact-split__right   { padding: 2rem 1.5rem; }
  .contact-wrap           { grid-template-columns: 1fr; }
  .contact-left           { padding: 28px 24px; }
  .contact-right          { padding: 28px 24px; }
  .c-form-grid            { grid-template-columns: 1fr; }
  .c-field--full          { grid-column: 1; }
  .faq-contact-inner,
  .faq-services-inner     { grid-template-columns: 1fr; gap: 3rem; }
  .faq-contact-heading,
  .faq-services-heading   { font-size: 2rem; }
}

@media (max-width: 560px) {
  .about-hero__inner,
  .contact-hero__inner,
  .services-hero__inner   { padding: 2.5rem 16px; }
  .contact-split__right   { padding: 2rem 1.25rem; }
  .contact-form__row      { grid-template-columns: 1fr; }
  .contact-form-section   { padding: 40px 16px; }
  .faq-contact-section,
  .faq-services-section   { padding: 4rem 16px; }
  .faq-question           { font-size: .95rem; padding: 22px 20px; }
  .faq-answer p           { padding: 0 20px 25px; }
  .faq-contact-card,
  .faq-services-card      { flex-direction: column; }
  .services-hero__inner   { padding: 2.5rem 16px; }
  .services-section--page { padding: 3rem 0; }
}



/* ════════════════════════════════════════════
   TEAM PAGE — assets/css/team.css
   Add: <link rel="stylesheet" href="assets/css/team.css" />
   inside includes/header.php (or inline per-page)
════════════════════════════════════════════ */

/* ── Section wrapper ── */
.team-section {
  background: #fff;
  padding: 60px 0 80px;
}

.team-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

/* ── Section titles ── */
.team-section-title {
  font-size: clamp(28px, 4vw, 45px);
  font-weight: 600;
  color: #0771BB;
  margin-bottom: 48px;
}

.team-section-title--pillars {
  margin-top: 72px;
}

/* ── Founder (centred, max-width card) ── */
.founder-wrap {
  display: flex;
  justify-content: center;
}

.founder-wrap .team-card {
  max-width: 680px;
}

/* ── Pillars grid ── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 56px;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 28px;
  }
}

@media (max-width: 480px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Individual card ── */
.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── Avatar ── */
.team-avatar-wrap {
  position: relative;
  width: 144px;
  height: 144px;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.team-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #facc15; /* yellow-400 */
  display: block;
}

/* LinkedIn badge */
.team-linkedin {
  position: absolute;
  bottom: 4px;
  right: -10px;
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: transform 0.2s;
}

.team-linkedin:hover {
  transform: scale(1.15);
}

.team-linkedin i {
  color: #0A66C2;
  font-size: 14px;
}

/* ── Text ── */
.team-name {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #111;
  margin-bottom: 4px;
}

.team-role {
  font-size: 14px;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 10px;
}

.team-bio {
  font-size: 15px;
  color: #374151;
  line-height: 1.8;
  text-align: center;
  max-width: 640px;
}