/* ==========================================================================
   ICRI — Iranian Concrete Repair Institute | International (EN) Site
   Design tokens
   ========================================================================== */
:root{
  --deep-blue:      #0e3b56;
  --deep-blue-dark: #082230;
  --deep-blue-mid:  #164f70;
  --gold:           #efa900;
  --gold-dark:      #c98a00;
  --steel:          #4a5560;
  --steel-light:    #8a95a0;
  --concrete-bg:    #f4f5f6;
  --concrete-bg-2:  #eceeef;
  --ink:            #1a2226;
  --ink-soft:       #52606b;
  --line:           #e1e4e6;
  --white:          #ffffff;
  --eco-green:      #1e7f4d;
  --alert-red:      #b5261f;

  --font-display: 'Archivo', 'Segoe UI', sans-serif;
  --font-body:    'Inter', 'Segoe UI', sans-serif;
  --font-mono:    'IBM Plex Mono', monospace;

  --radius: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 2px 8px rgba(14,59,86,0.06);
  --shadow-md: 0 10px 30px rgba(14,59,86,0.12);
  --shadow-lg: 0 20px 50px rgba(8,34,48,0.22);
  --container-max: 1280px;
}

/* ==========================================================================
   Base
   ========================================================================== */
*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; scroll-padding-top: 120px; }
body{
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6{
  font-family: var(--font-display);
  color: var(--deep-blue-dark);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0;
}
p{ margin: 0; }
a{ text-decoration: none; color: inherit; transition: all .2s ease; }
img{ max-width: 100%; display: block; }
ul{ margin:0; padding:0; list-style:none; }
::selection{ background: var(--gold); color: var(--deep-blue-dark); }

.container-xl{
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Eyebrow / label utility (blueprint / technical feel) */
.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.eyebrow::before{
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.section-pad{ padding: 96px 0; }
@media (max-width: 767.98px){ .section-pad{ padding: 64px 0; } }

.section-head{ max-width: 680px; margin-bottom: 56px; }
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2{ font-size: clamp(1.9rem, 3vw, 2.6rem); line-height: 1.15; }
.section-head p.lead-text{
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

.bg-concrete{ background: var(--concrete-bg); }
.bg-deep{ background: var(--deep-blue-dark); color: var(--white); }
.bg-deep h2, .bg-deep h3, .bg-deep h4{ color: var(--white); }

/* subtle blueprint grid texture used as ambient signature */
.blueprint-grid{
  position: relative;
}
.blueprint-grid::before{
  content:"";
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(239,169,0,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239,169,0,0.07) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events:none;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), rgba(0,0,0,0));
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-icri{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 14px 30px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor:pointer;
  transition: all .22s ease;
  white-space: nowrap;
}
.btn-gold{
  background: var(--gold);
  color: var(--deep-blue-dark);
  border-color: var(--gold);
}
.btn-gold:hover{ background: var(--gold-dark); border-color: var(--gold-dark); color: var(--deep-blue-dark); transform: translateY(-2px); }
.btn-outline-light{
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}
.btn-outline-light:hover{ background: rgba(255,255,255,0.12); border-color: var(--white); transform: translateY(-2px); }
.btn-outline-blue{
  background: transparent;
  border-color: var(--deep-blue);
  color: var(--deep-blue);
}
.btn-outline-blue:hover{ background: var(--deep-blue); color: var(--white); transform: translateY(-2px); }
.btn-block-full{ width:100%; }

/* ==========================================================================
   Top utility bar
   ========================================================================== */
.topbar{
  background: var(--deep-blue-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 8px 0;
}
.topbar a{ color: rgba(255,255,255,0.85); }
.topbar a:hover{ color: var(--gold); }
.topbar .divider{ opacity:.3; margin: 0 14px; }
.topbar .social-inline a{
  width: 26px; height: 26px; display:inline-flex; align-items:center; justify-content:center;
  border: 1px solid rgba(255,255,255,0.25); border-radius: 50%; margin-inline-start: 8px; font-size:.72rem;
}
.topbar .social-inline a:hover{ background: var(--gold); border-color: var(--gold); color: var(--deep-blue-dark); }
.topbar .lang-switch{
  font-family: var(--font-mono); font-size:.72rem; letter-spacing:.05em;
}
.topbar .lang-switch span{ opacity:.55; }
.topbar .lang-switch .active{ color: var(--gold); opacity:1; font-weight:700; }

/* ==========================================================================
   Navbar
   ========================================================================== */
.icri-navbar{
  background: var(--white);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 1000;
  transition: box-shadow .25s ease, padding .25s ease;
}
.icri-navbar.is-scrolled{ box-shadow: var(--shadow-md); padding: 8px 0; }
.icri-navbar .navbar-brand{ display:flex; align-items:center; gap:12px; }
.icri-navbar .navbar-brand img.custom-logo{
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-mark{
  width:48px; height:48px; border-radius: var(--radius);
  background: var(--deep-blue-dark);
  display:flex; align-items:center; justify-content:center;
  color: var(--gold); font-family: var(--font-display); font-weight:800; font-size:1.15rem;
  flex-shrink:0;
}
.brand-text .brand-name{ font-family: var(--font-display); font-weight:800; font-size:1.05rem; color: var(--deep-blue-dark); line-height:1.15; }
.brand-text .brand-sub{ font-family: var(--font-mono); font-size:.66rem; letter-spacing:.1em; text-transform:uppercase; color: var(--ink-soft); }

.icri-navbar .nav-link{
  font-weight: 600; font-size:.92rem; color: var(--ink); padding: 10px 16px !important;
  position: relative;
}
.icri-navbar .nav-link:hover, .icri-navbar .nav-link:focus{ color: var(--deep-blue); }
.icri-navbar .nav-link::after{
  content:""; position:absolute; left:16px; right:16px; bottom:4px; height:2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform .2s ease;
}
.icri-navbar .nav-link:hover::after{ transform: scaleX(1); }
.navbar-toggler{ border: 1px solid var(--line); padding: 8px 10px; }
.navbar-toggler:focus{ box-shadow: 0 0 0 3px rgba(239,169,0,.35); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position: relative;
  min-height: 92vh;
  display:flex; align-items:center;
  background:
    linear-gradient(115deg, rgba(8,34,48,0.94) 10%, rgba(14,59,86,0.82) 45%, rgba(14,59,86,0.55) 100%),
    url('https://icri.co/wp-content/uploads/2025/08/راهکار-ترمیم-بتن-1024x548.webp') center/cover no-repeat;
  color: var(--white);
  padding: 160px 0 100px;
  overflow:hidden;
}
.hero::after{
  content:"";
  position:absolute; inset:0;
  background-image: linear-gradient(rgba(239,169,0,0.09) 1px, transparent 1px), linear-gradient(90deg, rgba(239,169,0,0.09) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 80% 60% at 20% 30%, rgba(0,0,0,0.9), transparent 70%);
  pointer-events:none;
}
.hero .eyebrow{ color: var(--gold); }
.hero .eyebrow::before{ background: var(--gold); }
.hero h1{
  color: var(--white);
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.1;
  max-width: 780px;
}
.hero h1 span{ color: var(--gold); }
.hero .hero-lead{
  margin-top: 22px;
  font-size: 1.12rem;
  color: rgba(255,255,255,0.82);
  max-width: 620px;
  line-height: 1.7;
}
.hero .hero-cta{ margin-top: 38px; display:flex; gap:16px; flex-wrap:wrap; }

.hero-stats{
  position: relative;
  margin-top: 72px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  overflow:hidden;
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,0.04);
}
.hero-stats .stat{
  padding: 24px 20px;
  text-align:center;
  border-inline-end: 1px solid rgba(255,255,255,0.18);
}
.hero-stats .stat:last-child{ border-inline-end: none; }
.hero-stats .stat .num{
  font-family: var(--font-mono); font-weight:600; font-size: clamp(1.5rem,2.6vw,2.2rem); color: var(--gold);
  display:flex; align-items:baseline; justify-content:center; gap:2px;
}
.hero-stats .stat .lbl{ font-size:.78rem; color: rgba(255,255,255,0.75); margin-top:6px; letter-spacing:.03em; }
@media (max-width: 767.98px){
  .hero-stats{ grid-template-columns: repeat(2,1fr); }
  .hero-stats .stat:nth-child(2){ border-inline-end:none; }
  .hero-stats .stat{ border-bottom: 1px solid rgba(255,255,255,0.18); }
}

.scroll-cue{
  position:absolute; bottom: 26px; left:50%; transform:translateX(-50%);
  color: rgba(255,255,255,0.7); font-size: 1.3rem; animation: bounceY 2s infinite;
}
@keyframes bounceY{ 0%,100%{ transform:translate(-50%,0);} 50%{ transform:translate(-50%,8px);} }

/* ==========================================================================
   About
   ========================================================================== */
.about-media{ position:relative; }
.about-media img{ border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-media .badge-since{
  position:absolute; bottom:-28px; left:-28px;
  background: var(--gold); color: var(--deep-blue-dark);
  padding: 20px 24px; border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  font-family: var(--font-display); text-align:center;
  line-height:1;
}
.about-media .badge-since .yr{ font-size: 1.9rem; font-weight:800; }
.about-media .badge-since .txt{ font-family: var(--font-mono); font-size:.62rem; letter-spacing:.08em; text-transform:uppercase; margin-top:4px; }
@media (max-width: 767.98px){ .about-media .badge-since{ left: 12px; bottom:-20px; padding:14px 18px; } }

.about-copy p{ color: var(--ink-soft); font-size:1.02rem; }
.about-copy p + p{ margin-top:16px; }

.feature-list{ margin-top: 28px; display:grid; gap:16px; }
.feature-list li{
  display:flex; align-items:flex-start; gap:14px;
  padding: 16px; background: var(--concrete-bg); border-radius: var(--radius);
  border-inline-start: 3px solid var(--gold);
}
.feature-list .fi-icon{
  width:38px; height:38px; border-radius:50%; background: var(--deep-blue-dark); color: var(--gold);
  display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:.9rem;
}
.feature-list .fi-text strong{ display:block; color: var(--deep-blue-dark); font-size:.96rem; margin-bottom:2px; }
.feature-list .fi-text span{ color: var(--ink-soft); font-size:.86rem; }

/* ==========================================================================
   Services
   ========================================================================== */
.service-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position:relative;
  overflow:hidden;
}
.service-card::before{
  content:""; position:absolute; top:0; left:0; right:0; height:3px; background: var(--deep-blue);
  transform: scaleX(0); transform-origin:left; transition: transform .3s ease;
}
.service-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before{ transform: scaleX(1); background: var(--gold); }
.service-card .svc-num{
  font-family: var(--font-mono); font-size:.75rem; color: var(--steel-light); letter-spacing:.1em;
}
.service-card .svc-icon{
  width:56px; height:56px; border-radius: var(--radius);
  background: var(--concrete-bg); color: var(--deep-blue);
  display:flex; align-items:center; justify-content:center; font-size:1.4rem;
  margin: 14px 0 20px;
  transition: background .25s ease, color .25s ease;
}
.service-card:hover .svc-icon{ background: var(--deep-blue-dark); color: var(--gold); }
.service-card h3{ font-size:1.15rem; margin-bottom:10px; }
.service-card p{ color: var(--ink-soft); font-size:.92rem; }

/* ==========================================================================
   Product categories
   ========================================================================== */
.cat-card{
  display:flex; flex-direction:column; align-items:center; text-align:center; gap:12px;
  background: var(--white); border:1px solid var(--line); border-radius: var(--radius-lg);
  padding: 24px 14px; height:100%;
  transition: all .25s ease;
}
.cat-card:hover{ border-color: var(--gold); box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.cat-card .cat-img{
  width:64px; height:64px; border-radius:50%; overflow:hidden; background: var(--concrete-bg);
  display:flex; align-items:center; justify-content:center;
}
.cat-card .cat-img img{ width:100%; height:100%; object-fit:cover; }
.cat-card h4{ font-size:.86rem; font-weight:700; line-height:1.3; }

/* Featured products */
.product-card{
  background:var(--white); border:1px solid var(--line); border-radius: var(--radius-lg);
  overflow:hidden; height:100%; display:flex; flex-direction:column;
  transition: box-shadow .25s ease, transform .25s ease;
}
.product-card:hover{ box-shadow: var(--shadow-md); transform: translateY(-6px); }
.product-card .prod-media{
  aspect-ratio: 4/3; background: var(--concrete-bg); position:relative; overflow:hidden;
}
.product-card .prod-media img{ width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.product-card:hover .prod-media img{ transform: scale(1.06); }
.product-card .prod-tag{
  position:absolute; top:12px; left:12px;
  background: var(--deep-blue-dark); color: var(--gold);
  font-family: var(--font-mono); font-size:.65rem; letter-spacing:.06em;
  padding: 4px 10px; border-radius: 20px;
}
.product-card .prod-body{ padding: 20px 22px; display:flex; flex-direction:column; gap:10px; flex:1; }
.product-card .prod-code{ font-family: var(--font-mono); font-size:.72rem; color: var(--gold-dark); letter-spacing:.05em; }
.product-card h4{ font-size:1.02rem; }
.product-card p{ color: var(--ink-soft); font-size:.86rem; flex:1; }
.product-card .prod-link{ font-weight:700; font-size:.84rem; color: var(--deep-blue); display:inline-flex; align-items:center; gap:6px; }
.product-card .prod-link i{ transition: transform .2s ease; }
.product-card .prod-link:hover i{ transform: translateX(4px); }

/* ==========================================================================
   Single Product Page
   Deliberately built on its own CSS grid (not bare Bootstrap .row/.col-*)
   so the two-column layout is always correct regardless of anything else
   happening on the page. Still reuses the site's existing visual language:
   prod-media/prod-tag/prod-code, about-copy, hero-cta, btn-icri, eyebrow,
   product-card.
   ========================================================================== */
.product-breadcrumb{
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 56px;
}
.product-breadcrumb a{
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: .82rem; font-weight: 600;
  letter-spacing: .04em; color: var(--ink-soft);
}
.product-breadcrumb a:hover{ color: var(--gold-dark); }

/* Hero: media + info, always exactly two even columns on desktop */
.product-hero-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 991.98px){
  .product-hero-grid{ grid-template-columns: 1fr; gap: 32px; }
}

.product-hero-grid .prod-media{
  aspect-ratio: 1/1; background: var(--concrete-bg); position: relative;
  overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.product-hero-grid .prod-media img{ width:100%; height:100%; object-fit: cover; transition: transform .5s ease; }
.product-hero-grid .prod-media:hover img{ transform: scale(1.04); }
.product-hero-grid .prod-media-placeholder{
  width:100%; height:100%; display:flex; align-items:center; justify-content:center;
  color: var(--steel-light); font-size: 3.4rem; background: var(--concrete-bg-2);
}
.product-hero-grid .prod-tag{
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: var(--deep-blue-dark); color: var(--gold);
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .06em;
  padding: 6px 14px; border-radius: 20px;
}
.product-hero-grid .prod-code{
  display: inline-block;
  font-family: var(--font-mono); font-size: .82rem; color: var(--gold-dark);
  letter-spacing: .05em; background: var(--concrete-bg);
  padding: 5px 14px; border-radius: 20px;
}
.product-hero-grid h1{ font-size: clamp(1.8rem, 3.4vw, 2.6rem); line-height: 1.25; }
.product-hero-grid .lead-copy{
  margin-top: 18px; color: var(--ink-soft); font-size: 1.05rem; line-height: 1.85;
}

.term-chip-row{ display:flex; flex-wrap:wrap; gap:10px; margin-top:18px; }
.term-chip{
  display:inline-flex; align-items:center; font-family: var(--font-mono);
  font-size:.76rem; letter-spacing:.03em; color: var(--deep-blue);
  background: var(--concrete-bg); border:1px solid var(--line);
  padding: 6px 14px; border-radius: 20px; transition: all .2s ease;
}
.term-chip:hover{ background: var(--deep-blue-dark); border-color: var(--deep-blue-dark); color: var(--gold); }

/* Detail: description + quick-facts sidebar */
.product-detail-grid{
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 991.98px){
  .product-detail-grid{ grid-template-columns: 1fr; gap: 32px; }
}
.product-full-content p{ font-size: 1.03rem; line-height: 1.9; }

.product-facts-card{
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); padding: 28px; position: sticky; top: 120px;
}
.product-facts-card h3{ font-size: 1.05rem; margin-bottom: 18px; }
.facts-list{ display:grid; gap:16px; margin-bottom: 22px; }
.facts-list li{ display:flex; align-items:flex-start; gap:12px; }
.facts-list .fi-icon{
  width:36px; height:36px; border-radius:50%; background: var(--concrete-bg); color: var(--deep-blue-dark);
  display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:.85rem;
}
.facts-list .fi-text{ min-width:0; }
.facts-list .fi-text strong{ display:block; color: var(--deep-blue-dark); font-size:.9rem; margin-bottom:2px; }
.facts-list .fi-text span{ color: var(--ink-soft); font-size:.86rem; word-break: break-word; }
.facts-list .fi-text span a{ color: var(--gold-dark); font-weight:700; }
.facts-list .fi-text span a:hover{ text-decoration: underline; }

/* Related products */
.related-grid{
  display:grid; grid-template-columns: repeat(4, 1fr); gap:24px;
}
@media (max-width: 991.98px){ .related-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575.98px){ .related-grid{ grid-template-columns: 1fr; } }

/* ==========================================================================
   Industrial Projects
   ========================================================================== */
.project-tile{ position:relative; border-radius: var(--radius-lg); overflow:hidden; height: 100%; min-height:230px; }
.project-tile img{ width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.project-tile:hover img{ transform: scale(1.08); }
.project-tile .tile-overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 40%, rgba(8,34,48,0.92) 100%);
  display:flex; align-items:flex-end; padding: 18px;
}
.project-tile .tile-overlay span{ color: var(--white); font-weight:700; font-size:.92rem; }

.diff-card{
  display:flex; gap:18px; align-items:flex-start;
  padding: 26px; background: rgba(255,255,255,0.05); border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.12);
  height:100%;
}
.diff-card .diff-icon{
  width:46px; height:46px; border-radius:50%; background: var(--gold); color: var(--deep-blue-dark);
  display:flex; align-items:center; justify-content:center; font-size:1.05rem; flex-shrink:0;
}
.diff-card h4{ color:var(--white); font-size:1.02rem; margin-bottom:6px; }
.diff-card p{ color: rgba(255,255,255,0.72); font-size:.88rem; }

/* ==========================================================================
   Research & Innovation / Patents
   ========================================================================== */
.rd-media{ position:relative; border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-lg); }
.rd-media img{ width:100%; height:100%; object-fit:cover; }

.rd-list{ display:grid; gap:14px; margin-top:24px; }
.rd-list li{ display:flex; gap:14px; align-items:flex-start; }
.rd-list .rd-ico{
  width:34px; height:34px; border-radius:50%; background: var(--deep-blue); color:var(--white);
  display:flex; align-items:center; justify-content:center; font-size:.82rem; flex-shrink:0; margin-top:2px;
}
.rd-list strong{ display:block; color: var(--deep-blue-dark); font-size:.95rem; }
.rd-list span{ color: var(--ink-soft); font-size:.86rem; }

.tech-card{
  background: var(--white); border:1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 24px; height:100%; text-align:center;
  transition: all .25s ease;
}
.tech-card:hover{ border-color: var(--deep-blue); box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.tech-card .tech-code{
  font-family: var(--font-mono); font-weight:700; color:var(--deep-blue-dark); font-size:1.05rem; letter-spacing:.03em;
}
.tech-card .tech-code span{ color: var(--gold-dark); }
.tech-card p{ margin-top:10px; font-size:.84rem; color: var(--ink-soft); }

.csr-band{
  background: var(--white); border: 1px dashed var(--gold);
  border-radius: var(--radius-lg); padding: 30px; display:flex; gap:24px; align-items:center; margin-top:48px;
}
.csr-band img{ width:96px; height:96px; object-fit:cover; border-radius:50%; flex-shrink:0; }
.csr-band p{ color: var(--ink-soft); font-size:.92rem; margin:0; }
.csr-band strong{ color: var(--deep-blue-dark); }
@media (max-width: 575.98px){ .csr-band{ flex-direction:column; text-align:center; } }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-card{
  display:flex; gap:16px; align-items:flex-start;
  background: var(--white); border:1px solid var(--line); border-radius: var(--radius-lg);
  padding: 22px; height:100%;
}
.contact-card .cc-icon{
  width:46px; height:46px; border-radius: var(--radius); background: var(--deep-blue-dark); color: var(--gold);
  display:flex; align-items:center; justify-content:center; font-size:1.1rem; flex-shrink:0;
}
.contact-card h4{ font-size:.95rem; margin-bottom:6px; }
.contact-card p, .contact-card a{ font-size:.88rem; color: var(--ink-soft); display:block; }
.contact-card a:hover{ color: var(--deep-blue); }

.contact-form-wrap{
  background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 40px; border-top: 4px solid var(--gold);
}
.form-control-icri{
  width:100%; padding: 13px 16px; border: 1px solid var(--line); border-radius: var(--radius);
  font-family: var(--font-body); font-size:.94rem; background: var(--concrete-bg);
  transition: border-color .2s ease, background .2s ease;
}
.form-control-icri:focus{ outline:none; border-color: var(--deep-blue); background: var(--white); box-shadow: 0 0 0 3px rgba(14,59,86,.1); }
.form-label-icri{ font-size:.82rem; font-weight:700; color: var(--deep-blue-dark); margin-bottom:6px; display:block; }
.form-note{ font-size:.78rem; color: var(--ink-soft); margin-top:10px; }
.form-success{
  display:none; background:#eaf6ee; border:1px solid var(--eco-green); color:#155c33;
  padding: 14px 16px; border-radius: var(--radius); font-size:.88rem; margin-top:16px;
}
.form-success.show{ display:block; }

/* ==========================================================================
   Footer
   ========================================================================== */
.icri-footer{ background: var(--deep-blue-dark); color: rgba(255,255,255,0.72); }
.icri-footer .footer-top{ padding: 72px 0 40px; }
.icri-footer h5{ color: var(--white); font-size:1.02rem; margin-bottom:20px; }
.icri-footer p{ font-size:.9rem; line-height:1.75; color: rgba(255,255,255,0.62); }
.icri-footer .footer-links li{ margin-bottom:12px; }
.icri-footer .footer-links a{ font-size:.9rem; color: rgba(255,255,255,0.72); }
.icri-footer .footer-links a:hover{ color: var(--gold); padding-inline-start:4px; }
.icri-footer .footer-links a i{ font-size:.7rem; margin-inline-end:8px; color: var(--gold); }
.icri-footer .social-row a{
  width:38px; height:38px; border-radius:50%; border: 1px solid rgba(255,255,255,0.25);
  display:inline-flex; align-items:center; justify-content:center; margin-inline-end:10px; font-size:.9rem;
}
.icri-footer .social-row a:hover{ background: var(--gold); border-color: var(--gold); color: var(--deep-blue-dark); }
.footer-brand{ display:flex; align-items:center; gap:12px; margin-bottom:18px; }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 22px 0; font-size:.82rem; color: rgba(255,255,255,0.5);
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
}
.footer-bottom a{ color: rgba(255,255,255,0.7); }
.footer-bottom a:hover{ color: var(--gold); }
.newsletter-inline{ display:flex; margin-top:8px; }
.newsletter-inline input{
  flex:1; border:1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.06); color:#fff;
  padding: 11px 14px; border-radius: var(--radius) 0 0 var(--radius); font-size:.86rem;
}
.newsletter-inline input::placeholder{ color: rgba(255,255,255,0.45); }
.newsletter-inline input:focus{ outline:none; border-color: var(--gold); }
.newsletter-inline button{
  border: none; background: var(--gold); color: var(--deep-blue-dark); font-weight:700; padding: 0 18px;
  border-radius: 0 var(--radius) var(--radius) 0; cursor:pointer;
}

/* ==========================================================================
   Back to top
   ========================================================================== */
.back-to-top{
  position: fixed; bottom: 26px; right: 26px; z-index: 999;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--deep-blue-dark); color: var(--gold);
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-md);
  opacity:0; visibility:hidden; transform: translateY(10px);
  transition: all .3s ease; border:none; cursor:pointer; font-size:1.1rem;
}
.back-to-top.show{ opacity:1; visibility:visible; transform:translateY(0); }
.back-to-top:hover{ background: var(--gold); color: var(--deep-blue-dark); }

/* Reveal-on-scroll */
.reveal{ opacity:0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view{ opacity:1; transform:none; }

@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
  .scroll-cue{ animation:none; }
  *{ scroll-behavior:auto !important; }
}

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
  outline: 3px solid var(--gold); outline-offset: 2px;
}
