/* ============================================================
   TOROS ENGINEERING — pages.css  (REVAMP v3)
   White + Red DOMINANT — Black as accent only
   ============================================================ */

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider {
  position: relative; overflow: hidden;
  height: 92vh; min-height: 580px; max-height: 900px;
}
.hero-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  opacity: 0; transition: opacity 0.8s ease;
  z-index: 0; overflow: hidden;
}
.hero-slide.active { opacity: 1; z-index: 1; }

/* Cinematic "Ken Burns" background — continuous slow zoom/pan while a slide is active */
.hero-slide::before {
  content: ''; position: absolute; inset: -2%; z-index: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  transform: scale(1) translate(0, 0);
}
.hero-slide.active::before {
  animation: heroKenBurns 9s ease-in-out infinite alternate;
}
@keyframes heroKenBurns {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.14) translate(-1.5%, -1.5%); }
}
@media (prefers-reduced-motion: reduce) { .hero-slide.active::before { animation: none; } }

.hero-slide::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
}

/* Slide 1 — Warehouse image + dark overlay (no red) */
.slide-bg-1::before { background-image: url('https://images.unsplash.com/photo-1553413077-190dd305871c?auto=format&fit=crop&w=1920&q=80'); }
.slide-bg-1::after {
  background: linear-gradient(110deg, rgba(13,13,13,0.82) 0%, rgba(13,13,13,0.58) 55%, rgba(13,13,13,0.78) 100%);
}
/* Slide 2 — Factory image + dark overlay */
.slide-bg-2::before { background-image: url('../images/hero-warehouse-export.jpg'); }
.slide-bg-2::after {
  background: linear-gradient(110deg, rgba(13,13,13,0.88) 0%, rgba(13,13,13,0.65) 100%);
}
/* Slide 3 — Industrial storage + dark overlay */
.slide-bg-3::before { background-image: url('../images/hero-coating-line.png'); }
.slide-bg-3::after {
  background: linear-gradient(110deg, rgba(13,13,13,0.80) 0%, rgba(13,13,13,0.58) 100%);
}

/* Grid overlay */
.slide-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 72px 72px;
}
/* Right diagonal accent */
.slide-shape {
  position: absolute; right: 0; top: 0; bottom: 0; width: 40%;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.06) 100%);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}
/* Large bg number */
.slide-bg-num {
  position: absolute; right: 4%; bottom: -4%;
  font-family: var(--font-display); font-size: 26vw; font-weight: 900;
  color: rgba(255,255,255,0.04); line-height: 1;
  pointer-events: none; user-select: none;
}

.hero-slide-content {
  position: relative; z-index: 2;
  max-width: 1240px; margin: 0 auto; padding: 0 28px; width: 100%;
}

/* Staggered entrance animation — replays every time a slide becomes active */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-slide .slide-label,
.hero-slide .slide-desc,
.hero-slide .slide-ctas { opacity: 0; }
.hero-slide.active .slide-label { animation: heroFadeUp 0.7s ease 0.15s forwards; }
.hero-slide.active .slide-desc  { animation: heroFadeUp 0.8s ease 0.7s forwards; }
.hero-slide.active .slide-ctas  { animation: heroFadeUp 0.8s ease 0.85s forwards; }

/* Title words split by JS into .hero-word spans, staggered individually */
.hero-word { display: inline-block; opacity: 0; transform: translateY(24px); }
.hero-slide.active .hero-word { animation: heroFadeUp 0.55s ease forwards; }
@media (prefers-reduced-motion: reduce) { .hero-word { opacity: 1; transform: none; animation: none; } }

.slide-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}
.slide-label::before {
  content: ''; display: block; width: 32px; height: 2px;
  background: rgba(255,255,255,0.5);
}
.slide-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.8rem, 6.5vw, 5.6rem);
  line-height: 0.98; color: var(--white);
  margin-bottom: 24px; max-width: 680px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.slide-title em { font-style: normal; color: rgba(255,255,255,0.9); text-shadow: 0 0 40px rgba(255,255,255,0.3); }
.slide-desc {
  font-size: 1rem; color: rgba(255,255,255,0.75);
  max-width: 500px; line-height: 1.8; margin-bottom: 36px;
}
.slide-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Ambient floating orbs — continuous motion, always visible, no interaction needed */
.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(60px); z-index: 0; opacity: 0.35;
}
.hero-orb-1 {
  width: 380px; height: 380px; top: -80px; right: 8%;
  background: radial-gradient(circle, rgba(200,39,45,0.55) 0%, transparent 70%);
  animation: orbFloat1 14s ease-in-out infinite;
}
.hero-orb-2 {
  width: 300px; height: 300px; bottom: -60px; left: 6%;
  background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, transparent 70%);
  animation: orbFloat2 18s ease-in-out infinite;
}
@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-40px, 50px) scale(1.15); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(30px, -40px) scale(1.1); }
}

