/* Ezewag shared redesign layer. UI-only: loaded after existing page CSS. */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --ez-ash: #edeae4;
  --ez-ash-2: #f5f3ef;
  --ez-white: #ffffff;
  --ez-ink: #161719;
  --ez-muted: #626a72;
  --ez-soft: #d9d6cf;
  --ez-gold: #c9972c;
  --ez-gold-soft: #f3ead4;
  --ez-navy: #0f2638;
  --ez-ocean: #0a3d62;
  --ez-shadow: 0 24px 80px rgba(16, 24, 40, .10);
  --ez-shadow-soft: 0 12px 38px rgba(16, 24, 40, .08);
  --ez-radius: 24px;
  --ez-ease: cubic-bezier(.16, 1, .3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ez-ink);
  background:
    radial-gradient(circle at 18% 4%, rgba(201, 151, 44, .08), transparent 26rem),
    radial-gradient(circle at 92% 20%, rgba(10, 61, 98, .06), transparent 28rem),
    linear-gradient(135deg, #ffffff 0%, var(--ez-ash-2) 48%, #e7eaeb 100%);
  font-family: "Inter", "Plus Jakarta Sans", Arial, sans-serif !important;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(15, 23, 42, .018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, .018) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .55), transparent 75%);
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 300;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  min-height: 64px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(217, 214, 207, .86);
  border-radius: 18px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 55px rgba(16, 24, 40, .08);
  backdrop-filter: blur(18px);
  transition: transform .34s var(--ez-ease), box-shadow .34s var(--ez-ease), background .34s var(--ez-ease);
}

.site-nav.nav-scrolled {
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 44px rgba(16, 24, 40, .12);
}

.site-nav.nav-hidden {
  transform: translateY(-115%);
}

.nav-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  color: var(--ez-ink);
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  letter-spacing: 0;
}

.logo-dot {
  color: var(--ez-gold);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  color: #2e3338;
  font-size: .91rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background .24s var(--ez-ease), color .24s var(--ez-ease), transform .24s var(--ez-ease);
}

.nav-links a:hover,
.nav-links a.nav-active {
  background: rgba(237, 234, 228, .84);
  color: var(--ez-ink);
}

.nav-links a:hover {
  transform: translateY(-1px);
}

.nav-links .nav-cta {
  margin-left: 8px;
  color: #111;
  background: linear-gradient(135deg, #d8a23a, #c79228);
  box-shadow: 0 14px 32px rgba(201, 151, 44, .22);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta.nav-active {
  color: #111;
  background: linear-gradient(135deg, #e0ad47, #c9972c);
}

.ticker-wrap {
  width: 100%;
  margin-top: 14px;
  overflow: hidden;
  border-block: 1px solid rgba(217, 214, 207, .72);
  background: rgba(255, 255, 255, .62);
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 11px 0;
  animation: ezTicker 42s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #525961;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.ticker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ez-gold);
  box-shadow: 0 0 0 5px rgba(201, 151, 44, .12);
}

@keyframes ezTicker {
  to { transform: translateX(-50%); }
}

.hero-section,
.page-hero,
.services-hero,
.about-hero,
.contact-hero,
section {
  position: relative;
  overflow: hidden;
}

.hero-section,
.page-hero,
.section-ash {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, .76), transparent 24rem),
    linear-gradient(135deg, #ffffff 0%, #f6f5f2 58%, #e9ecec 100%) !important;
}

.section-white {
  background: rgba(255, 255, 255, .86) !important;
}

.section-light {
  background:
    radial-gradient(circle at 14% 22%, rgba(201, 151, 44, .055), transparent 23rem),
    linear-gradient(135deg, #f7f6f2, #eef0f0) !important;
}

.section-navy {
  background:
    linear-gradient(135deg, #111418 0%, #20252a 58%, #313436 100%) !important;
  color: #fff !important;
}

.section-navy p,
.section-navy li,
.section-navy span {
  color: rgba(255, 255, 255, .78);
}

.section-wrap,
.container,
.hero-inner,
.page-hero .container {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

.section-wrap,
section > .container {
  padding-block: clamp(58px, 7vw, 104px);
}

.hero-section h1,
.page-hero h1,
.services-hero h1,
h1,
h2,
h3 {
  font-family: "Plus Jakarta Sans", Inter, sans-serif !important;
  letter-spacing: 0 !important;
}

h1 {
  max-width: 980px;
  font-size: clamp(2.7rem, 8vw, 5.8rem) !important;
  line-height: .96 !important;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.65rem) !important;
  line-height: 1.03 !important;
}

p,
li {
  color: var(--ez-muted);
  line-height: 1.75;
}

.eyebrow,
.section-kicker,
.hero-kicker {
  color: var(--ez-gold) !important;
  font-weight: 800 !important;
  letter-spacing: .1em !important;
  text-transform: uppercase;
}

.hero-orb-1,
.hero-orb-2 {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 999px;
  filter: blur(1px);
  opacity: .8;
}

.hero-orb-1 {
  top: -170px;
  right: -120px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(255, 255, 255, .9), rgba(201, 151, 44, .08) 44%, transparent 70%);
  animation: ezOrb 15s ease-in-out infinite alternate;
}

.hero-orb-2 {
  bottom: -140px;
  left: -130px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(255, 255, 255, .72), rgba(15, 38, 56, .07) 48%, transparent 72%);
  animation: ezOrb 18s ease-in-out infinite alternate-reverse;
}

@keyframes ezOrb {
  to { transform: translate3d(18px, 26px, 0) scale(1.05); }
}

.hero-visual,
.visual-panel,
.authority-item,
.credibility-chip,
.service-card,
.audience-card,
.process-step,
.team-card,
.case-card,
.resource-card,
.industry-card,
.faq-item,
.contact-card,
.form-panel,
.card {
  border: 1px solid rgba(217, 214, 207, .82) !important;
  border-radius: var(--ez-radius) !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(247, 246, 242, .78)) !important;
  box-shadow: var(--ez-shadow-soft) !important;
  backdrop-filter: blur(14px);
}

.service-card,
.audience-card,
.process-step,
.team-card,
.case-card,
.resource-card,
.industry-card,
.faq-item {
  transition: transform .36s var(--ez-ease), box-shadow .36s var(--ez-ease), border-color .36s var(--ez-ease);
}

.service-card:hover,
.audience-card:hover,
.process-step:hover,
.team-card:hover,
.case-card:hover,
.resource-card:hover,
.industry-card:hover,
.faq-item:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 151, 44, .44) !important;
  box-shadow: var(--ez-shadow) !important;
}

