@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

/* ============================================================
   EMINENT TRADING SOLUTIONS — MAIN STYLESHEET
   style.css
   ============================================================ */

/* ── CSS Custom Properties ── */
:root {
  --clr-navy:       #0a1628;
  --clr-navy-mid:   #1e3a5f;
  --clr-navy-light: #2a5298;
  --clr-gold:       #c9a84c;
  --clr-gold-light: #e0c068;
  --clr-gold-dark:  #a07830;
  --clr-white:      #ffffff;
  --clr-off-white:  #f8f9fa;
  --clr-light-grey: #eef1f5;
  --clr-mid-grey:   #6b7280;
  --clr-dark-grey:  #374151;
  --clr-text:       #1f2937;
  --font-heading:   'Georgia', 'Times New Roman', serif;
  --font-body:      system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --container-max: 1200px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.18);
  --trans-fast: 0.2s ease;
  --trans-base: 0.35s ease;
  --trans-slow: 0.55s ease;
  --header-h:  72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--clr-text);
  background: var(--clr-white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--trans-fast);
}

ul, ol { list-style: none; }
address { font-style: normal; }
button  { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Container ── */
.container {
  width: 90%;
  max-width: var(--container-max);
  margin-inline: auto;
}

/* ── Section ── */
.section { padding-block: var(--space-2xl); }
.bg-light { background: var(--clr-off-white); }
.bg-dark  { background: var(--clr-navy); }

.section-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-xl);
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-gold);
  border: 1px solid var(--clr-gold);
  padding: 0.25rem 0.85rem;
  border-radius: 50px;
  margin-bottom: var(--space-sm);
}
.section-tag.light { color: var(--clr-gold-light); border-color: var(--clr-gold-light); }

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.22;
  color: var(--clr-navy);
  margin-bottom: var(--space-sm);
}
.section-heading.light { color: var(--clr-white); }

.section-sub { color: var(--clr-mid-grey); font-size: 1.05rem; }
.section-sub.light { color: rgba(255,255,255,.7); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: background var(--trans-fast), color var(--trans-fast),
              border-color var(--trans-fast), transform var(--trans-fast), box-shadow var(--trans-fast);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--clr-gold);
  color: var(--clr-navy);
  border-color: var(--clr-gold);
}
.btn-primary:hover {
  background: var(--clr-gold-light);
  border-color: var(--clr-gold-light);
  box-shadow: 0 4px 16px rgba(201,168,76,.35);
}

.btn-outline {
  background: transparent;
  color: var(--clr-white);
  border-color: var(--clr-white);
}
.btn-outline:hover { background: var(--clr-white); color: var(--clr-navy); }