/* Scroll-down bounce indicator */
.hero-scroll-cue {
  position: absolute; bottom: 90px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.6); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  pointer-events: none;
}
.hero-scroll-cue-arrow {
  width: 18px; height: 28px; border: 2px solid rgba(255,255,255,0.4); border-radius: 12px;
  position: relative;
}
.hero-scroll-cue-arrow::before {
  content: ''; position: absolute; top: 6px; left: 50%; width: 3px; height: 6px;
  background: rgba(255,255,255,0.8); border-radius: 2px; transform: translateX(-50%);
  animation: scrollCueDot 1.6s ease infinite;
}
@keyframes scrollCueDot {
  0%   { top: 6px; opacity: 1; }
  70%  { top: 16px; opacity: 0; }
  100% { top: 6px; opacity: 0; }
}
@media (max-width: 768px) { .hero-orb, .hero-scroll-cue { display: none; } }

/* Slider controls */
.slider-controls {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 10px; z-index: 10;
}
.slider-dot {
  width: 8px; height: 8px; background: rgba(255,255,255,0.3);
  cursor: pointer; transition: all var(--transition); border: none; padding: 0;
}
.slider-dot.active { background: var(--white); width: 28px; }
.slider-arrows {
  position: absolute; bottom: 24px; right: 40px; z-index: 10; display: flex; gap: 8px;
}
.slider-arrow {
  width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.3);
  background: transparent; color: var(--white); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: all var(--transition);
}
.slider-arrow:hover { background: var(--white); color: var(--red); border-color: var(--white); }
.slide-counter {
  position: absolute; top: 32px; right: 40px; z-index: 10;
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,0.4); letter-spacing: 0.08em;
}
.slide-counter span { color: var(--white); display: inline-block; }
.slide-counter span.flip { animation: counterFlip 0.4s ease; }
@keyframes counterFlip {
  0%   { transform: rotateX(0deg); }
  50%  { transform: rotateX(90deg); }
  100% { transform: rotateX(0deg); }
}
@media (prefers-reduced-motion: reduce) { .slide-counter span.flip { animation: none; } }

/* ============================================================
   STATS STRIP — White bg, red numbers
   ============================================================ */
.stats-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: relative;
}
.stats-inner {
  display: grid; grid-template-columns: repeat(4,1fr);
  max-width: 1240px; margin: 0 auto; position: relative; z-index: 1;
}
.stat-block {
  padding: 36px 24px; text-align: center;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}
.stat-block:last-child { border-right: none; }
.stat-block:hover { background: var(--off-white); }
.stat-big {
  display: block;
  font-family: var(--font-display); font-size: clamp(2.4rem,5vw,3.6rem);
  font-weight: 900; color: var(--red); line-height: 1;
  margin-bottom: 6px;
}
.stat-lbl {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
}

/* ============================================================
   WHO WE ARE — White bg, real image
   ============================================================ */
.who-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center;
}
.who-img-block {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3; background: var(--off-white);
  border-radius: 2px;
}
.who-img-block img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.who-img-block:hover img { transform: scale(1.04); }
.who-img-block::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 5px; height: 60%; background: var(--red);
}
/* Year badge on image */
.who-img-block .who-badge {
  position: absolute; bottom: 24px; right: 24px;
  background: var(--red); color: var(--white);
  padding: 16px 20px; text-align: center;
  font-family: var(--font-display);
}
.who-badge-num { font-size: 2.2rem; font-weight: 900; line-height: 1; display: block; }
.who-badge-lbl { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.85; }
.who-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--red); display: block; margin-bottom: 12px;
}
.who-text h2 { margin-bottom: 20px; }
.who-highlights {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--border); margin-top: 32px;
}
.who-hi {
  background: var(--white); padding: 18px 16px;
  display: flex; flex-direction: column; gap: 3px;
  border-left: 3px solid transparent;
  transition: border-color var(--transition);
}
.who-hi:hover { border-left-color: var(--red); }
.who-hi strong { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--black); }
.who-hi span { font-size: 0.78rem; color: var(--grey-mid); }

/* ============================================================
   HOME PRODUCTS GRID
   ============================================================ */
.home-products-grid, .prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background: transparent !important;
}

/* ============================================================
   WHY CHOOSE US — white cards on off-white bg
   ============================================================ */
.why-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px;
  background: var(--border); margin-top: 48px;
}
.why-item {
  padding: 32px 24px; background: var(--white);
  border-top: 3px solid transparent;
  transition: all var(--transition);
}
.why-item:hover { background: rgba(200,39,45,0.05); border-top-color: var(--red); }
.why-num {
  font-family: var(--font-display); font-size: 3rem; font-weight: 900;
  color: var(--red); line-height: 1; margin-bottom: 12px;
  position: relative; display: inline-block;
}
.why-num::before {
  content: ''; position: absolute; inset: -10px 14px; border-radius: 50%;
  border: 2px solid transparent; opacity: 0;
}
.why-item.visible .why-num::before {
  border-top-color: var(--red); border-right-color: var(--red);
  animation: whyRingSpin 0.9s ease-out forwards;
}
@keyframes whyRingSpin {
  0%   { opacity: 1; transform: rotate(-60deg) scale(0.6); }
  100% { opacity: 1; transform: rotate(300deg) scale(1); }
}
.why-item.visible .why-num { animation: whyNumFlip 0.7s ease; }
@keyframes whyNumFlip { from { transform: rotateY(360deg); } to { transform: rotateY(0deg); } }
#why-grid > .reveal { transform: translateX(-50px); }
#why-grid > .reveal.visible { transform: translateX(0); }
@media (prefers-reduced-motion: reduce) {
  .why-item.visible .why-num::before { animation: none; opacity: 0; }
  .why-item.visible .why-num { animation: none; }
}
.why-title { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700; color: var(--dark-text); margin-bottom: 8px; }
.why-desc { font-size: 0.78rem; color: var(--muted); line-height: 1.65; margin: 0; }

