@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Tenor+Sans&display=swap');

:root {
  --blue-deep: #0b3d6e;
  --blue-mid: #1e60aa;
  --blue-bright: #3e92cc;
  --blue-light: #e8f1fb;
  --blue-xlight: #f0f6ff;
  --sky: #dbeafe;
  --accent: #f59e0b;
  --accent-light: #fcd34d;
  --white: #ffffff;
  --grey-100: #f8fafc;
  --grey-200: #f1f5f9;
  --grey-300: #e2e8f0;
  --grey-500: #64748b;
  --grey-700: #334155;
  --text: #0f172a;
  --shadow-sm: 0 1px 3px rgba(11, 61, 110, .08), 0 1px 2px rgba(11, 61, 110, .06);
  --shadow-md: 0 4px 16px rgba(11, 61, 110, .10), 0 2px 6px rgba(11, 61, 110, .06);
  --shadow-lg: 0 12px 40px rgba(11, 61, 110, .14);
  --r: 0px;
  --rl: 0px;
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Tenor Sans', sans-serif;
  background: #fff;
  color: var(--text);
  overflow-x: hidden
}

::-webkit-scrollbar {
  width: 4px
}

::-webkit-scrollbar-thumb {
  background: var(--blue-mid);
  border-radius: 10px
}


/* ── LOGO SYSTEM ── */

/* Wrapper link */
.logo-container {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  flex-shrink: 0;
}

/* Logo Image */
.logo-img {
  height: 65px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.logo-container:hover .logo-img {
  transform: scale(1.03);
}

/* WordPress Custom Logo */
.logo-container .custom-logo-link {
  display: flex;
  align-items: center;
}

.logo-container .custom-logo {
  height: 65px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

/* ── FOOTER LIGHT VARIANT ── */
.logo-container.logo-light {
  background: #ffffff;
  padding: 8px 18px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  margin-bottom: 0.5rem;
}

.logo-container.logo-light .logo-img {
  filter: none !important;
}

.logo-container.logo-light .brand-name {
  color: #ffffff;
}

.logo-container.logo-light .brand-sub {
  color: rgba(255, 255, 255, 0.6);
}

.logo-container.logo-light .brand-sub::before,
.logo-container.logo-light .brand-sub::after {
  background: #f59e0b;
}

/* Legacy .logo class (keep for safety) */
.logo {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--grey-300);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 9%;
  height: 72px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s
}

nav.scrolled {
  box-shadow: var(--shadow-md)
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none
}

.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.logo-icon svg {
  width: 22px;
  height: 22px;
  color: #fff
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.15
}

.logo-main {
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue-deep);
  letter-spacing: -.02em
}

.logo-tagline {
  font-size: .58rem;
  font-weight: 600;
  color: var(--blue-bright);
  letter-spacing: .14em;
  text-transform: uppercase
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none
}

.nav-links a {
  text-decoration: none;
  font-size: .9rem;
  font-weight: 600;
  color: var(--grey-700);
  transition: color .2s
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue-mid)
}

.nav-cta {
  background: var(--blue-mid);
  color: #fff !important;
  padding: .5rem 1.4rem;
  border-radius: 8px;
  font-weight: 700 !important;
  transition: background .2s, transform .15s !important
}

.nav-cta:hover {
  background: var(--blue-deep) !important;
  transform: translateY(-1px)
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--blue-deep);
  border-radius: 4px;
  transition: .3s
}

.mob-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: #fff;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem
}

.mob-overlay.open {
  display: flex
}

.mob-overlay a {
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue-deep);
  text-decoration: none
}

.mob-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--blue-deep)
}

/* SECTIONS */
section {
  display: block
}

/* UTILS */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%
}

.sp {
  padding: 20px 0
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-xlight);
  color: var(--blue-mid);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 100px;
  border: 1px solid #c7ddf9;
  margin-bottom: 1rem
}

.chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-mid)
}

.section-title {
  font-family: 'Didot', 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--blue-deep);
  line-height: 1.1;
  letter-spacing: -.03em
}

.section-title span {
  color: var(--blue-bright)
}

.section-sub {
  font-size: 1rem;
  color: var(--grey-500);
  line-height: 1.75;
  max-width: 580px;
  margin-top: .9rem
}

.btn-blue {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--accent);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: .92rem;
  font-weight: 700;
  padding: .85rem 2rem;
  border-radius: 9px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(21, 101, 192, .3)
}

.btn-blue:hover {
  background: var(--blue-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(21, 101, 192, .35)
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--blue-mid);
  font-family: 'Outfit', sans-serif;
  font-size: .92rem;
  font-weight: 700;
  padding: .82rem 2rem;
  border-radius: 9px;
  text-decoration: none;
  border: 2px solid var(--blue-mid);
  cursor: pointer;
  transition: all .2s
}

.btn-outline:hover {
  background: var(--blue-xlight)
}

.arrow {
  font-size: 1rem;
  transition: transform .2s
}

.btn-blue:hover .arrow,
.btn-outline:hover .arrow {
  transform: translateX(4px)
}

.anim {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease
}

.anim.visible {
  opacity: 1;
  transform: translateY(0)
}

/* HERO */
.hero {
  min-height: 100vh;
  padding-top: 72px;
  background: linear-gradient(150deg, #f0f6ff 0%, #fff 55%, #e8f4fb 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column
}

.hero-blob {
  position: absolute;
  top: -60px;
  right: -80px;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 101, 192, .07) 0%, transparent 70%);
  pointer-events: none
}

.hero-blob2 {
  position: absolute;
  bottom: 60px;
  left: -60px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 101, 192, .05) 0%, transparent 70%);
  pointer-events: none
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 3.5rem;
  flex: 1;
  padding: 40px 5% 80px;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #c7ddf9;
  padding: .38rem 1rem .38rem .45rem;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--blue-mid);
  margin-bottom: 1.4rem;
  box-shadow: var(--shadow-sm)
}

.hero-badge-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-deep));
  display: flex;
  align-items: center;
  justify-content: center
}

