/* ==========================================================================
   PT INDOGET TAMA ABADI — Global Stylesheet
   Works for both LTR (English) and RTL (Arabic) via logical properties.
   ========================================================================== */

:root{
  /* ---- Brand palette (derived from logo) ---- */
  --maroon:      #801328;
  --maroon-dark: #5c0d1c;
  --rust:        #D9531E;
  --amber:       #8C512A;
  --ink:         #2A1216;
  --paper:       #FFFFFF;
  --offwhite:    #F8F9FA;
  --mist:        #F2F4F7;
  --line:        #E7E2DC;
  --muted:       #7A6E68;

  /* ---- Type ---- */
  --font-display: 'Space Grotesk', 'Cairo', sans-serif;
  --font-body:    'Inter', 'Cairo', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  /* ---- Layout ---- */
  --maxw: 1180px;
  --radius: 2px;
  --gap: clamp(1.5rem, 3vw, 3rem);
  --nav-h: 84px;
}

html[lang="ar"]{
  --font-display: 'Cairo', sans-serif;
  --font-body: 'Cairo', sans-serif;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
html,body{ overflow-x: hidden; max-width: 100%; }
body.nav-menu-open{ overflow:hidden; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *,*::before,*::after{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--paper);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cg fill='none' stroke='%23801328' stroke-opacity='0.025' stroke-width='1'%3E%3Cpath d='M0 70 L70 0 L140 70 L70 140 Z'/%3E%3Cpath d='M0 0 L70 70 M70 70 L140 0 M0 140 L70 70 M70 70 L140 140'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-attachment: fixed;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }
input,textarea,select{ font-family:inherit; font-size:1rem; }

h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 .6em;
  color: var(--maroon-dark);
  letter-spacing: -0.01em;
}
h1{ font-size: clamp(2.4rem, 5vw, 4rem); font-weight:700; }
h2{ font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
h3{ font-size: clamp(1.2rem, 2vw, 1.5rem); }
p{ margin:0 0 1em; color:#4A3D3A; }
.lede{ font-size: 1.2rem; color:#5c4b47; }

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

.container{ max-width: var(--maxw); margin-inline:auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.section{ padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.section-alt{ background: var(--mist); }
.section-dark{ background: var(--maroon); color: #F3E4E1; }
.section-dark h2, .section-dark h3{ color: #fff; }
.section-dark p{ color: #E9C9C9; }

.eyebrow{
  display:inline-flex; align-items:center; gap:.6em;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  color: var(--rust);
  font-weight: 600;
  margin-bottom: 1em;
}
html[lang="ar"] .eyebrow{ font-family: var(--font-display); letter-spacing:0; }
.eyebrow::before{ content:""; width:22px; height:2px; background: var(--rust); display:inline-block; }

.section-head{ max-width: 680px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.center{ margin-inline:auto; text-align:center; }

/* ---- Buttons ---- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.5em;
  padding: .9em 1.7em;
  font-weight: 600;
  font-size: .95rem;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn-primary{ background: var(--rust); color:#fff; }
.btn-primary:hover{ background: #b8420f; }
.btn-outline{ border-color: currentColor; color: var(--maroon); }
.btn-outline:hover{ background: var(--maroon); color:#fff; border-color: var(--maroon); }
.btn-ghost-light{ border-color: rgba(255,255,255,.55); color:#fff; }
.btn-ghost-light:hover{ background: rgba(255,255,255,.12); }
.btn-block{ width:100%; }
.btn-lg{ padding: 1.05em 2.1em; font-size: 1rem; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header{
  position: sticky; top:0; z-index: 100;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid var(--line);
}
.nav{
  height: var(--nav-h);
  display:flex; align-items:center; justify-content:space-between; gap: 1.5rem;
}
.brand{ display:flex; align-items:center; gap:.7rem; flex-shrink:0; }
.brand img{ height: 42px; width:auto; }
.brand-text{ display:flex; flex-direction:column; line-height:1.1; }
.brand-text strong{ font-family: var(--font-display); font-weight:700; font-size: 1rem; color: var(--maroon-dark); letter-spacing:.01em; }
.brand-text span{ font-size: .68rem; color: var(--muted); letter-spacing:.06em; text-transform:uppercase; }

.nav-links{ display:flex; align-items:center; gap: 2.1rem; }
.nav-links .nav-close{ display:none; }
.nav-links a{
  font-size: .93rem; font-weight:500; color:#4A3D3A;
  position:relative; padding-block:.3em;
}
.nav-links a::after{
  content:""; position:absolute; inset-inline-start:0; bottom:0; height:2px; width:0;
  background: var(--rust); transition: width .2s ease;
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after{ width:100%; }
.nav-links a[aria-current="page"]{ color: var(--maroon); }

.nav-actions{ display:flex; align-items:center; gap: 1rem; flex-shrink:0; }
.lang-switch{
  display:flex; border:1.5px solid var(--line); border-radius: 999px; overflow:hidden;
  font-family: var(--font-mono); font-size:.72rem; font-weight:700; letter-spacing:.04em;
}
.lang-switch a{ padding: .4em .8em; color: var(--muted); }
.lang-switch a.active{ background: var(--maroon); color:#fff; }

.nav-toggle{
  display:none; flex-direction:column; gap:5px; background:none; border:0; padding:.4rem;
}
.nav-toggle span{ width:24px; height:2px; background: var(--maroon-dark); display:block; }

@media (max-width: 920px){
  .nav-links .nav-close{
    position:absolute !important;
    inset-inline-end:8px !important;
    top:8px !important;
    width:26px !important;
    height:26px !important;
    min-width:26px !important;
    max-width:26px !important;
    padding:0 !important;
    margin:0 !important;
    border:1px solid var(--line) !important;
    border-radius:50% !important;
    background:#fff !important;
    color:var(--maroon-dark) !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    box-sizing:border-box !important;
    appearance:none !important;
    -webkit-appearance:none !important;
    font-family:Arial,sans-serif !important;
    font-size:16px !important;
    font-weight:400 !important;
    line-height:26px !important;
    text-align:center !important;
    flex:0 0 26px !important;
    z-index:3 !important;
    box-shadow:0 2px 7px rgba(42,24,20,.10) !important;
  }
  .nav-links .nav-close:hover{ background:var(--offwhite) !important; }
  .nav{ position:relative; }
  .nav-links{
    position:fixed !important;
    top:calc(var(--nav-h) + 6px) !important;
    right:16px !important;
    left:auto !important;
    width:290px !important;
    max-width:calc(100vw - 32px) !important;
    height:auto !important;
    max-height:calc(100vh - var(--nav-h) - 24px) !important;
    overflow-y:auto !important;
    background:#fff !important;
    flex-direction:column !important;
    align-items:stretch !important;
    padding:2.65rem .9rem .55rem !important;
    gap:0 !important;
    border:1px solid var(--line) !important;
    border-radius:12px !important;
    box-shadow:0 12px 28px rgba(42,24,20,.16) !important;
    transform:translateY(-8px) !important;
    opacity:0 !important;
    visibility:hidden !important;
    pointer-events:none !important;
    display:flex !important;
    z-index:1001 !important;
  }
  .nav-links.open{
    transform:translateY(0) !important;
    opacity:1 !important;
    visibility:visible !important;
    pointer-events:auto !important;
  }
  .nav-links a{ padding:.78rem .45rem !important; border-bottom:1px solid var(--line) !important; }
  .nav-links a:last-child{ border-bottom:0 !important; }
  .nav-toggle{ display:flex; }

  /* Arabic navigation mirrors the English dropdown to the opposite side. */
  html[dir="rtl"] .nav-links{
    right:auto !important;
    left:16px !important;
  }
}
@media (max-width: 560px){
  .nav-links{ width:min(82vw, 300px); }
}
@media (max-width: 560px){
  .nav{ gap: .6rem; }
  .brand-text span{ display:none; }
  .brand img{ height:36px; }
  .nav-actions{ gap: .55rem; }
  .nav-actions .btn{ display:none; }
  .lang-switch{ font-size:.68rem; }
}

/* ==========================================================================
   Ticker (signature trading-tape element)
   ========================================================================== */
.ticker{
  background: var(--maroon); color:#fff; overflow:hidden;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.ticker-track{
  display:flex; width:max-content; white-space:nowrap;
  animation: ticker-scroll 32s linear infinite;
  padding-block: .65rem;
}
html[dir="rtl"] .ticker-track{ animation-name: ticker-scroll-rtl; }
.ticker-track span{
  font-family: var(--font-mono); font-size:.78rem; letter-spacing:.06em; text-transform:uppercase;
  padding-inline-end: 2.2rem; display:inline-flex; align-items:center; gap:.6rem; color:#F3D9CE;
}
html[lang="ar"] .ticker-track span{ font-family: var(--font-display); font-weight:600; letter-spacing:0; }
.ticker-track span::before{ content:"↗"; color: var(--rust); font-weight:700; }
html[dir="rtl"] .ticker-track span::before{ content:"↖"; }
@keyframes ticker-scroll{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }
@keyframes ticker-scroll-rtl{ from{ transform:translateX(0);} to{ transform:translateX(50%);} }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position:relative;
  padding-block: clamp(3.5rem, 8vw, 6rem);
  background:
    radial-gradient(1000px 500px at 85% -10%, rgba(217,83,30,.10), transparent 60%),
    var(--offwhite);
  overflow:hidden;
}
.hero-grid{
  display:grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem,5vw,4rem); align-items:center;
}
@media (max-width: 900px){ .hero-grid{ grid-template-columns:1fr; } }

.hero h1{ margin-bottom:.4em; }
.hero h1 em{ font-style:normal; color: var(--rust); }
.hero-actions{ display:flex; flex-wrap:wrap; gap: .9rem; margin-top: 1.8rem; }
.hero-stats{ display:flex; gap: clamp(1.5rem,3vw,2.6rem); margin-top: 2.6rem; flex-wrap:wrap; }
.hero-stats div strong{ display:block; font-family: var(--font-display); font-size: 1.7rem; color: var(--maroon); }
.hero-stats div span{ font-size:.8rem; color: var(--muted); }

.hero-visual{ position:relative; }
.chart-card{
  background:#fff; border:1px solid var(--line); border-radius: var(--radius);
  box-shadow: 0 30px 60px -30px rgba(128,19,40,.35);
  padding: 1.6rem 1.6rem 1.2rem;
  position:relative;
}
.chart-card::before{
  content:""; position:absolute; inset-inline-start:0; top:0; width:0; height:0;
  border-inline-start: 46px solid var(--rust); border-bottom: 46px solid transparent;
}
html[dir="rtl"] .chart-card::before{ border-inline-start-width:0; border-inline-end: 46px solid var(--rust); }
.chart-card .cap{ font-family: var(--font-mono); font-size:.72rem; letter-spacing:.08em; text-transform:uppercase; color: var(--muted); margin-bottom:.6rem; }
.chart-card svg{ width:100%; height:auto; }
.chart-legend{ display:flex; justify-content:space-between; margin-top:.6rem; font-size:.72rem; color:var(--muted); font-family:var(--font-mono); }

/* ==========================================================================
   Cards / Grids
   ========================================================================== */
.grid{ display:grid; gap: var(--gap); }
.grid-3{ grid-template-columns: repeat(3,1fr); }
.grid-2{ grid-template-columns: repeat(2,1fr); }
.grid-4{ grid-template-columns: repeat(4,1fr); }
@media (max-width: 980px){ .grid-3, .grid-4{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px){ .grid-3, .grid-4, .grid-2{ grid-template-columns: 1fr; } }

.card{
  position:relative;
  background:#fff; border:1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.8rem;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.card:hover{ box-shadow: 0 24px 50px -28px rgba(42,18,22,.28); transform: translateY(-4px); border-color: transparent; }
.card::before{
  content:""; position:absolute; inset-inline-start:0; top:0; width:0; height:0;
  border-inline-start: 26px solid var(--rust); border-bottom: 26px solid transparent; opacity:.85;
}
html[dir="rtl"] .card::before{ border-inline-start-width:0; border-inline-end: 26px solid var(--rust); }
.card .icon{ width:44px; height:44px; margin-bottom: 1.1rem; color: var(--maroon); }
.card h3{ margin-bottom:.5em; }
.card p{ font-size:.95rem; margin-bottom:0; }
.card .tag{
  display:inline-block; margin-top:1rem; font-family: var(--font-mono); font-size:.7rem;
  letter-spacing:.06em; text-transform:uppercase; color: var(--rust);
}

/* Product cards */
.product-card{
  background:#fff; border:1px solid var(--line); border-radius: var(--radius); overflow:hidden;
  transition: box-shadow .2s ease, transform .2s ease;
}
.product-card:hover{ box-shadow: 0 24px 50px -28px rgba(42,18,22,.3); transform: translateY(-4px); }
.product-card .thumb{ aspect-ratio: 4/3; overflow:hidden; background: var(--mist); }
.product-card .thumb img{ width:100%; height:100%; object-fit:cover; }
.product-card .body{ padding: 1.5rem 1.5rem 1.7rem; }
.product-card h3{ margin-bottom:.35em; font-size:1.2rem; }
.product-card .meta{ display:flex; flex-wrap:wrap; gap:.4rem; margin-top:1rem; }
.product-card .meta span{
  font-family: var(--font-mono); font-size:.68rem; letter-spacing:.04em; text-transform:uppercase;
  background: var(--mist); color: var(--amber); padding:.35em .7em; border-radius: 999px; border:1px solid var(--line);
}

/* ==========================================================================
   Values / numbered blocks
   ========================================================================== */
.value-row{ display:flex; gap: 1.4rem; padding-block: 1.6rem; border-bottom: 1px solid var(--line); }
.value-row:last-child{ border-bottom:0; }
.value-num{ font-family: var(--font-mono); font-size:1rem; color: var(--rust); font-weight:700; flex-shrink:0; width: 2.6rem; }
.value-row h3{ margin-bottom:.3em; font-size:1.15rem; }
.value-row p{ margin-bottom:0; font-size:.95rem; }

/* Timeline / mission list */
.check-list li{ position:relative; padding-inline-start: 1.9rem; margin-bottom: 1rem; font-size:1.02rem; color:#4A3D3A; }
.check-list li::before{
  content:""; position:absolute; inset-inline-start:0; top:.35em; width:.9rem; height:.9rem;
  background: var(--rust); clip-path: polygon(0 40%, 40% 40%, 40% 0, 60% 0, 60% 60%, 100% 60%, 100% 80%, 40% 80%, 40% 100%, 0 100%);
  transform: rotate(-45deg);
}

/* Team */
.team-card{ text-align:center; }
.team-avatar{
  width:112px; height:112px; max-width:112px; max-height:112px; flex-shrink:0; border-radius:50%; margin-inline:auto 0; margin-bottom:1.1rem;
  background: linear-gradient(135deg, var(--maroon), var(--rust));
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-family: var(--font-display); font-size:1.6rem; font-weight:700;
}
.team-card{ margin-inline:auto; }
.team-card .title{ font-family: var(--font-mono); font-size:.75rem; letter-spacing:.06em; text-transform:uppercase; color: var(--rust); margin-bottom:.7rem; display:block; }

/* Stats strip */
.stats-strip{ display:flex; flex-wrap:wrap; gap: clamp(1.5rem,4vw,3rem); }
.stats-strip div strong{ display:block; font-family: var(--font-display); font-size: clamp(1.8rem,3vw,2.4rem); color:#fff; }
.stats-strip div span{ font-size:.8rem; color:#E9C9C9; }

/* ==========================================================================
   Section head with inline "+" link (e.g. heading next to a "view all" link)
   ========================================================================== */
.section-head-flex{
  display:flex; align-items:flex-end; justify-content:space-between; gap:1.5rem; flex-wrap:wrap;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.section-head-flex .section-head{ margin-bottom:0; }
.plus-link{
  width:46px; height:46px; flex-shrink:0; border-radius:50%;
  border:1.5px solid var(--maroon); color: var(--maroon);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display); font-size:1.5rem; font-weight:700; line-height:1;
  transition: all .2s ease;
}
.plus-link:hover{ background: var(--maroon); color:#fff; transform: rotate(90deg); }

/* ==========================================================================
   Media Gallery (home page carousel)
   ========================================================================== */
.gallery-nav{ display:flex; gap:.6rem; justify-content:flex-end; margin-bottom:1.2rem; }
.gallery-nav button{
  width:44px; height:44px; flex-shrink:0; border-radius:50%; border:1.5px solid var(--line); background:#fff;
  display:flex; align-items:center; justify-content:center; color: var(--maroon);
  transition: all .2s ease;
}
.gallery-nav button:hover{ background: var(--maroon); color:#fff; border-color: var(--maroon); }
.gallery-nav svg{ width:18px; height:18px; max-width:18px; max-height:18px; flex-shrink:0; }
.gallery-track{
  display:flex; gap: 1.2rem; overflow-x:auto; scroll-snap-type:x mandatory;
  padding-block: .3rem 1rem; scrollbar-width:none; -ms-overflow-style:none;
}
.gallery-track::-webkit-scrollbar{ display:none; }
@supports not (gap: 1rem){
  .gallery-track > .gallery-item{ margin-inline-end: 1.2rem; }
}
.gallery-item{
  flex:0 0 clamp(230px, 30vw, 320px); width: clamp(230px, 30vw, 320px);
  height: clamp(172px, 22.5vw, 240px); scroll-snap-align:start;
  border:1px solid var(--line); border-radius: var(--radius); overflow:hidden;
  background:#fff; position:relative; aspect-ratio: 4/3;
}
.gallery-item img, .gallery-item video{ width:100%; height:100%; object-fit:cover; display:block; background: var(--mist); }
.gallery-item .gallery-caption{
  position:absolute; inset-inline:0; bottom:0; padding:.7em .9em;
  background: linear-gradient(to top, rgba(42,18,22,.78), transparent);
  color:#fff; font-family: var(--font-mono); font-size:.72rem; letter-spacing:.04em; text-transform:uppercase;
}
html[lang="ar"] .gallery-item .gallery-caption{ font-family: var(--font-display); letter-spacing:0; text-transform:none; }
.gallery-item .play-badge{
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
  background: rgba(42,18,22,.28); color:#fff; pointer-events:none;
}
.gallery-item .play-badge svg{ width:44px; height:44px; max-width:44px; max-height:44px; flex-shrink:0; }

/* ==========================================================================
   Track record / stats block (light section)
   ========================================================================== */
.stats-block{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 768px){ .stats-block{ grid-template-columns: 1fr; } }
.stats-block > div{
  text-align:center; padding: 2.2rem 1.2rem; background:#fff;
  border:1px solid var(--line); border-radius: var(--radius);
}
.stats-block strong{
  display:block; font-family: var(--font-display); font-weight:700;
  font-size: clamp(2.1rem, 4vw, 2.9rem); color: var(--maroon); margin-bottom:.25em;
}
.stats-block span{
  font-family: var(--font-mono); font-size:.78rem; letter-spacing:.06em; text-transform:uppercase; color: var(--muted);
}
html[lang="ar"] .stats-block span{ font-family: var(--font-display); letter-spacing:0; text-transform:none; font-size:.92rem; }

/* ==========================================================================
   Partners
   Fixed logo frames prevent intrinsic image dimensions from changing the
   card height or causing layout overlap on different hosting/browser engines.
   ========================================================================== */
.partners-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:1.1rem;
  align-items:stretch;
}
.partner-box{
  width:100%;
  height:160px;
  min-height:160px;
  min-width:0;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff;
  font-family:var(--font-display);
  font-weight:600;
  font-size:.95rem;
  color:var(--muted);
  padding:1rem;
  transition:all .2s ease;
}
.partner-box.filled{ color:var(--maroon-dark); border-color:var(--line); }
.partner-box.empty{ border-style:dashed; color:#B9ACA7; font-family:var(--font-mono); font-size:.7rem; letter-spacing:.06em; text-transform:uppercase; }
.partner-box:hover{ box-shadow:0 20px 40px -26px rgba(42,18,22,.3); transform:translateY(-3px); }
.partner-box img{
  display:block;
  width:auto;
  height:auto;
  max-width:90%;
  max-height:112px;
  object-fit:contain;
  flex:0 0 auto;
}
@media (max-width:980px){
  .partners-grid{ grid-template-columns:repeat(2, minmax(0, 1fr)); }
}
@media (max-width:600px){
  .partners-grid{ grid-template-columns:1fr; }
  .partner-box{ height:135px; min-height:135px; }
  .partner-box img{ max-height:95px; }
}

/* ==========================================================================
   Product category download / catalog CTA
   ========================================================================== */
.product-card .catalog-btn{ margin-top: 1.2rem; }

/* ==========================================================================
   About page — Organization & Hierarchy separation
   ========================================================================== */
.org-icon{ width:60px; height:60px; max-width:60px; max-height:60px; flex-shrink:0; margin-inline:auto; margin-bottom:1.2rem; color: var(--maroon); display:block; }
.section-split-divider{
  display:flex; align-items:center; gap:1rem; padding-block: 0;
}
.section-split-divider .line{ flex:1; height:1px; background: var(--line); }
.section-split-divider span{
  font-family: var(--font-mono); font-size:.72rem; letter-spacing:.1em; text-transform:uppercase; color: var(--muted);
  white-space:nowrap;
}
html[lang="ar"] .section-split-divider span{ font-family: var(--font-display); letter-spacing:0; text-transform:none; }

/* ==========================================================================
   Contact detail note chips
   ========================================================================== */
.pending{
  background: #FFF7EC; border:1px dashed var(--amber); color:#6B4A1E;
  padding:.15em .5em; border-radius:3px; font-size:.9em; font-style:italic;
}

.info-table{ width:100%; border-collapse:collapse; }
.info-table tr{ border-bottom:1px solid var(--line); }
.info-table td{ padding: .85rem .5rem; font-size:.95rem; vertical-align:top; }
.info-table td:first-child{ color: var(--maroon); font-weight:600; width:38%; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band{
  background: var(--maroon); color:#fff; border-radius: var(--radius);
  padding: clamp(2.4rem,5vw,3.6rem); text-align:center;
  position:relative; overflow:hidden;
}
.cta-band::after{
  content:""; position:absolute; inset-inline-end:-40px; top:-40px; width:180px; height:180px;
  background: var(--rust); opacity:.25; transform: rotate(45deg);
}
.cta-band h2{ color:#fff; margin-bottom:.4em; }
.cta-band p{ color:#E9C9C9; max-width:560px; margin:0 auto 1.6rem; }
.cta-band .hero-actions{ justify-content:center; margin-top:1.4rem; }

/* ==========================================================================
   Forms
   ========================================================================== */
.form-grid{ display:grid; grid-template-columns:1fr 1fr; gap: 1.2rem; }
@media (max-width:640px){ .form-grid{ grid-template-columns:1fr; } }
.field{ display:flex; flex-direction:column; gap:.4rem; }
.field.full{ grid-column: 1 / -1; }
.field label{ font-size:.85rem; font-weight:600; color: var(--maroon-dark); }
.field input, .field textarea{
  border:1.5px solid var(--line); border-radius: var(--radius); padding:.85em 1em;
  background:#fff; color:var(--ink); transition: border-color .2s ease;
}
.field input:focus, .field textarea:focus{ border-color: var(--rust); outline:none; }
.field textarea{ resize:vertical; min-height:130px; }
.form-note{ font-size:.8rem; color: var(--muted); margin-top:.9rem; }
#formStatus{ font-size:.9rem; margin-top:1rem; padding:.8em 1em; border-radius:var(--radius); display:none; }
#formStatus.show{ display:block; }
#formStatus.ok{ background:#EAF6EC; color:#1E5E2A; }
#formStatus.err{ background:#FCEAEA; color:#8A1F1F; }

/* Contact page layout */
.contact-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,4vw,3.5rem); align-items:start; }
@media (max-width: 900px){ .contact-grid{ grid-template-columns:1fr; } }
.contact-list li{ display:flex; gap:1rem; padding-block:1rem; border-bottom:1px solid var(--line); align-items:flex-start; }
.contact-list li:first-child{ padding-top:0; }
.contact-list .ico{ width:22px; height:22px; flex-shrink:0; color: var(--rust); margin-top:.15rem; }
.contact-list strong{ display:block; font-size:.78rem; text-transform:uppercase; letter-spacing:.05em; color: var(--muted); margin-bottom:.15rem; font-family: var(--font-mono); }
html[lang="ar"] .contact-list strong{ font-family: var(--font-display); letter-spacing:0; }
.map-wrap{ border:1px solid var(--line); border-radius: var(--radius); overflow:hidden; margin-top:1.6rem; }
.map-wrap iframe{ width:100%; height:340px; border:0; display:block; }

.social-row{ display:flex; gap:.8rem; margin-top:1.6rem; }
.social-row a{
  width:42px; height:42px; border-radius:50%; border:1.5px solid var(--line);
  display:flex; align-items:center; justify-content:center; color: var(--maroon);
  transition: all .2s ease;
}
.social-row a:hover{ background: var(--maroon); color:#fff; border-color: var(--maroon); }
.social-row svg{ width:19px; height:19px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{ background: var(--maroon-dark); color:#E9D9D5; }
.footer-top{ padding-block: clamp(3rem,6vw,4.5rem); }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; }
@media (max-width: 900px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-grid{ grid-template-columns: 1fr; } }
.footer-grid h4{ color:#fff; font-size:.85rem; text-transform:uppercase; letter-spacing:.08em; margin-bottom:1.1rem; font-family: var(--font-mono); }
html[lang="ar"] .footer-grid h4{ font-family: var(--font-display); letter-spacing:0; }
.footer-grid a{ display:block; color:#D9BFBB; font-size:.92rem; padding-block:.35rem; transition: color .15s ease; }
.footer-grid .social-row a{ display:flex; width:42px; height:42px; padding:0; align-items:center; justify-content:center; flex:0 0 42px; border-radius:50%; border:1.5px solid rgba(255,255,255,.35); color:#fff; background:transparent; }
.footer-grid .social-row a:hover{ background:#fff; color:var(--maroon); border-color:#fff; }
.footer-grid .social-row svg{ width:19px; height:19px; flex:0 0 19px; }
.footer-grid a:hover{ color:#fff; }
.footer-brand img{ height:38px; margin-bottom:1rem; filter: brightness(0) invert(1); opacity:.92; }
.footer-brand p{ color:#C9AEA9; font-size:.88rem; max-width:280px; }
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12); padding-block:1.4rem;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:.8rem;
  font-size:.8rem; color:#C9AEA9;
}
.footer-bottom a{ color:#C9AEA9; }
.footer-bottom a:hover{ color:#fff; }

/* ==========================================================================
   Page hero (interior pages)
   ========================================================================== */
.page-hero{
  padding-block: clamp(2.8rem,5vw,4rem) clamp(2rem,4vw,3rem);
  background: var(--offwhite);
  border-bottom: 1px solid var(--line);
}
.breadcrumb{ font-family: var(--font-mono); font-size:.78rem; color: var(--muted); margin-bottom:1rem; letter-spacing:.03em; }
html[lang="ar"] .breadcrumb{ font-family: var(--font-display); letter-spacing:0; }
.breadcrumb a{ color: var(--rust); }
.page-hero h1{ margin-bottom:.3em; }
.page-hero .lede{ max-width: 640px; }

/* Divider */
.divider{ height:1px; background: var(--line); border:0; margin-block: 0; }
.diag-divider{ height: 10px; background: repeating-linear-gradient(135deg, var(--rust) 0 3px, transparent 3px 22px); opacity:.5; }

/* Utility */
.mt-0{ margin-top:0 !important; }
.text-center{ text-align:center; }
.visually-hidden{ position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; }
.skip-link{
  position:absolute; inset-inline-start:-999px; top:0; background:var(--maroon); color:#fff; padding:.8em 1.2em; z-index:1000;
}
.skip-link:focus{ inset-inline-start: 1rem; top: 1rem; }


/* Contact form phone controls */
.phone-field select { min-width: 110px; }
.phone-number-field input { width: 100%; }
.field-help { display:block; margin-top:.4rem; font-size:.78rem; opacity:.7; }
button[type="submit"]:disabled { opacity:.6; cursor:wait; }
@media (min-width: 700px) { .phone-field { grid-column: span 1; } .phone-number-field { grid-column: span 1; } }

.form-fallback { display:flex; flex-wrap:wrap; gap:.7rem; margin-top:.8rem; }
.form-fallback[hidden] { display:none; }
.form-fallback a { display:inline-flex; align-items:center; padding:.55rem .8rem; border:1px solid rgba(0,0,0,.12); border-radius:8px; text-decoration:none; font-weight:600; }


/* Professional buyer-conversion additions */
.trust-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem}
.trust-card{padding:1.45rem;border:1px solid var(--line);background:#fff;border-radius:12px}
.trust-card .trust-num{display:inline-flex;width:34px;height:34px;align-items:center;justify-content:center;border-radius:50%;background:var(--mist);color:var(--maroon);font-family:var(--font-mono);font-size:.72rem;margin-bottom:.8rem}
.trust-card h3{font-size:1.02rem;margin-bottom:.45rem}
.trust-card p{font-size:.9rem;margin:0;color:var(--muted)}
.process-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:.9rem}
.process-step{position:relative;padding:1.35rem 1rem;border-top:2px solid var(--rust);background:#fff}
.process-step .step-no{font-family:var(--font-mono);font-size:.72rem;color:var(--rust);letter-spacing:.08em}
.process-step h3{font-size:.95rem;margin:.65rem 0 .45rem}
.process-step p{font-size:.84rem;margin:0;color:var(--muted)}
.logistics-panel{display:grid;grid-template-columns:1.05fr .95fr;gap:2rem;align-items:center}
.logistics-photo{border-radius:14px;overflow:hidden;min-height:360px;background:var(--mist)}
.logistics-photo img{width:100%;height:100%;object-fit:cover}
.logistics-list{display:grid;gap:.85rem;margin-top:1.3rem}
.logistics-list div{display:flex;gap:.8rem;align-items:flex-start}
.logistics-list strong{display:block;font-size:.94rem;margin-bottom:.12rem}
.logistics-list span{font-size:.85rem;color:var(--muted)}
.buyer-note{padding:1.3rem 1.45rem;border-left:3px solid var(--rust);background:var(--mist);border-radius:0 10px 10px 0}
.buyer-note p{margin:0;font-size:.9rem}
.faq-list{max-width:900px;margin:0 auto;display:grid;gap:.7rem}
.faq-list details{border:1px solid var(--line);border-radius:10px;background:#fff;padding:0 1.1rem}
.faq-list summary{cursor:pointer;list-style:none;padding:1rem 2rem 1rem 0;font-weight:600;position:relative}
.faq-list summary::-webkit-details-marker{display:none}
.faq-list summary::after{content:'+';position:absolute;right:0;top:.8rem;font-size:1.35rem;color:var(--rust);font-weight:400}
.faq-list details[open] summary::after{content:'−'}
.faq-list details p{font-size:.9rem;color:var(--muted);padding:0 0 1rem;margin:0}
.catalogue-callout{display:flex;justify-content:space-between;gap:1.5rem;align-items:center;padding:1.7rem 1.9rem;border:1px solid var(--line);border-radius:14px;background:#fff}
.catalogue-callout p{margin:0;color:var(--muted);font-size:.9rem;max-width:720px}
.catalogue-callout h3{margin-bottom:.35rem}
.quote-mini{display:grid;grid-template-columns:1fr auto;gap:1.3rem;align-items:center}
.quote-mini p{margin:0;color:var(--muted)}
.floating-contact{position:fixed;right:1.1rem;bottom:1.1rem;z-index:90;display:flex;gap:.55rem;align-items:center}
.floating-contact a{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;min-height:44px;padding:.72rem .95rem;border-radius:999px;text-decoration:none;font-weight:700;font-size:.82rem;box-shadow:0 12px 30px rgba(42,18,22,.2)}
.floating-contact .wa{background:#168a45;color:#fff}
.floating-contact .quote{background:var(--maroon);color:#fff}
.form-section-note{display:grid;grid-template-columns:repeat(3,1fr);gap:.8rem;margin:0 0 1.4rem}
.form-section-note div{padding:1rem;border:1px solid var(--line);border-radius:9px;background:var(--mist)}
.form-section-note strong{display:block;font-size:.78rem;text-transform:uppercase;letter-spacing:.05em;font-family:var(--font-mono);color:var(--rust);margin-bottom:.3rem}
.form-section-note span{font-size:.84rem;color:var(--muted)}
.field select{width:100%;padding:.82rem .9rem;border:1px solid var(--line);border-radius:8px;background:#fff;color:var(--ink);font:inherit}
.field select:focus{border-color:var(--rust);outline:none}
@media (max-width:1000px){.trust-grid{grid-template-columns:repeat(2,1fr)}.process-grid{grid-template-columns:repeat(3,1fr)}.logistics-panel{grid-template-columns:1fr}.catalogue-callout,.quote-mini{display:block}.catalogue-callout .btn,.quote-mini .btn{margin-top:1rem}.form-section-note{grid-template-columns:1fr}}
@media (max-width:700px){.trust-grid{grid-template-columns:1fr}.process-grid{grid-template-columns:1fr 1fr}.floating-contact{right:.7rem;bottom:.7rem}.floating-contact a{padding:.68rem .78rem}.floating-contact .quote{display:none}.logistics-photo{min-height:250px}.faq-list summary{padding-right:1.6rem}}

/* ==========================================================================
   Responsive image consistency
   Keep supplied photography proportional while giving each component a stable
   visual frame across desktop, tablet and mobile browsers.
   ========================================================================== */
.product-card .thumb, .gallery-item, .logistics-photo{
  contain: layout paint;
}
.product-card .thumb img, .gallery-item img, .gallery-item video, .logistics-photo img{
  max-width:100%;
  min-width:0;
}
.buyer-types-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:1rem;
}
.buyer-type{
  min-width:0;
  min-height:190px;
  padding:1.35rem;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff;
}
.buyer-type h3{ margin-top:.55rem; }
.buyer-type p{ margin-bottom:0; font-size:.92rem; color:var(--muted); }
html[lang="ar"] .buyer-type p{ font-size:.95rem; }
@media (max-width:980px){
  .buyer-types-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width:640px){
  .buyer-types-grid{ grid-template-columns:1fr; }
  .buyer-type{ min-height:0; }
  .product-card .thumb{ aspect-ratio:4/3; }
  .gallery-item{ width:min(86vw,320px); flex-basis:min(86vw,320px); height:auto; aspect-ratio:4/3; }
  .logistics-photo{ min-height:0; aspect-ratio:4/3; }
  .logistics-photo img{ height:100%; }
}

/* Final cross-platform media sizing safeguards */
img, video { max-inline-size:100%; }
.product-card .thumb, .gallery-item, .logistics-photo { width:100%; overflow:hidden; }
.product-card .thumb img, .gallery-item img, .gallery-item video, .logistics-photo img {
  inline-size:100%;
  max-inline-size:100%;
  display:block;
}
@media (max-width:640px){
  .hero-media img, .hero-media video { max-height:58vh; object-fit:cover; }
}

/* Final website refinement — media, buyer paths and contact routing */
.video-feature{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(280px,.65fr);gap:2rem;align-items:stretch;background:#fff;border:1px solid var(--line);border-radius:16px;overflow:hidden;box-shadow:0 14px 40px rgba(42,18,22,.06)}
.video-feature video{width:100%;height:100%;min-height:360px;object-fit:cover;background:#171717;display:block}
.video-feature-copy{padding:clamp(1.5rem,3vw,2.5rem);display:flex;flex-direction:column;justify-content:center}
.video-feature-copy h3{font-size:clamp(1.35rem,2vw,1.8rem);margin-bottom:.7rem}
.video-feature-copy p:not(.eyebrow){color:var(--muted);margin-bottom:1.3rem}
.video-feature-copy .btn{align-self:flex-start}
.inquiry-paths{display:grid;grid-template-columns:repeat(3,1fr);gap:.8rem;margin:0 0 1.4rem}
.inquiry-paths>div{padding:1rem;border:1px solid var(--line);border-radius:10px;background:var(--mist)}
.inquiry-paths span{display:block;font-family:var(--font-mono);font-size:.72rem;color:var(--rust);margin-bottom:.35rem}
.inquiry-paths strong{display:block;margin-bottom:.25rem}
.inquiry-paths p{font-size:.8rem;color:var(--muted);margin:0;line-height:1.45}
@media(max-width:900px){.video-feature{grid-template-columns:1fr}.video-feature video{min-height:260px}.inquiry-paths{grid-template-columns:1fr}}


/* ==========================================================================\n   Dedicated product pages — 2026-08\n   ========================================================================== */
.product-detail-hero{padding:clamp(2.5rem,5vw,4.7rem) 0;background:linear-gradient(180deg,var(--offwhite),#fff);border-bottom:1px solid var(--line)}
.product-detail-hero-grid{display:grid;grid-template-columns:minmax(0,.95fr) minmax(360px,1.05fr);gap:clamp(2rem,5vw,4.5rem);align-items:center}
.product-detail-copy h1{font-size:clamp(2.35rem,5vw,4.7rem);line-height:.98;margin:.18em 0 .35em;max-width:850px}
.product-detail-copy .lede{font-size:clamp(1rem,1.7vw,1.18rem);max-width:680px}
.product-hero-media{aspect-ratio:4/3;border-radius:18px;overflow:hidden;background:var(--mist);box-shadow:0 24px 58px -36px rgba(42,18,22,.45)}
.product-hero-media img{width:100%;height:100%;object-fit:cover;display:block}
.product-tags{display:flex;flex-wrap:wrap;gap:.45rem;margin-top:1.3rem}
.product-tags span{font-family:var(--font-mono);font-size:.68rem;letter-spacing:.04em;text-transform:uppercase;border:1px solid var(--line);background:#fff;padding:.48rem .66rem;border-radius:999px;color:var(--maroon)}
html[lang="ar"] .product-tags span{font-family:var(--font-display);letter-spacing:0;text-transform:none;font-size:.78rem}
.product-line-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:1rem}
.product-line-card{position:relative;padding:1.5rem;border:1px solid var(--line);border-radius:14px;background:#fff;min-height:210px;overflow:hidden}
.product-line-card .line-no{display:inline-flex;align-items:center;justify-content:center;width:36px;height:36px;border-radius:50%;background:var(--mist);color:var(--rust);font-family:var(--font-mono);font-size:.7rem;margin-bottom:.9rem}
.product-line-card h3{font-size:1.06rem;margin-bottom:.48rem}.product-line-card p{font-size:.88rem;color:var(--muted);margin:0}
.product-split{display:grid;grid-template-columns:minmax(0,.85fr) minmax(420px,1.15fr);gap:clamp(2rem,5vw,4rem);align-items:start}
.process-mini{display:grid;grid-template-columns:repeat(2,1fr);gap:.7rem;margin-top:1.4rem}.process-mini div{padding:1rem;border:1px solid var(--line);background:#fff;border-radius:10px}.process-mini b{font-family:var(--font-mono);font-size:.7rem;color:var(--rust);display:block;margin-bottom:.35rem}.process-mini strong{display:block;font-size:.92rem}.process-mini span{display:block;font-size:.78rem;color:var(--muted);margin-top:.12rem}
.spec-wrap{overflow-x:auto;border:1px solid var(--line);border-radius:13px;background:#fff}.spec-table{width:100%;border-collapse:collapse;min-width:520px}.spec-table th,.spec-table td{text-align:left;padding:.82rem .95rem;border-bottom:1px solid var(--line);vertical-align:top;font-size:.85rem}.spec-table thead th{background:var(--maroon);color:#fff;font-family:var(--font-mono);font-size:.72rem;text-transform:uppercase;letter-spacing:.05em}.spec-table tbody th{width:36%;color:var(--maroon);font-weight:700;background:#fbf9f7}.spec-table tr:last-child th,.spec-table tr:last-child td{border-bottom:0}html[dir="rtl"] .spec-table th,html[dir="rtl"] .spec-table td{text-align:right}html[lang="ar"] .spec-table thead th{font-family:var(--font-display);text-transform:none;letter-spacing:0;font-size:.82rem}
.spec-duo{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1.4rem;align-items:start}
.product-media-grid{display:grid;grid-template-columns:repeat(12,1fr);gap:1rem}.product-media-card{grid-column:span 4;margin:0;border-radius:14px;overflow:hidden;border:1px solid var(--line);background:#fff}.product-media-card:nth-child(4n+1){grid-column:span 6}.product-media-card:nth-child(4n+2){grid-column:span 6}.product-media-card img,.product-media-card video{width:100%;height:320px;object-fit:cover;display:block;background:#171717}.product-media-card figcaption{padding:.7rem .9rem;font-size:.78rem;color:var(--muted);border-top:1px solid var(--line)}
.product-quote{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:2rem;align-items:center}.product-quote h2{max-width:760px}.product-quote p{max-width:760px}.btn-light{background:#fff;color:var(--maroon);border:1px solid #fff}.btn-light:hover{background:var(--offwhite);border-color:var(--offwhite)}
.product-related{padding-top:clamp(2.8rem,5vw,4rem)}.related-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem}.related-grid a{display:flex;justify-content:space-between;gap:1rem;align-items:center;padding:1.15rem 1.25rem;border:1px solid var(--line);border-radius:12px;background:#fff;color:var(--ink)}.related-grid a:hover{border-color:var(--rust);transform:translateY(-2px)}.related-grid span{font-size:.78rem;color:var(--rust);white-space:nowrap}
@media(max-width:1050px){.product-detail-hero-grid,.product-split{grid-template-columns:1fr}.product-hero-media{max-width:780px}.product-line-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.spec-duo{grid-template-columns:1fr}.product-media-card,.product-media-card:nth-child(n){grid-column:span 6}.product-quote{grid-template-columns:1fr}.product-quote .btn{justify-self:start}}
@media(max-width:640px){.product-detail-hero-grid{gap:1.5rem}.product-detail-copy h1{font-size:clamp(2.05rem,10vw,3.15rem)}.product-hero-media{aspect-ratio:4/3}.product-line-grid,.related-grid{grid-template-columns:1fr}.product-line-card{min-height:0}.process-mini{grid-template-columns:1fr 1fr}.product-media-grid{display:grid;grid-template-columns:1fr}.product-media-card,.product-media-card:nth-child(n){grid-column:1}.product-media-card img,.product-media-card video{height:auto;aspect-ratio:4/3}.spec-table{min-width:470px}.product-quote .btn{width:100%}}


/* ==========================================================================
   Product-page refinement v14
   ========================================================================== */

/* Entire homepage product cards are direct navigation targets. */
.product-card-link{
  display:block;
  color:inherit;
  text-decoration:none;
  height:100%;
  cursor:pointer;
}
.product-card-link:focus-visible{
  outline:3px solid rgba(224,82,28,.35);
  outline-offset:4px;
}
.product-card-link .body{ color:var(--ink); }

/* Product range imagery: visual identifier first, specification text second. */
.product-line-card{
  padding-top:1rem;
}
.product-line-image{
  width:100%;
  aspect-ratio:16/10;
  object-fit:cover;
  display:block;
  border-radius:10px;
  margin-bottom:1rem;
  background:var(--mist);
}
.product-line-card .line-no{
  margin-bottom:.65rem;
}

/* Dedicated product galleries: one clean horizontal line. */
.product-gallery{ position:relative; }
.product-gallery .gallery-nav{ margin-bottom:.8rem; }
.product-gallery .gallery-track{
  gap:1rem;
  padding-bottom:.9rem;
  overscroll-behavior-inline:contain;
}
.product-gallery .gallery-item{
  flex:0 0 clamp(270px, 31vw, 390px);
  width:clamp(270px, 31vw, 390px);
  height:auto;
  aspect-ratio:4/3;
  cursor:zoom-in;
}
.product-gallery .gallery-item video{ cursor:default; }
.product-gallery .gallery-item img[data-lightbox]:focus-visible{
  outline:3px solid rgba(224,82,28,.45);
  outline-offset:-3px;
}

/* Sequential content should read as a flow, not isolated solid blocks. */
.process-mini{
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:1.3rem;
}
.process-mini > div{
  position:relative;
}
.process-mini > div:not(:last-child)::after{
  content:"→";
  position:absolute;
  inset-inline-end:-1.05rem;
  top:50%;
  transform:translateY(-50%);
  color:var(--rust);
  font-size:1.35rem;
  font-weight:700;
  z-index:2;
}
html[dir="rtl"] .process-mini > div:not(:last-child)::after{
  content:"←";
}

/* Homepage/service process flow. */
@media (min-width:1001px){
  .process-grid .process-step:not(:last-child)::after{
    content:"→";
    position:absolute;
    inset-inline-end:-.8rem;
    top:50%;
    transform:translateY(-50%);
    color:var(--rust);
    font-size:1.2rem;
    font-weight:700;
    z-index:2;
  }
  html[dir="rtl"] .process-grid .process-step:not(:last-child)::after{
    content:"←";
  }
}

/* Lightweight in-page image viewer. */
.media-lightbox{
  position:fixed;
  inset:0;
  z-index:5000;
  background:rgba(20,12,12,.92);
  display:none;
  align-items:center;
  justify-content:center;
  padding:clamp(1rem,4vw,3rem);
}
.media-lightbox.open{ display:flex; }
.media-lightbox img{
  max-width:min(94vw,1500px);
  max-height:88vh;
  width:auto;
  height:auto;
  object-fit:contain;
  border-radius:10px;
  box-shadow:0 25px 70px rgba(0,0,0,.4);
}
.media-lightbox button{
  position:absolute;
  top:1rem;
  inset-inline-end:1rem;
  width:38px;
  height:38px;
  border:1px solid rgba(255,255,255,.65);
  border-radius:50%;
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:1.4rem;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
}
.media-lightbox button:hover{ background:rgba(255,255,255,.18); }

@media (max-width:900px){
  .process-mini{
    grid-template-columns:1fr;
    gap:1.5rem;
  }
  .process-mini > div:not(:last-child)::after{
    content:"↓";
    inset-inline-end:auto;
    left:50%;
    top:auto;
    bottom:-1.3rem;
    transform:translateX(-50%);
  }
  html[dir="rtl"] .process-mini > div:not(:last-child)::after{
    content:"↓";
  }
}
@media (max-width:640px){
  .product-gallery .gallery-item{
    flex-basis:min(82vw,330px);
    width:min(82vw,330px);
  }
}


/* v15 — density, media, conversion & QA refinement */

/* A tighter rhythm: less slide-like whitespace while retaining hierarchy. */
:root{ --maxw:1140px; }
.section{ padding-block:clamp(3rem,5.2vw,4.8rem); }
.section-head{ max-width:650px; margin-bottom:clamp(1.35rem,2.5vw,2rem); }
.section-head .lede{ font-size:1.08rem; }

/* Homepage is deliberately denser than interior/product pages. */
.home-page main > .section{ padding-block:clamp(2.45rem,4.1vw,3.85rem); }
.home-page main > .section .container{ max-width:1120px; }
.home-page .section-head{ margin-bottom:clamp(1.15rem,2vw,1.65rem); }
.home-page .section-head h2{ margin-bottom:.38em; }
.home-page .section-head .lede{ font-size:1.04rem; line-height:1.55; }
.home-page .trust-grid,
.home-page .buyer-types-grid,
.home-page .process-grid,
.home-page .product-grid{ gap:.8rem; }
.home-page .trust-item,
.home-page .buyer-type,
.home-page .process-step{ padding:1.05rem; }
.home-page .buyer-type{ min-height:160px; }
.home-page .cta-band{ padding:clamp(1.9rem,3.4vw,2.8rem); }
.home-page .footer-top{ padding-block:clamp(2.4rem,4vw,3.4rem); }

/* Keep the hero premium; compress the content that follows it, not the first impression. */
.home-page .hero .container{ max-width:1180px; }

/* See Indoget in Action: cinematic, controlled height instead of a towering video. */
.home-page #media-video .video-feature{
  grid-template-columns:minmax(0,1.45fr) minmax(260px,.55fr);
  gap:0;
  max-width:1080px;
  margin-inline:auto;
}
.home-page #media-video .video-feature video{
  width:100%;
  height:auto;
  min-height:0;
  max-height:430px;
  aspect-ratio:16/9;
  object-fit:cover;
}
.home-page #media-video .video-feature-copy{ padding:clamp(1.2rem,2.5vw,1.9rem); }
.home-page #media-video .video-feature-copy p:not(.eyebrow){ margin-bottom:1rem; }

/* Contact page: same information, visually grouped and easier to scan. */
.contact-page .section{ padding-block:clamp(2.6rem,4.5vw,4rem); }
.contact-page .contact-grid{ grid-template-columns:minmax(280px,.78fr) minmax(0,1.22fr); gap:clamp(1.4rem,2.8vw,2.35rem); }
.contact-page .contact-form-card{ padding:clamp(1.25rem,2vw,1.65rem) !important; }
.contact-page .contact-form-card > h3{ margin-bottom:.85rem !important; }
.contact-page .form-intro-compact{ display:grid; grid-template-columns:1fr; gap:.7rem; margin-bottom:1rem; }
.contact-page .form-section-note{ display:flex; gap:.45rem; margin:0; }
.contact-page .form-section-note div{ flex:1; padding:.62rem .7rem; border-radius:7px; }
.contact-page .form-section-note strong{ font-size:.68rem; margin-bottom:.15rem; }
.contact-page .form-section-note span{ display:block; font-size:.74rem; line-height:1.35; }
.contact-page .inquiry-paths{ grid-template-columns:repeat(3,1fr); gap:.5rem; margin:0; }
.contact-page .inquiry-paths > div{ padding:.68rem .75rem; border-radius:7px; }
.contact-page .inquiry-paths span{ font-size:.64rem; margin-bottom:.15rem; }
.contact-page .inquiry-paths strong{ font-size:.84rem; margin-bottom:.12rem; }
.contact-page .inquiry-paths p{ font-size:.72rem; line-height:1.35; }
.contact-page .form-grid{ gap:.8rem .9rem; }
.contact-page .field{ gap:.28rem; }
.contact-page .field label{ font-size:.8rem; }
.contact-page .field input,
.contact-page .field textarea,
.contact-page .field select{ padding:.7rem .82rem; }
.contact-page .field textarea{ min-height:105px; }
.contact-page .form-note{ margin-top:.65rem; }
.contact-page .contact-list li{ padding-block:.72rem; }
.contact-page .map-wrap{ margin-top:1.1rem; }
.contact-page .map-wrap iframe{ height:290px; }
.contact-page .social-row{ margin-top:1.05rem; }

/* Product pages: uniform rhythm and a slightly calmer information density. */
.product-page .section{ padding-block:clamp(2.8rem,4.6vw,4.2rem); }
.product-page .product-detail-hero{ padding-block:clamp(2.2rem,4vw,3.7rem); }
.product-page .product-detail-hero-grid{ gap:clamp(1.6rem,3.6vw,3.2rem); }
.product-page .product-line-grid{ gap:.8rem; }
.product-page .product-line-card{ padding:1rem; min-height:0; }
.product-page .product-line-image{ margin-bottom:.78rem; }
.product-page .product-split{ gap:clamp(1.5rem,3.3vw,2.8rem); }
.product-page .product-related{ padding-top:clamp(2.25rem,3.6vw,3rem); }

/* Mobile conversion: product pages keep both Quote and WhatsApp visible. */
@media(max-width:700px){
  .product-page{ padding-bottom:64px; }
  .product-page .floating-contact{
    position:fixed;
    inset-inline:.65rem;
    bottom:.55rem;
    right:auto;
    left:auto;
    z-index:350;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:.45rem;
  }
  .product-page .floating-contact a,
  .product-page .floating-contact .quote{
    display:flex;
    justify-content:center;
    width:100%;
    min-height:46px;
    padding:.68rem .75rem;
    font-size:.78rem;
  }
}

/* Tablet/mobile adjustments for the compact video and contact form. */
@media(max-width:900px){
  .home-page #media-video .video-feature{ grid-template-columns:1fr; max-width:760px; }
  .home-page #media-video .video-feature video{ max-height:330px; }
  .contact-page .contact-grid{ grid-template-columns:1fr; }
  .contact-page .form-section-note{ display:grid; grid-template-columns:repeat(3,1fr); }
}
@media(max-width:640px){
  .section{ padding-block:2.7rem; }
  .home-page main > .section{ padding-block:2.15rem; }
  .home-page #media-video .video-feature video{ max-height:235px; }
  .contact-page .section{ padding-block:2.25rem; }
  .contact-page .form-section-note,
  .contact-page .inquiry-paths{ grid-template-columns:1fr; }
  .contact-page .form-section-note div,
  .contact-page .inquiry-paths > div{ padding:.58rem .68rem; }
  .contact-page .map-wrap iframe{ height:240px; }
  .product-page .section{ padding-block:2.45rem; }
}