/* ============================================================
   CLIENTS STRIP — white bg
   ============================================================ */
.clients-strip { background: var(--white); padding: 72px 0; border-top: 1px solid var(--border); }
.clients-head {
  text-align: center; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--grey-mid); margin-bottom: 40px;
}
.clients-marquee-row {
  overflow: hidden; width: 100%; margin-bottom: 1px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.clients-marquee-track {
  display: flex; width: max-content; gap: 1px; background: var(--border);
}
.clients-marquee-left  { animation: marqueeLeft 32s linear infinite; }
.clients-marquee-right { animation: marqueeRight 32s linear infinite; }
.clients-marquee-row:hover .clients-marquee-track { animation-play-state: paused; }
@keyframes marqueeLeft  { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marqueeRight { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@media (prefers-reduced-motion: reduce) {
  .clients-marquee-left, .clients-marquee-right { animation: none; }
}
.client-logo-box {
  background: var(--white); padding: 24px 16px; flex: 0 0 180px;
  display: flex; align-items: center; justify-content: center;
  min-height: 80px; transition: all var(--transition);
}
.client-logo-box:hover { background: var(--off-white); }
.client-name {
  font-family: var(--font-heading); font-size: 0.78rem; font-weight: 700;
  color: var(--grey-mid); text-align: center; line-height: 1.4; text-transform: uppercase;
  letter-spacing: 0.05em; transition: color var(--transition);
}
.client-logo-box:hover .client-name { color: var(--red); }

/* ============================================================
   EXPORT COUNTRIES — White bg, red badge accent
   ============================================================ */
.export-countries {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-top: 40px;
}
.export-flag {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.85);
  transition: all var(--transition); border-radius: 2px;
}
.export-flag:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.fl { font-size: 1.2rem; }

/* ============================================================
   TICKER
   ============================================================ */
.ticker-wrap {
  background: var(--black); overflow: hidden; padding: 14px 0;
  border-top: 3px solid var(--red);
}
.ticker-track {
  display: flex; gap: 0; white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: rgba(255,255,255,0.6);
  padding: 0 32px;
}
.ticker-dot {
  width: 5px; height: 5px; background: var(--red);
  border-radius: 50%; flex-shrink: 0;
}

/* ============================================================
   ENQUIRY STRIP — Red background
   ============================================================ */
.enq-strip {
  background: var(--red); padding: 88px 0; position: relative; overflow: hidden;
}
.enq-strip::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 56px 56px; pointer-events: none;
}
.enq-inner {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: start;
  position: relative; z-index: 1;
}
.enq-text h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin: 12px 0 16px; }
.enq-text .eyebrow { color: rgba(255,255,255,0.6); }
.enq-text .red-line { background: rgba(255,255,255,0.4); }
.enq-text p { color: rgba(255,255,255,0.75); }
.enq-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.enq-form-btn { grid-column: 1 / -1; }

/* ============================================================
   PAGE HERO — inner pages
   ============================================================ */