.hero-badge-icon svg {
  width: 12px;
  height: 12px;
  color: #fff
}

.hero-h1 {
  font-family: 'Helvetica Now Display', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 800 !important;
  color: var(--blue-deep);
  line-height: 1.1;
  letter-spacing: -0.03em !important;
  margin-bottom: 1.2rem
}

.hero-h1 em {
  font-style: normal;
  color: var(--blue-bright)
}

/* Kinetic Letter-Spacing Reveal Animation */
.kinetic-reveal {
  opacity: 0;
  letter-spacing: -0.12em;
  transform: scale(0.98);
  animation: kineticReveal 2.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.4s;
  will-change: letter-spacing, opacity, transform;
}

@keyframes kineticReveal {
  0% {
    opacity: 0;
    letter-spacing: -0.12em;
    transform: scale(0.98);
  }

  100% {
    opacity: 1;
    letter-spacing: -0.03em;
    /* Heavy-duty structural authority tight tracking */
    transform: scale(1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-p {
  font-size: 1.05rem;
  color: var(--grey-500);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2.2rem
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--grey-300)
}

.trust-avatars {
  display: flex
}

.trust-av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-deep));
  margin-right: -9px;
  font-size: .62rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center
}

.trust-text {
  font-size: .82rem;
  font-weight: 500;
  color: var(--grey-700);
  margin-left: 18px
}

.trust-text strong {
  color: var(--blue-deep)
}

.hero-right {
  position: relative;
  margin-top: 0;
}

.hero-img-main {
  width: 100%;
  height: auto;
  border-radius: var(--rl);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
  display: block;
}


.float-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #fff;
  border-radius: 14px;
  padding: .7rem 1rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: .5rem;
  animation: float 4s ease-in-out infinite
}

.float-card2 {
  position: absolute;
  top: 20px;
  right: -16px;
  background: var(--blue-deep);
  border-radius: 12px;
  padding: .8rem 1.1rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: .6rem;
  animation: float 4s ease-in-out .8s infinite
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

.fc-icon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: var(--blue-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.fc-icon svg {
  width: 18px;
  height: 18px;
  color: var(--blue-mid)
}

.fc-num {
  font-size: 1rem;
  font-weight: 900;
  color: var(--blue-deep);
  line-height: 1
}

.fc-lbl {
  font-size: .7rem;
  color: var(--grey-500);
  margin-top: 1px
}

.fc2-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, .25);
  flex-shrink: 0
}

.fc2-text {
  font-size: .78rem;
  font-weight: 600;
  color: #fff
}

.hero-wavy {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30px;
  background: var(--grey-300);
  clip-path: ellipse(120% 100% at 50% 100%)
}

/* STATS */
.stats-bar {
  background: var(--blue-deep);
  padding: 2.5rem 5%
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr)
}

.stat-item {
  text-align: center;
  padding: .8rem 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, .15)
}

.stat-item:last-child {
  border-right: none
}

.stat-n {
  font-size: 2.6rem;
  font-weight: 900;
  background: linear-gradient(135deg, #fff, #93c5fd);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1
}

.stat-l {
  font-size: .78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .6);
  margin-top: .3rem;
  text-transform: uppercase;
  letter-spacing: .07em
}

/* TICKER */
.ticker {
  background: var(--accent);
  padding: .75rem 0;
  overflow: hidden
}

.ticker-track {
  display: flex;
  gap: 2.5rem;
  animation: tick 28s linear infinite;
  white-space: nowrap
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-shrink: 0
}

.ticker-item span {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-deep)
}

.tick-sep {
  color: var(--blue-deep);
  opacity: .4;
  font-size: .9rem
}

@keyframes tick {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* CLIENTS MARQUEE */
.clients-section {
  background: var(--white);
  padding: 4rem 0 5rem
}

.clients-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  margin-bottom: 2.5rem
}

.clients-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #f96302;
  text-transform: uppercase;
  letter-spacing: .03em;
  display: inline-block;
  position: relative;
  padding-bottom: .4rem
}

.clients-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #f96302
}

.clients-marquee {
  overflow: hidden;
  padding: 1rem 0;
  position: relative;
  width: 100%
}

.clients-marquee::before,
.clients-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none
}

.clients-marquee::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, transparent 100%)
}

.clients-marquee::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, transparent 100%)
}

.clients-track {
  display: flex;
  width: max-content;
  animation: tick 45s linear infinite;
}

.clients-track:hover {
  animation-play-state: paused;
}

.client-logo-box {
  width: 290px;
  height: 145px;
  border: 1px solid var(--grey-300);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  background: #fff;
  transition: all .3s;
  flex-shrink: 0;
  margin-right: 2rem;
  border-radius: 8px;
}

.client-logo-box:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue-mid);
  transform: translateY(-3px);
}

.client-logo-box img {
  max-width: 95%;
  max-height: 90%;
  object-fit: contain;
}


/* WHY */
.why-section {
  background: #fff
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem
}

.why-card {
  background: var(--grey-100);
  border: 1px solid var(--grey-300);
  border-radius: var(--rl);
  padding: 2rem;
  transition: all .3s;
  position: relative;
  overflow: hidden
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-mid), var(--blue-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s
}

.why-card:hover {
  background: #fff;
  box-shadow: var(--shadow-md);
  border-color: transparent;
  transform: translateY(-4px)
}

.why-card:hover::before {
  transform: scaleX(1)
}

.why-icon {
  width: 50px;
  height: 50px;
  background: var(--blue-xlight);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem
}

.why-icon svg {
  width: 22px;
  height: 22px;
  color: var(--blue-mid)
}

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: .55rem
}

.why-card p {
  font-size: .88rem;
  color: var(--grey-500);
  line-height: 1.7
}

/* INDUSTRIES */
.ind-section {
  background: var(--grey-100)
}

.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem
}

.ind-card {
  border-radius: var(--rl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
  background: #fff
}

.ind-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg)
}

.ind-img {
  width: 100%;
  height: 190px;
  transition: transform .5s
}