.btn-outline-light {
  background: transparent;
  color: var(--clr-white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline-light:hover { background: rgba(255,255,255,.1); border-color: var(--clr-white); }

.btn-gold {
  background: var(--clr-gold);
  color: var(--clr-navy);
  border-color: var(--clr-gold);
}
.btn-gold:hover { background: var(--clr-gold-light); border-color: var(--clr-gold-light); }

.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.85rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,.12);
  transition: box-shadow var(--trans-base), background var(--trans-base),
              backdrop-filter var(--trans-base), border-color var(--trans-base);
  height: var(--header-h);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: rgba(10,22,40,.08);
  box-shadow: 0 2px 16px rgba(0,0,0,.10);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

/* Logo */
.logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.logo-img { height: 48px; width: auto; display: block; }
/* Logo swap: white-text logo on transparent header, dark-text logo when scrolled */
.logo-dark { display: none; }
.site-header.scrolled .logo-light { display: none; }
.site-header.scrolled .logo-dark { display: block; }

/* Desktop nav */
.nav-list { display: flex; align-items: center; gap: 2.5rem; flex-wrap: nowrap; white-space: nowrap; }
.nav-link {
  padding: 0.4rem 0.85rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  border-radius: var(--radius-sm);
  text-shadow: 0 1px 8px rgba(0,0,0,.35);
  transition: color var(--trans-fast), background var(--trans-fast), text-shadow var(--trans-fast);
}
.nav-link:hover, .nav-link.active { color: var(--clr-gold); background: transparent; }

/* Scrolled (white header) → dark blue menu text */
.site-header.scrolled .nav-link { color: var(--clr-navy); text-shadow: none; }
.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active { color: var(--clr-gold-dark); background: transparent; }
.nav-link.nav-cta {
  margin-left: 0.5rem;
  background: var(--clr-gold);
  color: var(--clr-navy);
  font-weight: 700;
  padding: 0.5rem 1.2rem;
}
.nav-link.nav-cta:hover { background: var(--clr-gold-light); color: var(--clr-navy); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: transform var(--trans-base), opacity var(--trans-fast), background var(--trans-fast);
}
.site-header.scrolled .hamburger span { background: var(--clr-navy); }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  background: var(--clr-navy);
  border-top: 1px solid rgba(201,168,76,.2);
  padding: 1rem 0;
}
.mobile-nav-list { display: flex; flex-direction: column; }
.mobile-nav-link {
  display: block;
  padding: 0.75rem 1.5rem;
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: color var(--trans-fast), border-color var(--trans-fast), background var(--trans-fast);
}
.mobile-nav-link:hover { color: var(--clr-gold); border-left-color: var(--clr-gold); background: rgba(201,168,76,.06); }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  margin-top: var(--header-h);
}

.slider-track {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.75s cubic-bezier(0.77,0,0.18,1);
}

.slide {
  position: relative;
  flex: 0 0 33.333%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

/* Slide backgrounds */
.slide-1 { background: linear-gradient(135deg, #071422 0%, #0f2744 40%, #1a3d6b 100%); }
.slide-2 { background: linear-gradient(135deg, #0c1e10 0%, #162e1a 40%, #1e4428 100%); }
.slide-3 { background: linear-gradient(135deg, #1a0c08 0%, #2d1810 40%, #4a2c1a 100%); }

/* Decorative glow per slide */
.slide-1::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,.12) 0%, transparent 65%); }
.slide-2::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse at 30% 60%, rgba(201,168,76,.10) 0%, transparent 65%); }
.slide-3::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse at 60% 40%, rgba(201,168,76,.12) 0%, transparent 65%); }

.slide-overlay { position: absolute; inset: 0; background: rgba(5,12,25,.45); }

.slide-content { position: relative; z-index: 2; max-width: 750px; }

.slide-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clr-gold);
  border: 1px solid var(--clr-gold);
  padding: 0.25rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.slide-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.15;
  color: var(--clr-white);
  margin-bottom: 1.25rem;
}
.slide-heading em { font-style: normal; color: var(--clr-gold); }

.slide-para {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,.8);
  max-width: 560px;
  margin-bottom: 2rem;
}

.slide-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Slider controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
  color: var(--clr-white);
  font-size: 1.4rem;
  border: 1px solid rgba(255,255,255,.3);
  transition: background var(--trans-fast), transform var(--trans-fast);
  display: grid;
  place-items: center;
}
.slider-btn:hover { background: var(--clr-gold); color: var(--clr-navy); }
.slider-prev { left: 1.5rem; }
.slider-next { right: 1.5rem; }