.page-hero {
  background: linear-gradient(to right, var(--red-dark) 0%, var(--red) 55%, var(--red-light) 100%);
  padding: 60px 0 56px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.page-hero .breadcrumb,
.page-hero h1,
.page-hero p { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin: 12px 0 16px; font-size: clamp(2rem,5vw,3.6rem); }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 560px; margin: 0; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600;
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,0.25); }
.breadcrumb-now { color: var(--red); }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: var(--red); padding: 72px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-strip h2 { color: var(--white); margin-bottom: 12px; }
.cta-strip p { color: rgba(255,255,255,0.8); max-width: 480px; margin: 0 auto 28px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.about-img {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3; background: var(--off-white);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.infra-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.infra-card {
  padding: 32px 24px; background: var(--white); border: 1px solid var(--border);
  border-top: 3px solid var(--red); transition: box-shadow var(--transition);
}
.infra-card:hover { box-shadow: var(--shadow-md); }
.infra-icon { font-size: 2rem; margin-bottom: 14px; }
.infra-num { font-family: var(--font-display); font-size: 2rem; font-weight: 900; color: var(--red); }
.infra-lbl { font-size: 0.82rem; color: var(--grey-mid); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.mvv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.mvv-card { padding: 36px 28px; border-top: 3px solid var(--red); background: var(--off-white); }
.mvv-card h3 { margin-bottom: 14px; }

/* ============================================================
   PRODUCT DETAIL
   ============================================================ */
.prod-detail-layout { display: grid; grid-template-columns: 1fr 360px; gap: 56px; align-items: start; }
.prod-visual {
  aspect-ratio: 16/9; overflow: hidden;
  background: var(--off-white);
}
.prod-visual img { width: 100%; height: 100%; object-fit: cover; }
.prod-sidebar {
  position: sticky; top: 96px; display: flex; flex-direction: column; gap: 16px;
}
.prod-cta-box { background: var(--red); padding: 28px; color: var(--white); }
.prod-cta-box h4 { color: var(--white); margin-bottom: 8px; font-size: 1rem; }
.prod-cta-box p { color: rgba(255,255,255,0.75); font-size: 0.85rem; margin-bottom: 16px; }
.spec-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.spec-table tr { border-bottom: 1px solid var(--border); }
.spec-table td { padding: 10px 0; vertical-align: top; }
.spec-table td:first-child { color: var(--grey-mid); font-weight: 600; width: 44%; padding-right: 16px; }
.spec-table td:last-child { color: var(--black); }
.feat-list { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.feat-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.88rem; color: var(--grey-dark);
}
.feat-list li::before {
  content: ''; width: 18px; height: 18px; min-width: 18px;
  background: var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.feat-list li::before { content: '✓'; color: var(--white); font-size: 10px; font-weight: 700; }

/* ============================================================
   SERVICE / BLOG DETAIL
   ============================================================ */
.svc-detail-layout { display: grid; grid-template-columns: 1fr 320px; gap: 56px; }
.blog-detail-layout { display: grid; grid-template-columns: 1fr 300px; gap: 56px; }
.blog-hero-img { aspect-ratio: 16/9; overflow: hidden; margin-bottom: 32px; background: var(--off-white); display: flex; align-items: center; justify-content: center; font-size: 72px; }
.blog-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-body h3 { font-size: 1.15rem; margin: 28px 0 12px; }
.blog-body p { color: var(--grey-mid); font-size: 0.93rem; line-height: 1.82; }
.blog-detail-layout aside { display: flex; flex-direction: column; gap: 24px; }
.blog-sidebar-widget { background: var(--white); border: 1px solid var(--border); padding: 24px; }
.blog-sidebar-widget h5 { font-size: 1rem; font-weight: 700; margin-bottom: 14px; }
.blog-share { margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--border); }
.blog-share h5 { font-size: 1rem; font-weight: 700; margin-bottom: 12px; }
.share-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.share-btn { display: inline-flex; align-items: center; gap: 6px; padding: 9px 16px; border: 1px solid var(--border); font-size: 0.8rem; font-weight: 600; color: var(--black); text-decoration: none; transition: all var(--transition); }
.share-btn:hover { background: var(--black); color: var(--white); border-color: var(--black); }

/* ============================================================
   CAREER
   ============================================================ */
.career-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.career-jobs-col { position: sticky; top: 100px; align-self: start; }
.career-sidebar .reveal { transform: translateX(-40px); }
.career-sidebar .reveal.visible { transform: translateX(0); }
.benefit-item h5 { position: relative; padding-left: 16px; }
.benefit-item h5::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px; border-radius: 50%; background: var(--red);
}
.j-card {
  background: var(--white); border: 1px solid var(--border);
  border-left: 4px solid var(--red); padding: 28px 24px;
  margin-bottom: 16px; transition: box-shadow var(--transition), transform var(--transition);
}
.j-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.j-card-title { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.j-meta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 12px; }
.j-badge {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 3px 8px;
  background: var(--off-white); color: var(--grey-mid); border-radius: 2px;
}
.j-badge.type { background: var(--red); color: var(--white); }
@media (max-width: 960px) { .career-jobs-col { position: static; } }

/* ============================================================
   CONTACT / FAQ / DOWNLOAD
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.dl-gate { max-width: 520px; margin: 0 auto; text-align: center; padding: 56px 40px; background: var(--off-white); }
.dl-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.d-card {
  background: var(--white); border: 1px solid var(--border);
  border-top: 3px solid var(--red); padding: 24px;
  display: flex; flex-direction: column; gap: 10px;
  transition: box-shadow var(--transition);
}
.d-card:hover { box-shadow: var(--shadow); }
.d-icon { font-size: 2rem; }
.d-info h4 { font-size: 0.9rem; margin-bottom: 4px; }
.d-info p { font-size: 0.78rem; margin: 0; }
.faq-search-wrap { max-width: 560px; margin: 0 auto 40px; position: relative; }

/* ============================================================
   ACCORDION
   ============================================================ */
.acc-item { border-bottom: 1px solid var(--border); }
.acc-header {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; font-family: var(--font-heading); font-size: 0.95rem;
  font-weight: 600; color: var(--black); text-align: left; cursor: pointer;
  background: none; transition: color var(--transition);
}
.acc-header:hover { color: var(--red); }
.acc-header.open { color: var(--red); }
.acc-chev { font-size: 14px; transition: transform 0.3s ease; color: var(--grey); }
.acc-header.open .acc-chev { transform: rotate(180deg); color: var(--red); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.acc-body-inner { padding: 0 0 18px; font-size: 0.9rem; color: var(--grey-mid); line-height: 1.78; }
.acc-body.open { max-height: 400px; }

/* ============================================================
   FILTER BAR
   ============================================================ */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
  padding: 8px 18px; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  background: var(--white); border: 1px solid var(--border);
  color: var(--grey-mid); cursor: pointer; transition: all var(--transition);
  border-radius: 2px;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--red); color: var(--white); border-color: var(--red);
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 1000; display: none; }
.modal-overlay.open { display: flex; align-items: center; justify-content: center; padding: 24px; }
.modal-box { background: var(--white); max-width: 520px; width: 100%; padding: 40px; position: relative; }
.modal-close { position: absolute; top: 16px; right: 16px; cursor: pointer; font-size: 20px; color: var(--grey); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative; overflow: hidden; aspect-ratio: 4/3;
  cursor: pointer; background: var(--dark);
}
.gallery-item-bg {
  position: absolute; inset: 0;
  transition: transform 0.5s ease;
}
.gallery-item img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img,
.gallery-item:hover .gallery-item-bg { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0; background: rgba(200,39,45,0);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.35s ease; z-index: 2;
}
.gallery-item:hover .gallery-overlay { background: rgba(200,39,45,0.65); }
.gallery-zoom { font-size: 2rem; opacity: 0; transform: scale(0.5); transition: all 0.3s ease; color: var(--white); }
.gallery-item:hover .gallery-zoom { opacity: 1; transform: scale(1); }
.gallery-icon {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-size: 64px; z-index: 1; pointer-events: none;
  transition: opacity 0.3s; opacity: 0.8;
}
.gallery-item:hover .gallery-icon { opacity: 0.2; }
.gallery-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: var(--white); padding: 28px 16px 14px;
  font-size: 0.82rem; font-weight: 600; z-index: 3;
}