.ind-card:hover .ind-img {
  transform: scale(1.06)
}

.ind-body {
  padding: 1.4rem
}

.ind-num {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: .3rem
}

.ind-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: .5rem
}

.ind-body p {
  font-size: .85rem;
  color: var(--grey-500);
  line-height: 1.65
}

/* PROCESS */
.proc-section {
  background: var(--blue-deep);
  padding: 80px 5%
}

.proc-inner {
  max-width: 1200px;
  margin: 0 auto
}

.proc-chip {
  background: rgba(255, 255, 255, .12);
  color: #93c5fd;
  border-color: rgba(255, 255, 255, .2)
}

.proc-title {
  color: #fff
}

.proc-title span {
  color: #93c5fd
}

.proc-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
  position: relative
}

.proc-steps::before {
  content: '';
  position: absolute;
  top: 29px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .15), var(--accent), rgba(255, 255, 255, .15), transparent)
}

.proc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 .6rem
}

.proc-num {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: 2px solid rgba(255, 255, 255, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 1.1rem;
  position: relative;
  z-index: 1;
  transition: all .3s
}

.proc-step:hover .proc-num {
  background: var(--accent);
  color: var(--blue-deep);
  border-color: var(--accent);
  transform: scale(1.1)
}

.proc-step h4 {
  font-size: .92rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .45rem
}

.proc-step p {
  font-size: .78rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.55
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
  padding: 72px 5%;
  position: relative;
  overflow: hidden
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05)
}

.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap
}

.cta-inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1
}

.cta-inner p {
  font-size: .98rem;
  color: rgba(255, 255, 255, .68);
  margin-top: .65rem;
  max-width: 480px
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  color: var(--blue-deep);
  font-family: 'Outfit', sans-serif;
  font-size: .92rem;
  font-weight: 700;
  padding: .9rem 2.2rem;
  border-radius: 9px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: all .2s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .18)
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .22)
}

/* SERVICES */
.svc-hero {
  padding: 100px 5% 2px;
  background: linear-gradient(150deg, var(--blue-xlight) 0%, #fff 60%)
}

.svc-hero-inner {
  max-width: 1200px;
  margin: 0 auto
}

.svc-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5% 50px
}

.svc-img {
  width: 100%;
  height: 250px;
  border-radius: var(--rl);
  box-shadow: var(--shadow-md)
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5% 80px
}

.svc-card {
  background: #fff;
  border: 1px solid var(--grey-300);
  border-radius: var(--rl);
  padding: 2rem;
  transition: all .3s;
  position: relative;
  overflow: hidden
}

.svc-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-mid);
  transform: translateY(-4px)
}

.svc-num {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-bottom: 1.4rem;
  display: block
}

.svc-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-xlight), #dbeafe);
  border: 1px solid #c7ddf9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem
}

.svc-icon svg {
  width: 26px;
  height: 26px;
  color: var(--blue-mid)
}

.svc-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: .75rem;
  line-height: 1.2
}

.svc-card p {
  font-size: .88rem;
  color: var(--grey-500);
  line-height: 1.7
}

.svc-feats {
  list-style: none;
  margin-top: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: .4rem
}

.svc-feats li {
  font-size: .82rem;
  color: var(--grey-700);
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  line-height: 1.45
}

.svc-feats li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-mid);
  flex-shrink: 0;
  margin-top: .46em
}

/* ABOUT */
.about-hero {
  padding: 120px 5% 70px;
  background: linear-gradient(150deg, var(--blue-xlight) 0%, #fff 60%)
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center
}

.img-stack {
  position: relative;
  height: 470px
}

.img-main {
  width: 82%;
  height: 410px;
  border-radius: var(--rl);
  box-shadow: var(--shadow-lg);
  position: absolute;
  top: 0;
  left: 0
}

.img-sec {
  width: 52%;
  height: 250px;
  border-radius: var(--rl);
  box-shadow: var(--shadow-lg);
  position: absolute;
  bottom: 0;
  right: 0;
  border: 4px solid #fff
}

.exp-badge {
  position: absolute;
  top: 50%;
  left: 58%;
  transform: translate(-50%, -50%);
  background: var(--blue-deep);
  color: #fff;
  border-radius: 50%;
  width: 88px;
  height: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 2
}

.exp-badge .n {
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1
}

.exp-badge .l {
  font-size: .5rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-align: center;
  opacity: .8
}

.about-right p {
  font-size: .98rem;
  color: var(--grey-500);
  line-height: 1.8;
  margin-top: .9rem
}

.checks {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin: 1.4rem 0 2rem
}

.check-item {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .93rem;
  font-weight: 600;
  color: var(--blue-deep)
}

.chk-ico {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.chk-ico svg {
  width: 12px;
  height: 12px;
  color: var(--blue-mid)
}

.vals-section {
  background: var(--grey-100);
  padding: 80px 5%
}

.vals-inner {
  max-width: 1200px;
  margin: 0 auto
}

.vals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 3rem
}

.val-card {
  background: #fff;
  border-radius: var(--rl);
  padding: 1.8rem 1.5rem;
  border: 1px solid var(--grey-300);
  text-align: center;
  transition: all .3s
}

.val-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue-mid);
  transform: translateY(-4px)
}

.val-n {
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: .4rem
}

.val-card h3 {
  font-size: .98rem;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: .55rem
}

.val-card p {
  font-size: .84rem;
  color: var(--grey-500);
  line-height: 1.65
}

.team-section {
  background: #fff;
  padding: 20px 5%
}

.team-inner {
  max-width: 1200px;
  margin: 0 auto
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem
}

.team-card {
  background: var(--grey-100);
  border-radius: var(--rl);
  overflow: hidden;
  border: 1px solid var(--grey-300);
  transition: all .3s;
  flex: 0 0 350px;
  /* Base width for slider cards */
  scroll-snap-align: start;
}

/* Gallery Slider Specifics */
.gallery-cat {
  position: relative;
}

.cat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--grey-300);
  padding-bottom: 1rem;
}

.cat-nav {
  display: flex;
  gap: 10px;
}

