/* =========================================================
   Welstars Ind — Global Agri Exports
   Main Stylesheet
   ========================================================= */

:root{
  --ocean-blue: #0066B3;
  --ocean-blue-dark: #00518f;
  --navy: #0A2342;
  --white: #FFFFFF;
  --light-bg: #F6FAFD;
  --border: #E5EDF5;
  --gold: #D4A017;
  --green: #22C55E;

  --text-main: #16232E;
  --text-muted: #5B6B7A;

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius: 20px;
  --radius-sm: 12px;

  --shadow-sm: 0 2px 10px rgba(10, 35, 66, 0.06);
  --shadow-md: 0 10px 30px rgba(10, 35, 66, 0.10);
  --shadow-lg: 0 20px 50px rgba(10, 35, 66, 0.16);

  --header-height: 80px;
  --container-width: 1280px;
}

/* ---------- Reset ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img{ max-width: 100%; display: block; }
a{ text-decoration: none; color: inherit; }
ul{ list-style: none; margin: 0; padding: 0; }
button{ font-family: inherit; cursor: pointer; }
h1,h2,h3,h4{
  font-family: var(--font-heading);
  color: var(--navy);
  margin: 0;
  line-height: 1.2;
}

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

:focus-visible{
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.container{
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ocean-blue);
  margin-bottom: 14px;
}
.eyebrow::before{
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.section{ padding: 100px 0; }
.section--tight{ padding: 72px 0; }
.section--light{ background: var(--light-bg); }
.section--navy{ background: var(--navy); color: #CBD9E8; }
.section--navy h2{ color: var(--white); }

.section-head{ max-width: 720px; margin: 0 0 56px; }
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2{ font-size: clamp(28px, 3.4vw, 40px); font-weight: 700; }
.section-head p{ color: var(--text-muted); font-size: 17px; margin-top: 16px; }
.section--navy .section-head p{ color: #A9BCD1; }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  font-family: var(--font-body);
  border: 2px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn-primary{
  background: var(--gold);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary{
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-secondary:hover{ background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.btn-outline-blue{
  background: transparent;
  border-color: var(--ocean-blue);
  color: var(--ocean-blue);
}
.btn-outline-blue:hover{ background: var(--ocean-blue); color: var(--white); transform: translateY(-2px); }
.btn-block{ width: 100%; }
.btn-sm{ padding: 11px 22px; font-size: 14px; }

/* ---------- Header ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 500;
  height: var(--header-height);
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.site-header .container{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand{ display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img{ height: 46px; width: auto; }

.main-nav{ flex: 1; display: flex; justify-content: center; }
.main-nav ul{ display: flex; gap: 40px; }
.main-nav a{
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.main-nav a::after{
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--ocean-blue);
  transition: right 0.25s ease;
}
.main-nav a:hover, .main-nav a.active{ color: var(--ocean-blue); }
.main-nav a:hover::after, .main-nav a.active::after{ right: 0; }

.header-actions{ display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header-actions .btn{ padding: 12px 22px; }
.whatsapp-chip{
  display: inline-flex; align-items: center; gap: 8px;
  background: #E9FBF0; color: #128C39;
  border-radius: 100px; padding: 11px 18px; font-weight: 600; font-size: 14px;
  transition: background 0.2s ease;
}
.whatsapp-chip:hover{ background: #D6F7E3; }
.whatsapp-chip svg{ width: 18px; height: 18px; }
.whatsapp-chip .wa-bubble{ background: var(--green); border-radius: 50%; width: 22px; height: 22px; display:flex; align-items:center; justify-content:center; }
.whatsapp-chip .wa-bubble svg{ width: 13px; height: 13px; }

.nav-toggle{
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span{ width: 20px; height: 2px; background: var(--navy); display:block; transition: transform 0.25s ease, opacity 0.25s ease; }
.nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav panel: hidden off-canvas at ALL widths by default.
   Only unhidden via .open (added by JS), and only reachable through
   the hamburger button, which itself only appears <=768px. This must
   live here (not inside a max-width media query) or the panel renders
   as a plain in-flow block and overlaps the hero at in-between widths. */
.mobile-nav{
  position: fixed;
  top: var(--header-height);
  left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 490;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  padding: 30px 26px;
  visibility: hidden;
}
.mobile-nav.open{ transform: translateX(0); visibility: visible; }
.mobile-nav ul{ display: flex; flex-direction: column; gap: 6px; }
.mobile-nav a{
  display: block; padding: 16px 4px; font-size: 17px; font-weight: 600;
  color: var(--navy); border-bottom: 1px solid var(--border);
}
.mobile-nav .mobile-actions{ margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }

