/* ══════════════════════════════════════════════════
   TNARK ALUMINIUM & STEEL — STYLESHEET
   Palette: Crimson #D91C1C | Black #0c0c0c | Steel #1a1a1a
══════════════════════════════════════════════════ */

:root {
  --black:      #0c0c0c;
  --black-mid:  #141414;
  --black-card: #1a1a1a;
  --steel:      #222222;
  --steel-lt:   #2e2e2e;
  --red:        #D91C1C;
  --red-bright: #f02020;
  --red-dark:   #a31414;
  --red-glow:   rgba(217,28,28,0.18);
  --white:      #f0eeec;
  --grey:       #7a7875;
  --grey-lt:    #a09d9a;
  --line:       rgba(217,28,28,0.15);
  --trans:      all 0.3s cubic-bezier(0.4,0,0.2,1);
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html  { scroll-behavior:smooth; }
body  { font-family:'DM Sans',sans-serif; background:var(--black); color:var(--white); overflow-x:hidden; }
img   { max-width:100%; display:block; }
a     { text-decoration:none; }

/* ─────────────────────────────────────────
   SPLASH SCREEN
───────────────────────────────────────── */
#splash {
  position:fixed; inset:0; z-index:9999;
  background:var(--black);
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
  transition:opacity 0.8s ease, visibility 0.8s ease;
}
#splash.hidden { opacity:0; visibility:hidden; pointer-events:none; }

#splashCanvas {
  position:absolute; inset:0;
  width:100%; height:100%;
  opacity:0.5;
}

/* diagonal slashes — brand mark */
.sp-slash {
  position:absolute;
  width:4px; height:200%;
  background:linear-gradient(180deg, transparent, var(--red), transparent);
  opacity:0.12;
  transform:rotate(20deg);
}
.sp-slash-1 { left:25%; animation:slashPulse 3s ease-in-out infinite; }
.sp-slash-2 { right:25%; animation:slashPulse 3s ease-in-out 1s infinite; }

@keyframes slashPulse {
  0%,100% { opacity:0.08; }
  50%      { opacity:0.2; }
}

/* corner brackets */
.sp-corner {
  position:absolute; width:44px; height:44px;
  animation:cFade 0.5s ease both;
}
.sp-tl { top:24px; left:24px;  border-top:2px solid var(--red); border-left:2px solid var(--red);   animation-delay:0.1s; }
.sp-tr { top:24px; right:24px; border-top:2px solid var(--red); border-right:2px solid var(--red);  animation-delay:0.2s; }
.sp-bl { bottom:24px; left:24px;  border-bottom:2px solid var(--red); border-left:2px solid var(--red);  animation-delay:0.3s; }
.sp-br { bottom:24px; right:24px; border-bottom:2px solid var(--red); border-right:2px solid var(--red); animation-delay:0.4s; }
@keyframes cFade { from { opacity:0; transform:scale(0.5); } to { opacity:1; transform:scale(1); } }

/* inner content */
.sp-inner {
  position:relative; z-index:2;
  display:flex; flex-direction:column; align-items:center; gap:2rem;
  text-align:center;
}