.cat-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--grey-300);
  background: var(--white);
  color: var(--blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.cat-nav-btn:hover {
  background: var(--blue-deep);
  color: var(--white);
  border-color: var(--blue-deep);
}

.gallery-slider {
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
}

.gallery-track {
  display: flex !important;
  flex-wrap: nowrap !important;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding-bottom: 15px;
  -ms-overflow-style: none;
  /* IE/Edge */
  scrollbar-width: none;
  /* Firefox */
  scroll-behavior: smooth;
}

.gallery-track::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

@media (max-width: 768px) {
  .team-card {
    flex: 0 0 280px;
  }
}

.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 5px auto;
  padding: 0 20px;
}

.svc-card-sharp {
  background: var(--white);
  border: 1px solid var(--grey-200);
  transition: all 0.4s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.svc-card-sharp:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(11, 61, 110, 0.1);
  border-color: var(--accent);
}

.svc-card-top {
  height: 280px;
  /* Decreased height */
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.svc-card-top h3 {
  color: var(--white);
  font-family: 'Didot', 'Cormorant Garamond', serif !important;
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
  margin: 0;
  text-shadow: none;
  /* Removed shadow/bg */
}

.svc-card-bottom {
  padding: 3rem 2rem;
  /* Increased vertical padding */
}

.svc-card-bottom p {
  color: var(--grey-500);
  line-height: 1.7;
  /* increased line height */
  margin-top: 1.2rem;
  font-size: 1.05rem;
  /* Increased content font size */
}

@media (max-width: 992px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }
}

.team-img-wrap {
  position: relative;
  height: 235px;
  overflow: hidden
}

.team-img {
  width: 100%;
  height: 100%;
  transition: transform .5s
}

.team-card:hover .team-img {
  transform: scale(1.06)
}

.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 61, 110, .55), transparent 50%)
}

.team-body {
  padding: 1.4rem
}

.team-role {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: .25rem
}

.team-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: .5rem
}

.team-bio {
  font-size: .85rem;
  color: var(--grey-500);
  line-height: 1.6
}

.certs-bar {
  background: var(--blue-deep);
  padding: 2.5rem 5%
}

.certs-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap
}

.certs-lbl {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  flex-shrink: 0
}

.cert-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem
}

.cert-tag {
  padding: .4rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, .2);
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .75);
  background: rgba(255, 255, 255, .06);
  transition: all .2s
}

.cert-tag:hover {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .4)
}

/* CONTACT */
.contact-hero {
  padding: 120px 5% 5px;
  background: linear-gradient(150deg, var(--blue-xlight) 0%, #fff 60%)
}

.contact-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center
}

.contact-hero-inner .section-sub {
  margin: 0 auto
}

.contact-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 5% 60px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 3rem;
  align-items: start
}

.info-card {
  background: var(--blue-deep);
  border-radius: var(--rl);
  padding: 2.5rem;
  color: #fff
}

.info-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.8rem
}

.info-block {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  margin-bottom: 1.7rem
}

.info-block:last-of-type {
  margin-bottom: 0
}

.info-ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.info-ico svg {
  width: 16px;
  height: 16px;
  color: #93c5fd
}

.info-lbl {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: .25rem
}

.info-val {
  font-size: .9rem;
  color: rgba(255, 255, 255, .82);
  line-height: 1.6
}

.info-div {
  height: 1px;
  background: rgba(255, 255, 255, .12);
  margin: 1.8rem 0
}

.info-note {
  font-size: .8rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.65
}

.form-card {
  background: #fff;
  border-radius: var(--rl);
  padding: 2.5rem;
  border: 1px solid var(--grey-300);
  box-shadow: var(--shadow-md)
}

.form-card-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--blue-deep);
  margin-bottom: .35rem
}

.form-card-sub {
  font-size: .88rem;
  color: var(--grey-500);
  margin-bottom: 1.8rem
}

.fg {
  display: flex;
  flex-direction: column;
  gap: .38rem;
  margin-bottom: .9rem
}

.fg label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue-deep)
}

.fg input,
.fg select,
.fg textarea {
  background: #f8fafc;
  border: 1.5px solid var(--grey-300);
  color: var(--text);
  font-family: 'Tenor Sans', sans-serif;
  font-size: .93rem;
  padding: .78rem 1rem;
  border-radius: var(--r);
  outline: none;
  transition: border-color .2s, background .2s;
  -webkit-appearance: none;
  appearance: none
}

.fg select option {
  background: #fff
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--blue-mid);
  background: #fff
}

.fg input::placeholder,
.fg textarea::placeholder {
  color: #94a3b8;
  font-weight: 400
}

.fg textarea {
  resize: vertical;
  min-height: 108px
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem
}

.form-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.1rem;
  flex-wrap: wrap
}

.form-note {
  font-size: .76rem;
  color: var(--grey-500);
  max-width: 230px;
  line-height: 1.5
}

/* Form alerts */
.form-success {
  display: none;
  margin-top: 1rem;
  padding: .85rem 1.1rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 9px;
  color: #166534;
  font-size: .86rem;
  font-weight: 600
}

.form-success.show {
  display: block
}

.form-error {
  display: none;
  margin-top: 1rem;
  padding: .85rem 1.1rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 9px;
  color: #b91c1c;
  font-size: .86rem;
  font-weight: 600
}

.form-error.show {
  display: block
}

/* =========================================
   WPFORMS INTEGRATION STYLES (.ump-wpforms)
   ========================================= */
.ump-wpforms .wpforms-container {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.ump-wpforms .wpforms-form {
  margin: 0 !important;
  padding: 0 !important;
}

.ump-wpforms .wpforms-field-container {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 0.9rem !important;
}

.ump-wpforms .wpforms-field {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.38rem !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  clear: none !important;
  float: none !important;
}

/* Row 3 onwards (or full-width fields) take both grid columns */
.ump-wpforms .wpforms-field:nth-child(n+5),
.ump-wpforms .wpforms-field-email,
.ump-wpforms .wpforms-field-select,
.ump-wpforms .wpforms-field-textarea,
.ump-wpforms .wpforms-field.wpforms-full,
.ump-wpforms .wpforms-field.ump-full-width {
  grid-column: 1 / -1 !important;
}

.ump-wpforms .wpforms-field-label {
  display: block !important;
  font-family: 'Tenor Sans', sans-serif !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--blue-deep) !important;
  margin-bottom: 0.38rem !important;
}