.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: 2px solid rgba(255,255,255,.6);
  transition: background var(--trans-fast), transform var(--trans-fast);
  padding: 0;
}
.dot.active { background: var(--clr-gold); border-color: var(--clr-gold); transform: scale(1.3); }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { background: var(--clr-navy-mid); padding-block: var(--space-lg); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat-item {
  text-align: center;
  padding: var(--space-sm);
  border-right: 1px solid rgba(255,255,255,.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Poppins', var(--font-body);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--clr-gold);
  line-height: 1;
}
.stat-suffix {
  font-family: 'Poppins', var(--font-body);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--clr-gold);
  font-weight: 700;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--clr-white);
  margin-top: 0.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.about-visual { position: relative; }
.about-img-wrap { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-svg { width: 100%; height: auto; }

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--clr-gold);
  color: var(--clr-navy);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.badge-num { display: block; font-size: 2rem; font-weight: 800; line-height: 1; font-family: var(--font-heading); }
.badge-text { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

.about-content { padding-left: 1rem; }
.about-lead { font-size: 1.1rem; font-weight: 600; color: var(--clr-navy); margin-bottom: 1rem; }
.about-body { color: var(--clr-dark-grey); margin-bottom: 1rem; }

.about-highlights { display: flex; flex-direction: column; gap: 0.6rem; margin-block: 1.5rem; }
.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--clr-dark-grey);
}
.highlight-icon {
  width: 22px; height: 22px;
  min-width: 22px;
  background: var(--clr-gold);
  color: var(--clr-navy);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 900;
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-light-grey);
  transition: transform var(--trans-base), box-shadow var(--trans-base), border-color var(--trans-base);
  cursor: default;
}
.product-card:hover, .product-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-gold);
  outline: none;
}
.product-icon-wrap { width: 72px; height: 72px; margin-bottom: 1.25rem; }
.product-icon-wrap svg { width: 100%; height: 100%; }
.product-name { font-size: 1.1rem; font-weight: 700; color: var(--clr-navy); margin-bottom: 0.6rem; }
.product-desc { font-size: 0.92rem; color: var(--clr-mid-grey); }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.service-card {
  position: relative;
  background: var(--clr-white);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-light-grey);
  overflow: hidden;
  transition: transform var(--trans-base), box-shadow var(--trans-base);
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans-base);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.service-card:hover::after { transform: scaleX(1); }

.service-num {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--clr-light-grey);
  line-height: 1;
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
}
.service-icon { width: 48px; height: 48px; margin-bottom: 1rem; }
.service-icon svg { width: 100%; height: 100%; }
.service-title { font-size: 1.2rem; font-weight: 700; color: var(--clr-navy); margin-bottom: 0.6rem; }
.service-desc { font-size: 0.92rem; color: var(--clr-mid-grey); }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.industry-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: background var(--trans-base), border-color var(--trans-base), transform var(--trans-base);
}
.industry-card:hover, .industry-card:focus-visible {
  background: rgba(201,168,76,.07);
  border-color: var(--clr-gold);
  transform: translateY(-5px);
  outline: none;
}
.industry-icon-wrap { width: 90px; height: 90px; margin: 0 auto 1.5rem; }
.industry-icon-wrap svg { width: 100%; height: 100%; }
.industry-title { font-size: 1.3rem; font-weight: 700; color: var(--clr-white); margin-bottom: 0.75rem; }
.industry-desc  { font-size: 0.92rem; color: rgba(255,255,255,.65); margin-bottom: 1.25rem; }
.industry-products { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.industry-products li {
  font-size: 0.78rem;
  background: rgba(201,168,76,.15);
  color: var(--clr-gold);
  border: 1px solid rgba(201,168,76,.35);
  padding: 0.2rem 0.75rem;
  border-radius: 50px;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.why-card {
  padding: 2rem 1.5rem;
  border: 1px solid var(--clr-light-grey);
  border-radius: var(--radius-md);
  background: var(--clr-white);
  transition: border-color var(--trans-base), box-shadow var(--trans-base), transform var(--trans-base);
}
.why-card:hover, .why-card:focus-visible {
  border-color: var(--clr-gold);
  box-shadow: 0 6px 24px rgba(201,168,76,.15);
  transform: translateY(-4px);
  outline: none;
}
.why-icon { width: 56px; height: 56px; margin-bottom: 1.25rem; }
.why-icon svg { width: 100%; height: 100%; }
.why-title { font-size: 1.05rem; font-weight: 700; color: var(--clr-navy); margin-bottom: 0.6rem; }
.why-desc  { font-size: 0.92rem; color: var(--clr-mid-grey); }

/* ============================================================
   STRENGTHS
   ============================================================ */
.strengths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.strengths-content .section-heading { margin-bottom: 1rem; }
.strengths-content p { color: var(--clr-dark-grey); margin-bottom: 2rem; }

.strength-bars { display: flex; flex-direction: column; gap: 1.25rem; }
.strength-item { width: 100%; }
.strength-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-navy);
  margin-bottom: 0.4rem;
}
.strength-track {
  height: 8px;
  background: var(--clr-light-grey);
  border-radius: 50px;
  overflow: hidden;
}
.strength-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--clr-navy-mid), var(--clr-gold));
  border-radius: 50px;
  width: 0;
  transition: width 1.2s ease;
}