.sp-logo-wrap {
  position:relative;
  width:200px; height:200px;
  display:flex; align-items:center; justify-content:center;
  animation:logoAppear 0.9s cubic-bezier(0.2,0,0.1,1) 0.3s both;
  background: #ffebee;
  background-image: 
    linear-gradient(rgba(217,28,28,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217,28,28,0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  border-radius: 20px;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
}

.sp-logo-glow {
  position:absolute; inset:-20px;
  background:radial-gradient(ellipse at center, var(--red-glow) 0%, transparent 70%);
  animation:glowPulse 2s ease-in-out infinite;
}
@keyframes glowPulse { 0%,100%{opacity:0.5;transform:scale(0.9)} 50%{opacity:1;transform:scale(1.1)} }

.sp-logo {
  width:160px; position:relative; z-index:1;
  filter:drop-shadow(0 0 20px rgba(217,28,28,0.5));
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@keyframes logoAppear {
  from { opacity:0; transform:scale(0.6) translateY(20px); }
  to   { opacity:1; transform:scale(1)   translateY(0); }
}

.sp-name {
  display:flex; flex-direction:column; align-items:center; gap:0.3rem;
  animation:fadeUp 0.7s ease 1s both;
}
.sp-n1 {
  font-family:'Bebas Neue',sans-serif;
  font-size:3.5rem; letter-spacing:0.15em; line-height:1;
  color:var(--white);
  text-shadow:0 0 30px rgba(217,28,28,0.3);
}
.sp-n2 {
  font-family:'DM Sans',sans-serif;
  font-size:0.72rem; font-weight:600;
  letter-spacing:0.3em; text-transform:uppercase;
  color:var(--red);
}

.sp-bar-wrap {
  width:280px;
  animation:fadeUp 0.7s ease 1.2s both;
}
.sp-bar-rail {
  height:3px; background:rgba(217,28,28,0.12);
  border-radius:2px; overflow:hidden; margin-bottom:0.5rem;
  position:relative;
}
.sp-bar-fill {
  height:100%; width:0%;
  background:linear-gradient(90deg, var(--red-dark), var(--red), var(--red-bright));
  border-radius:2px;
  box-shadow:0 0 12px rgba(217,28,28,0.6);
  position:relative; overflow:hidden;
  transition:width 0.04s linear;
}
.sp-bar-shine {
  position:absolute; top:0; left:-100%; width:60%; height:100%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation:shine 1.5s ease-in-out infinite;
}
@keyframes shine { to { left:200%; } }

.sp-bar-foot {
  display:flex; justify-content:space-between;
  font-family:'DM Sans',sans-serif;
  font-size:0.72rem; font-weight:600;
  letter-spacing:0.14em; text-transform:uppercase;
}
.sp-bar-tag { color:var(--grey); }
.sp-bar-pct { color:var(--red); }

@keyframes fadeUp { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:translateY(0)} }

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
#mainNav {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  background:rgba(12,12,12,0.94);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(217,28,28,0.12);
  transition:var(--trans);
}
#mainNav.scrolled {
  background:rgba(12,12,12,0.99);
  box-shadow:0 4px 30px rgba(0,0,0,0.6);
}
.nav-wrap {
  max-width:1280px; margin:0 auto;
  height:72px; padding:0 2.5rem;
  display:flex; align-items:center; justify-content:space-between;
}
.nav-logo img { height:48px; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.nav-links { display:flex; align-items:center; gap:2.2rem; list-style:none; }
.nav-links a {
  font-family:'DM Sans',sans-serif;
  font-size:0.88rem; font-weight:600;
  letter-spacing:0.06em; text-transform:uppercase;
  color:var(--grey-lt);
  position:relative; padding:0.25rem 0;
  transition:color 0.25s;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-2px; left:0; right:100%;
  height:2px; background:var(--red);
  transition:right 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color:var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { right:0; }
.nav-cta {
  background:var(--red) !important; color:var(--white) !important;
  padding:0.5rem 1.5rem !important; border-radius:2px;
  font-weight:700 !important;
}
.nav-cta::after { display:none !important; }
.nav-cta:hover { background:var(--red-bright) !important; }

.nav-burger {
  display:none; flex-direction:column; gap:5px;
  background:none; border:none; cursor:pointer; padding:4px;
}
.nav-burger span { display:block; width:24px; height:2px; background:var(--white); border-radius:1px; transition:var(--trans); }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  position:relative; min-height:100vh;
  display:flex; align-items:center;
  overflow:hidden;
}
.hero-bg {
  position:absolute; inset:0;
  background:url('../images/hero.jpg') center/cover no-repeat;
  animation:hZoom 10s ease-out forwards;
}
@keyframes hZoom { from{transform:scale(1.08)} to{transform:scale(1)} }

.hero-overlay {
  position:absolute; inset:0;
  background:linear-gradient(105deg, rgba(12,12,12,0.97) 35%, rgba(12,12,12,0.6) 100%);
}

/* red left bar */
.hero-bar {
  position:absolute; left:0; top:0; bottom:0; width:5px;
  background:linear-gradient(180deg, var(--red) 0%, var(--red-dark) 100%);
}

/* red diagonal accent */
.hero-diag {
  position:absolute; right:-80px; top:-80px;
  width:420px; height:420px;
  border:80px solid rgba(217,28,28,0.06);
  transform:rotate(45deg);
  pointer-events:none;
}

.hero-content {
  position:relative; z-index:2;
  padding:120px 5rem 5rem;
  max-width:820px;
}
.hero-tag {
  display:inline-flex; align-items:center; gap:0.7rem;
  font-size:0.76rem; font-weight:700;
  letter-spacing:0.24em; text-transform:uppercase;
  color:var(--red); margin-bottom:1.6rem;
  animation:fadeUp 0.8s ease 0.2s both;
}
.hero-tag::before { content:''; display:block; width:32px; height:2px; background:var(--red); }

.hero h1 {
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(3.5rem,7vw,7rem);
  line-height:0.92; letter-spacing:0.04em;
  margin-bottom:1.5rem;
  animation:fadeUp 0.8s ease 0.35s both;
}
.hero h1 em { font-style:normal; color:var(--red); }

.hero p {
  font-size:1rem; font-weight:300;
  color:rgba(240,238,236,0.7); line-height:1.8;
  max-width:540px; margin-bottom:2.5rem;
  animation:fadeUp 0.8s ease 0.5s both;
}
.btn-group { display:flex; gap:1rem; flex-wrap:wrap; animation:fadeUp 0.8s ease 0.65s both; }

.btn {
  display:inline-flex; align-items:center; gap:0.55rem;
  font-family:'DM Sans',sans-serif;
  font-size:0.9rem; font-weight:700;
  letter-spacing:0.08em; text-transform:uppercase;
  padding:0.9rem 2.2rem; border-radius:2px;
  transition:var(--trans);
}
.btn svg { width:16px; height:16px; stroke:currentColor; fill:none; stroke-width:2.2; stroke-linecap:round; stroke-linejoin:round; }

.btn-primary { background:var(--red); color:var(--white); }
.btn-primary:hover { background:var(--red-bright); transform:translateY(-2px); box-shadow:0 8px 28px rgba(217,28,28,0.35); }

.btn-ghost { border:2px solid rgba(217,28,28,0.4); color:var(--white); }
.btn-ghost:hover { border-color:var(--red); color:var(--red); transform:translateY(-2px); }

/* ─────────────────────────────────────────
   STATS BAND
───────────────────────────────────────── */
.stats-band {
  background:var(--black-mid);
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  padding:2.2rem 2.5rem;
}
.stats-inner {
  max-width:1280px; margin:0 auto;
  display:flex; justify-content:space-around; flex-wrap:wrap; gap:2rem;
}
.stat-item { text-align:center; }
.stat-num {
  font-family:'Bebas Neue',sans-serif;
  font-size:3.2rem; letter-spacing:0.05em;
  color:var(--red); line-height:1;
}
.stat-lbl {
  font-size:0.72rem; font-weight:600;
  letter-spacing:0.18em; text-transform:uppercase;
  color:var(--grey); margin-top:0.3rem;
}

/* ─────────────────────────────────────────
   SECTIONS
───────────────────────────────────────── */
.section { padding:6rem 2.5rem; }
.section-inner { max-width:1280px; margin:0 auto; }
.bg-mid { background:var(--black-mid); }

.section-tag {
  display:inline-flex; align-items:center; gap:0.6rem;
  font-size:0.72rem; font-weight:700;
  letter-spacing:0.24em; text-transform:uppercase;
  color:var(--red); margin-bottom:0.8rem;
}
.section-tag::before { content:''; display:block; width:24px; height:2px; background:var(--red); }

.section-title {
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(2rem,5vw,3.8rem);
  letter-spacing:0.04em; line-height:1;
  margin-bottom:1.2rem;
}
.section-title em { font-style:normal; color:var(--red); }

.section-sub {
  font-size:0.98rem; font-weight:300;
  color:var(--grey-lt); line-height:1.8;
  max-width:580px;
}

/* ─────────────────────────────────────────
   ABOUT
───────────────────────────────────────── */
.about-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:5rem; align-items:center; margin-top:3rem;
}
.about-text p {
  font-size:0.97rem; font-weight:300;
  color:rgba(240,238,236,0.72); line-height:1.85;
  margin-bottom:1.1rem;
}
.about-img-frame { position:relative; border-radius:2px; overflow:hidden; }
.about-img-frame img {
  width:100%; filter:brightness(0.82) saturate(0.85);
  transition:filter 0.4s;
}
.about-img-frame:hover img { filter:brightness(1) saturate(1); }
.about-img-frame::after {
  content:''; position:absolute; inset:0;
  border:2px solid rgba(217,28,28,0.25);
  border-radius:2px; pointer-events:none;
}
.about-badge {
  position:absolute; bottom:1.2rem; left:1.2rem;
  background:var(--red); color:var(--white);
  font-size:0.76rem; font-weight:700;
  letter-spacing:0.14em; text-transform:uppercase;
  padding:0.35rem 0.9rem; border-radius:1px;
}