.ump-wpforms .wpforms-required-label {
  color: var(--blue-deep) !important;
}

.ump-wpforms input[type="text"],
.ump-wpforms input[type="email"],
.ump-wpforms input[type="tel"],
.ump-wpforms select,
.ump-wpforms textarea,
.ump-wpforms .wpforms-field input,
.ump-wpforms .wpforms-field select,
.ump-wpforms .wpforms-field textarea {
  background: #f8fafc !important;
  border: 1.5px solid var(--grey-300) !important;
  color: var(--text) !important;
  font-family: 'Tenor Sans', sans-serif !important;
  font-size: 0.93rem !important;
  padding: 0.78rem 1rem !important;
  border-radius: var(--r, 0px) !important;
  outline: none !important;
  transition: border-color 0.2s, background 0.2s !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  width: 100% !important;
  box-sizing: border-box !important;
  height: auto !important;
  line-height: 1.4 !important;
  box-shadow: none !important;
}

.ump-wpforms select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230b3d6e' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 1rem center !important;
  padding-right: 2.5rem !important;
}

.ump-wpforms select option {
  background: #ffffff !important;
  color: var(--text) !important;
}

.ump-wpforms input:focus,
.ump-wpforms select:focus,
.ump-wpforms textarea:focus,
.ump-wpforms .wpforms-field input:focus,
.ump-wpforms .wpforms-field select:focus,
.ump-wpforms .wpforms-field textarea:focus {
  border-color: var(--blue-mid) !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(30, 96, 170, 0.1) !important;
}

.ump-wpforms input::placeholder,
.ump-wpforms textarea::placeholder {
  color: #94a3b8 !important;
  font-weight: 400 !important;
}

.ump-wpforms textarea {
  resize: vertical !important;
  min-height: 108px !important;
}

.ump-wpforms .wpforms-field-name-first,
.ump-wpforms .wpforms-field-name-last {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
}

.ump-wpforms .wpforms-submit-container {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1rem !important;
  margin-top: 1.1rem !important;
  flex-wrap: wrap !important;
  padding: 0 !important;
  border: none !important;
}

.ump-wpforms .form-note {
  font-size: 0.76rem !important;
  color: var(--grey-500) !important;
  max-width: 230px !important;
  line-height: 1.5 !important;
  display: block !important;
}

.ump-wpforms button.wpforms-submit,
.ump-wpforms input[type="submit"].wpforms-submit,
.ump-wpforms .wpforms-submit-container button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  background: var(--accent, #f59e0b) !important;
  color: #ffffff !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  padding: 0.85rem 2rem !important;
  border-radius: 9px !important;
  text-decoration: none !important;
  border: none !important;
  cursor: pointer !important;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s !important;
  box-shadow: 0 4px 14px rgba(21, 101, 192, 0.3) !important;
  margin-left: auto !important;
  margin-top: 0 !important;
  width: auto !important;
}

