@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
.footer-brand span.l1 {
    color: #ffff !important;
}

:root{
    --red:#d21f1f;
    --red-dark:#a71414;
    --charcoal:#1a1a1a;
    --charcoal-2:#232323;
    --grey:#6b6b6b;
    --grey-light:#f4f4f4;
    --off-white:#faf9f7;
    --border:#e6e2db;

    /* Fonts */
    --font-display:'Poppins', sans-serif;
    --font-body:'Poppins', sans-serif;
}
body{
    font-family: var(--font-body);
}

h1,h2,h3,h4,h5,h6{
    font-family: var(--font-display);
}
  *{margin:0;padding:0;box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    font-family:var(--font-body);
    color:var(--charcoal);
    background:var(--off-white);
    line-height:1.55;
    overflow-x:hidden;
  }
  img{max-width:100%;display:block;}
  a{text-decoration:none;color:inherit;}
  ul{list-style:none;}
  .container{
    max-width:1180px;
    margin:0 auto;
    padding:0 32px;
  }
  .eyebrow{
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-family:var(--font-display);
    letter-spacing:.22em;
    text-transform:uppercase;
    font-size:.78rem;
    color:var(--red);
    font-weight:600;
    margin-bottom:14px;
  }
  .eyebrow::before{
    content:'';
    width:28px;height:2px;
    background:var(--red);
    display:inline-block;
  }
  h1,h2,h3,h4{
    font-family:var(--font-display);
    text-transform:uppercase;
    letter-spacing:.01em;
    line-height:1.08;
    font-weight:600;
  }
  .btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:var(--red);
    color:#fff;
    font-family:var(--font-display);
    letter-spacing:.12em;
    text-transform:uppercase;
    font-size:.82rem;
    font-weight:600;
    padding:14px 30px;
    border:none;
    cursor:pointer;
    transition:.25s ease;
    clip-path: polygon(0 0, 100% 0, 94% 100%, 0% 100%);
  }
  .btn:hover{background:var(--red-dark);transform:translateY(-2px);}
  .btn.outline{
    background:transparent;
    border:1px solid rgba(255,255,255,.5);
    color:#fff;
  }
  .btn.outline:hover{background:#fff;color:var(--charcoal);}

  /* ===== HEADER ===== */
  header{
    position:sticky;top:0;z-index:1000;
    background:rgba(250,249,247,.96);
    backdrop-filter:blur(8px);
    border-bottom:1px solid var(--border);
  }
  .nav-wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:14px 32px;
    max-width:1180px;
    margin:0 auto;
  }
  .brand{display:flex;align-items:center;gap:14px;}
  .brand img{height:52px;width:auto;}
  .brand .name{font-family:var(--font-display);line-height:1.15;}
  .brand .name .l1{display:block;font-size:1.05rem;font-weight:700;color:var(--charcoal);letter-spacing:.03em;}
  .brand .name .l2{display:block;font-size:1.05rem;font-weight:700;color:var(--red);letter-spacing:.03em;}
  .brand .name .l3{display:block;font-size:.68rem;color:var(--grey);letter-spacing:.15em;font-weight:400;text-transform:none;}

  nav ul{display:flex;gap:34px;}
  nav a{
    font-family:var(--font-display);
    font-size:.85rem;
    letter-spacing:.1em;
    text-transform:uppercase;
    font-weight:500;
    color:var(--charcoal);
    position:relative;
    padding:6px 0;
    transition:color .2s;
  }
  nav a::after{
    content:'';
    position:absolute;left:0;bottom:0;
    width:0;height:2px;background:var(--red);
    transition:width .25s ease;
  }
  nav a:hover, nav a.active{color:var(--red);}
  nav a:hover::after, nav a.active::after{width:100%;}

  .burger{display:none;flex-direction:column;gap:5px;cursor:pointer;background:none;border:none;}
  .burger span{width:26px;height:2px;background:var(--charcoal);}

  /* ===== HERO ===== */
  .hero{
    position:relative;
    min-height:88vh;
    display:flex;
    align-items:center;
    color:#fff;
    background:
      linear-gradient(100deg, rgba(10,10,10,.94) 20%, rgba(10,10,10,.55) 55%, rgba(10,10,10,.25) 100%),
      url('assets/banner.png') center/cover no-repeat;
    overflow:hidden;
  }
  .hero::after{
    content:'';
    position:absolute;inset:0;
    background:radial-gradient(circle at 85% 30%, rgba(210,31,31,.28), transparent 55%);
    pointer-events:none;
  }
  .hero-inner{
    position:relative;z-index:2;
  }
  .hero h1{
    font-size:clamp(2.4rem,5.2vw,3.9rem);
    margin-bottom:20px;
  }
  .hero h1 .accent{color:var(--red);display:block;}
  .hero .rule{width:70px;height:4px;background:var(--red);margin:22px 0;}
  .hero p{
    font-size:1.02rem;
    color:#d8d8d8;
    max-width:520px;
    margin-bottom:38px;
  }
  .stat-row{
    position:relative;z-index:2;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    border-top:1px solid rgba(255,255,255,.15);
    background:rgba(0,0,0,.35);
  }
  .stat-item{
    display:flex;align-items:center;gap:14px;
    padding:26px 24px;
    border-right:1px solid rgba(255,255,255,.12);
  }
  .stat-item:last-child{border-right:none;}
  .stat-icon{
    width:46px;height:46px;flex:none;
    border:2px solid var(--red);
    border-radius:50%;
    display:flex;align-items:center;justify-content:center;
    color:var(--red);
  }
  .stat-icon svg{width:22px;height:22px;}
  .stat-item h4{font-size:.82rem;letter-spacing:.08em;margin-bottom:4px;color:#fff;}
  .stat-item p{margin:0;font-size:.8rem;color:#b9b9b9;}

  /* ===== SECTION generic ===== */
  section{padding:100px 0;}
  .section-head{max-width:640px;margin-bottom:50px;}
  .section-head.center{margin-left:auto;margin-right:auto;text-align:center;}
  .section-head h2{font-size:clamp(1.8rem,3vw,2.5rem);}
  .section-head p.lead{color:var(--grey);margin-top:14px;font-size:1rem;}

  /* ===== ABOUT ===== */
  .about{background:var(--off-white);}
  .about-grid{
    display:grid;
    grid-template-columns:.95fr 1.05fr;
    gap:64px;
    align-items:center;
  }
  .about-img{position:relative;}
  .about-img img{
    width:100%;height:420px;object-fit:cover;
    box-shadow:20px 20px 0 var(--red);
  }
  .about-copy p{color:var(--grey);margin-bottom:26px;font-size:1rem;}
  .about-copy h2{font-size:clamp(1.7rem,2.8vw,2.3rem);margin-bottom:20px;}

  /* ===== PRODUCTS ===== */
  .products{background:var(--grey-light);}
  .product-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
  }
  .product-card{
    background:#fff;
    border:1px solid var(--border);
    padding:28px 22px 26px;
    text-align:center;
    transition:.3s ease;
    position:relative;
  }
  .whatsapp-btn{
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
    z-index: 9999;
    transition: .3s ease;
}

.whatsapp-btn:hover{
    transform: scale(1.1);
    background:#1ebe5d;
}
  .product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 34px rgba(0,0,0,.08);
    border-color:transparent;
  }
  .product-thumb{
    height:200px;
    display:flex;align-items:center;justify-content:center;
    margin-bottom:18px;
    background:linear-gradient(180deg,#f6f6f6,#eeeeee);
  }
  .product-thumb img{height:100%;width:100%;object-fit:cover;}
  .product-badge{
    width:44px;height:44px;
    background:var(--red);
    border-radius:50%;
    display:flex;align-items:center;justify-content:center;
    margin:0 auto 14px;
    color:#fff;
  }
  .product-badge svg{width:20px;height:20px;}
  .product-card h4{font-size:.9rem;letter-spacing:.04em;}

  /* ===== FACILITIES ===== */
  .facilities{background:var(--charcoal);color:#fff;}
  .facilities .section-head h2{color:#fff;}
  .facilities .section-head p.lead{color:#a3a3a3;}
  .fac-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
  }
  .fac-item{
    padding:0 30px;
    text-align:center;
    border-right:1px solid rgba(255,255,255,.1);
  }
  .fac-item:last-child{border-right:none;}
  .fac-icon{
    width:78px;height:78px;
    margin:0 auto 22px;
    border:1.5px solid var(--red);
    border-radius:50%;
    display:flex;align-items:center;justify-content:center;
    color:var(--red);
  }
  .fac-icon svg{width:34px;height:34px;}
  .fac-item h4{font-size:.92rem;letter-spacing:.03em;margin-bottom:10px;color:#fff;}
  .fac-item p{font-size:.85rem;color:#9c9c9c;}

  /* ===== TESTING ===== */
  .testing{background:var(--off-white);}
  .testing-grid{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:64px;
    align-items:center;
  }
  .testing-img img{
    width:100%;height:380px;object-fit:cover;
  }
  .testing-copy h2{font-size:clamp(1.7rem,2.8vw,2.3rem);margin-bottom:16px;}
  .testing-copy > p{color:var(--grey);margin-bottom:30px;}
  .check-item{
    display:flex;gap:16px;
    margin-bottom:26px;
  }
  .check-icon{
    width:34px;height:34px;flex:none;
    border-radius:50%;
    border:1.5px solid var(--red);
    display:flex;align-items:center;justify-content:center;
    color:var(--red);
  }
  .check-icon svg{width:16px;height:16px;}
  .check-item h4{font-size:.95rem;margin-bottom:4px;letter-spacing:.02em;}
  .check-item p{color:var(--grey);font-size:.9rem;margin:0;}

  /* ===== CONTACT (bonus section referenced by nav) ===== */
  .contact-cta{
    background:linear-gradient(120deg,var(--red-dark),var(--red));
    color:#fff;
    text-align:center;
  }
  .contact-cta h2{font-size:clamp(1.6rem,3vw,2.2rem);margin-bottom:16px;}
  .contact-cta p{color:rgba(255,255,255,.9);max-width:560px;margin:0 auto 30px;}
  .contact-cta .btn{background:#fff;color:var(--red);}
  .contact-cta .btn:hover{background:var(--charcoal);color:#fff;}

  /* ===== FOOTER ===== */
  footer{background:#101010;color:#c9c9c9;padding-top:70px;}
  .footer-grid{
    display:grid;
    grid-template-columns:1.3fr 1fr 1.3fr 1fr;
    gap:40px;
    padding-bottom:50px;
    border-bottom:1px solid rgba(255,255,255,.08);
  }
  .footer-brand .brand img{height:56px;}
  .footer-brand .name .l1,.footer-brand .name .l2{font-size:1rem;}
  .footer-brand .name .l3{color:#8f8f8f;}
  .footer-brand p{margin-top:16px;font-size:.87rem;color:#8f8f8f;max-width:280px;}
  footer h4{
    font-size:.85rem;letter-spacing:.12em;color:#fff;margin-bottom:22px;
  }
  footer h4::after{content:'';display:block;width:26px;height:2px;background:var(--red);margin-top:10px;}
  .footer-links li{margin-bottom:12px;}
  .footer-links a{font-size:.9rem;color:#a9a9a9;transition:.2s;}
  .footer-links a:hover{color:var(--red);padding-left:4px;}
  .footer-contact li{
    display:flex;gap:12px;margin-bottom:16px;font-size:.88rem;color:#a9a9a9;
  }
  .footer-contact svg{width:18px;height:18px;flex:none;color:var(--red);margin-top:2px;}
  .footer-capacity{text-align:left;}
  .cap-box{
    display:flex;align-items:center;gap:16px;
    background:rgba(255,255,255,.04);
    padding:20px;
    border:1px solid rgba(255,255,255,.08);
  }
  .cap-box svg{width:34px;height:34px;color:var(--red);flex:none;}
  .cap-box .num{font-family:var(--font-display);font-size:1.5rem;color:#fff;font-weight:700;line-height:1;}
  .cap-box .lbl{font-size:.75rem;letter-spacing:.06em;color:#9c9c9c;}
  .bottom-bar{
    display:flex;justify-content:center;align-items:center;
    padding:22px 0;
    background:var(--red);
    color:#fff;
    font-size:.82rem;
    letter-spacing:.03em;
    text-align:center;
  }

  /* ===== back to top ===== */
  #toTop{
    position:fixed;right:26px;bottom:26px;
    width:46px;height:46px;
    background:var(--red);
    color:#fff;
    border:none;border-radius:50%;
    display:flex;align-items:center;justify-content:center;
    cursor:pointer;
    opacity:0;pointer-events:none;
    transition:opacity .3s, transform .3s;
    z-index:900;
  }
  #toTop.show{opacity:1;pointer-events:auto;}
  #toTop:hover{transform:translateY(-4px);}
  #toTop svg{width:20px;height:20px;}

  /* ===== reveal animation ===== */
  .reveal{opacity:0;transform:translateY(26px);transition:opacity .7s ease, transform .7s ease;}
  .reveal.in{opacity:1;transform:translateY(0);}

  @media(prefers-reduced-motion: reduce){
    .reveal{opacity:1;transform:none;transition:none;}
    html{scroll-behavior:auto;}
  }

  /* ===== RESPONSIVE ===== */
  @media(max-width:1000px){
    .product-grid{grid-template-columns:repeat(2,1fr);}
    .fac-grid{grid-template-columns:repeat(2,1fr);}
    .fac-item{border-right:none;border-bottom:1px solid rgba(255,255,255,.1);padding-bottom:36px;margin-bottom:36px;}
    .about-grid,.testing-grid{grid-template-columns:1fr;}
    .about-img img,.testing-img img{height:320px;}
    .footer-grid{grid-template-columns:1fr 1fr;}
  }
  @media(max-width:760px){
    nav{
      position:fixed;top:82px;left:0;right:0;
      background:#fff;
      border-bottom:1px solid var(--border);
      flex-direction:column;
      max-height:0;overflow:hidden;
      transition:max-height .35s ease;
    }
    nav.open{max-height:400px;}
    nav ul{flex-direction:column;padding:20px 32px;gap:0;}
    nav ul li{border-bottom:1px solid var(--border);}
    nav a{display:block;padding:14px 0;}
    .burger{display:flex;}
    .stat-row{grid-template-columns:1fr 1fr;}
    .stat-item{border-bottom:1px solid rgba(255,255,255,.12);}
    .product-grid{grid-template-columns:1fr;}
    .fac-grid{grid-template-columns:1fr;}
    .footer-grid{grid-template-columns:1fr;}
    section{padding:70px 0;}
    .about-img img{box-shadow:12px 12px 0 var(--red);}
  }