/* ─────────────────────────────────────────
   SERVICES
───────────────────────────────────────── */
.services-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:1.5rem; margin-top:3rem;
}
.service-card {
  background:var(--black-card);
  border:1px solid rgba(217,28,28,0.1);
  border-radius:2px; padding:2.5rem 2rem;
  position:relative; overflow:hidden;
  transition:var(--trans);
}
.service-card::before {
  content:''; position:absolute; top:0; left:0; right:0;
  height:3px;
  background:linear-gradient(90deg, var(--red-dark), var(--red));
  transform:scaleX(0); transform-origin:left;
  transition:transform 0.35s ease;
}
.service-card:hover::before { transform:scaleX(1); }
.service-card:hover {
  border-color:rgba(217,28,28,0.32);
  transform:translateY(-5px);
  box-shadow:0 24px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(217,28,28,0.1);
}
.svc-icon {
  width:52px; height:52px;
  background:rgba(217,28,28,0.08);
  border:1px solid rgba(217,28,28,0.2);
  border-radius:2px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:1.4rem;
}
.svc-icon svg { width:24px; height:24px; stroke:var(--red); fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }

.service-card h3 {
  font-family:'Bebas Neue',sans-serif;
  font-size:1.4rem; letter-spacing:0.05em;
  margin-bottom:0.6rem; color:var(--white);
}
.service-card p { font-size:0.88rem; font-weight:300; color:var(--grey-lt); line-height:1.72; }

