  :root{
    --bg: #08080b;
    --bg-soft: #0e0e13;
    --card: #121218;
    --card-border: #232330;
    --red: #ff4d4d;
    --red-deep: #e23636;
    --blue: #4d8dff;
    --amber: #f5a623;
    --text: #f5f3ee;
    --muted: #9a9aa5;
    --muted-2: #6f6f7c;
    --img-hero: url('images/hero.jpg');
    --img-bg1: url('images/bg1.jpg');
    --img-bg2: url('images/bg2.jpg');
    --img-bg3: url('images/bg3.jpg');
    --img-white-cotton: url('images/white-cotton.jpg');
    --img-mixed-rags: url('images/mixed-rags.jpg');
    --img-premium-cotton: url('images/premium-cotton.jpg');
    --img-colored-cotton: url('images/colored-cotton.jpg');
    --img-hosiery: url('images/hosiery.jpg');
    --img-cotton-rags: url('images/cotton-rags.jpg');
    --img-bg-products: url('images/bg-products.jpg');
    --img-bg-contact: url('images/bg-contact.jpg');
    --img-bg-footer: url('images/bg-footer.jpg');
    --img-logo-fireice: url('images/logo-fireice.jpg');
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth; width:100%;}
  body{
    width:100%;
    min-height:100vh;
    background:var(--bg);
    color:var(--text);
    font-family:'Inter', sans-serif;
    line-height:1.5;
    overflow-x:hidden;
  }
  .wrap{max-width:1160px; margin:0 auto; padding:0 24px;}
  a{color:inherit; text-decoration:none;}

  h1,h2,h3,.display{
    font-family:'Archivo Black', sans-serif;
    line-height:1.05;
    letter-spacing:-0.01em;
  }
  .italic-tag{
    font-family:'Playfair Display', serif;
    font-style:italic;
    color:var(--muted);
  }
  .gradient-text{
    background:linear-gradient(90deg, var(--red) 0%, var(--red) 45%, var(--blue) 100%);
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
  }
  .red{color:var(--red);}
  .blue{color:var(--blue);}
  .amber{color:var(--amber);}

  /* Header */
  header{
    position:sticky; top:0; z-index:100;
    background:rgba(8,8,11,0.85);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--card-border);
  }
  .nav{
    display:flex; align-items:center; justify-content:space-between;
    padding:16px 24px;
    max-width:1160px; margin:0 auto;
  }
  .brand{display:flex; align-items:center; gap:12px;}
  .brand-mark{
    font-family:'Archivo Black', sans-serif;
    font-size:26px;
    border:2.5px solid var(--blue);
    border-radius:10px;
    padding:8px 14px;
    background:linear-gradient(135deg, rgba(255,77,77,0.15), rgba(77,141,255,0.15));
  }
  .brand-mark span:first-child{color:var(--red);}
  .brand-mark span:last-child{color:var(--blue);}
  .brand-name{font-family:'Archivo Black', sans-serif; font-size:29px;}
  .brand-name .r{color:var(--red);}
  .brand-name .e{color:var(--blue);}
  .nav-links{display:flex; gap:28px; font-size:14px; color:var(--muted);}
  .nav-links a:hover{color:var(--text);}
  .call-btn{
    display:flex; align-items:center; gap:8px;
    background:linear-gradient(135deg, var(--red), var(--red-deep));
    color:#fff; border:none; border-radius:999px;
    padding:11px 20px; font-weight:600; font-size:14px;
    box-shadow:0 0 22px rgba(255,77,77,0.35);
    cursor:pointer; white-space:nowrap;
  }

  /* Hero banner (real photo) */
  .hero-banner{
    width:100%; height:clamp(260px,44vw,540px);
    background-image: var(--img-hero);
    background-size:cover; background-position:center 32%;
    position:relative;
  }
  .hero-banner::after{
    content:"";
    position:absolute; inset:0;
    background:linear-gradient(180deg, rgba(8,8,11,0.05) 45%, var(--bg) 100%);
  }

  /* Hero copy */
  .hero{padding:44px 0 48px; position:relative;}
  .eyebrow{
    display:inline-flex; align-items:center; gap:10px;
    border:1px solid var(--card-border);
    border-radius:999px;
    padding:8px 18px;
    font-size:11.5px; letter-spacing:0.14em; text-transform:uppercase;
    color:var(--muted); margin-bottom:28px;
    background:var(--bg-soft);
  }
  .eyebrow .dot{width:7px; height:7px; border-radius:50%; background:var(--amber);}
  .hero h1{font-size:56px; max-width:820px; margin-bottom:24px;}
  .hero p.lead{color:var(--muted); font-size:17px; max-width:560px; margin-bottom:34px;}
  .hero-ctas{display:flex; gap:16px; flex-wrap:wrap;}
  .btn-primary{
    background:linear-gradient(135deg, var(--red), var(--red-deep));
    color:#fff; padding:15px 28px; border-radius:10px; font-weight:700; font-size:14.5px;
    box-shadow:0 8px 24px rgba(255,77,77,0.25);
    display:inline-block; text-align:center; min-width:230px;
  }
  .btn-secondary{
    border:1px solid var(--card-border);
    color:var(--text); padding:15px 28px; border-radius:10px; font-weight:600; font-size:14.5px;
    display:inline-block; text-align:center; min-width:230px;
  }

  /* Marquee ticker */
  .marquee{
    border-top:1px solid var(--card-border);
    border-bottom:1px solid var(--card-border);
    background:var(--bg-soft);
    overflow:hidden;
    padding:16px 0;
    white-space:nowrap;
  }
  .marquee-track{
    display:inline-flex;
    align-items:center;
    animation: marquee-scroll 28s linear infinite;
  }
  .marquee-item{
    font-size:13px;
    letter-spacing:0.16em;
    text-transform:uppercase;
    font-weight:700;
    color:var(--muted);
    padding:0 22px;
  }
  .marquee-dot{color:var(--red); font-size:11px;}
  @keyframes marquee-scroll{
    from{ transform:translateX(0); }
    to{ transform:translateX(-50%); }
  }

  /* Stats */
  .stats{border-top:1px solid var(--card-border); border-bottom:1px solid var(--card-border); padding:48px 0;}
  .stats-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:32px;}
  .stat-num{font-family:'Archivo Black'; font-size:42px; margin-bottom:6px;}
  .stat-label{font-weight:600; font-size:14.5px;}
  .stat-sub{color:var(--muted-2); font-size:12.5px; margin-top:2px;}

  section{padding:90px 0; position:relative;}
  .section-bg{
    position:absolute; inset:0; z-index:0;
    background-size:cover; background-position:center;
  }
  .section-bg::after{
    content:""; position:absolute; inset:0;
    background:linear-gradient(180deg, rgba(8,8,11,0.88) 0%, rgba(8,8,11,0.74) 40%, rgba(8,8,11,0.88) 100%);
  }
  section > .wrap, footer > .wrap{position:relative; z-index:1;}

  .section-eyebrow{
    display:flex; align-items:center; gap:10px;
    color:var(--amber); font-size:12px; letter-spacing:0.16em; text-transform:uppercase;
    font-weight:700; margin-bottom:18px;
  }
  .section-eyebrow::before{content:""; width:28px; height:2px; background:var(--amber); display:inline-block;}
  .section-head h2{font-size:38px; max-width:640px; margin-bottom:16px;}
  .section-head p{color:var(--muted); max-width:560px; font-size:15.5px;}

  /* Why choose - numbered cards */
  .why-grid{margin-top:48px; display:grid; grid-template-columns:repeat(3,1fr); gap:20px;}
  .why-card{
    position:relative;
    background:rgba(18,18,24,0.92);
    border:1px solid var(--card-border);
    border-top:3px solid var(--red);
    border-radius:14px;
    padding:32px 28px;
    overflow:hidden;
    backdrop-filter:blur(4px);
    transition:transform 0.3s ease, box-shadow 0.3s ease;
  }
  .why-card:hover{transform:translateY(-8px); box-shadow:0 16px 40px rgba(255,77,77,0.18);}
  .why-card.blue-top:hover{box-shadow:0 16px 40px rgba(77,141,255,0.18);}
  .why-card.blue-top{border-top-color:var(--blue);}
  .why-card .num-bg{position:absolute; top:-6px; right:14px; font-family:'Archivo Black'; font-size:76px; color:rgba(255,255,255,0.04);}
  .why-card .num{font-size:13px; font-weight:800; margin-bottom:14px;}
  .why-card.red-num .num{color:var(--red);}
  .why-card.blue-num .num{color:var(--blue);}
  .why-card h3{font-family:'Inter'; font-weight:800; font-size:19px; margin-bottom:10px;}
  .why-card p{color:var(--muted); font-size:14.5px;}

  /* Products */
  .products-grid{margin-top:48px; display:grid; grid-template-columns:repeat(3,1fr); gap:20px;}
  .product-card{
    background:var(--card); border:1.5px solid var(--card-border); border-radius:16px;
    overflow:hidden; display:flex; flex-direction:column;
    transition:border-color 0.2s ease, transform 0.3s ease, box-shadow 0.3s ease;
  }
  .product-card:hover{transform:translateY(-8px);}
  .product-card.border-red:hover{box-shadow:0 18px 44px rgba(255,77,77,0.22);}
  .product-card.border-blue:hover{box-shadow:0 18px 44px rgba(77,141,255,0.22);}
  .product-card.premium:hover{box-shadow:0 18px 44px rgba(245,166,35,0.28);}
  .product-card.border-red{border-color:rgba(255,77,77,0.55);}
  .product-card.border-blue{border-color:rgba(77,141,255,0.55);}
  .product-card.premium{border-color:rgba(245,166,35,0.6);}
  .product-photo{width:100%; height:170px; background-size:cover; background-position:center; position:relative; cursor:zoom-in; overflow:hidden; transition:transform 0.4s ease;}
  .product-card:hover .product-photo{transform:scale(1.06);}
  .product-photo::before{
    content:"🔍"; position:absolute; top:12px; right:12px;
    width:34px; height:34px; border-radius:50%;
    background:rgba(8,8,11,0.6); backdrop-filter:blur(4px);
    display:flex; align-items:center; justify-content:center;
    font-size:14px; opacity:0; transition:opacity 0.25s ease;
  }
  .product-photo:hover::before{opacity:1;}
  .product-body{padding:24px; display:flex; flex-direction:column; gap:16px; flex:1;}
  .product-icon{
    width:52px; height:52px; border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    background:radial-gradient(circle, rgba(255,255,255,0.06), transparent 70%);
    border:1px solid var(--card-border);
    font-size:20px;
  }
  .product-card h3{font-family:'Inter'; font-weight:800; font-size:19px;}
  .product-card p.desc{color:var(--muted); font-size:14px;}
  .tags{display:flex; flex-wrap:wrap; gap:8px;}
  .tag{border:1px solid var(--card-border); border-radius:999px; padding:6px 13px; font-size:12px; color:var(--muted);}
  .price-row{display:flex; align-items:center; justify-content:space-between; border-top:1px solid var(--card-border); padding-top:16px; margin-top:auto;}
  .price-label{font-size:10.5px; letter-spacing:0.1em; text-transform:uppercase; color:var(--muted-2); margin-bottom:4px;}
  .price-value{font-family:'Archivo Black'; font-size:19px; color:var(--amber);}
  .price-value span{font-family:'Inter'; font-size:12px; color:var(--muted); font-weight:500;}
  .enquire{font-size:13.5px; font-weight:700; color:var(--text); display:flex; align-items:center; gap:4px;}
  .premium-badge{
    position:absolute; top:14px; left:14px;
    display:inline-block; background:var(--red); color:#fff; font-size:10.5px; font-weight:800;
    padding:5px 12px; border-radius:999px; letter-spacing:0.06em;
  }

  /* Industries */
  .industries-tag{
    display:inline-flex; align-items:center; gap:8px;
    border:1px solid var(--card-border); border-radius:999px; padding:9px 18px;
    font-size:13.5px; color:var(--amber); margin:24px 0 8px;
  }
  .industry-list{margin-top:24px; border-top:1px solid var(--card-border);}
  .industry-row{display:flex; align-items:center; gap:24px; padding:22px 0; border-bottom:1px solid var(--card-border);}
  .industry-row .idx{font-size:13px; color:var(--muted-2); width:28px;}
  .industry-row .name{font-family:'Archivo Black'; font-size:22px; color:var(--text);}
  .industry-row .dot{margin-left:auto; width:8px; height:8px; border-radius:50%; background:var(--red);}
  .industry-row .dot.blue-dot{background:var(--blue);}

  /* Pricing */
  .pricing-grid{margin-top:48px; display:grid; grid-template-columns:repeat(3,1fr); gap:22px;}
  .price-card{background:var(--card); border:1px solid var(--card-border); border-radius:16px; padding:32px; display:flex; flex-direction:column; gap:20px; transition:transform 0.3s ease, box-shadow 0.3s ease;}
  .price-card:hover{transform:translateY(-8px); box-shadow:0 18px 44px rgba(255,255,255,0.06);}
  .price-card.popular:hover{box-shadow:0 20px 50px rgba(255,77,77,0.28);}
  .price-card.gold:hover{box-shadow:0 20px 50px rgba(245,166,35,0.24);}
  .price-card.popular{border-color:var(--red); box-shadow:0 0 40px rgba(255,77,77,0.12); position:relative;}
  .price-card.gold{border-color:rgba(245,166,35,0.5);}
  .popular-tag{align-self:flex-start; background:var(--red); color:#fff; font-size:11px; font-weight:800; padding:6px 14px; border-radius:999px; display:flex; align-items:center; gap:5px;}
  .tier-name{font-family:'Inter'; font-weight:800; font-size:20px;}
  .tier-desc{color:var(--muted); font-size:14px;}
  .tier-price{font-family:'Archivo Black'; font-size:38px; white-space:nowrap;}
  .tier-price span{font-family:'Inter'; font-size:14px; color:var(--muted); font-weight:500;}
  .tier-list{display:flex; flex-direction:column; gap:12px; font-size:14px; color:var(--muted);}
  .tier-list li{list-style:none; display:flex; gap:10px; align-items:flex-start;}
  .tier-list .check{color:var(--blue); font-weight:800;}
  .price-card.popular .tier-list .check{color:var(--red);}
  .price-card.gold .tier-list .check{color:var(--amber);}
  .quote-btn{text-align:center; border:1px solid var(--card-border); border-radius:999px; padding:14px; font-weight:700; font-size:14.5px; margin-top:auto;}
  .price-card.popular .quote-btn{background:linear-gradient(135deg, var(--red), var(--red-deep)); border:none; box-shadow:0 8px 24px rgba(255,77,77,0.3);}

  .custom-note{text-align:center; color:var(--muted); font-size:14.5px; margin-top:36px;}
  .custom-note a{color:var(--amber); font-weight:700;}

  /* Contact */
  .contact-grid{margin-top:48px; display:grid; grid-template-columns:1fr 1fr; gap:20px;}
  .contact-info{display:flex; flex-direction:column; gap:16px;}
  .contact-card{background:var(--card); border:1px solid var(--card-border); border-radius:14px; padding:22px 24px; display:flex; flex-direction:column; gap:8px;}
  .contact-card .icon{color:var(--amber); font-size:18px;}
  .contact-card .label{font-size:11px; letter-spacing:0.1em; text-transform:uppercase; color:var(--muted-2);}
  .contact-card .value{font-weight:600; font-size:15.5px;}
  .contact-card .value a{color:var(--amber);}
  .contact-card .value-sub{font-weight:500; font-size:13px; color:var(--muted); display:block; margin-top:2px;}
  .contact-card .value-sub a{color:var(--muted); font-weight:600;}
  .gold-text{color:var(--amber) !important; font-weight:600; font-size:15.5px; display:block;}
  .gold-text a{color:var(--amber) !important;}

  form{background:var(--card); border:1px solid var(--card-border); border-radius:16px; padding:32px; display:flex; flex-direction:column; gap:20px;}
  .field label{font-size:11px; letter-spacing:0.1em; text-transform:uppercase; color:var(--muted); margin-bottom:8px; display:block;}
  .field label .req{color:var(--red);}
  .field input, .field textarea{
    width:100%; background:var(--bg-soft); border:1px solid var(--card-border); border-radius:10px;
    padding:13px 14px; color:var(--text); font-family:'Inter'; font-size:14.5px;
  }
  .field textarea{resize:vertical; min-height:90px;}
  .field input::placeholder, .field textarea::placeholder{color:var(--muted-2);}
  .submit-btn{background:linear-gradient(135deg, var(--red), var(--blue)); border:none; color:#fff; padding:15px; border-radius:10px; font-weight:800; font-size:14.5px; cursor:pointer;}
  .email-instead-link{display:block; text-align:center; color:var(--muted); font-size:13px; margin-top:14px; text-decoration:underline;}
  .email-instead-link:hover{color:var(--amber);}

  /* Footer */
  footer{border-top:1px solid var(--card-border); padding:70px 0 30px; position:relative; overflow:hidden;}
  footer > .wrap{position:relative; z-index:1;}
  .footer-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:40px; margin-bottom:56px;}
  .footer-brand p{color:var(--muted); font-size:14.5px; margin:16px 0 24px; max-width:320px;}
  .footer-links h4{font-size:11px; letter-spacing:0.12em; text-transform:uppercase; color:var(--amber); margin-bottom:18px;}
  .footer-links a{display:block; color:var(--muted); font-size:14.5px; margin-bottom:12px;}
  .footer-links a:hover{color:var(--text);}
  .wordmark{font-family:'Archivo Black'; font-size:76px; line-height:0.95; color:var(--text); opacity:0.95; text-align:center; margin:20px 0 30px; word-break:break-word;}
  .footer-bottom{border-top:1px solid var(--card-border); padding-top:26px; display:flex; flex-direction:column; align-items:center; gap:8px; text-align:center;}
  .footer-bottom .copyright{color:var(--muted-2); font-size:13.5px;}
  .footer-bottom .tag{font-size:15px;}

  /* Floating quote-request buttons */
  .fab-group{
    position:fixed; bottom:24px; right:24px; z-index:1000;
    display:flex; flex-direction:column; gap:14px; align-items:flex-end;
  }
  .fab-btn{
    display:flex; align-items:center; gap:10px;
    width:52px; height:52px; border-radius:999px;
    justify-content:center;
    box-shadow:0 6px 20px rgba(0,0,0,0.35);
    transition:width 0.25s ease, border-radius 0.25s ease, box-shadow 0.2s ease;
    overflow:hidden;
    white-space:nowrap;
  }
  .fab-btn .fab-label{
    display:none; color:#fff; font-size:13.5px; font-weight:700; padding-right:18px;
  }
  .fab-btn:hover{width:auto; padding-left:18px; border-radius:999px;}
  .fab-btn:hover .fab-label{display:inline-block;}
  .fab-whatsapp{background:#25D366; animation:wa-pulse 2.4s infinite;}
  .fab-whatsapp:hover{background:#20bd5a;}
  .fab-email{background:linear-gradient(135deg, var(--red), var(--red-deep));}
  .fab-email:hover{background:var(--red-deep);}
  @keyframes wa-pulse{
    0%{ box-shadow:0 6px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.55); }
    70%{ box-shadow:0 6px 20px rgba(37,211,102,0.45), 0 0 0 16px rgba(37,211,102,0); }
    100%{ box-shadow:0 6px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
  }
  @media (max-width: 600px){
    .fab-group{ bottom:18px; right:18px; gap:12px; }
    .fab-btn{ width:48px; height:48px; }
    .fab-btn:hover{width:48px; padding-left:0;}
    .fab-btn:hover .fab-label{display:none;}
  }

  .menu-toggle{
    display:none;
    background:none; border:1px solid var(--card-border); border-radius:8px;
    color:var(--text); font-size:20px; cursor:pointer;
    width:42px; height:42px; align-items:center; justify-content:center;
  }
  .mobile-menu{
    display:none;
    flex-direction:column;
    max-height:0; overflow:hidden;
    transition:max-height 0.3s ease;
    border-top:1px solid transparent;
  }
  .mobile-menu.open{max-height:300px; border-top:1px solid var(--card-border);}
  .mobile-menu a{
    padding:16px 24px; color:var(--muted); font-size:14.5px;
    border-bottom:1px solid var(--card-border);
  }
  .mobile-menu a:hover{color:var(--text);}

  @media (max-width: 900px){
    .nav{padding:12px 16px; gap:8px;}
    .brand{gap:8px; min-width:0;}
    .brand-mark{font-size:17px; padding:5px 9px; border-width:2px; flex-shrink:0;}
    header .brand-name{font-size:16px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;}
    .call-btn{padding:8px 12px; font-size:12px; gap:5px;}
    .menu-toggle{width:36px; height:36px; font-size:17px; flex-shrink:0;}
    .nav-links{display:none;}
    .menu-toggle{display:flex;}
    .mobile-menu{display:flex;}
    .why-grid, .products-grid, .pricing-grid{grid-template-columns:1fr;}
    .stats-grid{grid-template-columns:repeat(2,1fr);}
    .contact-grid{grid-template-columns:1fr;}
    .footer-grid{grid-template-columns:1fr;}
    .hero h1{font-size:38px;}
    .wordmark{font-size:40px;}
  }
  @media (max-width: 400px){
    header .brand-name{font-size:13.5px; max-width:110px;}
    .call-btn .call-text{display:none;}
    .call-btn{padding:9px; width:36px; height:36px; border-radius:50%; justify-content:center;}
  }
  /* About */
  .about-grid{margin-top:36px; display:grid; grid-template-columns:1.2fr 1fr; gap:44px; align-items:center;}
  .about-text p{color:var(--muted); font-size:15px; line-height:1.7; margin-bottom:14px;}
  .about-badges{display:flex; gap:14px; margin-top:26px; flex-wrap:wrap;}
  .about-badge{border:1px solid var(--card-border); border-radius:10px; padding:12px 18px; font-size:13px; color:var(--muted); display:flex; align-items:center; gap:8px; background:var(--card);}
  .about-badge .n{font-family:'Archivo Black'; color:var(--amber); font-size:16px;}
  .about-photo{width:100%; height:360px; border-radius:16px; background-size:cover; background-position:center; border:1px solid var(--card-border);}
  @media (max-width: 900px){
    .about-grid{grid-template-columns:1fr;}
    .about-photo{height:240px; order:-1;}
  }

  /* Scroll reveal */
  .reveal{opacity:1;}
  .reveal.reveal-visible{opacity:1; transform:translateY(0);}

  /* Lightbox */
  .lightbox-overlay{
    position:fixed; inset:0; z-index:2000;
    background:rgba(4,4,6,0.94);
    display:flex; align-items:center; justify-content:center;
    padding:40px;
    opacity:0; visibility:hidden;
    transition:opacity 0.25s ease;
  }
  .lightbox-overlay.active{opacity:1; visibility:visible;}
  .lightbox-img{
    max-width:min(900px, 90vw); max-height:85vh;
    border-radius:12px;
    box-shadow:0 20px 60px rgba(0,0,0,0.6);
    transform:scale(0.94);
    transition:transform 0.25s ease;
  }
  .lightbox-overlay.active .lightbox-img{transform:scale(1);}
  .lightbox-close{
    position:absolute; top:24px; right:28px;
    width:44px; height:44px; border-radius:50%;
    background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.2);
    color:#fff; font-size:18px; cursor:pointer;
  }
  .lightbox-close:hover{background:rgba(255,255,255,0.2);}

  /* Map */
  .map-wrap{margin-top:32px; border-radius:16px; overflow:hidden; border:1px solid var(--card-border); height:320px;}
  .map-wrap iframe{width:100%; height:100%; border:0; filter:grayscale(0.3) invert(0.92) contrast(0.9);}
  .map-link{display:block; text-align:center; margin-top:14px; color:var(--amber); font-size:13.5px; font-weight:600;}
  .map-link:hover{text-decoration:underline;}