.ump-wpforms button.wpforms-submit:hover,
.ump-wpforms input[type="submit"].wpforms-submit:hover,
.ump-wpforms .wpforms-submit-container button:hover {
  background: var(--blue-deep, #0b3d6e) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(21, 101, 192, 0.35) !important;
}

.ump-wpforms .wpforms-confirmation-container-full,
.ump-wpforms div.wpforms-confirmation-container {
  margin-top: 1rem !important;
  padding: 0.85rem 1.1rem !important;
  background: #f0fdf4 !important;
  border: 1px solid #bbf7d0 !important;
  border-radius: 9px !important;
  color: #166534 !important;
  font-size: 0.86rem !important;
  font-weight: 600 !important;
  box-shadow: none !important;
}

.ump-wpforms label.wpforms-error,
.ump-wpforms em.wpforms-error,
.ump-wpforms .wpforms-error-container {
  color: #ef4444 !important;
  font-size: 0.78rem !important;
  margin-top: 0.25rem !important;
  font-weight: 500 !important;
}

.ump-wpforms input.wpforms-error,
.ump-wpforms select.wpforms-error,
.ump-wpforms textarea.wpforms-error {
  border-color: #ef4444 !important;
  background-color: #fef2f2 !important;
}

@media (max-width: 640px) {
  .ump-wpforms .wpforms-field-container {
    grid-template-columns: 1fr !important;
  }
  .ump-wpforms .wpforms-field {
    grid-column: 1 / -1 !important;
  }
  .ump-wpforms .wpforms-submit-container {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .ump-wpforms button.wpforms-submit,
  .ump-wpforms input[type="submit"].wpforms-submit {
    width: 100% !important;
    margin-left: 0 !important;
  }
}


/* FOOTER */
footer {
  background: var(--blue-deep);
  padding: 60px 5% 28px
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.footer-brand p {
  font-size: .86rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.75;
  margin-top: .9rem;
  max-width: 260px
}

.footer-col h4 {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .88);
  margin-bottom: 1.1rem
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .65rem
}

.footer-col ul a {
  text-decoration: none;
  font-size: .86rem;
  color: rgba(255, 255, 255, .48);
  transition: color .2s
}

.footer-col ul a:hover {
  color: rgba(255, 255, 255, .9)
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.8rem;
  flex-wrap: wrap;
  gap: 1rem
}

.footer-bottom p {
  font-size: .78rem;
  color: rgba(255, 255, 255, .32)
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none
}

.footer-links a {
  font-size: .78rem;
  color: rgba(255, 255, 255, .32);
  text-decoration: none;
  transition: color .2s
}

.footer-links a:hover {
  color: rgba(255, 255, 255, .7)
}

/* RESPONSIVE */
@media(max-width:1024px) {
  .nav-links {
    display: none
  }

  .hamburger {
    display: flex
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 4rem 4% 5rem;
    gap: 3rem
  }

  .hero-right {
    display: none
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr)
  }

  .stat-item:nth-child(2) {
    border-right: none
  }

  .why-grid {
    grid-template-columns: 1fr 1fr
  }

  .ind-grid {
    grid-template-columns: 1fr 1fr
  }

  .proc-steps {
    grid-template-columns: 1fr 1fr;
    gap: 2rem
  }

  .proc-steps::before {
    display: none
  }

  .svc-img-row {
    grid-template-columns: 1fr
  }

  .svc-grid {
    grid-template-columns: 1fr 1fr
  }

  .about-inner {
    grid-template-columns: 1fr
  }

  .img-stack {
    height: 300px;
    margin-bottom: 2rem
  }

  .vals-grid {
    grid-template-columns: 1fr 1fr
  }

  .team-grid {
    grid-template-columns: 1fr 1fr
  }

  .contact-grid {
    grid-template-columns: 1fr
  }

  .footer-top {
    grid-template-columns: 1fr 1fr
  }

  .cta-inner {
    flex-direction: column
  }

  .certs-bar-inner {
    flex-direction: column;
    gap: 1rem
  }

  nav {
    padding: 0 4%
  }
}

@media(max-width:640px) {

  .why-grid,
  .ind-grid,
  .svc-grid,
  .vals-grid,
  .team-grid,
  .footer-top {
    grid-template-columns: 1fr
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr)
  }

  .proc-steps {
    grid-template-columns: 1fr
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* PREMIUM PROJECTS & CLIENTS SECTION */
h1,
h2,
h3,
h4,
.section-title {
  font-family: 'Didot', 'Cormorant Garamond', serif !important;
}

.premium-font {
  font-family: 'Didot', 'Cormorant Garamond', serif !important;
}

.premium-projects-page {
  font-family: 'Tenor Sans', sans-serif;
}

.project-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.tab-btn {
  background: #fff;
  color: var(--blue-deep);
  border: 1px solid var(--grey-300);
  padding: 0.7rem 1.6rem;
  border-radius: var(--r);
  font-weight: 700;
  font-family: 'Tenor Sans', sans-serif;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  text-transform: uppercase;
}

.tab-btn:hover {
  background: var(--blue-xlight);
  transform: translateY(-2px);
  border-color: var(--blue-mid);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(11, 61, 110, 0.3);
}

.projects-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 2rem !important;
  row-gap: 2rem !important;
  column-gap: 2rem !important;
  margin: 1.5rem auto 0 !important;
  max-width: 1200px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.projects-grid .ind-card,
.projects-grid .filter-item {
  position: relative;
  background-size: cover;
  background-position: center;
  border: none;
  min-height: 280px;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: flex-end;
  padding: 0;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden !important;
  border-radius: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  background-color: var(--blue-deep);
  /* Default fallback */
}

.projects-grid .ind-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.projects-grid .ind-card .ind-img {
  display: none;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.2) 40%, transparent 70%);
  z-index: 1;
  transition: all 0.5s ease;
}

.projects-grid .ind-card:hover .card-overlay {
  background: linear-gradient(to top, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.3) 50%, transparent 75%);
}

.projects-grid .ind-card .ind-body {
  position: relative;
  z-index: 2;
  color: #fff;
  width: 100%;
  padding: 1.5rem;
  transform: translateY(15px);
  transition: transform 0.5s ease;
}

.projects-grid .ind-card:hover .ind-body {
  transform: translateY(0);
}

.projects-grid .ind-card .ind-num {
  color: var(--accent-light);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-weight: 700;
}

.projects-grid .ind-card .ind-client {
  color: #d4af37;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.projects-grid .ind-card h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
  line-height: 1.25;
}

.projects-grid .ind-card .ind-meta {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  font-weight: 500;
  margin-top: 0.2rem;
}

.projects-grid .ind-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  line-height: 1.5;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (max-width: 1024px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 1.5rem !important;
    row-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }

  .projects-grid .ind-card {
    min-height: 260px;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 650px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
    row-gap: 1.25rem !important;
    column-gap: 1.25rem !important;
  }

  .projects-grid .ind-card {
    min-height: 240px;
    aspect-ratio: 16 / 9;
  }

  .projects-grid .ind-card .ind-body {
    transform: translateY(0);
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .clients-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   MILESTONES SLIDER
   ========================================= */
.milestones-section {
  background: var(--grey-300);

}

.milestone-slider {
  position: relative;
  width: calc(100% - 40px);
  max-width: 1300px;
  height: 60vh;
  min-height: 500px;
  max-height: 700px;
  margin: 3rem auto;
  padding: 40.34px 0px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.m-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s;
  z-index: 1;
}

.m-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.m-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.m-slide.active .m-slide-bg {
  transform: scale(1);
}

.m-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(11, 61, 110, 0.85) 0%, rgba(11, 61, 110, 0.3) 60%, rgba(11, 61, 110, 0.1) 100%);
}

.m-slide-content {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-40%);
  max-width: 600px;
  color: var(--white);
  opacity: 0;
  transition: all 0.8s ease 0.4s;
}

.m-slide.active .m-slide-content {
  opacity: 1;
  transform: translateY(-50%);
}

.m-slide-content h3 {
  font-family: 'Didot', 'Cormorant Garamond', serif !important;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.1;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.m-slide-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* Controls */
.m-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--trans);
}

.m-slider-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--blue-deep);
}

.m-prev {
  left: 20px;
}

.m-next {
  right: 20px;
}

.m-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.m-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--trans);
}

.m-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .m-slide-content {
    left: 20px;
    right: 20px;
    top: auto;
    bottom: 80px;
    transform: translateY(20px);
  }

  .m-slide.active .m-slide-content {
    transform: translateY(0);
  }

  .m-slide-overlay {
    background: linear-gradient(to top, rgba(11, 61, 110, 0.9) 0%, rgba(11, 61, 110, 0.4) 50%, rgba(11, 61, 110, 0.1) 100%);
  }
}