/* ─────────────────────────────────────────
   GALLERY
───────────────────────────────────────── */
.gf-wrap { display:flex; flex-wrap:wrap; gap:0.6rem; margin:2rem 0; }
.gf-btn {
  font-size:0.78rem; font-weight:700;
  letter-spacing:0.14em; text-transform:uppercase;
  padding:0.45rem 1.2rem; border-radius:2px;
  border:1px solid rgba(217,28,28,0.2);
  background:transparent; color:var(--grey-lt);
  cursor:pointer; transition:var(--trans);
}
.gf-btn:hover, .gf-btn.active {
  border-color:var(--red); color:var(--red);
  background:rgba(217,28,28,0.07);
}
.gallery-masonry { columns:3; column-gap:1rem; }
.g-item {
  break-inside:avoid; margin-bottom:1rem;
  position:relative; overflow:hidden; border-radius:2px; cursor:pointer;
}
.g-item img {
  width:100%; display:block;
  transition:transform 0.5s ease, filter 0.4s;
  filter:brightness(0.78) saturate(0.85);
}
.g-item:hover img { transform:scale(1.06); filter:brightness(1) saturate(1); }
.g-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(12,12,12,0.88) 0%, transparent 55%);
  opacity:0; transition:opacity 0.3s;
  display:flex; align-items:flex-end; padding:1rem;
}
.g-item:hover .g-overlay { opacity:1; }
.g-label {
  font-size:0.8rem; font-weight:700;
  letter-spacing:0.12em; text-transform:uppercase;
  color:var(--red);
}