.strengths-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.strength-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-light-grey);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
  transition: border-color var(--trans-base), box-shadow var(--trans-base);
}
.strength-card:hover { border-color: var(--clr-gold); box-shadow: var(--shadow-sm); }
.strength-card-icon { font-size: 2rem; display: block; margin-bottom: 0.75rem; }
.strength-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--clr-navy); margin-bottom: 0.35rem; }
.strength-card p  { font-size: 0.85rem; color: var(--clr-mid-grey); }

/* ============================================================
   PARTNERS MARQUEE
   ============================================================ */
.partners-marquee-wrap {
  overflow: hidden;
  position: relative;
}
.partners-marquee-wrap::before,
.partners-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
}
.partners-marquee-wrap::before { left: 0; background: linear-gradient(90deg, var(--clr-white), transparent); }
.partners-marquee-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--clr-white), transparent); }

.partners-marquee {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.partners-marquee:hover { animation-play-state: paused; }

.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--clr-off-white);
  border: 1px solid var(--clr-light-grey);
  border-radius: var(--radius-md);
  padding: 1.25rem 2.5rem;
  min-width: 200px;
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
}
.partner-item:hover { border-color: var(--clr-gold); box-shadow: var(--shadow-sm); }
.partner-logo-text { font-size: 1rem; font-weight: 700; color: var(--clr-navy); }
.partner-sub { font-size: 0.75rem; color: var(--clr-mid-grey); margin-top: 0.25rem; }

/* ============================================================
   CALL TO ACTION
   ============================================================ */
.cta-section { padding-block: var(--space-2xl); }
.cta-inner { text-align: center; max-width: 700px; margin-inline: auto; }
.cta-para { color: rgba(255,255,255,.75); font-size: 1.05rem; margin-bottom: 2.25rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--clr-navy);
  color: rgba(255,255,255,.75);
  padding-top: 0;
}

/* Compact single-row footer */
.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  padding-block: 1.85rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
/* Logo + tagline stacked vertically */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
}
.footer-logo { margin: 0; }
.footer-logo .logo-img { height: 42px; }
.footer-short {
  font-size: 0.95rem;
  color: rgba(255,255,255,.7);
  max-width: 340px;
  margin: 0;
}
.footer-copy {
  font-size: 0.85rem;
  color: rgba(255,255,255,.5);
}
.footer-credit-link {
  color: var(--clr-gold);
  text-decoration: none;
  transition: color var(--trans-fast);
}
.footer-credit-link:hover { color: var(--clr-gold-light); text-decoration: underline; }
.footer-social { display: flex; align-items: center; gap: 0.6rem; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.8);
  transition: background var(--trans-fast), color var(--trans-fast), transform var(--trans-fast);
}
.footer-social a:hover {
  background: var(--clr-gold);
  color: var(--clr-navy);
  transform: translateY(-2px);
}
.footer-social svg { width: 18px; height: 18px; display: block; }