/* =========================================
   PARTNER WITH US SECTION
   ========================================= */
.partner-section {
  background-color: var(--white);
  padding: 80px 0;
}

.partner-masonry {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  /* 6 columns for precision */
  grid-auto-rows: 180px;
  gap: 15px;
  margin-bottom: 4rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 15px;
}

.pm-item {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 0;
  /* Sharp edges */
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  margin: 0;
  /* Joint together */
}

/* Grid Spanning Utilities */
.pm-w-1 {
  grid-column: span 1;
}

.pm-w-2 {
  grid-column: span 2;
}

.pm-w-3 {
  grid-column: span 3;
}

.pm-w-4 {
  grid-column: span 4;
}

.pm-h-1 {
  grid-row: span 1;
}

.pm-h-2 {
  grid-row: span 2;
}

.pm-item:hover {
  transform: scale(1.02);
  z-index: 5;
  filter: brightness(1.1);
}

.pm-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(11, 61, 110, 0.7) 0%, transparent 60%);
  /* Added subtle gradient for text legibility */
  transition: opacity 0.3s ease;
}

.pm-title {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: var(--white);
  font-family: 'Didot', 'Cormorant Garamond', serif !important;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  z-index: 2;
  pointer-events: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: none;
  /* Removed shadow */
}

@media (max-width: 768px) {
  .partner-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }

  .pm-w-2 {
    grid-column: span 1;
  }

  .pm-h-2 {
    grid-row: span 1;
  }
}

@media (max-width: 992px) {
  .pm-item.pm-wide {
    width: 280px;
  }

  .pm-item:nth-child(n) {
    margin-top: 20px;
  }
}

.partner-closing {
  text-align: center;
  padding: 3rem 0 1rem;
  border-top: 1px solid var(--grey-200);
}

.partner-closing .closing-text {
  font-family: 'Didot', 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--blue-deep);
  font-weight: 600;
  font-style: italic;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .partner-closing .closing-text {
    font-size: 1.3rem;
  }
}

/* =========================================
   LEGAL PAGES (PRIVACY POLICY & TERMS OF SERVICE)
   ========================================= */

.legal-page-body {
  font-family: 'Poppins', sans-serif;
  color: var(--grey-700);
  background-color: #ffffff;
}

.legal-heading-font {
  font-family: 'Outfit', sans-serif;
  font-size: medium;
}

/* Legal Hero */
.legal-hero {
  padding-top: 80px;
  padding-bottom: 5px;
  background: linear-gradient(135deg, #0b3d6e 0%, #1e60aa 60%, #0b3d6e 100%);
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.legal-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.legal-hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
  z-index: 2;
}

.legal-hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #fcd34d;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 1.2rem;
  margin-top: 1rem;
}

.legal-hero-chip-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #f59e0b;
  box-shadow: 0 0 10px #f59e0b;
}

.legal-hero h1 {
  font-family: 'Outfit', sans-serif !important;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}

.legal-hero h1 span {
  color: #f59e0b;
}

.legal-hero-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
  max-width: 580px;
}

.legal-hero-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.legal-hero-svg-wrap {
  width: 100%;
  max-width: 380px;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
}

/* Legal Layout & Sticky Table of Contents */
.legal-main-section {
  padding: 80px 0;
  background: #ffffff;
}

.legal-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3.5rem;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 100px;
  background: #f8fafc;
  border: 1px solid var(--grey-300);
  border-radius: 16px;
  padding: 1.8rem 1.4rem;
  box-shadow: var(--shadow-sm);
}

.legal-sidebar-title {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-deep);
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--blue-light);
}

.legal-toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.legal-toc-list a {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--grey-700);
  text-decoration: none;
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.legal-toc-list a:hover,
.legal-toc-list a.active {
  background: var(--blue-xlight);
  color: var(--blue-mid);
  font-weight: 600;
  transform: translateX(4px);
}

.legal-content-wrap {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.legal-section {
  scroll-margin-top: 100px;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--grey-200);
}

.legal-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.legal-section-num {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}

.legal-section h2 {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blue-deep);
  line-height: 1.25;
  margin-bottom: 1.1rem;
}

.legal-section p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.98rem;
  color: var(--grey-700);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-list {
  list-style: none;
  margin: 1.2rem 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.legal-list li {
  position: relative;
  padding-left: 1.8rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: var(--grey-700);
  line-height: 1.7;
}

.legal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-mid);
}

.legal-highlight-box {
  background: var(--blue-xlight);
  border-left: 4px solid var(--blue-mid);
  padding: 1.2rem 1.5rem;
  border-radius: 0 12px 12px 0;
  margin: 1.2rem 0;
}

.legal-highlight-box p {
  margin: 0;
  font-weight: 500;
  color: var(--blue-deep);
}

/* Information Cards Section */
.info-cards-section {
  background: var(--grey-100);
  padding: 80px 0;
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
}

.info-cards-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3.5rem;
}

.info-cards-header h2 {
  font-family: 'Outfit', sans-serif !important;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--blue-deep);
}

.info-cards-header p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.98rem;
  color: var(--grey-500);
  margin-top: 0.5rem;
}

.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}

.legal-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem 1.6rem;
  border: 1px solid var(--grey-300);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.legal-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #c7ddf9;
}

.legal-card-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-xlight), var(--blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  color: var(--blue-mid);
  transition: all 0.3s ease;
}

.legal-card:hover .legal-card-icon-wrap {
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-deep));
  color: #ffffff;
  transform: scale(1.05);
}

.legal-card-icon-wrap svg {
  width: 26px;
  height: 26px;
}

.legal-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: #059669;
  background: #ecfdf5;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 0.8rem;
}

.legal-card h3 {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 0.7rem;
  line-height: 1.3;
}

.legal-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--grey-500);
  line-height: 1.6;
  margin-top: auto;
}

/* FAQ Accordion Section */
.legal-faq-section {
  padding: 80px 0;
  background: #ffffff;
}