/* ─────────────────────────────────────────
   WHY US
───────────────────────────────────────── */
.why-grid {
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:1.5rem; margin-top:3rem;
}
.why-card {
  text-align:center; padding:2.2rem 1.2rem;
  border:1px solid rgba(217,28,28,0.1); border-radius:2px;
  transition:var(--trans);
}
.why-card:hover {
  border-color:rgba(217,28,28,0.3);
  background:rgba(217,28,28,0.04);
  transform:translateY(-3px);
}
.why-icon {
  width:60px; height:60px; margin:0 auto 1.2rem;
  background:rgba(217,28,28,0.07);
  border:1px solid rgba(217,28,28,0.2);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
}
.why-icon svg { width:26px; height:26px; stroke:var(--red); fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.why-card h4 {
  font-family:'Bebas Neue',sans-serif;
  font-size:1.25rem; letter-spacing:0.05em;
  margin-bottom:0.55rem;
}
.why-card p { font-size:0.85rem; color:var(--grey-lt); line-height:1.68; font-weight:300; }

/* ─────────────────────────────────────────
   CONTACT
───────────────────────────────────────── */
.contact-grid {
  display:grid; grid-template-columns:1fr 1.4fr;
  gap:5rem; margin-top:3rem;
}
.contact-info h3 {
  font-family:'Bebas Neue',sans-serif;
  font-size:1.8rem; letter-spacing:0.04em;
  margin-bottom:1.5rem; color:var(--white);
}
.c-detail {
  display:flex; align-items:flex-start; gap:1rem;
  margin-bottom:1.6rem;
}
.c-icon {
  width:44px; height:44px; flex-shrink:0;
  background:rgba(217,28,28,0.08);
  border:1px solid rgba(217,28,28,0.2); border-radius:2px;
  display:flex; align-items:center; justify-content:center;
}
.c-icon svg { width:18px; height:18px; stroke:var(--red); fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.c-text strong {
  display:block;
  font-size:0.72rem; font-weight:700;
  letter-spacing:0.18em; text-transform:uppercase;
  color:var(--red); margin-bottom:0.25rem;
}
.c-text span { font-size:0.94rem; color:rgba(240,238,236,0.7); font-weight:300; line-height:1.55; }

.contact-form { display:flex; flex-direction:column; gap:1.2rem; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1.2rem; }
.form-group { display:flex; flex-direction:column; gap:0.4rem; }
.form-group label {
  font-size:0.72rem; font-weight:700;
  letter-spacing:0.18em; text-transform:uppercase; color:var(--grey);
}
.form-group input,
.form-group textarea,
.form-group select {
  background:var(--black-mid);
  border:1px solid rgba(217,28,28,0.14); border-radius:2px;
  padding:0.78rem 1rem;
  font-family:'DM Sans',sans-serif; font-size:0.9rem; color:var(--white);
  outline:none; appearance:none;
  transition:border-color 0.25s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color:var(--red); box-shadow:0 0 0 3px rgba(217,28,28,0.08); }
.form-group textarea { resize:vertical; min-height:120px; }
.form-group select option { background:var(--black-mid); }

.form-msg {
  display:none; padding:0.75rem 1rem;
  border-radius:2px; font-size:0.9rem; font-weight:600;
}
.form-msg.success { background:rgba(217,28,28,0.1); border:1px solid rgba(217,28,28,0.3); color:var(--red); display:block; }
.form-msg.error   { background:rgba(255,100,100,0.08); border:1px solid rgba(255,80,80,0.3); color:#f97171; display:block; }

/* ─────────────────────────────────────────
   PAGE HERO (inner pages)
───────────────────────────────────────── */
.page-hero {
  position:relative; padding:140px 2.5rem 5rem;
  background:var(--black-mid);
  border-bottom:1px solid var(--line); overflow:hidden;
}
.page-hero::before {
  content:''; position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(217,28,28,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217,28,28,0.04) 1px, transparent 1px);
  background-size:55px 55px;
}
.page-hero-inner { max-width:1280px; margin:0 auto; position:relative; z-index:1; }
.page-hero h1 {
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(2.5rem,6vw,5rem);
  letter-spacing:0.04em; line-height:1;
  margin-bottom:0.8rem;
}
.page-hero h1 em { font-style:normal; color:var(--red); }
.page-hero p { font-size:1rem; color:var(--grey-lt); font-weight:300; max-width:540px; line-height:1.7; }
.breadcrumb {
  display:flex; align-items:center; gap:0.5rem;
  font-size:0.76rem; font-weight:600;
  letter-spacing:0.12em; text-transform:uppercase;
  color:var(--grey); margin-bottom:1rem;
}
.breadcrumb a { color:var(--red); }

/* ─────────────────────────────────────────
   LIGHTBOX
───────────────────────────────────────── */
#lightbox {
  display:none; position:fixed; inset:0; z-index:8000;
  background:rgba(0,0,0,0.95);
  align-items:center; justify-content:center;
}
#lightbox.open { display:flex; }
#lightbox img {
  max-width:88vw; max-height:86vh;
  border-radius:2px; border:1px solid rgba(217,28,28,0.2);
}
.lb-close {
  position:absolute; top:1.5rem; right:2rem;
  width:44px; height:44px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  border:1px solid rgba(255,255,255,0.15); cursor:pointer;
  transition:var(--trans);
}
.lb-close:hover { border-color:var(--red); }
.lb-close svg { width:20px; height:20px; stroke:var(--white); fill:none; stroke-width:2; }
.lb-nav {
  position:absolute; top:50%; transform:translateY(-50%);
  width:48px; height:48px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  border:1px solid rgba(255,255,255,0.15); cursor:pointer;
  transition:var(--trans);
}
.lb-nav:hover { border-color:var(--red); background:rgba(217,28,28,0.1); }
.lb-nav svg { width:22px; height:22px; stroke:var(--white); fill:none; stroke-width:2; }
.lb-prev { left:2rem; }
.lb-next { right:2rem; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer { background:var(--black-mid); border-top:1px solid var(--line); }
.footer-top {
  max-width:1280px; margin:0 auto;
  display:grid; grid-template-columns:1.5fr 1fr 1fr 1.3fr;
  gap:3rem; padding:4rem 2.5rem 3rem;
}
.footer-logo { height:46px; margin-bottom:1rem; }
.footer-brand p { font-size:0.85rem; color:var(--grey); font-weight:300; line-height:1.65; margin-bottom:1.2rem; }
.footer-socials { display:flex; gap:0.7rem; }
.footer-socials a {
  width:36px; height:36px;
  display:flex; align-items:center; justify-content:center;
  border:1px solid rgba(217,28,28,0.15); border-radius:2px; color:var(--grey);
  transition:var(--trans);
}
.footer-socials a svg { width:16px; height:16px; }
.footer-socials a:hover { border-color:var(--red); color:var(--red); }

.footer-col h4 {
  font-family:'Bebas Neue',sans-serif;
  font-size:1rem; letter-spacing:0.1em;
  color:var(--red); margin-bottom:1.2rem;
}
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:0.65rem; }
.footer-col ul li a { font-size:0.88rem; color:var(--grey); font-weight:300; transition:color 0.25s; }
.footer-col ul li a:hover { color:var(--white); }
.footer-contact { list-style:none; }
.footer-contact li { display:flex; align-items:flex-start; gap:0.7rem; margin-bottom:0.8rem; }
.footer-contact li svg { width:16px; height:16px; stroke:var(--red); fill:none; stroke-width:1.8; flex-shrink:0; margin-top:2px; }
.footer-contact li span { font-size:0.85rem; color:var(--grey); font-weight:300; line-height:1.5; }