/* ============================================================
   GRID-4 (gallery thumbnails)
   ============================================================ */
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }

/* ============================================================
   PROJECTS / CASE STUDIES
   ============================================================ */
.proj-card {
  background: var(--white); border: 1px solid var(--border);
  overflow: hidden; transition: all var(--transition);
}
.proj-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.proj-img {
  height: 200px; display: flex; align-items: center; justify-content: center;
  font-size: 72px; overflow: hidden; position: relative;
}
.proj-img img { width: 100%; height: 100%; object-fit: cover; }
.proj-img-bg { position: absolute; inset: 0; transition: transform 0.5s ease; }
.proj-card:hover .proj-img-bg { transform: scale(1.06); }
.proj-body { padding: 24px; }
.proj-cat {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--red); margin-bottom: 8px;
}
.proj-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.proj-summary { font-size: 0.82rem; color: var(--grey-mid); margin-bottom: 16px; line-height: 1.65; }
.proj-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--border); border-top: 1px solid var(--border);
}
.proj-stat {
  background: var(--off-white); padding: 10px 12px;
}
.proj-stat-val { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--red); }
.proj-stat-key { font-size: 0.68rem; color: var(--grey-mid); text-transform: uppercase; letter-spacing: 0.08em; }

/* ============================================================
   TESTIMONIAL CARDS — tcard (clean flex, no overlap)
   ============================================================ */
.tcard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
@media (max-width: 960px) { .tcard-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px) { .tcard-grid { grid-template-columns: 1fr; } }