@media (max-width: 768px) {
  .footer-bar { flex-direction: column; text-align: center; gap: 1rem; padding-block: 2rem; }
  .footer-brand { align-items: center; }
  .footer-short { max-width: 100%; }
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-tagline { font-size: 0.88rem; line-height: 1.6; color: rgba(255,255,255,.55); max-width: 300px; }
.footer-heading {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 1.25rem;
}
.footer-nav ul,
.footer-products ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav a,
.footer-products li { font-size: 0.9rem; color: rgba(255,255,255,.65); transition: color var(--trans-fast); }
.footer-nav a:hover { color: var(--clr-gold); }
.footer-contact p { font-size: 0.88rem; color: rgba(255,255,255,.65); margin-bottom: 0.65rem; line-height: 1.55; }
.footer-contact a { color: rgba(255,255,255,.65); }
.footer-contact a:hover { color: var(--clr-gold); }
.footer-bottom { text-align: center; padding-block: 1.25rem; font-size: 0.83rem; color: rgba(255,255,255,.35); }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--clr-gold);
  color: var(--clr-navy);
  font-size: 1.5rem;
  display: grid;
  place-items: center;
  z-index: 999;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity var(--trans-base), visibility var(--trans-base), transform var(--trans-base), background var(--trans-fast);
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover   { background: var(--clr-gold-light); transform: translateY(-3px); }

/* ============================================================
   CONTACT PAGE — HERO
   ============================================================ */
.contact-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  background: linear-gradient(135deg, var(--clr-navy) 0%, var(--clr-navy-mid) 60%, #1a3d6b 100%);
  overflow: hidden;
}
.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,.12) 0%, transparent 60%);
}
.contact-hero-overlay { position: absolute; inset: 0; background: rgba(5,12,25,.35); }
.contact-hero-content { position: relative; z-index: 2; padding-block: var(--space-xl); }
.contact-hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--clr-white);
  margin-bottom: 1rem;
}
.contact-hero-para { font-size: 1.1rem; color: rgba(255,255,255,.75); max-width: 540px; margin-bottom: 1.5rem; }

.breadcrumb ol {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  font-size: 0.88rem;
  color: rgba(255,255,255,.55);
}
.breadcrumb li + li::before { content: '/'; margin-right: 0.5rem; }
.breadcrumb a { color: var(--clr-gold); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb [aria-current] { color: rgba(255,255,255,.55); }

/* ============================================================
   CONTACT STRIP
   ============================================================ */
.contact-strip { background: var(--clr-navy-mid); padding-block: var(--space-lg); }
.contact-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: var(--space-sm);
  border-right: 1px solid rgba(255,255,255,.1);
}
.strip-item:last-child { border-right: none; }
.strip-icon {
  width: 48px; height: 48px;
  min-width: 48px;
  background: rgba(201,168,76,.12);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
}
.strip-icon svg { width: 28px; height: 28px; }
.strip-text h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-gold);
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.strip-text p { font-size: 0.88rem; color: rgba(255,255,255,.7); margin: 0; }
.strip-text a { color: rgba(255,255,255,.7); }
.strip-text a:hover { color: var(--clr-gold); }

/* ============================================================
   CONTACT MAIN
   ============================================================ */
.contact-main { background: var(--clr-off-white); }
.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--space-xl);
  align-items: start;
}

/* Curved container around the contact form */
.contact-form-wrap {
  background: var(--clr-white);
  border: 1px solid var(--clr-light-grey);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.25rem;
  box-shadow: var(--shadow-md);
}
.contact-form-wrap .section-heading { margin-bottom: 0.5rem; }
.form-intro { color: var(--clr-mid-grey); margin-bottom: 2rem; }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

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

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.88rem; font-weight: 600; color: var(--clr-dark-grey); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #d1d5db;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--clr-text);
  background: var(--clr-white);
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #ef4444; }
.form-group textarea { resize: vertical; min-height: 140px; }
.field-error { font-size: 0.8rem; color: #ef4444; min-height: 1em; }

/* Checkbox */
.form-check { gap: 0.5rem; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--clr-dark-grey);
  cursor: pointer;
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  width: 18px; height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--clr-gold);
  cursor: pointer;
  padding: 0;
}