.footer-bottom {
  border-top:1px solid var(--line);
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:1rem;
  padding:1.4rem 2.5rem; max-width:1280px; margin:0 auto;
}
.footer-bottom p { font-size:0.8rem; color:var(--grey); font-weight:300; }
.footer-bottom p span { color:var(--red); }

/* ─────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────── */
.reveal { opacity:0; transform:translateY(22px); transition:opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width:1024px) {
  .services-grid { grid-template-columns:repeat(2,1fr); }
  .why-grid      { grid-template-columns:repeat(2,1fr); }
  .footer-top    { grid-template-columns:1fr 1fr; }
}
@media (max-width:768px) {
  .nav-links { display:none; flex-direction:column; gap:0; position:absolute; top:72px; left:0; right:0; background:rgba(12,12,12,0.98); border-bottom:1px solid var(--line); }
  .nav-links.open { display:flex; }
  .nav-links li  { border-bottom:1px solid rgba(217,28,28,0.08); }
  .nav-links a   { display:block; padding:1rem 2rem; }
  .nav-burger    { display:flex; }
  .hero-content  { padding:110px 1.5rem 4rem; }
  .section       { padding:4rem 1.5rem; }
  .page-hero     { padding:120px 1.5rem 3rem; }
  .about-grid, .contact-grid, .form-row { grid-template-columns:1fr; gap:2rem; }
  .services-grid { grid-template-columns:1fr; }
  .gallery-masonry { columns:2; }
  .footer-top    { grid-template-columns:1fr; gap:2rem; padding:2.5rem 1.5rem; }
  .footer-bottom { padding:1.2rem 1.5rem; }
}
@media (max-width:480px) {
  .gallery-masonry { columns:1; }
  .why-grid        { grid-template-columns:1fr; }
  .stats-inner     { flex-direction:column; align-items:center; }
  .sp-n1           { font-size:2.5rem; }
}