.tcard {
  background: #FFFFFF; border: 1px solid #E5E7EB; border-radius: 8px;
  padding: 28px; display: flex; flex-direction: column; gap: 16px;
  position: static; overflow: visible;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.15s ease-out;
}
.tcard::before, .tcard::after { display: none !important; content: none !important; }
.tcard:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.tcard.reveal {
  transform: translateY(50px);
  transition: opacity 0.6s cubic-bezier(0.34,1.56,0.64,1), transform 0.6s cubic-bezier(0.34,1.56,0.64,1);
}
.tcard.reveal.visible { transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .tcard:hover { transform: none; } }
.tcard.featured { border: 2px solid #C8272D; box-shadow: 0 8px 32px rgba(200,39,45,0.1); }
.tcard-stars { color: #F5A623; font-size: 15px; letter-spacing: 2px; line-height: 1; }
/* ============================================================
   BEFORE / AFTER SLIDER
   ============================================================ */
.ba-slider {
  position: relative; max-width: 900px; margin: 0 auto; aspect-ratio: 16/8;
  overflow: hidden; border-radius: 8px; cursor: ew-resize; user-select: none;
  box-shadow: var(--shadow-lg);
}
.ba-img { position: absolute; inset: 0; }
.ba-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-before { clip-path: inset(0 50% 0 0); }
.ba-before.animating { transition: clip-path 0.9s ease; }
.ba-label {
  position: absolute; top: 16px; padding: 6px 14px; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: #fff; background: rgba(0,0,0,0.65);
}
.ba-label-after { right: 16px; }
.ba-label-before { left: 16px; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: var(--red);
  transform: translateX(-50%); display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.ba-handle.animating { transition: left 0.9s ease; }
.ba-handle span {
  width: 40px; height: 40px; border-radius: 50%; background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.35); pointer-events: none;
}
@media (max-width: 600px) { .ba-slider { aspect-ratio: 4/5; } }

/* ============================================================
   HOW WE WORK
   ============================================================ */
.hww-track {
  position: relative; display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 24px; padding-top: 20px;
}
.hww-line {
  position: absolute; top: 34px; left: 10%; width: 80%; height: 4px; overflow: visible;
}
.hww-line line {
  stroke: var(--red); stroke-width: 4; stroke-dasharray: 1000; stroke-dashoffset: 1000;
  transition: stroke-dashoffset 1.6s ease;
}
.hww-track.visible .hww-line line { stroke-dashoffset: 0; }
.hww-step { text-align: center; position: relative; z-index: 1; }
.hww-num {
  width: 56px; height: 56px; border-radius: 50%; background: var(--black); color: var(--white);
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--border);
  transition: background 0.3s ease, transform 0.3s ease;
}
.hww-step:hover .hww-num { background: var(--red); transform: scale(1.08); }
.hww-step h5 { font-size: 0.95rem; margin-bottom: 4px; }
.hww-step p { font-size: 0.78rem; color: var(--grey-mid); margin: 0; }
@media (max-width: 800px) {
  .hww-track { grid-template-columns: 1fr; gap: 32px; }
  .hww-line { display: none; }
}
@media (prefers-reduced-motion: reduce) { .hww-line line { transition: none; stroke-dashoffset: 0; } }

/* ============================================================
   STORAGE CONFIGURATOR
   ============================================================ */
.configurator {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  max-width: 980px; margin: 0 auto; align-items: center;
}
@media (max-width: 800px) { .configurator { grid-template-columns: 1fr; } }
.configurator-controls input[type="range"] {
  width: 100%; margin-top: 10px; accent-color: var(--red);
}
.configurator-toggle { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.cfg-toggle-btn {
  flex: 1; min-width: 100px; padding: 10px 14px; font-size: 0.85rem; font-weight: 700;
  border: 1.5px solid var(--border); background: var(--white); color: var(--grey-mid);
  cursor: pointer; border-radius: var(--radius); transition: all var(--transition);
}
.cfg-toggle-btn.active { background: var(--red); border-color: var(--red); color: var(--white); }
.configurator-visual {
  height: 120px; background: var(--off-white); border: 1px solid var(--border);
  border-radius: var(--radius); display: flex; align-items: flex-end; gap: 4px;
  padding: 8px; overflow: hidden;
}
.cfg-level-bar {
  flex: 1; background: var(--red); border-radius: 2px 2px 0 0;
  transition: height 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.configurator-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 20px;
}
.cfg-stat { text-align: center; }
.cfg-stat-num {
  display: block; font-family: var(--font-display); font-size: 1.8rem; font-weight: 800;
  color: var(--black);
}
.cfg-stat-lbl { font-size: 0.7rem; color: var(--grey-mid); text-transform: uppercase; letter-spacing: 0.05em; }

/* ============================================================
   OFFICE MAP TABS
   ============================================================ */
.map-tabs {
  display: flex; justify-content: center; gap: 0; margin-bottom: 28px;
  max-width: 420px; margin-left: auto; margin-right: auto;
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.map-tab {
  flex: 1; padding: 13px 18px; font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.03em; text-transform: uppercase;
  background: var(--white); color: var(--grey-mid);
  border: none; cursor: pointer; transition: background var(--transition), color var(--transition);
}
.map-tab + .map-tab { border-left: 1px solid var(--border); }
.map-tab.active { background: var(--red); color: var(--white); }
.map-tab:not(.active):hover { background: var(--off-white); color: var(--dark-text); }
.map-embed-wrap {
  border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-embed-wrap iframe { display: block; width: 100%; }

.tcard-star { display: inline-block; opacity: 0; transform: scale(0.3); }
.tcard.visible .tcard-star { animation: starPop 0.35s ease forwards; }
@keyframes starPop {
  to { opacity: 1; transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) { .tcard-star { opacity: 1; transform: none; animation: none; } }
.tcard-quote { font-size: 0.875rem; color: #3D4148; line-height: 1.75; font-style: italic; flex: 1; margin: 0; }
.tcard-author { display: flex; align-items: center; gap: 14px; padding-top: 16px; border-top: 1px solid #F0F0F0; margin-top: auto; }
.tcard-avatar {
  width: 44px; height: 44px; min-width: 44px;
  border-radius: 50%; background: #C8272D; color: #fff;
  font-weight: 700; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  position: static !important;
}
.tcard-info { display: flex; flex-direction: column; gap: 2px; }
.tcard-name { font-size: 0.875rem; font-weight: 700; color: #1A1A1A; line-height: 1.3; }
.tcard-role { font-size: 0.75rem; color: #6B7280; line-height: 1.4; }

/* ============================================================
   INDUSTRY CARDS
   ============================================================ */
.ind-card {
  position: relative; overflow: hidden;
  padding: 40px 28px; min-height: 240px;
  display: flex; flex-direction: column; justify-content: flex-end;
  cursor: pointer; transition: transform var(--transition);
  text-decoration: none;
}
.ind-card:hover { transform: translateY(-4px); }
.ind-card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.5s ease;
}
.ind-card:hover .ind-card-bg { transform: scale(1.05); }
.ind-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.9) 0%, rgba(13,13,13,0.4) 100%);
  transition: background 0.3s;
}
.ind-card:hover .ind-card-overlay { background: linear-gradient(to top, rgba(200,39,45,0.85) 0%, rgba(13,13,13,0.5) 100%); }
.ind-icon {
  position: relative; z-index: 2; font-size: 2.2rem; margin-bottom: 12px;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.ind-card:hover .ind-icon { transform: scale(1.15); filter: drop-shadow(0 0 10px rgba(200,39,45,0.8)); }
@media (prefers-reduced-motion: reduce) { .ind-card:hover .ind-icon { transform: none; } }
.ind-title { position: relative; z-index: 2; font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.ind-desc { position: relative; z-index: 2; font-size: 0.78rem; color: rgba(255,255,255,0.65); line-height: 1.6; }
.ind-tag {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  background: var(--red); color: var(--white);
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; padding: 4px 8px;
}
.ind-bg-1 { background: url('https://images.unsplash.com/photo-1553413077-190dd305871c?auto=format&fit=crop&w=800&q=70') center/cover no-repeat; }
.ind-bg-2 { background: url('https://images.unsplash.com/photo-1565793979376-0e0b2fb1c98e?auto=format&fit=crop&w=800&q=70') center/cover no-repeat; }
.ind-bg-3 { background: url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?auto=format&fit=crop&w=800&q=70') center/cover no-repeat; }
.ind-bg-4 { background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=800&q=70') center/cover no-repeat; }
.ind-bg-5 { background: url('https://images.unsplash.com/photo-1587293852726-70cdb56c2866?auto=format&fit=crop&w=800&q=70') center/cover no-repeat; }
.ind-bg-6 { background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?auto=format&fit=crop&w=800&q=70') center/cover no-repeat; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-card {
  background: #FFFFFF; border: 1px solid #E5E7EB; border-radius: 8px;
  padding: 24px; display: flex; flex-direction: column;
  position: static; overflow: visible;
  transition: box-shadow var(--transition);
}
.testi-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.testi-card::before,
.testi-card::after { display: none !important; content: none !important; position: static !important; }
.testi-card.featured { border: 2px solid var(--red); }
.testi-quote {
  font-size: 0.875rem; color: #3D4148; line-height: 1.7;
  font-style: italic; margin: 0 0 14px 0; flex: 1;
}
.testi-stars { display: flex; gap: 2px; margin-bottom: 14px; }
.testi-star { color: #F5A623; font-size: 14px; }
.testi-author {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid #E5E7EB; padding-top: 14px; margin-top: auto;
}
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--red);
  display: flex; align-items: center; justify-content: center;
  position: static !important;
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  color: var(--white); flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 0.875rem; color: #1A1A1A; }
.testi-role { font-size: 0.75rem; color: #6B7280; }
.testi-country { font-size: 0.72rem; color: var(--red); }

/* ============================================================
   RFQ PAGE
   ============================================================ */
.rfq-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: flex-start; }
.rfq-benefit { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--border); }
.rfq-benefit:last-child { border-bottom: none; }
.rfq-benefit-icon {
  width: 40px; height: 40px; background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0; color: var(--white);
}
.rfq-benefit h5 { font-size: 0.9rem; font-family: var(--font-heading); margin-bottom: 4px; color: var(--black); }
.rfq-benefit p { font-size: 0.78rem; color: var(--grey-mid); margin: 0; }

/* ============================================================
   FORM SUCCESS
   ============================================================ */
.form-success {
  padding: 36px; border: 1px solid var(--border); text-align: center;
  background: var(--off-white);
}
.s-ico { font-size: 3rem; margin-bottom: 14px; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { margin: 0; }

/* ============================================================
   PROD SIDEBAR CARD
   ============================================================ */
.prod-sidebar-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 6px; padding: 20px;
}
.prod-sidebar-card h5 {
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--grey-mid); margin-bottom: 14px;
  padding-bottom: 10px; border-bottom: 1px solid var(--border);
}
.prod-visual {
  position: relative;
  aspect-ratio: 16/9; overflow: hidden;
  background: #F7F8FA; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
}
.prod-visual img { width: 100%; height: 100%; object-fit: cover; }
.prod-visual.has-image {
  font-size: 0; display: block;
}
.prod-visual.has-image #detail-icon {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(13,13,13,0.55); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
}

.related-link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  text-decoration: none; font-size: 0.85rem; font-weight: 600;
  color: var(--black); transition: color 0.2s;
}
.related-link:last-child { border-bottom: none; }
.related-link:hover { color: var(--red); }

/* ============================================================
   GLOBAL EXPORTS — SVG WORLD MAP
   ============================================================ */
.section-exports {
  background: #FFFFFF; padding: 96px 0;
}
.exports-header {
  text-align: center; margin-bottom: 48px;
}
.exports-header .eyebrow { display: block; margin-bottom: 10px; }
.exports-header .red-line { margin: 0 auto 18px; }
.exports-header h2 {
  font-family: var(--font-display); font-size: clamp(2rem,4vw,3rem);
  font-weight: 900; color: #1A1A1A; margin-bottom: 12px;
}
.exports-header h2 .text-red { color: #C8272D; }
.exports-header p { color: #6B7280; max-width: 520px; margin: 0 auto; font-size: 0.95rem; }

.world-map-wrap {
  position: relative; width: 100%; max-width: 960px; height: 460px; margin: 0 auto;
  border: 1px solid #E5E7EB; border-radius: 8px; overflow: hidden;
  background: #EEF6FB;
}
.world-map-wrap svg { width: 100%; height: auto; display: block; }
.world-map-wrap svg .land { fill: #E8EAED; stroke: #CDD0D6; stroke-width: 0.4; stroke-linejoin: round; }
.world-map-wrap svg .active-country { fill: #FFE8E8; stroke: #C8272D; stroke-width: 0.7; }

/* HQ marker */
.map-marker-hq {
  position: absolute; width: 16px; height: 16px;
  background: #C8272D; border-radius: 50%; border: 3px solid white;
  box-shadow: 0 0 0 3px rgba(200,39,45,0.3);
  animation: pulse-hq 2s infinite; cursor: pointer; z-index: 5;
  transform: translate(-50%,-50%);
}
.map-marker-hq::after {
  content: 'HQ'; position: absolute; top: -22px; left: 50%;
  transform: translateX(-50%); font-size: 9px; font-weight: 700;
  color: #C8272D; white-space: nowrap; background: white;
  padding: 1px 4px; border-radius: 3px; border: 1px solid #C8272D;
}
@keyframes pulse-hq {
  0%,100% { box-shadow: 0 0 0 3px rgba(200,39,45,0.3); }
  50%      { box-shadow: 0 0 0 8px rgba(200,39,45,0.08); }
}
/* Office markers */
.map-marker-office {
  position: absolute; width: 12px; height: 12px;
  background: #C8272D; border-radius: 50%; border: 2px solid white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25); cursor: pointer; z-index: 5;
  transform: translate(-50%,-50%);
}
/* Export dots */
.map-marker-export {
  position: absolute; width: 7px; height: 7px;
  background: rgba(200,39,45,0.7); border-radius: 50%;
  border: 1px solid #C8272D; cursor: pointer; z-index: 5;
  transform: translate(-50%,-50%);
  transition: transform 0.15s ease, background 0.15s ease;
}
.map-marker-export:hover { background: #C8272D; transform: translate(-50%,-50%) scale(1.6); }
/* Shared tooltip */
.map-tooltip {
  position: absolute; background: #1A1A1A; color: white;
  font-size: 12px; font-weight: 500; padding: 5px 10px; border-radius: 4px;
  pointer-events: none; opacity: 0; transition: opacity 0.15s;
  z-index: 20; white-space: nowrap;
}

/* Stats row */
.exports-stats {
  display: flex; justify-content: center; gap: 48px;
  margin-top: 48px; padding-top: 40px; border-top: 1px solid #E5E7EB;
  flex-wrap: wrap;
}
.estat { text-align: center; }
.estat-num {
  display: block; font-family: var(--font-display);
  font-size: 2rem; font-weight: 900; color: #C8272D; line-height: 1;
}
.estat-lbl { display: block; font-size: 0.8rem; color: #6B7280; margin-top: 4px; }

@media (max-width: 768px) {
  .section-exports { padding: 64px 0; }
  .exports-stats { gap: 24px; }
  .estat-num { font-size: 1.6rem; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .who-grid, .prod-detail-layout, .svc-detail-layout,
  .blog-detail-layout, .career-layout, .contact-layout { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(3,1fr); }
  .enq-inner { grid-template-columns: 1fr; }
  .rfq-grid { grid-template-columns: 1fr; }
  .about-story { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .prod-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .who-highlights { grid-template-columns: 1fr; }
  .home-products-grid { grid-template-columns: 1fr; }
  .prod-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: repeat(3,1fr); }
  .infra-grid, .mvv-grid { grid-template-columns: 1fr; }
  .enq-form { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .dl-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .clients-grid { grid-template-columns: repeat(2,1fr); }
  .slider-arrows { display: none; }
  .why-grid { grid-template-columns: 1fr; }
}