.faq-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3rem;
}

.faq-header h2 {
  font-family: 'Outfit', sans-serif !important;
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--blue-deep);
}

.faq-accordion-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--grey-300);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.faq-item:hover {
  border-color: #cbd5e1;
}

.faq-item.active {
  border-color: #93c5fd;
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 1.4rem 1.8rem;
  background: transparent;
  border: none;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--blue-deep);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--blue-mid);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue-xlight);
  color: var(--blue-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--blue-mid);
  color: #ffffff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  padding: 0 1.8rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.8rem 1.6rem 1.8rem;
  transition: max-height 0.4s ease-in-out;
}

.faq-answer p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: var(--grey-700);
  line-height: 1.7;
  margin: 0;
}

/* Contact Card Section */
.legal-contact-section {
  padding: 40px 0 80px;
}

.legal-contact-card {
  background: linear-gradient(135deg, #0b3d6e 0%, #1e60aa 100%);
  border-radius: 24px;
  padding: 3.5rem 3rem;
  color: #ffffff;
  box-shadow: 0 20px 40px rgba(11, 61, 110, 0.2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.legal-contact-card::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.legal-contact-info h2 {
  font-family: 'Outfit', sans-serif !important;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.8rem;
}

.legal-contact-info p {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.legal-contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f59e0b;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
}

.contact-detail-text label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.2rem;
}

.contact-detail-text span,
.contact-detail-text a {
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  line-height: 1.4;
  display: block;
}

.contact-detail-text a:hover {
  color: #fcd34d;
}

.legal-contact-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  z-index: 2;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #f59e0b;
  color: #0b3d6e;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem 2.2rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
}

.btn-gold:hover {
  background: #fbbf24;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(245, 158, 11, 0.5);
}

/* Legal Page Responsive Breakpoints */
@media (max-width: 1024px) {
  .legal-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .legal-hero-sub {
    margin: 0 auto;
  }

  .legal-hero-graphic {
    display: none;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-sidebar {
    display: none;
  }

  .info-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .legal-contact-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 2rem;
  }

  .legal-contact-action {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .info-cards-grid {
    grid-template-columns: 1fr;
  }

  .legal-contact-details {
    grid-template-columns: 1fr;
  }

  .legal-hero h1 {
    font-size: 2.2rem;
  }
}

/* HERO TRUST LOGOS & FEATURED DEVELOPMENTS */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-trust-logos {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.trust-logo-box {
  height: 42px;
  padding: 6px 14px;
  background: #ffffff;
  border: 1px solid var(--grey-300, #e2e8f0);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.trust-logo-box img {
  max-height: 28px;
  max-width: 90px;
  object-fit: contain;
}

.featured-projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem;
}

@media (max-width: 768px) {
  .featured-projects-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.featured-card {
  background: #ffffff;
  border-radius: var(--rl, 12px);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--grey-300, #e2e8f0);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

.featured-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(11, 61, 110, 0.12);
}

.featured-img-wrap {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.featured-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-card:hover .featured-img-wrap img {
  transform: scale(1.05);
}

.featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(11, 61, 110, 0.9);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.featured-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.featured-client {
  color: #d4af37;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.featured-title {
  color: var(--blue-deep, #0b2545);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.featured-location {
  color: var(--grey-500, #64748b);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.featured-desc {
  color: var(--grey-600, #475569);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-top: auto;
}

/* ABOUT PAGE EDITORIAL & 3 GENERATIONS STYLING */
.about-hero-v2 {
  padding: 130px 0 80px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-bottom: 1px solid #e2e8f0;
}

.about-hero-v2 .anim,
.about-section-editorial .anim {
  opacity: 1;
  transform: translateY(0);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.brand-statement-box {
  background: #0b2545;
  border-left: 4px solid #d4af37;
  border-radius: 12px;
  padding: 2rem 2.2rem;
  margin-top: 2rem;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(11, 37, 69, 0.15);
}

.brand-statement-box h3 {
  color: #d4af37;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.brand-statement-box p {
  color: #e2e8f0;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
  font-weight: 500;
}

.hero-img-editorial {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  height: 480px;
}

.hero-img-editorial img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge-tag {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(11, 37, 69, 0.92);
  color: #ffffff;
  padding: 0.8rem 1.4rem;
  border-radius: 10px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.hero-badge-tag .n {
  font-size: 1.5rem;
  font-weight: 800;
  color: #d4af37;
  display: block;
}

.hero-badge-tag .l {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #cbd5e1;
}

/* SECTION EDITORIAL GENERAL */
.about-section-editorial {
  padding: 50px 0px;
}

.about-text-body p {
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.4rem;
}

.about-text-body p:last-child {
  margin-bottom: 0;
}

/* THREE GENERATIONS TIMELINE */
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  position: relative;
}

.timeline-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-top: 4px solid #0b2545;
  border-radius: 12px;
  padding: 2.2rem 1.8rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, border-top-color 0.3s ease;
}

.timeline-card:hover {
  transform: translateY(-5px);
  border-top-color: #d4af37;
}

.timeline-year {
  color: #d4af37;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.timeline-subtitle {
  color: #0b2545;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.timeline-desc {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.65;
}

/* MINIMAL SECTOR BAR */
.sectors-minimal-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.25rem 2rem;
  background: #f1f5f9;
  border-radius: 50px;
  margin-top: 2.5rem;
  border: 1px solid #e2e8f0;
}

.sector-tag-item {
  color: #0b2545;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.sector-tag-dot {
  color: #d4af37;
  font-weight: 800;
}

/* CLOSING HIGHLIGHT BANNER */
.closing-highlight-box {
  background: linear-gradient(135deg, #0b2545 0%, #133b6b 100%);
  border-radius: 16px;
  padding: 3.5rem 2.5rem;
  color: #ffffff;
  text-align: center;
  margin-top: 3rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 16px 40px rgba(11, 37, 69, 0.18);
}

.closing-highlight-text {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.closing-highlight-text span {
  color: #d4af37;
}

.closing-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .timeline-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}