/* ---------- Hero ---------- */
.hero{
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy); /* fallback while photo loads */
}
.hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  z-index: 0;
  animation: heroSlowZoom 24s ease-in-out infinite alternate;
}
video.hero-bg{ background: var(--navy); } /* prevents flash of empty space while video loads */
@keyframes heroSlowZoom{
  from{ transform: scale(1); }
  to{ transform: scale(1.08); }
}
.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg,
    rgba(6,22,43,0.92) 0%,
    rgba(8,29,55,0.78) 32%,
    rgba(10,40,71,0.42) 58%,
    rgba(10,40,71,0.18) 100%);
}

.hero .container{
  width: 100%;
  margin: 0 auto;
}
.hero-content{
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 60px 0;
  text-align: left;
}
.hero-eyebrow{
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 22px;
  backdrop-filter: blur(4px);
}
.hero-eyebrow .dot{ width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.hero-content h1{
  color: var(--white);
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 18px rgba(0,0,0,0.18);
}
.hero-content p{
  color: rgba(255,255,255,0.92);
  font-size: 17px;
  margin-top: 22px;
  max-width: 540px;
}
.hero-products{
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 28px;
}
.hero-products span{
  background: rgba(10, 35, 66, 0.35);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 100px;
}
.hero-actions{ display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }

/* ---------- About / Stats ---------- */
.about-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-media{
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.media-frame{
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--navy) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 30px;
  position: relative;
  overflow: hidden;
}
.media-frame img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-frame.harvest{ background: linear-gradient(135deg, #0b5c9c 0%, #0A2342 100%); }
.media-frame .frame-icon{ width: 56px; height: 56px; margin-bottom: 14px; opacity: 0.9; }
.media-frame .frame-label{ font-family: var(--font-heading); font-weight: 600; font-size: 16px; color: var(--white); }
.media-frame .frame-sub{ font-size: 13px; margin-top: 6px; color: rgba(255,255,255,0.7); }

.about-copy h2{ font-size: clamp(26px, 3.2vw, 36px); }
.about-copy p{ color: var(--text-muted); margin-top: 18px; font-size: 16px; }
.stat-row{ display: flex; gap: 40px; margin-top: 36px; flex-wrap: wrap; }
.stat-item .stat-num{ font-family: var(--font-heading); font-weight: 700; font-size: 34px; color: var(--ocean-blue); }
.stat-item .stat-label{ font-size: 13.5px; color: var(--text-muted); margin-top: 4px; }

/* ---------- Cards grid (Why choose us) ---------- */
.card-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card{
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.feature-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-icon{
  width: 54px; height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, #E9F3FC, #DCEEFA);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature-icon svg{ width: 26px; height: 26px; }
.feature-card h3{ font-size: 18px; font-weight: 600; }
.feature-card p{ color: var(--text-muted); font-size: 14.5px; margin-top: 10px; }

/* ---------- Products ---------- */
.product-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card{
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-media{
  aspect-ratio: 4/3;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.product-media img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-media img{ transform: scale(1.06); }
.product-media .emoji{ font-size: 44px; margin-bottom: 8px; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.25)); }
.product-media .ph-note{ font-size: 12px; color: rgba(255,255,255,0.75); padding: 0 20px; }
.product-media.rice{ background: linear-gradient(135deg,#e7c988,#a9772c); }
.product-media.mango{ background: linear-gradient(135deg,#f5b342,#d4650f); }
.product-media.tomato{ background: linear-gradient(135deg,#f0625a,#a01f1f); }
.product-media.tamarind{ background: linear-gradient(135deg,#8a5a2b,#4a2c11); }
.product-media.chilli{ background: linear-gradient(135deg,#e2483c,#7c1010); }

.product-body{ padding: 26px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.product-body h3{ font-size: 19px; font-weight: 600; }
.product-body .product-tagline{ color: var(--ocean-blue); font-size: 13px; font-weight: 600; margin-top: 4px; }
.product-body p.desc{ color: var(--text-muted); font-size: 14.5px; margin-top: 12px; flex: 1; }
.product-meta{ display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.product-meta span{
  font-size: 12px; font-weight: 600; color: var(--navy);
  background: var(--light-bg); border: 1px solid var(--border);
  padding: 6px 12px; border-radius: 100px;
}
.product-body .btn{ margin-top: 20px; }

/* Large product page cards */
.product-card-lg{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
}
.product-card-lg:nth-child(even) .product-media-lg{ order: 2; }
.product-media-lg{
  min-height: 340px;
  position: relative;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  color: var(--white); text-align: center; padding: 30px;
  overflow: hidden;
}
.product-media-lg img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-info-lg{ padding: 44px; display: flex; flex-direction: column; justify-content: center; }
.product-info-lg .eyebrow{ margin-bottom: 10px; }
.product-info-lg h2{ font-size: 26px; }
.product-info-lg p.desc{ color: var(--text-muted); margin-top: 14px; }
.spec-list{ margin-top: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 20px; }
.spec-list div{ font-size: 13.5px; }
.spec-list .spec-label{ color: var(--text-muted); display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 3px;}
.spec-list .spec-value{ font-weight: 600; color: var(--navy); }
.product-info-lg .btn{ margin-top: 26px; align-self: flex-start; }

/* ---------- Countries ---------- */
.country-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.country-card{
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 26px 20px;
  text-align: center;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.country-card:hover{
  box-shadow: 0 0 0 3px rgba(0,102,179,0.18), var(--shadow-md);
  border-color: var(--ocean-blue);
  transform: translateY(-4px);
}
.country-card .flag{ font-size: 34px; }
.country-card .name{ margin-top: 10px; font-weight: 600; font-size: 14.5px; }

/* ---------- Certifications ---------- */
.cert-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.cert-card{
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 30px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.cert-card .cert-icon{ width: 46px; height: 46px; margin: 0 auto 14px; }
.cert-card .cert-icon svg{ width: 100%; height: 100%; }
.cert-card h4{ font-size: 16px; }
.cert-card p{ font-size: 13px; color: var(--text-muted); margin-top: 6px; }

/* ---------- Export process timeline ---------- */
.timeline{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  gap: 12px;
}
.timeline::before{
  content: "";
  position: absolute;
  top: 28px; left: 5%; right: 5%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--border) 0 10px, transparent 10px 18px);
  z-index: 0;
}
.timeline-step{
  position: relative; z-index: 1;
  flex: 1;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.timeline-step .step-dot{
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--ocean-blue);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; color: var(--ocean-blue);
  margin-bottom: 16px;
  transition: background 0.25s ease, color 0.25s ease;
}
.timeline-step:hover .step-dot{ background: var(--ocean-blue); color: var(--white); }
.timeline-step .step-label{ font-weight: 600; font-size: 14.5px; }
.timeline-step .step-sub{ font-size: 12.5px; color: var(--text-muted); margin-top: 4px; max-width: 120px; }

/* ---------- CTA ---------- */
.cta-band{
  background: linear-gradient(120deg, var(--ocean-blue), var(--navy));
  border-radius: var(--radius);
  padding: 64px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band h2{ color: var(--white); font-size: clamp(24px, 3vw, 32px); }
.cta-band p{ color: rgba(255,255,255,0.82); margin-top: 10px; max-width: 420px; }
.cta-actions{ display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer{ background: var(--navy); color: #A9BCD1; padding: 76px 0 0; }
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img{ height: 40px; margin-bottom: 18px; }
.footer-brand p{ font-size: 14px; color: #8CA1B6; max-width: 280px; }
.footer-social{ display: flex; gap: 10px; margin-top: 20px; }
.footer-social a{
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.footer-social a:hover{ background: var(--ocean-blue); }
.footer-social svg{ width: 16px; height: 16px; }
.footer-col h4{ color: var(--white); font-size: 15px; margin-bottom: 20px; }
.footer-col ul li{ margin-bottom: 12px; }
.footer-col a{ font-size: 14.5px; color: #A9BCD1; transition: color 0.2s ease; }
.footer-col a:hover{ color: var(--gold); }
.footer-contact li{ display: flex; gap: 10px; align-items: flex-start; font-size: 14px; }
.footer-contact svg{ width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.footer-bottom{
  display: flex; justify-content: space-between; align-items: center;
  padding: 26px 0; font-size: 13px; color: #7891A8; flex-wrap: wrap; gap: 12px;
}
.footer-bottom-links{ display: flex; gap: 22px; }
.footer-bottom-links a:hover{ color: var(--white); }

/* ---------- Floating buttons ---------- */
.floating-btns{
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 600;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.fab{
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease;
}
.fab-whatsapp{ background: var(--green); }
.fab-whatsapp svg{ width: 30px; height: 30px; }
.fab-whatsapp:hover{ animation: bounceSmall 0.6s ease; }
@keyframes bounceSmall{
  0%,100%{ transform: translateY(0); }
  30%{ transform: translateY(-8px); }
  55%{ transform: translateY(0); }
  75%{ transform: translateY(-4px); }
}
.fab-top{
  background: var(--ocean-blue);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}
.fab-top svg{ width: 20px; height: 20px; }
.fab-top.show{ opacity: 1; visibility: visible; transform: translateY(0); }

/* ---------- Sub-hero (About / Products pages) ---------- */
.sub-hero{
  background: linear-gradient(120deg, var(--navy) 0%, #0d3969 100%);
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}
.sub-hero::after{
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 85% 0%, rgba(212,160,23,0.16), transparent 70%);
}
.sub-hero .container{ position: relative; z-index: 1; }
.breadcrumb{ font-size: 13.5px; color: #9FB4C9; margin-bottom: 18px; }
.breadcrumb span{ color: var(--gold); }
.sub-hero h1{ color: var(--white); font-size: clamp(30px, 4vw, 44px); }
.sub-hero p{ color: #C3D3E3; margin-top: 16px; max-width: 620px; font-size: 16.5px; }

/* ---------- Legal / policy content (Terms, Privacy, etc.) ---------- */
.legal-content{ max-width: 860px; }
.legal-updated{
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.legal-content section{ margin-bottom: 44px; }
.legal-content section:last-child{ margin-bottom: 0; }
.legal-content h2{
  font-size: 22px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}
.legal-content h2 .num{ color: var(--ocean-blue); font-family: var(--font-heading); }
.legal-content p{ color: var(--text-muted); font-size: 16px; margin: 0 0 14px; }
.legal-content p:last-child{ margin-bottom: 0; }
.legal-content ul{ margin: 0 0 14px; padding-left: 0; }
.legal-content ul li{
  color: var(--text-muted);
  font-size: 16px;
  padding: 4px 0 4px 26px;
  position: relative;
}
.legal-content ul li::before{
  content: "";
  position: absolute;
  left: 4px;
  top: 15px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.legal-content a{ color: var(--ocean-blue); text-decoration: underline; text-underline-offset: 2px; }
.legal-toc{
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 48px;
}
.legal-toc h4{ font-size: 15px; margin-bottom: 14px; }
.legal-toc ol{ margin: 0; padding-left: 20px; columns: 2; column-gap: 32px; }
.legal-toc li{ font-size: 15px; margin-bottom: 8px; }
.legal-toc a{ color: var(--text-main); }
.legal-toc a:hover{ color: var(--ocean-blue); }
@media (max-width: 640px){
  .legal-toc ol{ columns: 1; }
}

/* ---------- FAQ ---------- */
.faq-list{ max-width: 820px; margin: 0 auto; }
.faq-item{
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
  background: var(--white);
}
.faq-question{
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 26px;
  background: none; border: none;
  font-family: var(--font-heading); font-weight: 600; font-size: 15.5px;
  color: var(--navy); text-align: left;
}
.faq-question .icon-plus{
  width: 22px; height: 22px; flex-shrink: 0; position: relative; margin-left: 20px;
}
.faq-question .icon-plus::before, .faq-question .icon-plus::after{
  content: ""; position: absolute; background: var(--ocean-blue);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.faq-question .icon-plus::before{ width: 14px; height: 2px; }
.faq-question .icon-plus::after{ width: 2px; height: 14px; transition: transform 0.25s ease; }
.faq-item.open .icon-plus::after{ transform: translate(-50%,-50%) rotate(90deg) scaleY(0); }
.faq-answer{
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 26px;
}
.faq-answer p{ color: var(--text-muted); font-size: 14.5px; padding-bottom: 22px; }
.faq-item.open .faq-answer{ max-height: 300px; }

/* ---------- Infrastructure gallery ---------- */
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gallery-item{
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.gallery-item .media-frame{ height: 100%; }

/* ---------- Mission / Vision ---------- */
.mv-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.mv-card{
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 40px; box-shadow: var(--shadow-sm);
}
.mv-card .feature-icon{ margin-bottom: 22px; }
.mv-card h3{ font-size: 21px; }
.mv-card p{ color: var(--text-muted); margin-top: 12px; }

/* ---------- Company timeline (About page) ---------- */
.history-timeline{ max-width: 780px; margin: 0 auto; position: relative; }
.history-timeline::before{
  content: ""; position: absolute; left: 18px; top: 6px; bottom: 6px; width: 2px;
  background: var(--border);
}
.history-item{ position: relative; padding-left: 56px; margin-bottom: 36px; }
.history-item:last-child{ margin-bottom: 0; }
.history-item::before{
  content: ""; position: absolute; left: 10px; top: 4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--ocean-blue);
}
.history-item .year{ font-family: var(--font-heading); font-weight: 700; color: var(--ocean-blue); font-size: 14px; }
.history-item h4{ font-size: 17px; margin-top: 4px; }
.history-item p{ color: var(--text-muted); font-size: 14.5px; margin-top: 6px; }

/* ---------- Utility ---------- */
.text-center{ text-align: center; }
.mt-0{ margin-top: 0; }
.reveal{ opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view{ opacity: 1; transform: translateY(0); }