/* Submit */
.btn-submit { position: relative; overflow: hidden; }
.btn-loader {
  display: none;
  width: 18px; height: 18px;
  border: 2px solid var(--clr-navy);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.btn-submit.loading .btn-text { opacity: 0; }
.btn-submit.loading .btn-loader { display: block; }

.form-success,
.form-error-msg {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  opacity: 1;
  transition: opacity 0.5s ease;
}
.form-success.fade-out,
.form-error-msg.fade-out { opacity: 0; }
/* Stay hidden until JS reveals them on submit */
.form-success[hidden],
.form-error-msg[hidden] { display: none; }
.form-success    { background: #ecfdf5; border: 1px solid #6ee7b7; color: #065f46; }
.form-error-msg  { background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b; }

/* Offices Sidebar */
.offices-sidebar {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-light-grey);
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}
.offices-sidebar .section-heading { margin-bottom: 1.75rem; }

.office-card {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--clr-light-grey);
}
.office-card:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.office-flag { font-size: 2rem; line-height: 1; }
.office-info h3 { font-size: 0.95rem; font-weight: 700; color: var(--clr-navy); margin-bottom: 0.4rem; }
.office-info address { font-size: 0.85rem; color: var(--clr-mid-grey); line-height: 1.55; margin-bottom: 0.35rem; }
.office-link { font-size: 0.82rem; color: var(--clr-gold-dark); font-weight: 500; }
.office-link:hover { color: var(--clr-gold); text-decoration: underline; }

.office-hours {
  background: var(--clr-off-white);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin-top: 1.5rem;
}
.office-hours h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}
.office-hours dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.3rem 1rem;
  font-size: 0.85rem;
}
.office-hours dt { color: var(--clr-dark-grey); font-weight: 500; }
.office-hours dd { color: var(--clr-mid-grey); }

/* ============================================================
   MAP
   ============================================================ */
.map-placeholder {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 450px;
  background: var(--clr-light-grey);
}
.map-placeholder iframe { display: block; width: 100%; height: 450px; }
.map-fallback {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 4rem 2rem;
  text-align: center;
  color: var(--clr-mid-grey);
}
.map-fallback p { font-size: 0.95rem; }

/* ============================================================
   STATIC HERO
   ============================================================ */
.hero-static {
  position: relative;
  min-height: 600px;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  background-image: url('../images/cargoship01.avif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}
.hero-static::before { display: none; }
.hero-static-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(5,12,25,.55) 0%,
    rgba(5,12,25,.30) 45%,
    rgba(5,12,25,0) 100%);
}
.hero-static-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-right: auto;
  text-align: left;
  padding-block: var(--space-2xl);
}
.hero-h1 {
  font-family: var(--font-body);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.05;
  color: var(--clr-white);
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.hero-subtext {
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  font-weight: 600;
  line-height: 1.6;
  color: rgba(255,255,255,.92);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  max-width: 46ch;
  text-shadow: 0 1px 14px rgba(0,0,0,.45);
}
.hero-static-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

/* ============================================================
   WHAT WE DO
   ============================================================ */
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.what-content .section-heading { margin-bottom: 1.25rem; }
.what-content .about-body { margin-bottom: 1rem; }

/* ============================================================
   OPERATIONS (IMPORT / EXPORT / SALES)
   ============================================================ */
.ops-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ops-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius-md);
  padding: 3rem 2rem;
  text-align: center;
  transition: background var(--trans-base), border-color var(--trans-base), transform var(--trans-base);
}
.ops-card:hover {
  background: rgba(201,168,76,.07);
  border-color: var(--clr-gold);
  transform: translateY(-4px);
}
.ops-icon { width: 64px; height: 64px; margin: 0 auto 1.25rem; }
.ops-icon svg { width: 100%; height: 100%; }
.ops-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--clr-white);
  letter-spacing: 0.12em;
}