.service-card::before,
.audience-card::before,
.process-step::before,
.case-card::before,
.resource-card::before,
.industry-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: inherit;
  background: linear-gradient(180deg, var(--ez-gold), #111418);
  opacity: .82;
}

.service-icon,
.audience-icon,
.process-step-circle {
  background: rgba(237, 234, 228, .92) !important;
  color: var(--ez-ocean) !important;
  box-shadow: inset 0 0 0 1px rgba(10, 61, 98, .08);
}

.btn,
.button,
.primary-button,
.nav-cta,
.hero-actions a:first-child,
.cta-button,
button[type="submit"] {
  border: 0 !important;
  color: #111 !important;
  background: linear-gradient(135deg, #d7a23a, #c9972c) !important;
  box-shadow: 0 16px 36px rgba(201, 151, 44, .25) !important;
  transition: transform .28s var(--ez-ease), box-shadow .28s var(--ez-ease), filter .28s var(--ez-ease);
}

.btn:hover,
.button:hover,
.primary-button:hover,
.cta-button:hover,
button[type="submit"]:hover {
  transform: translateY(-2px);
  filter: saturate(1.04);
  box-shadow: 0 20px 44px rgba(201, 151, 44, .32) !important;
}

.trade-route-svg .route-line {
  fill: none;
  stroke: #1e88e5;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 6 10;
  animation: routeDash 2.8s linear infinite;
}

.trade-route-svg .route-line:nth-of-type(2) { animation-delay: .2s; }
.trade-route-svg .route-line:nth-of-type(3) { animation-delay: .4s; }
.trade-route-svg .route-line:nth-of-type(4) { animation-delay: .6s; }
.trade-route-svg .route-line:nth-of-type(5) { animation-delay: .8s; }
.trade-route-svg .route-line:nth-of-type(6) { animation-delay: 1s; }
.trade-route-svg .route-dot { fill: #1e88e5; filter: drop-shadow(0 0 5px rgba(30, 136, 229, .45)); }
.trade-route-svg .destination-pill { fill: #e8f4fd; stroke: rgba(10, 61, 98, .14); }
.trade-route-svg .destination-text { fill: #0a3d62; font: 700 13px Inter, sans-serif; }
.trade-route-svg .india-node { fill: #0a3d62; }
.trade-route-svg .india-text { fill: #fff; font: 800 22px Inter, sans-serif; }

@keyframes routeDash {
  to { stroke-dashoffset: -64; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .72s var(--ez-ease), transform .72s var(--ez-ease);
  transition-delay: var(--reveal-delay, 0ms);
}

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

.slide-left {
  transform: translateX(-34px);
}

.slide-right {
  transform: translateX(34px);
}

.slide-left.visible,
.slide-right.visible {
  transform: translateX(0);
}

.site-footer {
  margin-top: 0;
  border-top: 1px solid rgba(217, 214, 207, .82);
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, .75), transparent 24rem),
    linear-gradient(135deg, #ece9e2, #f7f6f2) !important;
}

.footer-inner {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
  padding: 56px 0 34px;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 34px;
}

.footer-tagline {
  max-width: 270px;
  margin: 14px 0 20px;
  color: var(--ez-muted);
}

.footer-contact-link,
.footer-col-links a {
  display: block;
  color: #3d454d;
  text-decoration: none;
  transition: color .2s var(--ez-ease), transform .2s var(--ez-ease);
}

.footer-contact-link:hover,
.footer-col-links a:hover {
  color: var(--ez-ink);
  transform: translateX(3px);
}

.footer-col-title {
  margin-bottom: 14px;
  color: var(--ez-gold);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-col-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-bottom {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
  padding: 18px 0 28px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(217, 214, 207, .82);
  color: #737b82;
  font-size: .85rem;
}

@media (max-width: 980px) {
  .site-nav {
    position: relative;
    top: auto;
    flex-wrap: wrap;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .nav-links a {
    min-height: 38px;
    padding-inline: 11px;
    font-size: .84rem;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .site-nav {
    width: min(100% - 20px, 1180px);
    margin-top: 10px;
    border-radius: 16px;
  }

  .ticker-wrap {
    margin-top: 10px;
  }

  h1 {
    font-size: clamp(2.35rem, 14vw, 3.4rem) !important;
  }

  h2 {
    font-size: clamp(1.85rem, 10vw, 2.6rem) !important;
  }

  .section-wrap,
  section > .container {
    padding-block: 52px;
  }

  .footer-inner,
  .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
