/* ==========================================================================
   SHRI RAM FIRE CONTROLLING SYSTEMS — Master Stylesheet
   Design system: Fire Red / Graphite / Steel on White
   Transformed from the original Gonutties dry-fruits theme.
   Layout system, responsive structure and components preserved & re-skinned.
   ========================================================================== */

:root{
  /* Brand palette (official logo: fire red + charcoal on white) */
  --red:            #c8102e;
  --red-dark:       #a40d26;
  --red-pale:       #fdeef0;
  --ember:          #e8590c;
  --charcoal:       #16181a;
  --charcoal-2:     #202326;
  --graphite:       #3a3e42;
  --steel:          #f5f7f9;
  --steel-2:        #eaeef2;
  --steel-3:        #dfe4e9;
  --white:          #ffffff;
  --ink:            #1a1c1e;
  --ink-soft:       #4a5056;
  --muted:          #7c838b;
  --line:           rgba(22,24,26,0.12);
  --line-strong:    rgba(22,24,26,0.22);
  --shadow-xs:      0 1px 3px rgba(22,24,26,0.05);
  --shadow-sm:      0 4px 16px rgba(22,24,26,0.06);
  --shadow-md:      0 12px 32px rgba(22,24,26,0.10);
  --shadow-lg:      0 24px 64px rgba(22,24,26,0.16);
  --shadow-xl:      0 40px 80px rgba(22,24,26,0.20);
  --radius-sm:      10px;
  --radius-md:      18px;
  --radius-lg:      28px;
  --radius-xl:      40px;
  --font-display:   'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --container:      1280px;
  --nav-h:          88px;
  --nav-h-scrolled: 72px;
  --space-xs:       8px;
  --space-sm:       16px;
  --space-md:       24px;
  --space-lg:       32px;
  --space-xl:       48px;
  --space-2xl:      64px;
  --space-3xl:      96px;
  --space-4xl:      128px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; overflow-x:hidden; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
}
body{
  margin:0; font-family:var(--font-body); color:var(--ink); background:var(--white);
  font-size:16px; line-height:1.7; -webkit-font-smoothing:antialiased; 
}
img{ max-width:100%; display:block; }
a{ text-decoration:none; color:inherit; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4,h5{ font-family:var(--font-display); font-weight:700; color:var(--charcoal); margin:0 0 .4em; line-height:1.2; letter-spacing:-0.02em; }
h1{ font-size:clamp(2.5rem,5vw,4rem); }
h2{ font-size:clamp(1.9rem,4vw,2.8rem); }
h3{ font-size:clamp(1.4rem,2.8vw,1.85rem); }
h4{ font-size:clamp(1.15rem,2.2vw,1.4rem); }
h5{ font-size:clamp(1rem,1.8vw,1.15rem); }
p{ margin:0 0 1em; color:var(--ink-soft); }
.container{ width:100%; max-width:var(--container); margin:0 auto; padding:0 var(--space-lg); }
@media (max-width:767px){ .container{ padding:0 var(--space-md); } }
section{ position:relative; }

/* ---------- Utility ---------- */
.eyebrow{ display:inline-flex; align-items:center; gap:.6em; font-family:var(--font-body); font-size:.72rem; letter-spacing:.2em; text-transform:uppercase; color:var(--red); font-weight:700; margin-bottom:1em; }
.eyebrow::before{ content:""; width:32px; height:2px; background:var(--red); display:inline-block; flex-shrink:0; }
.section-title{ font-size:clamp(1.9rem,4vw,2.9rem); margin-bottom:.4em; line-height:1.18; }
.section-lede{ max-width:680px; color:var(--ink-soft); font-size:1.05rem; line-height:1.7; }
.text-center{ text-align:center; margin-left:auto; margin-right:auto; }
.mt-0{margin-top:0} .mb-0{margin-bottom:0}
.section-pad{ padding:var(--space-3xl) 0; }
.section-pad-sm{ padding:var(--space-xl) 0; }
.section-pad-lg{ padding:var(--space-4xl) 0; }
.bg-steel{ background:var(--steel); }
.bg-charcoal{ background:var(--charcoal); color:#c9ced4; }
.bg-charcoal h1,.bg-charcoal h2,.bg-charcoal h3,.bg-charcoal h4{ color:var(--white); }
.bg-red{ background:var(--red); color:#ffe9ec; }
.bg-red h1,.bg-red h2,.bg-red h3{ color:#fff; }
.divider{ width:64px; height:2px; background:var(--red); margin:22px 0; border:0; }
.center .divider{ margin-left:auto; margin-right:auto; }
.badge-pill{ display:inline-flex; align-items:center; gap:.5em; background:var(--red-pale); color:var(--red-dark); font-size:.75rem; font-weight:700; letter-spacing:.05em; padding:.5em 1.1em; border-radius:100px; }
.eyebrow.on-dark{ color:#ff9aa8; } .eyebrow.on-dark::before{ background:#ff9aa8; }

/* Focus visible */
:focus-visible{ outline:3px solid rgba(200,16,46,.55); outline-offset:2px; border-radius:4px; }

/* ---------- Buttons ---------- */
.btn{ display:inline-flex; align-items:center; justify-content:center; gap:.6em; padding:15px 34px; border-radius:100px; font-family:var(--font-body); font-size:.92rem; font-weight:600; letter-spacing:.02em; cursor:pointer; border:1px solid transparent; transition:all .3s cubic-bezier(.4,0,.2,1); white-space:nowrap; position:relative; overflow:hidden; }
.btn::after{ content:""; position:absolute; inset:0; background:currentColor; opacity:0; transition:opacity .3s ease; }
.btn:hover::after{ opacity:.12; }
.btn:active{ transform:scale(.98); }
.btn-red{ background:var(--red); color:var(--white); box-shadow:var(--shadow-sm); }
.btn-red:hover{ background:var(--red-dark); box-shadow:var(--shadow-md); transform:translateY(-2px); }
.btn-outline{ background:transparent; border-color:currentColor; color:inherit; }
.btn-outline:hover{ background:var(--charcoal); color:var(--white); border-color:var(--charcoal); transform:translateY(-2px); }
.btn-outline-light{ background:transparent; border-color:rgba(255,255,255,.5); color:var(--white); }
.btn-outline-light:hover{ background:var(--white); color:var(--red-dark); border-color:var(--white); transform:translateY(-2px); }
.btn-dark{ background:var(--charcoal); color:var(--white); }
.btn-dark:hover{ background:var(--red); transform:translateY(-2px); }
.btn-sm{ padding:11px 24px; font-size:.82rem; }
.btn-lg{ padding:18px 42px; font-size:1rem; }
.btn-block{ width:100%; }
.btn-wa{ background:#25D366; color:#fff; }
.btn-wa:hover{ background:#1ebd59; transform:translateY(-2px); }

/* ---------- Navbar ---------- */
.site-header{ position:fixed; top:0; left:0; right:0; z-index:1000; height:var(--nav-h); display:flex; align-items:center; transition:height .3s cubic-bezier(.4,0,.2,1), box-shadow .3s ease, background .3s ease; background:rgba(255,255,255,.98); box-shadow:var(--shadow-xs); }
.site-header .container{ max-width:100%; padding:0 calc(var(--space-lg) / 2); }
.site-header.is-scrolled{ background:#ffffff; box-shadow:var(--shadow-sm); height:var(--nav-h-scrolled); }
/* Logo + nav form one combined group, centered together as a unit in the header; nav-actions (mobile toggle) is pulled out of the centering flow so it can still be pinned to the right when it becomes visible on smaller screens. */
.nav-wrap{ display:flex; align-items:center; justify-content:center; gap:var(--space-xl); width:100%; height:100%; position:relative; }
/* Below 1024px the nav becomes a fixed drawer (out of flow), which would leave the logo alone to be centered — pin it left instead, matching standard mobile header convention. */
@media (max-width:1024px){ .nav-wrap{ justify-content:flex-start; } }
.brand{ display:flex; align-items:center; gap:12px; font-family:var(--font-display); font-weight:800; font-size:1.15rem; color:var(--charcoal); letter-spacing:.01em; flex-shrink:0; }
.brand img{ height:64px; width:auto; object-fit:contain; filter:drop-shadow(0 2px 8px rgba(200,16,46,.18)); transition:transform .3s ease; }
.brand:hover img{ transform:scale(1.02); }
.main-nav{ display:flex; align-items:center; gap:var(--space-sm); }
.main-nav > ul{ display:flex; gap:var(--space-md); align-items:center; }
.main-nav a{ font-size:.88rem; font-weight:600; color:var(--ink); position:relative; padding:8px 4px; transition:color .25s ease; }
.main-nav a .nav-ico{ font-size:.8rem; margin-right:8px; color:var(--red); opacity:.85; transition:opacity .25s ease, transform .25s ease; }
.main-nav a:hover .nav-ico, .main-nav a.active .nav-ico{ opacity:1; transform:translateX(2px); }
.main-nav a::after{ content:""; position:absolute; left:0; bottom:0; width:0; height:2px; background:var(--red); border-radius:2px; transition:width .3s cubic-bezier(.4,0,.2,1); }
.main-nav a:hover::after, .main-nav a.active::after{ width:100%; }
.main-nav a.active{ color:var(--red); }
.has-mega{ position:relative; }
.has-mega > a{ display:flex; align-items:center; gap:.4em; }
.has-mega > a .fa-chevron-down{ font-size:.6em; transition:transform .3s ease; opacity:.7; }
.has-mega:hover > a .fa-chevron-down{ transform:rotate(180deg); opacity:1; }
.mega-menu{ position:absolute; top:calc(100% + 12px); left:50%; transform:translateX(-50%) translateY(8px); width:min(920px, calc(100vw - 48px)); background:var(--white); border-radius:var(--radius-lg); box-shadow:var(--shadow-xl); padding:var(--space-lg) var(--space-lg) 0; display:grid; grid-template-columns:repeat(3,1fr); gap:var(--space-sm) var(--space-xl); opacity:0; visibility:hidden; transition:opacity .25s ease, transform .25s ease, visibility .25s; pointer-events:none; border:1px solid var(--line); }
@media (min-width:1025px){
  .has-mega:hover .mega-menu{ opacity:1; visibility:visible; transform:translateX(-50%) translateY(0); pointer-events:auto; }
}
.mega-col{ padding-bottom:var(--space-md); }
.mega-col-head{ display:flex; align-items:flex-start; gap:12px; margin-bottom:var(--space-sm); padding-bottom:var(--space-sm); border-bottom:1px solid var(--line); }
.mega-col-ico{ width:42px; height:42px; flex-shrink:0; border-radius:12px; background:var(--red-pale); color:var(--red); display:flex; align-items:center; justify-content:center; font-size:1.05rem; }
.mega-col-head h5{ font-size:.68rem; letter-spacing:.12em; text-transform:uppercase; color:var(--charcoal); margin:0 0 4px; line-height:1.3; }
.mega-col-head p{ font-size:.72rem; color:var(--muted); margin:0; line-height:1.4; }
.mega-item{ display:flex; align-items:center; gap:12px; padding:9px 12px; border-radius:10px; transition:background .2s ease, transform .2s ease; }
.mega-item:hover{ background:var(--steel); transform:translateX(4px); }
.mega-ico{ width:36px; height:36px; flex-shrink:0; border-radius:10px; background:var(--steel); color:var(--red-dark); display:flex; align-items:center; justify-content:center; font-size:.9rem; transition:all .2s ease; }
.mega-item:hover .mega-ico{ background:var(--red); color:#fff; }
.mega-txt{ min-width:0; }
.mega-txt b{ display:block; font-size:.84rem; font-weight:600; color:var(--ink); line-height:1.35; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.mega-txt span{ display:block; font-size:.7rem; color:var(--muted); line-height:1.4; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.mega-item:hover .mega-txt b{ color:var(--red-dark); }
.mega-footer{ grid-column:1 / -1; border-top:1px solid var(--line); padding:var(--space-sm) 0; display:flex; justify-content:center; }
.mega-footer a{ font-size:.82rem; font-weight:700; color:var(--red); display:inline-flex; align-items:center; gap:.5em; transition:gap .25s ease; }
.mega-footer a:hover{ gap:.8em; }
.mega-feature{ grid-column:span 1; border-radius:var(--radius-md); overflow:hidden; position:relative; min-height:200px; }
.mega-feature img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform .6s ease; }
.mega-feature:hover img{ transform:scale(1.08); }
.mega-feature .cap{ position:absolute; inset:auto 0 0 0; padding:16px; background:linear-gradient(to top, rgba(22,24,26,.85), transparent); color:#fff; font-size:.82rem; font-weight:600; }
.nav-actions{ display:flex; align-items:center; gap:var(--space-sm); flex-shrink:0; position:absolute; right:0; top:50%; transform:translateY(-50%); }
.nav-cta{ display:none; }
.nav-icon-btn{ width:42px; height:42px; border-radius:50%; display:flex; align-items:center; justify-content:center; border:1px solid var(--line); color:var(--ink); transition:all .25s ease; }
.nav-icon-btn:hover{ color:var(--red); border-color:var(--red); background:var(--red-pale); }
.nav-toggle{ display:none; width:44px; height:44px; border-radius:50%; border:1px solid var(--line); align-items:center; justify-content:center; cursor:pointer; background:rgba(22,24,26,.06); color:var(--ink); font-size:1.05rem; flex-shrink:0; transition:all .25s ease; }
.nav-toggle.active{ background:var(--red); border-color:var(--red); color:#fff; }
.nav-toggle:hover:not(.active){ background:var(--steel); border-color:var(--line-strong); }

@media (min-width:1025px){
  .nav-cta{ display:inline-flex; }
}

/* Mobile nav - tablet (768px - 1024px): side drawer */
@media (max-width:1024px) and (min-width:768px){
  .site-header .brand img{ height:54px; width:auto; }

  .main-nav{ position:fixed; inset:0 0 0 auto; width:min(380px,86vw); max-width:100vw; background:var(--charcoal); flex-direction:column; align-items:flex-start; padding:calc(var(--nav-h-scrolled) + var(--space-xl)) var(--space-lg) var(--space-xl); transform:translateX(100%); transition:transform .4s cubic-bezier(.4,0,.2,1); overflow-y:auto; overflow-x:hidden; z-index:1001; }
  .main-nav.open{ transform:translateX(0); }
  .main-nav > ul{ flex-direction:column; align-items:flex-start; gap:0; width:100%; }
  .main-nav > ul > li{ width:100%; max-width:100%; border-bottom:1px solid rgba(255,255,255,.1); }
  .main-nav > ul > li > a{ color:#fff; padding:16px 4px; display:flex; align-items:center; justify-content:space-between; gap:10px; font-size:1rem; font-weight:600; }
  .main-nav > ul > li > a .nav-ico{ color:#ff9aa8; font-size:.9rem; }
  .main-nav > ul > li > a::after{ display:none; }
  .has-mega > a .mega-chevron{ transition:transform .3s ease; opacity:.8; }
  .has-mega.open > a .mega-chevron{ transform:rotate(180deg); color:#ff9aa8; opacity:1; }
  .mega-menu{ position:static !important; left:auto !important; top:auto !important; transform:none !important;
    opacity:1; visibility:visible; width:100%; max-width:100%; box-sizing:border-box;
    background:rgba(255,255,255,.06); border-radius:var(--radius-md); box-shadow:none; grid-template-columns:1fr;
    padding:var(--space-sm) var(--space-md) var(--space-md); margin:0 0 var(--space-md); display:none; gap:var(--space-xs); border:1px solid rgba(255,255,255,.08); }
  .has-mega.open .mega-menu{ display:grid; }
  .mega-feature{ display:none; }
  .mega-col{ padding:0; max-width:100%; }
  .mega-col-head{ display:flex; align-items:center; gap:12px; margin:var(--space-sm) 0 var(--space-xs); padding:var(--space-xs) 0; border-bottom:1px solid rgba(255,255,255,.1); }
  .mega-col-head:first-child{ margin-top:var(--space-xs); }
  .mega-col-ico{ width:36px; height:36px; border-radius:10px; background:rgba(255,154,168,.12); color:#ff9aa8; }
  .mega-col-head h5{ color:#ff9aa8; font-size:.66rem; letter-spacing:.12em; margin:0 0 2px; }
  .mega-col-head p{ color:rgba(255,255,255,.5); font-size:.7rem; margin:0; }
  .mega-item{ display:flex; align-items:center; gap:12px; padding:10px 8px; border-radius:10px; }
  .mega-item:hover{ background:rgba(255,255,255,.05); }
  .mega-ico{ width:32px; height:32px; flex-shrink:0; border-radius:9px; background:rgba(255,255,255,.08); color:#ff9aa8; }
  .mega-item:hover .mega-ico{ background:#ff9aa8; color:var(--charcoal); }
  .mega-txt{ min-width:0; }
  .mega-txt b{ color:#fff; font-size:.88rem; white-space:normal; }
  .mega-txt span{ color:rgba(255,255,255,.55); font-size:.72rem; white-space:normal; }
  .mega-item:hover .mega-txt b{ color:#fff; }
  .mega-footer{ grid-column:1 / -1; border-top:1px solid rgba(255,255,255,.1); padding:var(--space-xs) 0 var(--space-xs); justify-content:flex-start; }
  .mega-footer a{ color:#ff9aa8; }
  .nav-toggle{ display:flex; }
}

/* Mobile nav - phone (< 768px): full-screen overlay */
@media (max-width:767px){
  .site-header .brand img{ height:46px; width:auto; }

  .nav-overlay{ display:block !important; opacity:0; visibility:hidden; transition:opacity .3s ease, visibility .3s ease; }
  .nav-overlay.show{ opacity:1; visibility:visible; }

  .main-nav{ position:fixed; inset:0; width:100%; max-width:100%; background:var(--charcoal); flex-direction:column; align-items:flex-start; padding:calc(var(--nav-h-scrolled) + var(--space-xl)) var(--space-lg) var(--space-xl); transform:translateY(100%); transition:transform .4s cubic-bezier(.4,0,.2,1); overflow-y:auto; overflow-x:hidden; z-index:1001; display:flex; flex-direction:column; }
  .main-nav.open{ transform:translateY(0); }
  .main-nav::before{ content:""; position:absolute; top:var(--space-lg); right:var(--space-lg); width:32px; height:32px; background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff9aa8' stroke-width='2'%3E%3Cpath d='M18 6L6 18M6 6l12 12'/%3E%3C/svg%3E") center/contain no-repeat; cursor:pointer; opacity:.6; transition:opacity .2s; }
  .main-nav::before:hover{ opacity:1; }
  .main-nav::before{ display:block; }
  .main-nav[style*="translateY(0)"]::before{ display:none; }

  .main-nav > ul{ flex-direction:column; align-items:flex-start; gap:0; width:100%; margin-top:var(--space-md); }
  .main-nav > ul > li{ width:100%; max-width:100%; border-bottom:1px solid rgba(255,255,255,.08); }
  .main-nav > ul > li > a{ color:#fff; padding:18px 4px; display:flex; align-items:center; justify-content:space-between; gap:10px; font-size:1.05rem; font-weight:600; }
  .main-nav > ul > li > a .nav-ico{ color:#ff9aa8; font-size:1rem; flex-shrink:0; margin-right:var(--space-sm); }
  .main-nav > ul > li > a::after{ display:none; }
  .has-mega > a{ flex-direction:row; }
  .has-mega > a .mega-chevron{ transition:transform .3s ease; opacity:.7; font-size:.8rem; margin-left:auto; }
  .has-mega.open > a .mega-chevron{ transform:rotate(180deg); color:#ff9aa8; opacity:1; }
  .mega-menu{ position:static !important; left:auto !important; top:auto !important; transform:none !important;
    opacity:1; visibility:visible; width:100%; max-width:100%; box-sizing:border-box;
    background:rgba(255,255,255,.04); border-radius:var(--radius-md); box-shadow:none; grid-template-columns:1fr;
    padding:var(--space-sm) var(--space-md) var(--space-md); margin:0 0 var(--space-md); display:none; gap:var(--space-xs); border:1px solid rgba(255,255,255,.06); }
  .has-mega.open .mega-menu{ display:grid; animation:slideDown .3s ease; }
  @keyframes slideDown{ from{ opacity:0; transform:translateY(-10px); } to{ opacity:1; transform:none; } }
  .mega-feature{ display:none; }
  .mega-col{ padding:0; max-width:100%; }
  .mega-col-head{ display:flex; align-items:center; gap:12px; margin:var(--space-sm) 0 var(--space-xs); padding:var(--space-xs) 0; border-bottom:1px solid rgba(255,255,255,.08); }
  .mega-col-head:first-child{ margin-top:var(--space-xs); }
  .mega-col-ico{ width:36px; height:36px; border-radius:10px; background:rgba(255,154,168,.12); color:#ff9aa8; flex-shrink:0; }
  .mega-col-head h5{ color:#ff9aa8; font-size:.68rem; letter-spacing:.12em; margin:0 0 2px; }
  .mega-col-head p{ color:rgba(255,255,255,.5); font-size:.7rem; margin:0; }
  .mega-item{ display:flex; align-items:flex-start; gap:12px; padding:14px 12px; border-radius:10px; min-height:52px; transition:background .2s ease; }
  .mega-item:active{ background:rgba(255,255,255,.08); }
  .mega-ico{ width:40px; height:40px; flex-shrink:0; border-radius:10px; background:rgba(255,255,255,.08); color:#ff9aa8; display:flex; align-items:center; justify-content:center; font-size:.9rem; }
  .mega-item:active .mega-ico{ background:#ff9aa8; color:var(--charcoal); }
  .mega-txt{ min-width:0; flex:1; }
  .mega-txt b{ color:#fff; font-size:.9rem; white-space:normal; line-height:1.4; word-break:break-word; }
  .mega-txt span{ color:rgba(255,255,255,.55); font-size:.74rem; white-space:normal; line-height:1.4; word-break:break-word; }
  .mega-item:active .mega-txt b{ color:#fff; }
  .mega-footer{ grid-column:1 / -1; border-top:1px solid rgba(255,255,255,.08); padding:var(--space-sm) 0; justify-content:flex-start; }
  .mega-footer a{ color:#ff9aa8; font-size:.85rem; font-weight:600; display:inline-flex; align-items:center; gap:.4em; min-height:48px; padding:8px 0; }
  
  /* Visual hierarchy for mobile mega-menu */
  .mega-col{ border-left:2px solid rgba(255,154,168,.2); padding-left:var(--space-md); margin-left:var(--space-xs); }
  .mega-col:first-child{ border-left:none; margin-left:0; padding-left:0; }
  .mega-col-head{ margin-left:calc(-1 * var(--space-md)); padding-left:var(--space-md); }
  .mega-col:first-child .mega-col-head{ margin-left:0; padding-left:0; }
  .mega-item{ margin-left:calc(-1 * var(--space-md)); padding-left:calc(var(--space-md) + 12px); }
  .mega-col:first-child .mega-item{ margin-left:0; padding-left:12px; }
  .mega-footer{ margin-left:calc(-1 * var(--space-md)); padding-left:var(--space-md); }
  .mega-col:first-child .mega-footer{ margin-left:0; padding-left:0; }
  
  .nav-toggle{ display:flex; }
  .nav-cta{ display:none; }
}

/* ---------- Home hero slider ---------- */
.hero-slider{ position:relative; min-height:100vh; display:flex; align-items:center; overflow:hidden; background:var(--charcoal); color:#fff; }
.hero-track{ position:relative; width:100%; min-height:100vh; }
.hero-slide{ position:absolute; inset:0; display:flex; align-items:center; opacity:0; visibility:hidden; pointer-events:none; transition:opacity .9s cubic-bezier(.4,0,.2,1), visibility .9s; }
.hero-slide.is-active{ opacity:1; visibility:visible; pointer-events:auto; z-index:1; }
.hero-slide-inner{ display:grid; grid-template-columns:1.05fr .95fr; gap:var(--space-2xl); align-items:center; min-height:100vh; padding-top:calc(var(--nav-h) + var(--space-xl)); padding-bottom:var(--space-3xl); }
.hero-slide-media{ position:relative; height:min(580px, 66vh); border-radius:var(--radius-xl); overflow:hidden; box-shadow:var(--shadow-xl); background:var(--charcoal-2); }
.hero-slide-media::before{ content:""; position:absolute; inset:0; background:linear-gradient(135deg, rgba(200,16,46,.15) 0%, transparent 60%); pointer-events:none; z-index:1; }
.hero-slide-media img{ width:100%; height:100%; object-fit:cover; object-position:center; transition:transform 1.2s cubic-bezier(.4,0,.2,1); }
.hero-slide.is-active .hero-slide-media img{ transform:scale(1.02); }
.hero-slide-content{ position:relative; z-index:2; max-width:720px; }
.hero-eyebrow{ display:inline-flex; align-items:center; gap:.6em; font-size:.72rem; letter-spacing:.2em; text-transform:uppercase; color:#ff9aa8; font-weight:700; margin-bottom:1.1em; opacity:0; transform:translateY(20px); transition:opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1); }
.hero-eyebrow::before{ content:""; width:32px; height:2px; background:#ff9aa8; flex-shrink:0; }
.hero-title{ font-size:clamp(2.4rem,4.8vw,4.2rem); color:#fff; max-width:700px; margin-bottom:.5em; line-height:1.12; letter-spacing:-0.03em; opacity:0; transform:translateY(24px); transition:opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1); }
.hero-title em{ color:#ff9aa8; font-style:normal; }
.hero-sub{ max-width:580px; color:rgba(255,255,255,.82); font-size:1.05rem; line-height:1.8; margin-bottom:var(--space-xl); opacity:0; transform:translateY(24px); transition:opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1); }
.hero-actions{ display:flex; gap:var(--space-md); flex-wrap:wrap; opacity:0; transform:translateY(24px); transition:opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1); }
.hero-slide.is-active .hero-eyebrow{ opacity:1; transform:none; transition-delay:.25s; }
.hero-slide.is-active .hero-title{ opacity:1; transform:none; transition-delay:.4s; }
.hero-slide.is-active .hero-sub{ opacity:1; transform:none; transition-delay:.55s; }
.hero-slide.is-active .hero-actions{ opacity:1; transform:none; transition-delay:.7s; }

.hero-arrow{ position:absolute; top:50%; transform:translateY(-50%); z-index:5; width:56px; height:56px; border-radius:50%; border:1px solid rgba(255,255,255,.25); background:rgba(22,24,26,.4); color:#fff; display:flex; align-items:center; justify-content:center; font-size:1.05rem; cursor:pointer; transition:all .3s cubic-bezier(.4,0,.2,1); backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px); }
.hero-arrow:hover{ background:var(--red); border-color:var(--red); transform:translateY(-50%) scale(1.08); }
.hero-prev{ left:var(--space-lg); }
.hero-next{ right:var(--space-lg); }
.hero-dots{ position:absolute; bottom:var(--space-xl); left:50%; transform:translateX(-50%); z-index:5; display:flex; gap:10px; }
.hero-dot{ width:10px; height:10px; border-radius:50%; border:none; background:rgba(255,255,255,.35); cursor:pointer; padding:0; transition:all .3s cubic-bezier(.4,0,.2,1); }
.hero-dot.is-active{ width:32px; border-radius:6px; background:var(--red); }
.hero-dot:hover{ background:rgba(255,255,255,.7); }
.scroll-cue{ position:absolute; bottom:var(--space-xl); right:var(--space-xl); transform:none; z-index:4; color:rgba(255,255,255,.55); font-size:.65rem; letter-spacing:.2em; text-transform:uppercase; display:flex; flex-direction:column; align-items:center; gap:10px; opacity:0; animation:fadeInUp 1s ease 1.5s forwards; }
.scroll-cue span{ width:1px; height:36px; background:linear-gradient(180deg, rgba(255,255,255,.8), transparent); animation:scrollcue 2s infinite; }
@keyframes scrollcue{ 0%{transform:scaleY(0); transform-origin:top;} 50%{transform:scaleY(1); transform-origin:top;} 51%{transform-origin:bottom;} 100%{transform:scaleY(0); transform-origin:bottom;} }
@keyframes fadeInUp{ from{ opacity:0; transform:translateY(20px); } to{ opacity:1; transform:none; } }

/* Hero slider — tablet */
@media (max-width:1024px){
  .hero-slide-inner{ grid-template-columns:1fr 1fr; gap:var(--space-xl); padding-top:calc(var(--nav-h-scrolled) + var(--space-md)); }
  .hero-slide-media{ height:min(480px, 58vh); }
  .hero-title{ font-size:clamp(2rem,4vw,3.2rem); }
  .hero-arrow{ width:48px; height:48px; }
  .hero-prev{ left:var(--space-md); } .hero-next{ right:var(--space-md); }
}
/* Hero slider — mobile */
@media (max-width:767px){
  .hero-slider{ min-height:auto; }
  .hero-track{ min-height:0; }
  .hero-slide-inner{ grid-template-columns:1fr; gap:var(--space-lg); min-height:auto; padding-top:calc(var(--nav-h-scrolled) + var(--space-lg)); padding-bottom:var(--space-2xl); }
  .hero-slide{ position:relative; inset:auto; display:none; }
  .hero-slide.is-active{ display:flex; }
  .hero-slide-media{ order:2; height:min(320px, 40vh); border-radius:var(--radius-lg); }
  .hero-slide-content{ order:1; text-align:left; max-width:100%; }
  .hero-eyebrow{ justify-content:flex-start; }
  .hero-title{ font-size:clamp(1.8rem,6.5vw,2.5rem); text-align:left; }
  .hero-sub{ font-size:.98rem; margin-bottom:var(--space-lg); text-align:left; }
  .hero-actions{ justify-content:flex-start; gap:var(--space-sm); flex-wrap:wrap; }
  .hero-arrow{ width:44px; height:44px; top:auto; bottom:140px; transform:none; }
  .hero-prev{ left:var(--space-md); } .hero-next{ right:var(--space-md); }
  .hero-dots{ bottom:var(--space-lg); }
  .scroll-cue{ display:none; }
}
@media (prefers-reduced-motion: reduce){
  .hero-slide, .hero-slide .hero-eyebrow, .hero-slide .hero-title, .hero-slide .hero-sub, .hero-slide .hero-actions{ transition:none !important; transform:none !important; opacity:1 !important; }
  .hero-slide-media img{ transition:none !important; }
  .scroll-cue{ animation:none !important; opacity:1; }
  .scroll-cue span{ animation:none !important; }
}

/* Page (inner) hero for non-home pages */
.page-hero{ position:relative; min-height:54vh; display:flex; align-items:flex-end; background:var(--charcoal); overflow:hidden; }
.page-hero img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:.35; transition:transform 1.2s ease; }
.page-hero:hover img{ transform:scale(1.02); }
.page-hero::before{ content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(16,18,20,.3), rgba(16,18,20,.92)); }
.page-hero-content{ position:relative; z-index:2; color:#fff; padding:calc(var(--nav-h) + var(--space-2xl)) 0 var(--space-2xl); }
.page-hero .eyebrow{ color:#ff9aa8; }
.page-hero .eyebrow::before{ background:#ff9aa8; }
.page-hero h1{ color:#fff; font-size:clamp(2.3rem,5vw,3.6rem); max-width:820px; line-height:1.15; }
.breadcrumb{ display:flex; gap:8px; font-size:.82rem; color:rgba(255,255,255,.65); margin-top:var(--space-md); flex-wrap:wrap; }
.breadcrumb a{ color:rgba(255,255,255,.85); transition:color .2s ease; } .breadcrumb a:hover{ color:#ff9aa8; }
.breadcrumb .sep{ opacity:.5; }

/* ---------- Trust strip ---------- */
.trust-strip{ background:var(--charcoal); color:#c9ced4; padding:0; border-top:3px solid var(--red); }
.trust-strip .ts-inner{ display:flex; align-items:center; justify-content:space-between; gap:var(--space-lg); flex-wrap:wrap; padding:var(--space-md) 0; }
.trust-strip .ts-item{ display:flex; align-items:center; gap:var(--space-md); }
.trust-strip .ts-item i{ width:48px; height:48px; border-radius:14px; background:rgba(255,255,255,.08); color:#ff9aa8; display:flex; align-items:center; justify-content:center; font-size:1.1rem; flex-shrink:0; transition:all .3s ease; }
.trust-strip .ts-item:hover i{ background:var(--red); color:#fff; transform:scale(1.05); }
.trust-strip .ts-item b{ display:block; color:#fff; font-family:var(--font-display); font-size:.95rem; line-height:1.25; }
.trust-strip .ts-item span{ font-size:.75rem; color:#9aa1a8; }
@media (max-width:767px){
  .trust-strip .ts-inner{ display:grid; grid-template-columns:repeat(2,1fr); gap:var(--space-md); justify-items:flex-start; }
  .trust-strip .ts-item{ gap:var(--space-sm); }
  .trust-strip .ts-item i{ width:40px; height:40px; border-radius:10px; font-size:1rem; }
  .trust-strip .ts-item b{ font-size:.85rem; }
  .trust-strip .ts-item span{ font-size:.7rem; }
}

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

.cat-card{ position:relative; border-radius:var(--radius-xl); overflow:hidden; min-height:440px; display:flex; align-items:flex-end; box-shadow:var(--shadow-lg); transition:transform .5s cubic-bezier(.4,0,.2,1), box-shadow .5s ease; }
.cat-card:hover{ transform:translateY(-10px); box-shadow:var(--shadow-xl); }
.cat-card img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform 1s cubic-bezier(.4,0,.2,1); }
.cat-card:hover img{ transform:scale(1.06); }
.cat-card::before{ content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(16,18,20,0) 25%, rgba(16,18,20,.94) 100%); }
.cat-card-body{ position:relative; z-index:2; padding:var(--space-xl); color:#fff; width:100%; }
.cat-card-body h3{ color:#fff; margin-bottom:.3em; font-size:1.5rem; }
.cat-card-body p{ color:rgba(255,255,255,.72); font-size:.9rem; margin-bottom:1.2em; line-height:1.6; }
.cat-card-body .link-arrow{ color:#ff9aa8; font-weight:700; font-size:.85rem; display:inline-flex; align-items:center; gap:.4em; transition:gap .25s ease; }
.cat-card-body .link-arrow:hover{ gap:.7em; }

.product-card{ background:var(--white); border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-sm); transition:all .4s cubic-bezier(.4,0,.2,1); display:flex; flex-direction:column; height:100%; border:1px solid rgba(22,24,26,.05); }
.product-card:hover{ box-shadow:var(--shadow-xl); transform:translateY(-8px); border-color:rgba(200,16,46,.18); }
.product-card .thumb{ position:relative; aspect-ratio:4/3; overflow:hidden; background:var(--steel); }
.product-card .thumb img{ width:100%; height:100%; object-fit:contain; padding:14px; transition:transform .7s cubic-bezier(.4,0,.2,1); }
.product-card:hover .thumb img{ transform:scale(1.05); }
.product-card .thumb .tag{ position:absolute; top:14px; left:14px; background:var(--red); color:#fff; font-size:.64rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; padding:6px 14px; border-radius:100px; box-shadow:var(--shadow-sm); }
.product-card .body{ padding:var(--space-lg) var(--space-lg) var(--space-xl); flex:1; display:flex; flex-direction:column; }
.product-card .cat-label{ font-size:.65rem; letter-spacing:.1em; text-transform:uppercase; color:var(--red); font-weight:700; margin-bottom:.6em; }
.product-card h3{ font-size:1.2rem; margin-bottom:.4em; line-height:1.3; }
.product-card h3 a{ transition:color .2s ease; }
.product-card h3 a:hover{ color:var(--red); }
.product-card p{ font-size:.86rem; color:var(--ink-soft); flex:1; line-height:1.6; }
.product-card .card-foot{ display:flex; align-items:center; justify-content:space-between; margin-top:var(--space-md); padding-top:var(--space-md); border-top:1px solid var(--line); }
.product-card .card-foot .weights{ font-size:.72rem; color:var(--muted); font-weight:500; }
.product-card .card-foot a{ font-size:.8rem; font-weight:700; color:var(--charcoal); display:flex; align-items:center; gap:.4em; transition:gap .25s ease, color .2s ease; }
.product-card .card-foot a:hover{ color:var(--red); gap:.6em; }

.feature-card{ background:var(--white); border-radius:var(--radius-lg); padding:var(--space-xl) var(--space-lg); box-shadow:var(--shadow-sm); text-align:left; transition:all .35s ease; height:100%; border:1px solid rgba(22,24,26,.05); }
.feature-card:hover{ box-shadow:var(--shadow-lg); transform:translateY(-8px); border-color:rgba(200,16,46,.2); }
.feature-card .ico{ width:64px; height:64px; border-radius:18px; background:var(--red-pale); color:var(--red); display:flex; align-items:center; justify-content:center; font-size:1.5rem; margin-bottom:var(--space-lg); transition:all .3s ease; }
.feature-card:hover .ico{ background:var(--red); color:#fff; transform:scale(1.05); }
.feature-card h3{ font-size:1.2rem; margin-bottom:.6em; }
.feature-card p{ font-size:.9rem; color:var(--ink-soft); margin-bottom:0; line-height:1.7; }

.stat-card{ text-align:center; padding:var(--space-lg) var(--space-md); }
.stat-card b{ display:block; font-family:var(--font-display); font-size:clamp(2.2rem,4vw,3rem); line-height:1.1; color:var(--charcoal); font-weight:800; }
.stat-card b .counter, .stat-card b .counter + *{ font-size:inherit; font-weight:inherit; }
.stat-card b span{ font-size:inherit !important; }
.stat-card > span{ font-size:.8rem; letter-spacing:.08em; text-transform:uppercase; color:var(--red); font-weight:700; display:block; margin-top:.3em; }

.process-step{ display:flex; gap:var(--space-lg); padding:var(--space-lg) 0; border-bottom:1px solid var(--line); }
.process-step:last-child{ border-bottom:0; }
.process-step .num{ font-family:var(--font-display); font-size:clamp(2.4rem,4vw,3rem); color:transparent; font-weight:800; min-width:80px; -webkit-text-stroke:1.5px var(--red); line-height:1; }
.process-step h4{ margin-bottom:.4em; font-size:1.2rem; }
.process-step p{ color:var(--ink-soft); font-size:.92rem; margin-bottom:0; line-height:1.7; }

.testi-card, .trust-card{ background:var(--white); border-radius:var(--radius-lg); padding:var(--space-xl); box-shadow:var(--shadow-sm); height:100%; border:1px solid rgba(22,24,26,.05); transition:all .35s ease; }
.testi-card:hover, .trust-card:hover{ box-shadow:var(--shadow-md); transform:translateY(-6px); border-color:rgba(200,16,46,.15); }
.trust-card .ico{ width:56px; height:56px; border-radius:16px; background:var(--charcoal); color:#ff9aa8; display:flex; align-items:center; justify-content:center; margin-bottom:var(--space-lg); font-size:1.3rem; transition:all .3s ease; }
.trust-card:hover .ico{ background:var(--red); color:#fff; }
.trust-card h4{ font-size:1.1rem; margin-bottom:.5em; }
.trust-card p{ font-size:.9rem; color:var(--ink-soft); margin-bottom:0; line-height:1.7; }

.blog-card{ background:var(--white); border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-sm); transition:all .35s ease; border:1px solid rgba(22,24,26,.05); }
.blog-card:hover{ box-shadow:var(--shadow-lg); transform:translateY(-8px); }
.blog-card .thumb{ aspect-ratio:16/10; overflow:hidden; }
.blog-card .thumb img{ width:100%; height:100%; object-fit:cover; transition:transform .7s cubic-bezier(.4,0,.2,1); }
.blog-card:hover .thumb img{ transform:scale(1.05); }
.blog-card .body{ padding:var(--space-lg); }
.blog-card .meta{ font-size:.7rem; letter-spacing:.05em; text-transform:uppercase; color:var(--red); font-weight:700; margin-bottom:.7em; }
.blog-card h3{ font-size:1.2rem; margin-bottom:.5em; }
.blog-card p{ font-size:.88rem; color:var(--ink-soft); margin-bottom:var(--space-md); line-height:1.7; }
.blog-card .readmore{ font-size:.8rem; font-weight:700; color:var(--charcoal); display:inline-flex; align-items:center; gap:.4em; transition:gap .25s ease, color .2s ease; }
.blog-card .readmore:hover{ color:var(--red); gap:.6em; }

/* Solution cards */
.solution-card{ background:var(--white); border-radius:var(--radius-lg); padding:var(--space-xl) var(--space-lg); box-shadow:var(--shadow-sm); border:1px solid rgba(22,24,26,.05); border-top:4px solid var(--red); height:100%; transition:all .35s ease; }
.solution-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-lg); border-top-color:var(--red-dark); }
.solution-card .ico{ width:60px; height:60px; border-radius:16px; background:var(--red-pale); color:var(--red); display:flex; align-items:center; justify-content:center; font-size:1.4rem; margin-bottom:var(--space-lg); transition:all .3s ease; }
.solution-card:hover .ico{ background:var(--red); color:#fff; transform:scale(1.05); }
.solution-card h3{ font-size:1.2rem; margin-bottom:.5em; }
.solution-card p{ font-size:.9rem; color:var(--ink-soft); margin-bottom:var(--space-md); line-height:1.7; }
.solution-card a{ font-size:.82rem; font-weight:700; color:var(--red); display:inline-flex; align-items:center; gap:.4em; transition:gap .25s ease; }
.solution-card a:hover{ gap:.7em; }

/* Industry cards */
.industry-card{ position:relative; border-radius:var(--radius-lg); overflow:hidden; min-height:340px; display:flex; align-items:flex-end; box-shadow:var(--shadow-lg); }
.industry-card img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform .8s cubic-bezier(.4,0,.2,1); }
.industry-card:hover img{ transform:scale(1.05); }
.industry-card::before{ content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(16,18,20,0) 0%, rgba(16,18,20,.6) 50%, rgba(16,18,20,.95) 100%); }
.industry-card .ic-body{ position:relative; z-index:2; padding:var(--space-lg); color:#fff; width:100%; background:rgba(0,0,0,.25); backdrop-filter:blur(2px); -webkit-backdrop-filter:blur(2px); border-radius:0 0 var(--radius-lg) var(--radius-lg); }
.industry-card h3{ color:#fff; font-size:1.3rem; margin-bottom:.2em; text-shadow:0 1px 4px rgba(0,0,0,.5); }
.industry-card p{ color:rgba(255,255,255,.85); font-size:.86rem; margin-bottom:.8em; line-height:1.6; text-shadow:0 1px 3px rgba(0,0,0,.4); }
.industry-card a{ color:#ff9aa8; font-size:.82rem; font-weight:700; display:inline-flex; align-items:center; gap:.4em; transition:gap .25s ease; }
.industry-card a:hover{ gap:.7em; }

/* Client wall */
.client-wall{ display:grid; grid-template-columns:repeat(5,1fr); gap:var(--space-md); }
.client-tile{ background:var(--white); border:1px solid var(--line); border-radius:var(--radius-md); padding:var(--space-md) var(--space-sm); text-align:center; font-size:.8rem; font-weight:600; color:var(--graphite); display:flex; align-items:center; justify-content:center; min-height:72px; transition:all .3s ease; line-height:1.35; }
.client-tile:hover{ border-color:var(--red); color:var(--red-dark); transform:translateY(-4px); box-shadow:var(--shadow-md); }
@media (max-width:1200px){ .client-wall{ grid-template-columns:repeat(4,1fr);} }
@media (max-width:960px){ .client-wall{ grid-template-columns:repeat(3,1fr);} }
@media (max-width:640px){ .client-wall{ grid-template-columns:repeat(2,1fr);} }

/* Project deliverable cards */
.project-card{ background:var(--white); border:1px solid rgba(22,24,26,.05); border-radius:var(--radius-lg); padding:var(--space-xl) var(--space-lg); box-shadow:var(--shadow-sm); height:100%; transition:all .35s ease; }
.project-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-lg); border-color:rgba(200,16,46,.2); }
.project-card .ico{ width:58px; height:58px; border-radius:16px; background:var(--red-pale); color:var(--red); display:flex; align-items:center; justify-content:center; font-size:1.4rem; margin-bottom:var(--space-lg); transition:all .3s ease; }
.project-card:hover .ico{ background:var(--red); color:#fff; }
.project-card h3{ font-size:1.1rem; margin-bottom:.4em; }
.project-card p{ font-size:.88rem; color:var(--ink-soft); margin-bottom:0; line-height:1.7; }

/* Certificate cards */
.cert-card{ background:var(--white); border-radius:var(--radius-md); overflow:hidden; box-shadow:var(--shadow-sm); border:1px solid rgba(22,24,26,.05); }
.cert-card .img{ aspect-ratio:4/5; overflow:hidden; background:var(--steel); }
.cert-card .img img{ width:100%; height:100%; object-fit:contain; transition:transform .5s ease; cursor:zoom-in; }
.cert-card:hover .img img{ transform:scale(1.03); }
.cert-card .body{ padding:22px; }
.cert-card h3{ font-size:1.05rem; }
.cert-card p{ font-size:.85rem; color:#5b6168; margin-bottom:.5em; }

/* ---------- Gallery ---------- */
.gallery-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.gallery-item{ position:relative; border-radius:var(--radius-sm); overflow:hidden; cursor:pointer; aspect-ratio:1/1; }
.gallery-item img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.gallery-item:hover img{ transform:scale(1.12); }
.gallery-item::after{ content:"\f00e"; font-family:"Font Awesome 6 Free"; font-weight:900; position:absolute; inset:0; display:flex; align-items:center; justify-content:center; color:#fff; font-size:1.3rem; background:rgba(22,24,26,0); transition:background .3s ease; opacity:0; }
.gallery-item:hover::after{ background:rgba(200,16,46,.55); opacity:1; }
.gallery-item.tall{ grid-row:span 2; }
@media (max-width:960px){ .gallery-grid{ grid-template-columns:repeat(2,1fr);} }

/* Related products: compact CSS scroll-snap slider (no JS library dependency) */
.related-slider-wrap{ position:relative; }
.related-slider{ display:flex; gap:22px; overflow-x:auto; scroll-snap-type:x mandatory; scroll-behavior:smooth; padding-bottom:10px; -ms-overflow-style:none; scrollbar-width:none; }
.related-slider::-webkit-scrollbar{ display:none; height:0; }
.related-slide{ flex:0 0 260px; max-width:260px; scroll-snap-align:start; }
.related-slide .product-card{ height:100%; }
@media (max-width:640px){ .related-slide{ flex-basis:220px; max-width:220px; } }

/* Home page boxy gallery */
.home-gallery-grid{ display:flex; flex-wrap:wrap; justify-content:center; gap:22px; margin-top:8px; }
.home-gallery-grid .home-gallery-item{ width:300px; height:300px; flex:0 0 300px; border-radius:var(--radius-md); box-shadow:var(--shadow-sm); }
@media (max-width:1024px){ .home-gallery-grid .home-gallery-item{ width:260px; height:260px; flex-basis:260px; } }
@media (max-width:640px){ .home-gallery-grid .home-gallery-item{ width:100%; max-width:340px; height:300px; flex-basis:100%; } }

/* ---------- Forms ---------- */
.form-group{ margin-bottom:var(--space-lg); }
.form-group label{ display:block; font-size:.8rem; font-weight:600; margin-bottom:var(--space-xs); color:var(--charcoal); letter-spacing:.02em; }
.form-control{ width:100%; padding:15px 18px; border:1px solid var(--line); border-radius:var(--radius-sm); background:var(--white); font-family:var(--font-body); font-size:.95rem; color:var(--ink); transition:all .25s ease; }
.form-control::placeholder{ color:var(--muted); opacity:.6; }
.form-control:hover{ border-color:var(--line-strong); }
.form-control:focus{ outline:none; border-color:var(--red); box-shadow:0 0 0 4px rgba(200,16,46,.12); }
textarea.form-control{ resize:vertical; min-height:140px; }
.form-group.has-error .form-control{ border-color:var(--red); }
.form-error{ display:none; font-size:.78rem; color:var(--red); margin-top:var(--space-xs); font-weight:500; }
.form-group.has-error .form-error{ display:block; }
.form-note{ display:none; font-size:.85rem; color:var(--red); font-weight:600; margin-top:var(--space-sm); padding:var(--space-sm) var(--space-md); background:var(--red-pale); border-radius:var(--radius-sm); }
.form-note.success{ color:#166534; background:#dcfce7; border-color:#86efac; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:var(--space-lg); }
@media (max-width:768px){ .form-row{ grid-template-columns:1fr; } }

/* ---------- Premium Form Enhancements ---------- */
.premium-form{ animation:fadeInUp .6s ease forwards; opacity:0; }
@keyframes fadeInUp{ from{ opacity:0; transform:translateY(20px); } to{ opacity:1; transform:none; } }

.required{ color:var(--red); margin-left:2px; }
.form-hint{ display:block; font-size:.75rem; color:var(--muted); margin-top:var(--space-xs); }

/* Floating label effect */
.form-group{ position:relative; }
.form-group label{ transition:all .2s ease; }
.form-control:placeholder-shown + label{ /* handled by JS */ }
.form-group.focused label{ color:var(--red); transform:translateY(-2px); font-size:.75rem; }

/* Select styling */
.form-control[list], select.form-control{ appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237c838b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 16px center; background-size:18px; padding-right:48px; }
select.form-control:hover{ background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c8102e' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); }
select.form-control:focus{ background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c8102e' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); }

/* File upload */
.file-upload{ position:relative; }
.file-upload__input{ position:absolute; inset:0; width:100%; height:100%; opacity:0; cursor:pointer; z-index:2; }
.file-upload__area{ display:flex; flex-direction:column; align-items:center; justify-content:center; gap:var(--space-sm); padding:var(--space-xl) var(--space-lg); border:2px dashed var(--line); border-radius:var(--radius-md); background:var(--steel); text-align:center; transition:all .25s ease; min-height:140px; }
.file-upload__area:hover{ border-color:var(--red); background:var(--red-pale); }
.file-upload__area:focus-within{ border-color:var(--red); box-shadow:0 0 0 4px rgba(200,16,46,.12); }
.file-upload.dragover .file-upload__area{ border-color:var(--red); background:var(--red-pale); transform:scale(1.01); }
.file-upload.has-file .file-upload__area{ border-style:solid; border-color:var(--red); background:#fff; }
.file-upload__text{ font-size:.95rem; font-weight:600; color:var(--charcoal); }
.file-upload__hint{ font-size:.75rem; color:var(--muted); }
.file-upload__preview{ display:flex; align-items:center; gap:var(--space-md); padding:var(--space-md); background:var(--white); border:1px solid var(--line); border-radius:var(--radius-md); margin-top:var(--space-sm); }
.file-upload__preview .file-icon{ width:40px; height:40px; border-radius:8px; background:var(--red-pale); color:var(--red); display:flex; align-items:center; justify-content:center; font-size:1rem; flex-shrink:0; }
.file-upload__preview .file-info{ flex:1; min-width:0; }
.file-upload__preview .file-name{ font-weight:600; color:var(--ink); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.file-upload__preview .file-size{ font-size:.75rem; color:var(--muted); }
.file-upload__preview .file-remove{ color:var(--muted); transition:color .2s; }
.file-upload__preview .file-remove:hover{ color:var(--red); }

/* Submit button */
.btn-submit{ position:relative; overflow:hidden; }
.btn-submit:hover .btn-arrow{ transform:translateX(4px); }
.btn-submit:disabled{ opacity:.7; cursor:not-allowed; }
.btn-submit.loading .btn-text{ opacity:0; }
.btn-submit.loading .btn-loader{ display:inline-block; }
@keyframes spin{ to{ transform:rotate(360deg); } }

/* Form status messages */
.form-status{ padding:var(--space-md) var(--space-lg); border-radius:var(--radius-md); font-size:.9rem; font-weight:500; display:flex; align-items:center; gap:var(--space-md); animation:slideIn .3s ease; }
@keyframes slideIn{ from{ opacity:0; transform:translateY(-10px); } to{ opacity:1; transform:none; } }
.form-status.success{ background:#dcfce7; color:#166534; border:1px solid #86efac; }
.form-status.error{ background:#fef2f2; color:#991b1b; border:1px solid #fecaca; }
.form-status .status-icon{ width:24px; height:24px; border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.form-status.success .status-icon{ background:#86efac; color:#166534; }
.form-status.error .status-icon{ background:#fecaca; color:#991b1b; }

/* Validation states */
.form-group.has-error .form-control{ border-color:var(--red); background:#fef2f2; }
.form-group.has-error .form-control:focus{ box-shadow:0 0 0 4px rgba(200,16,46,.15); }
.form-group.valid .form-control{ border-color:#16a34a; }
.form-group.valid .form-control:focus{ box-shadow:0 0 0 4px rgba(22,163,74,.15); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .premium-form{ animation:none; opacity:1; }
  .form-status{ animation:none; }
  .btn-submit .btn-arrow{ transition:none; }
  .btn-loader{ animation:none; }
  .btn-loader svg{ animation:none; }
}

/* ---------- FAQ ---------- */
.accordion-item{ border-bottom:1px solid var(--line); }
.accordion-head{ display:flex; align-items:center; justify-content:space-between; padding:var(--space-lg) 0; cursor:pointer; gap:var(--space-lg); }
.accordion-head h4{ margin:0; font-size:1.05rem; font-weight:600; line-height:1.4; }
.accordion-head .plus{ width:40px; height:40px; border-radius:50%; border:1px solid var(--line); display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:all .3s ease; color:var(--charcoal); font-size:.9rem; }
.accordion-item.open .accordion-head .plus{ transform:rotate(135deg); background:var(--red); border-color:var(--red); color:#fff; }
.accordion-body{ max-height:0; overflow:hidden; transition:max-height .4s cubic-bezier(.4,0,.2,1); }
.accordion-item.open .accordion-body{ max-height:600px; }
.accordion-body-inner{ padding:0 0 var(--space-lg); color:var(--ink-soft); font-size:.94rem; max-width:800px; line-height:1.8; }

/* ---------- Product detail ---------- */
.pd-gallery-main{ border-radius:var(--radius-lg); overflow:hidden; aspect-ratio:1/1; box-shadow:var(--shadow-lg); margin-bottom:var(--space-md); cursor:zoom-in; position:relative; background:var(--steel); }
.pd-gallery-main img{ width:100%; height:100%; object-fit:contain; padding:var(--space-lg); transition:transform .5s cubic-bezier(.4,0,.2,1); }
.pd-gallery-main:hover img{ transform:scale(1.05); }
.pd-thumbs{ display:flex; gap:var(--space-sm); flex-wrap:wrap; }
.pd-thumbs .th{ width:84px; height:84px; border-radius:var(--radius-sm); overflow:hidden; cursor:pointer; border:2px solid transparent; opacity:.6; background:var(--steel); transition:all .25s ease; }
.pd-thumbs .th.active,.pd-thumbs .th:hover{ border-color:var(--red); opacity:1; }
.pd-thumbs .th img{ width:100%; height:100%; object-fit:contain; }
.pd-title-row{ display:flex; align-items:flex-start; justify-content:space-between; gap:var(--space-lg); flex-wrap:wrap; }
.pd-badges{ display:flex; gap:var(--space-sm); margin-bottom:var(--space-lg); flex-wrap:wrap; }
.spec-table{ width:100%; border-collapse:collapse; }
.spec-table tr{ border-bottom:1px solid var(--line); }
.spec-table td{ padding:var(--space-md) 0; font-size:.92rem; }
.spec-table td:first-child{ color:var(--muted); width:40%; font-weight:500; }
.spec-table td:last-child{ font-weight:600; color:var(--charcoal); }
.tabs-nav{ display:flex; gap:var(--space-sm); border-bottom:1px solid var(--line); margin-bottom:var(--space-xl); flex-wrap:wrap; }
.tabs-nav button{ background:none; border:none; padding:14px 22px; font-family:var(--font-body); font-size:.9rem; font-weight:600; color:var(--muted); cursor:pointer; border-bottom:2px solid transparent; margin-bottom:-1px; transition:all .25s ease; }
.tabs-nav button.active{ color:var(--charcoal); border-color:var(--red); }
.tab-pane{ display:none; } .tab-pane.active{ display:block; }
.benefit-list li{ display:flex; gap:var(--space-md); padding:var(--space-sm) 0; font-size:.95rem; }
.benefit-list li i{ color:var(--red); margin-top:4px; flex-shrink:0; }

/* ---------- Timeline (About) ---------- */
.timeline{ position:relative; padding-left:var(--space-xl); }
.timeline::before{ content:""; position:absolute; left:9px; top:6px; bottom:6px; width:2px; background:var(--line); }
.timeline-item{ position:relative; padding-bottom:var(--space-xl); }
.timeline-item::before{ content:""; position:absolute; left:-40px; top:4px; width:20px; height:20px; border-radius:50%; background:var(--red); border:4px solid var(--white); box-shadow:0 0 0 2px var(--red); }

/* ---------- Footer ---------- */
.site-footer{ background:var(--charcoal); color:rgba(255,255,255,.7); padding-top:var(--space-3xl); }
.footer-top{ display:grid; grid-template-columns:1.8fr 1fr 1fr 1fr 1.3fr; gap:var(--space-xl); padding-bottom:var(--space-2xl); border-bottom:1px solid rgba(255,255,255,.1); }
@media (max-width:1024px){ .footer-top{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .footer-top{ grid-template-columns:1fr; } }
.footer-brand .brand{ color:#fff; margin-bottom:var(--space-md); font-size:1.1rem; background:#fff; padding:14px 20px; border-radius:14px; width:fit-content; }
.footer-brand .brand img{ height:52px; width:auto; display:block; }
.footer-brand p{ font-size:.9rem; max-width:320px; line-height:1.8; color:rgba(255,255,255,.6); }
.footer-social{ display:flex; gap:var(--space-sm); margin-top:var(--space-lg); }
.footer-social a{ width:42px; height:42px; border-radius:50%; border:1px solid rgba(255,255,255,.15); display:flex; align-items:center; justify-content:center; transition:all .3s ease; color:#fff; font-size:1rem; }
.footer-social a:hover{ background:var(--red); border-color:var(--red); transform:translateY(-2px); }
.footer-col h5{ color:#fff; font-family:var(--font-body); font-size:.75rem; letter-spacing:.1em; text-transform:uppercase; margin-bottom:var(--space-lg); }
.footer-col ul li{ margin-bottom:var(--space-sm); }
.footer-col a{ font-size:.9rem; color:rgba(255,255,255,.65); transition:color .25s ease; }
.footer-col a:hover{ color:#ff9aa8; }
.footer-col .addr{ font-size:.9rem; line-height:1.9; color:rgba(255,255,255,.65); }
.footer-col .addr a{ color:#ff9aa8; transition:color .25s ease; }
.footer-col .addr a:hover{ color:#fff; }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding:var(--space-lg) 0; font-size:.8rem; flex-wrap:wrap; gap:var(--space-sm); border-top:1px solid rgba(255,255,255,.08); }
.footer-bottom .legal-links{ display:flex; gap:var(--space-lg); flex-wrap:wrap; }
.footer-bottom a{ color:rgba(255,255,255,.55); transition:color .25s ease; }
.footer-bottom a:hover{ color:#ff9aa8; }

/* ---------- Floating buttons ---------- */
.float-btns{ position:fixed; right:max(var(--space-lg), env(safe-area-inset-right, 16px)); bottom:max(var(--space-lg), env(safe-area-inset-bottom, 16px)); z-index:900; display:flex; flex-direction:column; gap:var(--space-sm); align-items:center; }
.fab{ width:56px; height:56px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.2rem; box-shadow:var(--shadow-lg); transition:all .3s cubic-bezier(.4,0,.2,1); border:0; cursor:pointer; }
.fab:hover{ transform:scale(1.1); }
.fab:active{ transform:scale(.95); }
.fab-wa{ background:#25D366; color:#fff; }
.fab-call{ background:var(--red); color:#fff; }
.fab-mail{ background:var(--charcoal-2); color:#ff9aa8; }
.fab-top{ background:var(--charcoal); color:#ff9aa8; opacity:0; pointer-events:none; transition:opacity .3s ease; }
.fab-top.show{ opacity:1; pointer-events:auto; }

/* Mobile floating buttons - compact stack */
@media (max-width:767px){
  .float-btns{ 
    right:max(var(--space-md), env(safe-area-inset-right, 12px)); 
    bottom:max(var(--space-md), env(safe-area-inset-bottom, 12px)); 
    gap:var(--space-xs); 
    z-index:950; /* Above mobile nav overlay */
  }
  .fab{ width:50px; height:50px; font-size:1.1rem; }
  /* Hide floating buttons when mobile nav is open */
  body.nav-open .float-btns{ display:none; }
}

/* ---------- Misc pages: legal / 404 ---------- */
.prose{ max-width:820px; }
.prose h2{ margin-top:1.8em; font-size:1.6rem; }
.prose h3{ margin-top:1.4em; font-size:1.2rem; }
.prose ul{ list-style:disc; padding-left:1.4em; margin-bottom:1em; }
.prose ul li{ margin-bottom:.5em; }
.prose p{ color:var(--ink-soft); }
.error-404{ min-height:80vh; display:flex; align-items:center; justify-content:center; text-align:center; }
.error-404 .code{ font-family:var(--font-display); font-size:clamp(6rem,12vw,10rem); color:transparent; -webkit-text-stroke:2px var(--red); line-height:1; }

/* ---------- Certificate cards (premium) ---------- */
.cert-card{ background:var(--white); border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-sm); border:1px solid rgba(22,24,26,.05); transition:all .35s ease; }
.cert-card:hover{ box-shadow:var(--shadow-lg); transform:translateY(-6px); border-color:rgba(200,16,46,.15); }
.cert-card .img{ aspect-ratio:4/5; overflow:hidden; background:var(--steel); }
.cert-card .img img{ width:100%; height:100%; object-fit:contain; transition:transform .5s ease; cursor:zoom-in; padding:var(--space-lg); }
.cert-card:hover .img img{ transform:scale(1.02); }
.cert-card .body{ padding:var(--space-lg); }
.cert-card h3{ font-size:1.1rem; margin-bottom:.4em; }
.cert-card p{ font-size:.86rem; color:var(--ink-soft); margin-bottom:var(--space-md); line-height:1.7; }
.cert-card .btn{ width:100%; }

/* ---------- Gallery (premium) ---------- */
.gallery-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:var(--space-md); }
.gallery-item{ position:relative; border-radius:var(--radius-md); overflow:hidden; cursor:pointer; aspect-ratio:1/1; }
.gallery-item img{ width:100%; height:100%; object-fit:cover; transition:transform .7s cubic-bezier(.4,0,.2,1); }
.gallery-item:hover img{ transform:scale(1.08); }
.gallery-item::after{ content:"\f00e"; font-family:"Font Awesome 6 Free"; font-weight:900; position:absolute; inset:0; display:flex; align-items:center; justify-content:center; color:#fff; font-size:1.4rem; background:rgba(22,24,26,0); transition:background .3s ease; opacity:0; }
.gallery-item:hover::after{ background:rgba(200,16,46,.6); opacity:1; }
.gallery-item.tall{ grid-row:span 2; }
@media (max-width:960px){ .gallery-grid{ grid-template-columns:repeat(2,1fr);} }

/* ---------- Home page boxy gallery (premium) ---------- */
.home-gallery-grid{ display:flex; flex-wrap:wrap; justify-content:center; gap:var(--space-lg); margin-top:var(--space-md); }
.home-gallery-grid .home-gallery-item{ width:320px; height:320px; flex:0 0 320px; border-radius:var(--radius-lg); box-shadow:var(--shadow-md); overflow:hidden; transition:all .4s ease; }
.home-gallery-grid .home-gallery-item img{ width:100%; height:100%; object-fit:cover; transition:transform .7s ease; }
.home-gallery-grid .home-gallery-item:hover{ transform:translateY(-6px); box-shadow:var(--shadow-xl); }
/* Inside a half-width column (text+gallery split rows), fixed 320px tiles don't fit two-per-row and stack into one tall column instead — force a proper 2x2 grid. */
.col-lg-6 .home-gallery-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:var(--space-md); }
.col-lg-6 .home-gallery-grid .home-gallery-item{ width:100%; height:auto; aspect-ratio:1/1; flex:none; }
.home-gallery-grid .home-gallery-item:hover img{ transform:scale(1.05); }
@media (max-width:1024px){ .home-gallery-grid .home-gallery-item{ width:280px; height:280px; flex-basis:280px; } }
@media (max-width:640px){ .home-gallery-grid .home-gallery-item{ width:100%; max-width:360px; height:320px; flex-basis:100%; } }

/* ---------- Map wrap ---------- */
.map-wrap{ border-radius:var(--radius-xl); overflow:hidden; box-shadow:var(--shadow-lg); height:100%; min-height:420px; background:var(--steel-2); }
.map-wrap iframe{ width:100%; height:100%; min-height:420px; border:0; display:block; }

/* ---------- Contact detail cards ---------- */
.contact-detail .ico{ width:52px; height:52px; border-radius:14px; background:var(--red-pale); color:var(--red); display:flex; align-items:center; justify_content:center; font-size:1.2rem; margin-bottom:var(--space-lg); transition:all .3s ease; }
.contact-detail:hover .ico{ background:var(--red); color:#fff; }
.contact-detail a{ color:var(--red-dark); font-weight:600; transition:color .2s ease; }
.contact-detail a:hover{ color:var(--red); }

/* ---------- Quote form panel ---------- */
.quote-panel{ background:var(--white); border-radius:var(--radius-xl); box-shadow:var(--shadow-xl); padding:var(--space-2xl); border:1px solid rgba(22,24,26,.06); border-top:5px solid var(--red); }
@media (max-width:640px){ .quote-panel{ padding:var(--space-xl) var(--space-lg); } }

/* ---------- Contact form section ---------- */
.contact-form-section{ background:var(--steel); }
.contact-info-card{ display:flex; gap:16px; align-items:flex-start; padding:20px 22px; background:var(--white); border-radius:10px; border:1px solid var(--line); margin-bottom:14px; transition:all .3s ease; }
.contact-info-card:hover{ border-color:var(--red); box-shadow:0 4px 20px rgba(200,16,46,.08); transform:translateY(-2px); }
.contact-info-icon{ width:48px; height:48px; border-radius:10px; background:var(--red-pale); color:var(--red); display:flex; align-items:center; justify-content:center; font-size:1.1rem; flex-shrink:0; }
.contact-info-card h5{ font-size:.95rem; font-weight:700; color:var(--charcoal); margin-bottom:6px; }
.contact-info-card p{ font-size:.85rem; color:var(--muted); margin:0; line-height:1.6; }
.contact-info-card a{ color:var(--red-dark); font-weight:600; font-size:.88rem; text-decoration:none; transition:color .2s ease; line-height:1.8; display:inline-block; }
.contact-info-card a:hover{ color:var(--red); }
.contact-map-wrap{ border-radius:10px; overflow:hidden; border:1px solid var(--line); margin-top:14px; }
.contact-map-wrap iframe{ width:100%; height:280px; border:0; display:block; }
.contact-form-card{ background:var(--white); border-radius:12px; padding:36px 32px; box-shadow:0 4px 30px rgba(0,0,0,.06); border:1px solid rgba(22,24,26,.06); border-top:4px solid var(--red); }
@media (max-width:640px){ .contact-form-card{ padding:28px 20px; } }
.contact-form-card label{ font-size:13px; font-weight:600; color:var(--charcoal); margin-bottom:6px; display:block; }
.contact-form-card .form-control{ width:100%; padding:13px 16px; border:1px solid var(--line); border-radius:8px; background:var(--white); font-family:var(--font-body); font-size:.9rem; color:var(--ink); transition:all .25s ease; }
.contact-form-card .form-control::placeholder{ color:#aab0b8; }
.contact-form-card .form-control:hover{ border-color:var(--line-strong); }
.contact-form-card .form-control:focus{ outline:none; border-color:var(--red); box-shadow:0 0 0 3px rgba(200,16,46,.1); }
.contact-form-card select.form-control{ appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237c838b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 14px center; background-size:16px; padding-right:40px; }
.contact-form-card select.form-control:focus{ background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c8102e' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); }
.contact-form-card textarea.form-control{ resize:vertical; min-height:120px; }
.contact-form-card .form-group.has-error .form-control{ border-color:var(--red); background:#fef2f2; }
.contact-form-card .form-group.has-error .form-control:focus{ box-shadow:0 0 0 3px rgba(200,16,46,.12); }
.contact-form-card .form-group.valid .form-control{ border-color:#16a34a; }
.contact-form-card .form-group.valid .form-control:focus{ box-shadow:0 0 0 3px rgba(22,163,74,.12); }
.contact-form-card .form-error{ display:none; font-size:.78rem; color:var(--red); margin-top:5px; font-weight:500; }
.contact-form-card .form-group.has-error .form-error{ display:block; }
.contact-form-card .file-upload__area{ border:2px dashed var(--line); border-radius:8px; background:var(--steel); padding:24px 16px; text-align:center; transition:all .25s ease; min-height:100px; display:flex; flex-direction:column; align-items:center; justify-content:center; }
.contact-form-card .file-upload__area:hover{ border-color:var(--red); background:var(--red-pale); }
.contact-form-card .file-upload__text{ font-size:.88rem; font-weight:600; color:var(--charcoal); }
.contact-form-card .file-upload__hint{ font-size:.75rem; color:var(--muted); }
.btn-submit-new{ width:100%; padding:15px 28px; background:linear-gradient(135deg,var(--red) 0%,var(--red-dark) 100%); color:#fff; border:none; border-radius:8px; font-family:var(--font-body); font-size:1rem; font-weight:700; cursor:pointer; transition:all .3s ease; display:flex; align-items:center; justify-content:center; gap:8px; }
.btn-submit-new:hover{ transform:translateY(-2px); box-shadow:0 6px 24px rgba(200,16,46,.3); }
.btn-submit-new:active{ transform:translateY(0); }
.btn-submit-new:disabled{ opacity:.6; cursor:not-allowed; transform:none; }
.btn-submit-new .btn-text{ display:flex; align-items:center; }
.btn-submit-new.loading .btn-text{ opacity:0; display:none; }
.btn-submit-new.loading .btn-loader{ display:inline-block; }
@media (max-width:991.98px){
  .contact-map-wrap{ margin-top:14px; }
}

/* ---------- Lightbox ---------- */
.gn-lightbox{ position:fixed; inset:0; background:rgba(16,18,20,.94); z-index:2000; display:none; align-items:center; justify-content:center; padding:var(--space-xl); }
.gn-lightbox img{ max-width:90%; max-height:85vh; border-radius:var(--radius-lg); box-shadow:var(--shadow-xl); }

/* Scrollbar */
::selection{ background:var(--red-pale); color:var(--red-dark); }

@media (max-width:768px){
  .section-pad{ padding:var(--space-2xl) 0; }
  .section-pad-lg{ padding:var(--space-3xl) 0; }
}

/* Accessibility: visible focus */
:focus-visible{ outline:3px solid rgba(200,16,46,.55); outline-offset:2px; border-radius:4px; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{ animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; scroll-behavior:auto !important; }
}

/* Final visual polish */
.hero-slide-media{ border-radius:20px; box-shadow:0 28px 70px rgba(0,0,0,.24); }
.hero-slide-media::after{ content:""; position:absolute; inset:0; border:1px solid rgba(255,255,255,.12); border-radius:inherit; pointer-events:none; z-index:2; }
.product-card,
.solution-card,
.feature-card,
.project-card,
.blog-card,
.cert-card{ border-radius:14px; }
.product-card .thumb,
.pd-gallery-main,
.pd-thumbs .th{ background:var(--steel); }
.product-card .thumb img,
.pd-gallery-main img,
.pd-thumbs .th img{ mix-blend-mode:multiply; }
.product-card .thumb img{ padding:20px; }
.product-card:hover{ transform:translateY(-5px); box-shadow:0 20px 42px rgba(22,24,26,.13); }
.solution-card:hover,
.feature-card:hover,
.project-card:hover{ transform:translateY(-5px); }
.solution-card .ico,
.feature-card .ico,
.project-card .ico{ border-radius:12px; }
.home-gallery-grid .home-gallery-item{ border-radius:14px; }

@media (max-width:767px){
  .hero-slide-media{ border-radius:16px; }
  .product-card .thumb img{ padding:16px; }
}

/* Accessibility: visible focus */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible{
  outline:3px solid rgba(200,16,46,.55); outline-offset:2px; border-radius:4px;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{ animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; scroll-behavior:auto !important; }
}