/* ============================================================
   PARTNER SECTION
   ============================================================ */
.partner-section {
  padding: var(--space-xl) 0;
  background-color: var(--clr-off-white);
}

.partner-intro {
  margin-bottom: var(--space-lg);
  max-width: 1000px;
}

/* Two-column: content left, image right */
.partner-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-xl);
  align-items: stretch;
  margin-bottom: var(--space-md);
}
.partner-content { min-width: 0; }
.partner-content .partner-desc { max-width: 100%; }
.partner-visual {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.partner-visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .partner-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .partner-visual { order: -1; }
  .partner-visual img { min-height: 240px; max-height: 320px; }
}

.partner-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #3498db; /* Light blue color matching image */
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.partner-heading {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--clr-navy);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.partner-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--clr-dark-grey);
  margin-bottom: 1.5rem;
}

.partner-cta-text {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--clr-navy);
  margin-bottom: 2rem;
}

/* Project cards — single column inside the left content */
.partner-cards-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* Contact prompt (matches reference) */
.partner-contact-cta {
  margin-top: var(--space-lg);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--clr-dark-grey);
}
.partner-contact-cta a {
  color: #3498db;
  font-weight: 600;
  font-style: normal;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.partner-contact-cta a:hover { color: var(--clr-navy); }

.partner-card {
  display: flex;
  align-items: flex-start;
  background-color: #f3f6fc; /* Light blue/lavender tint card background */
  border-radius: 12px;
  padding: 1.75rem 2rem;
  gap: 1.75rem;
  transition: transform var(--trans-fast), box-shadow var(--trans-fast);
}

.partner-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.partner-card-icon-wrap {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #e5eafc; /* Light blue/purple circle background */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5c6ac4; /* Muted violet/indigo icon color */
}

.partner-card-icon {
  width: 24px;
  height: 24px;
}

.partner-card-content {
  flex-grow: 1;
}

.partner-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-navy);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.partner-card-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--clr-dark-grey);
}

@media (max-width: 768px) {
  .partner-card {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  .partner-card-icon-wrap {
    width: 48px;
    height: 48px;
  }
}

/* ============================================================
   WHAT WE DO — centered layout
   ============================================================ */
.what-center { max-width: 960px; margin-inline: auto; text-align: center; }
.what-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #3ecf4c;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.what-lead {
  font-size: 1.05rem;
  color: var(--clr-dark-grey);
  margin-bottom: 2rem;
  line-height: 1.75;
}
.what-body-cols {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.what-body-cols p {
  font-size: 0.95rem;
  color: var(--clr-dark-grey);
  line-height: 1.8;
}

/* ============================================================
   PRODUCTS WITH IMAGES
   ============================================================ */
.products-img-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.product-img-card {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-light-grey);
  transition: transform var(--trans-base), box-shadow var(--trans-base);
  display: flex;
  flex-direction: column;
}
.product-img-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.14);
}
.product-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.product-img-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,22,40,.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.product-img-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--clr-gold);
  color: var(--clr-navy);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
}
.product-img-body {
  padding: 1.5rem 1.5rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-img-body .product-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-navy);
  margin-bottom: 0.6rem;
}
.product-img-body .product-desc {
  font-size: 0.875rem;
  color: var(--clr-mid-grey);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.1rem;
}
.product-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-gold-dark);
  transition: color var(--trans-fast), gap var(--trans-fast);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.product-link:hover { color: var(--clr-gold); gap: 8px; }

/* ============================================================
   COMPANY INSIGHTS — ship + hexagon stats
   ============================================================ */
.insights-section { background: var(--clr-navy); }

