:root{
  --cms-primary:#0b1e34;
  --cms-secondary:#f97316;
  --cms-accent:#38bdf8;
  --cms-header:#071426;
  --cms-footer:#071426;
}
.lang-switch{display:flex;gap:8px;margin-left:12px}
.lang-switch a{font-weight:900;border:1px solid rgba(255,255,255,.18);padding:7px 10px;border-radius:999px;color:#fff;background:rgba(255,255,255,.08)}
.lang-switch a.active{background:linear-gradient(135deg,var(--cms-secondary),#f59e0b);color:#06101f}
.site-header{background:linear-gradient(90deg,var(--cms-header),#102a46)!important}
.brand-logo-img{width:58px;height:58px;object-fit:contain;border-radius:14px;background:#fff;padding:6px;box-shadow:0 12px 30px rgba(0,0,0,.25)}
.hero.cms-hero{padding:0;min-height:640px;display:flex;align-items:center;background:var(--cms-primary);position:relative}
.cms-hero-slide{position:absolute;inset:0;background-size:cover;background-position:center;opacity:.28}
.cms-hero:after{content:'';position:absolute;inset:0;background:linear-gradient(90deg,rgba(7,20,38,.95),rgba(7,20,38,.70),rgba(7,20,38,.25))}
.cms-hero .container{position:relative;z-index:3}
.cms-hero h1{max-width:880px}
.cms-card-image{height:220px;object-fit:cover;border-radius:18px;width:100%}
.product-gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:24px}
.product-gallery img{height:210px;object-fit:cover;border-radius:18px;box-shadow:0 12px 30px rgba(15,23,42,.1)}
.product-enquiry-box{background:#fff;border:1px solid #e2e8f0;border-radius:22px;padding:28px;box-shadow:0 18px 45px rgba(15,23,42,.1)}
.cms-input{width:100%;border:1px solid #cbd5e1;border-radius:13px;padding:12px 14px;margin-bottom:12px;font:inherit}
.chatbot-widget{position:fixed;right:20px;bottom:90px;z-index:9999}
.chatbot-toggle{background:linear-gradient(135deg,var(--cms-secondary),#f59e0b);color:#111827;border:0;border-radius:999px;padding:14px 18px;font-weight:900;box-shadow:0 18px 36px rgba(249,115,22,.3);cursor:pointer}
.chatbot-panel{display:none;width:330px;max-width:calc(100vw - 34px);background:#fff;border-radius:22px;box-shadow:0 25px 70px rgba(2,8,23,.25);overflow:hidden;border:1px solid #e2e8f0}
.chatbot-panel.open{display:block}
.chatbot-head{background:var(--cms-primary);color:#fff;padding:15px 18px;font-weight:900}
.chatbot-body{height:260px;overflow:auto;padding:14px;background:#f8fafc}
.chat-row{margin:8px 0;padding:10px 12px;border-radius:14px;font-size:14px}
.chat-row.user{background:#dbeafe;margin-left:32px}
.chat-row.bot{background:#fff;border:1px solid #e2e8f0;margin-right:32px}
.chatbot-form{display:flex;gap:6px;padding:10px;border-top:1px solid #e2e8f0}
.chatbot-form input{flex:1;border:1px solid #cbd5e1;border-radius:999px;padding:10px 12px}
.chatbot-form button{border:0;border-radius:999px;background:var(--cms-secondary);font-weight:900;padding:0 14px}
.footer{background:var(--cms-footer)!important}
.contact-info-card{background:#fff;border:1px solid #e2e8f0;border-radius:22px;padding:26px;box-shadow:0 18px 45px rgba(15,23,42,.08)}
@media(max-width:860px){.lang-switch{width:100%;padding:10px 18px}.hero.cms-hero{min-height:560px}.product-gallery{grid-template-columns:1fr}.chatbot-widget{right:12px;bottom:80px}}


/* Thank you enquiry popup */
.thankyou-modal{
  position:fixed;
  inset:0;
  z-index:9999;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:22px;
  background:rgba(2,8,23,.68);
  backdrop-filter:blur(8px);
  animation:thankFadeIn .25s ease both;
}
.thankyou-modal.hide{animation:thankFadeOut .25s ease both;}
.thankyou-card{
  position:relative;
  width:min(460px,94vw);
  background:linear-gradient(180deg,#ffffff,#f8fafc);
  border:1px solid rgba(226,232,240,.95);
  border-radius:28px;
  padding:36px 30px 30px;
  text-align:center;
  box-shadow:0 28px 80px rgba(2,8,23,.35);
  transform:translateY(0) scale(1);
  animation:thankPop .28s ease both;
}
.thankyou-icon{
  width:76px;
  height:76px;
  margin:0 auto 18px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,#16a34a,#22c55e);
  color:#fff;
  font-size:42px;
  font-weight:900;
  box-shadow:0 14px 34px rgba(34,197,94,.32);
}
.thankyou-card h2{
  margin:0 0 10px;
  color:#071426;
  font-size:34px;
  line-height:1.1;
}
.thankyou-card p{
  margin:0 auto 24px;
  color:#475569;
  font-size:16px;
  line-height:1.65;
  max-width:360px;
}
.thankyou-x{
  position:absolute;
  top:14px;
  right:14px;
  width:38px;
  height:38px;
  border:0;
  border-radius:50%;
  background:#e2e8f0;
  color:#0f172a;
  font-size:26px;
  line-height:1;
  cursor:pointer;
  font-weight:700;
}
.thankyou-x:hover{background:#cbd5e1;}
@keyframes thankFadeIn{from{opacity:0}to{opacity:1}}
@keyframes thankFadeOut{from{opacity:1}to{opacity:0}}
@keyframes thankPop{from{opacity:0;transform:translateY(14px) scale(.96)}to{opacity:1;transform:translateY(0) scale(1)}}