/* ══════════════════════════════
   CHATBOT
══════════════════════════════ */
#chatbot-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  font-family: 'DM Sans', sans-serif;
}

#chatbot-toggle {
  width: 60px;
  height: 60px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(217, 28, 28, 0.3);
  transition: all 0.3s ease;
}

#chatbot-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(217, 28, 28, 0.4);
}

#chatbot-toggle svg {
  width: 24px;
  height: 24px;
  color: white;
}

#chatbot-container {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 350px;
  height: 500px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 1001;
}

#chatbot-container.open {
  display: flex;
}

#chatbot-header {
  background: var(--red);
  color: white;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#chatbot-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

#chatbot-close {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#chatbot-messages {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  background: #f8f9fa;
}

.chat-message {
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 8px;
  max-width: 80%;
}

.chat-message.user {
  background: var(--red);
  color: white;
  margin-left: auto;
  text-align: right;
}

.chat-message.bot {
  background: #e9ecef;
  color: #333;
}

#chatbot-input-area {
  padding: 16px;
  background: white;
  border-top: 1px solid #dee2e6;
  display: flex;
  gap: 8px;
}

#chatbot-input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  outline: none;
}

#chatbot-input:focus {
  border-color: var(--red);
}

#chatbot-send {
  padding: 8px 16px;
  background: var(--red);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#chatbot-send:hover {
  background: var(--red-dark);
}

@media (max-width: 480px) {
  #chatbot-container {
    width: calc(100vw - 40px);
    height: 400px;
    right: 20px;
    bottom: 80px;
  }
}