.insights-ship {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg) 0;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}
.insights-ship img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}
.insights-ship-overlay {
  position: absolute;
  inset: var(--space-xl) var(--space-lg) 0;
  border-radius: var(--radius-md);
  background: rgba(10,22,40,.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.insights-play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  border: 2px solid rgba(255,255,255,.6);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--clr-white);
  padding-left: 6px;
  cursor: pointer;
  transition: background var(--trans-fast), transform var(--trans-fast);
}
.insights-play:hover { background: var(--clr-gold); border-color: var(--clr-gold); transform: scale(1.08); }

.insights-stats-bar {
  position: relative;
  background: #0d1e35;
  padding: 3rem 0;
  overflow: hidden;
}
.insights-hex-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.insights-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.insight-item {
  text-align: center;
  padding: 1.25rem 1rem;
  border-right: 1px solid rgba(255,255,255,.08);
}
.insight-item:last-child { border-right: none; }
.insight-num {
  font-family: 'Poppins', var(--font-body);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--clr-white);
  display: inline;
  line-height: 1;
}
.insight-suffix {
  font-family: 'Poppins', var(--font-body);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--clr-white);
  display: inline;
}
.insight-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-white);
  margin-top: 0.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ============================================================
   CTA BANNER with background image
   ============================================================ */
.cta-banner {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.cta-banner-img {
  position: absolute;
  inset: 0;
}
.cta-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,.92) 0%, rgba(10,22,40,.75) 100%);
}
.cta-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-block: var(--space-2xl);
  max-width: 700px;
  margin-inline: auto;
}
.cta-banner-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--clr-white);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.cta-banner-para {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 2.25rem;
  line-height: 1.7;
}
.cta-banner-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   RESPONSIVE UPDATES
   ============================================================ */
@media (max-width: 900px) {
  .products-img-grid { grid-template-columns: 1fr 1fr; }
  .insights-stats-grid { grid-template-columns: 1fr 1fr; }
  .insight-item:nth-child(2) { border-right: none; }
}
@media (max-width: 600px) {
  .products-img-grid { grid-template-columns: 1fr; }
  .insights-stats-grid { grid-template-columns: 1fr 1fr; }
  .insights-ship img { height: 240px; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section .section-intro { text-align: center; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--clr-off-white);
  border: 1px solid var(--clr-light-grey);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  transition: box-shadow var(--trans-base), border-color var(--trans-base);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); border-color: var(--clr-gold); }
.testimonial-stars { color: var(--clr-gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.testimonial-text {
  font-size: 0.92rem;
  color: var(--clr-dark-grey);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--clr-navy-mid);
  color: var(--clr-white);
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-name { font-size: 0.9rem; font-weight: 700; color: var(--clr-navy); }
.testimonial-role { font-size: 0.78rem; color: var(--clr-mid-grey); }

/* ============================================================
   FOOTER — ETS LAYOUT (5 columns)
   ============================================================ */
.footer-grid-ets {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-col-ets h3.footer-heading { margin-top: 0; }
.footer-col-ets ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col-ets ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,.6);
  transition: color var(--trans-fast);
}
.footer-col-ets ul li a:hover { color: var(--clr-gold); }

@media (max-width: 1024px) {
  .footer-grid-ets { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .footer-grid-ets { grid-template-columns: 1fr 1fr; }
  .what-grid { grid-template-columns: 1fr; }
  .ops-grid { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: clamp(1.9rem, 8vw, 2.6rem); }
}

/* ============================================================
   CLICKABLE ADDRESS LINKS
   ============================================================ */
.strip-address-link, .sidebar-address-link, .footer-address-link {
  color: inherit;
  text-decoration: none;
  display: inline-block;
  transition: color var(--trans-fast), opacity var(--trans-fast);
}

.strip-address-link:hover, .footer-address-link:hover {
  text-decoration: underline;
  opacity: 0.9;
}

.sidebar-address-link {
  display: block;
}

.sidebar-address-link:hover {
  color: var(--clr-gold-dark);
}
