/* =====================================================
   BASILMAN UI — Premium Glassmorphism Redesign (2026)
   - Modern neon glass
   - Smooth micro-interactions
   - Responsive typography/spacing
   ===================================================== */

:root{
  /* Core */
  --bg0:#070A12;
  --bg1:#0A1022;
  --glass: rgba(255,255,255,.06);
  --glass2: rgba(255,255,255,.09);
  --stroke: rgba(255,255,255,.12);
  --stroke2: rgba(255,255,255,.18);

  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --muted2: rgba(255,255,255,.58);

  /* Accents */
  --a1:#0B3A66;   /* navy */
  --a2:#F2B313;   /* gold */
  --a3:#0092C6;   /* ocean */
  --a4:#AFBECE;   /* steel */

  /* Layout */
  --r: 20px;
  --r2: 28px;
  --max: 1180px;

  /* Shadows */
  --shadow: 0 26px 80px rgba(0,0,0,.55);
  --shadow2: 0 16px 55px rgba(0,0,0,.42);

  /* Motion */
  --ease: cubic-bezier(.2,.9,.2,1);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", Helvetica, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background:
    radial-gradient(1100px 680px at 10% 10%, rgba(11,58,102,.22), transparent 60%),
    radial-gradient(980px 560px at 90% 0%, rgba(0,146,198,.16), transparent 55%),
    radial-gradient(900px 520px at 70% 90%, rgba(242,179,19,.10), transparent 58%),
    linear-gradient(180deg, var(--bg0), var(--bg1) 70%);
  overflow-x:hidden;
}

/* Ambient animated blobs */
body::before,
body::after{
  content:"";
  position: fixed;
  inset: -20vh -20vw;
  z-index: -1;
  pointer-events:none;
  filter: blur(40px);
  opacity: .55;
  transform: translate3d(0,0,0);
  animation: floatBlobs 18s var(--ease) infinite;
  background:
    radial-gradient(380px 260px at 20% 30%, rgba(11,58,102,.26), transparent 60%),
    radial-gradient(420px 300px at 80% 20%, rgba(0,146,198,.22), transparent 60%),
    radial-gradient(460px 320px at 70% 75%, rgba(242,179,19,.18), transparent 62%);
}
body::after{
  animation-duration: 24s;
  opacity: .35;
  background:
    radial-gradient(360px 240px at 30% 70%, rgba(242,179,19,.18), transparent 62%),
    radial-gradient(520px 340px at 85% 65%, rgba(11,58,102,.16), transparent 60%);
}
@keyframes floatBlobs{
  0%{ transform: translate(-2vw,-1vh) scale(1); }
  50%{ transform: translate(2vw,2vh) scale(1.02); }
  100%{ transform: translate(-2vw,-1vh) scale(1); }
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
button{ font-family:inherit; }
.container{ width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }

.section{ padding: clamp(54px, 6vw, 96px) 0; }

/* Typography */
.kicker{
  color: rgba(255,255,255,.78);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 12px;
}
.h1{ font-size: clamp(34px, 4.2vw, 62px); line-height: 1.05; margin: 10px 0 14px; }
.h2{ font-size: clamp(22px, 2.4vw, 36px); margin: 0 0 10px; }
.p{ color: rgba(255,255,255,.84); line-height:1.75; margin:0; }
.muted{ color: var(--muted); }

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.section-head .right{ text-align:right; }
/* Section head mobile layout: match the "Let's Work" card CTA stacking */
@media (max-width: 800px){
  .section-head{
    flex-direction: column;
    align-items: flex-start;
  }
  .section-head .right{
    width: 100%;
    text-align: left;
  }
}


/* Button group: match the "Let's Work" mobile button stacking */
.btn-stack-mobile{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
@media (max-width: 600px){
  .btn-stack-mobile{
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .btn-stack-mobile .btn{
    width: 100%;
    display:block;
    text-align:center;
    padding: 14px 18px;
    font-weight: 700;
  }
}

/* Glass primitives */
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border: 1px solid var(--stroke);
  border-radius: var(--r);
  box-shadow: var(--shadow2);
  backdrop-filter: blur(16px);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease), background .22s var(--ease);
}
.card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(11,58,102,.24);
}


/* Buttons */
.btn{
  border:0; cursor:pointer;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .2px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  user-select:none;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
}
.btn:active{ transform: translateY(1px) scale(.99); }
.btn.primary{
  color: rgba(255,255,255,.96);
  background: linear-gradient(135deg, rgba(11,58,102,1), rgba(0,146,198,1));
  box-shadow: 0 18px 44px rgba(11,58,102,.22);
}
.btn.primary:hover{ box-shadow: 0 26px 72px rgba(11,58,102,.28); transform: translateY(-2px); }
.btn.ghost{
  color: var(--text);
  background: rgba(255,255,255,.06);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(14px);
}
.btn.ghost:hover{ background: rgba(255,255,255,.10); border-color: var(--stroke2); transform: translateY(-2px); }
.btn.dark{
  color: var(--text);
  background: rgba(10,16,34,.55);
  border: 1px solid var(--stroke);
}
.btn.dark:hover{ background: rgba(10,16,34,.70); border-color: var(--stroke2); transform: translateY(-2px); }

/* Badges */
.badge{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .2px;
  font-size: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(14px);
}
.badge.green{ background: rgba(34,197,94,.15); border-color: rgba(34,197,94,.32); }
.badge.blue{ background: rgba(59,130,246,.14); border-color: rgba(59,130,246,.32); }
.badge.red{ background: rgba(239,68,68,.14); border-color: rgba(239,68,68,.30); }
.badge.orange{ background: rgba(242,179,19,.15); border-color: rgba(242,179,19,.34); }

/* Header / Nav */
.header{
  position: sticky;
  top:0;
  z-index: 50;
  background: rgba(7,10,18,.55);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 14px;
}
.brand{ display:flex; align-items:center; gap:5px; min-width: 170px; }
.brand-logo{
  width: 100px;
  /* Logo should be clean (no bg, border, radius) across all headers */
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}
.brand-logo img{ width:100%; height:100%; object-fit:contain; padding: 0; }
.brand-name{ display:flex; flex-direction:column; line-height:1.1; }
.brand-name strong{ letter-spacing:.9px; }
.brand-name span{ font-size:12px; color: rgba(255,255,255,.68); }

.nav-links{ display:flex; align-items:center; gap: 10px; }
.nav-links a{
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 900;
  color: rgba(255,255,255,.86);
  transition: background .18s var(--ease), color .18s var(--ease), transform .18s var(--ease), border-color .18s var(--ease);
  border: 1px solid transparent;
}
.nav-links a:hover{
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.96);
  transform: translateY(-1px);
}
.nav-links a.active{
  background: linear-gradient(135deg, rgba(11,58,102,.18), rgba(0,146,198,.14));
  border-color: rgba(11,58,102,.35);
}

.nav-actions{ display:flex; align-items:center; gap:10px; }

.burger{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.06);
  display:none;
  cursor:pointer;
  position:relative;
  overflow:hidden;
}
.burger .lines{ position:absolute; inset:0; display:grid; place-items:center; }
.burger .line{
  width: 20px;
  height: 2px;
  background: rgba(255,255,255,.92);
  border-radius:999px;
  position:relative;
  transition: transform .22s var(--ease), opacity .2s var(--ease), top .22s var(--ease);
}
.burger .line::before, .burger .line::after{
  content:"";
  position:absolute;
  left:0;
  width:20px;
  height:2px;
  background: rgba(255,255,255,.92);
  border-radius:999px;
  transition: transform .22s var(--ease), top .22s var(--ease);
}
.burger .line::before{ top:-7px; }
.burger .line::after{ top:7px; }
.burger.active .line{ background: transparent; }
.burger.active .line::before{ top:0; transform: rotate(45deg); }
.burger.active .line::after{ top:0; transform: rotate(-45deg); }

@media (max-width: 980px){
  .nav-links{ display:none; }
  .nav-actions > a,
  .nav-actions > .btn{ display:none !important; }
  .burger{ display:inline-grid; place-items:center; }
}

/* Drawer */
.drawer-overlay{
  position: fixed;
  inset:0;
  background: rgba(0,0,0,.56);
  opacity:0;
  pointer-events:none;
  transition: opacity .2s var(--ease);
  z-index: 60;
}
.drawer{
  position: fixed;
  top: 12px;
  right: 12px;
  width: min(420px, calc(100% - 24px));
  height: calc(100% - 24px);
  border-radius: var(--r2);
  background: linear-gradient(180deg, rgba(10,16,34,.92), rgba(7,10,18,.94));
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  transform: translateX(110%);
  transition: transform .25s var(--ease);
  z-index: 61;
  overflow:hidden;
}
.drawer.open{ transform: translateX(0); }
.drawer-overlay.open{ opacity:1; pointer-events:auto; }

.drawer-top{
  padding: 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.drawer-body{ padding: 14px 16px 18px; display:flex; flex-direction:column; gap: 10px; }
.drawer a{
  padding: 14px 14px;
  border-radius: 18px;
  font-weight: 900;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  transition: transform .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
}
.drawer a:hover{ background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.18); transform: translateY(-1px); }
.drawer .drawer-cta{ margin-top: 10px; display:grid; gap:10px; }
.drawer-footer{
  margin-top:auto;
  padding: 16px;
  border-top: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.74);
  font-size: 13px;
}
.close{
  width: 42px;
  height: 42px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  cursor:pointer;
}
.close:hover{ background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.18); }

/* Grid */
.grid{ display:grid; gap: 18px; }
.grid.cols-3{ grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px){ .grid.cols-3{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px){ .grid.cols-3{ grid-template-columns: 1fr; } }

/* HERO / Slider */
.hero{ padding: 22px 0 10px; }
.hero-wrap{
  position:relative;
  border-radius: var(--r2);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}
.hero-bg{
  position:absolute;
  inset:0;
  /* background-image is set inline per slide */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(1.06) contrast(1.04);
  pointer-events:none;
}
.hero-bg::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 520px at 25% 25%, rgba(255,255,255,.10), transparent 60%),
    linear-gradient(135deg, rgba(11,58,102,.26), transparent 55%),
    linear-gradient(225deg, rgba(0,146,198,.20), transparent 50%);
}
.hero-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(7,10,18,.68) 0%, rgba(7,10,18,.30) 55%, rgba(7,10,18,.68) 100%);
}
.hero-slide{ min-height: clamp(420px, 56vh, 620px); display:grid; }
.hero-content{
  position:relative;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  padding: clamp(22px, 3vw, 40px);
  align-items:center;
}
.hero-content::before{
  content:"";
  position:absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,10,18,.10), rgba(7,10,18,.55) 70%);
  pointer-events:none;
}
.hero-content > *{ position:relative; }

.hero-actions{ display:flex; gap: 12px; flex-wrap:wrap; margin-top: 16px; }

.hero-left .h1{ letter-spacing: -0.02em; }
.hero-highlight{
  display:inline-block;
  padding: 0 .35em;
  border-radius: 999px;
  background: rgba(11,58,102,.18);
  border: 1px solid rgba(255,255,255,.12);
}

.hero-chips{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: 14px;
}
.chip{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(14px);
  color: rgba(255,255,255,.86);
  font-size: 13px;
}

.hero-panel{
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
}
.hero-panel h3{ margin: 0 0 10px; font-size: 15px; }
.hero-panel ul{ margin: 0; padding-left: 18px; color: rgba(255,255,255,.78); }
.hero-panel li{ margin: 8px 0; }

.hero-stats{
  display:grid;
  gap: 12px;
}
.stat{
  padding: 16px;
  border-radius: 20px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(14px);
  transition: transform .18s var(--ease), border-color .18s var(--ease);
}
.stat:hover{ transform: translateY(-3px); border-color: rgba(11,58,102,.30); }
.stat strong{ font-size: 18px; }
.stat span{ display:block; color: var(--muted); font-size: 13px; margin-top: 4px; }

@media (max-width: 900px){
  .hero-content{ grid-template-columns: 1fr; }
  .hero-stats{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px){
  .hero-stats{ grid-template-columns: 1fr; }
}

/* Service cards */
.service-card{
  padding: 18px;
  position:relative;
  overflow:hidden;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.service-card:hover{ transform: translateY(-6px); border-color: rgba(0,146,198,.30); box-shadow: var(--shadow); }
.icon-pill{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, rgba(11,58,102,.25), rgba(0,146,198,.18));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
}

/* Client logos */
.clients-grid{ display:grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
@media (max-width: 980px){ .clients-grid{ grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px){ .clients-grid{ grid-template-columns: repeat(2, 1fr); } }

.client-card{
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  display:grid;
  place-items:center;
  min-height: 86px;
  transition: transform .18s var(--ease), border-color .18s var(--ease), background .18s var(--ease);
}
.client-card:hover{ transform: translateY(-3px); border-color: rgba(11,58,102,.26); background: rgba(255,255,255,.07); }
.client-card img{
  width: 100%;
  height: 46px;
  object-fit: contain;
  filter: none;
  opacity: .98;
}

/* Equipment cards */
.equip-card{ overflow:hidden; }
.equip-thumb{
  position:relative;
  aspect-ratio: 16/10;
  background: rgba(255,255,255,.05);
}
.equip-thumb img{
  width:100%;
  height:100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .35s var(--ease);
}
.equip-card:hover .equip-thumb img{ transform: scale(1.07); }

.equip-body{ padding: 18px; }
.equip-body h3{ margin: 10px 0 10px; font-size: 16px; line-height: 1.35; }
.equip-meta{ display:flex; flex-wrap:wrap; gap: 10px; color: var(--muted); font-size: 13px; }
.price{ margin-top: 10px; font-weight: 950; letter-spacing: .2px; font-size: 18px; }
.equip-actions{ display:flex; gap: 10px; margin-top: 14px; flex-wrap:wrap; }

/* Filters & inputs */
.filters{
  display:grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 12px;
  padding: 14px;
  border-radius: var(--r);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  margin-bottom: 16px;
}
@media (max-width: 900px){
  .filters{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px){
  .filters{ grid-template-columns: 1fr; }
}

.input{
  width:100%;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(10,16,34,.55);
  color: var(--text);
  outline: none;
  transition: border-color .18s var(--ease), background .18s var(--ease);
}
.input:focus{ border-color: rgba(0,146,198,.40); background: rgba(10,16,34,.72); }

.form{
  display:grid;
  gap: 12px;
}
.row{ display:grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 700px){ .row{ grid-template-columns: 1fr; } }

/* Modal (Equipment View Details) */
.modal-overlay{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.70);
  display:none;
  align-items:center;
  justify-content:center;
  padding: 18px;
  z-index: 90;
}
.modal-overlay.open{ display:flex; }

.modal{
  width: min(980px, 100%);
  border-radius: var(--r2);
  background: rgba(10,16,34,.86);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  /* Make the View Details popup scrollable */
  max-height: calc(100vh - 70px);
  overflow:auto;
  transform: translateY(10px) scale(.98);
  opacity: 0;
  transition: transform .22s var(--ease), opacity .22s var(--ease);
  backdrop-filter: blur(18px);
}
.modal-overlay.open .modal{ transform: translateY(0) scale(1); opacity: 1; }

.modal-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  position: sticky;
  top: 0;
  background: rgba(10,16,34,.92);
  backdrop-filter: blur(18px);
  z-index: 1;
}
.modal-title{ display:flex; flex-direction:column; gap: 3px; }
.modal-title strong{ font-size: 16px; }
.modal-title span{ font-size: 12px; color: rgba(255,255,255,.70); }

.modal-body{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 16px;
}
@media (max-width: 900px){ .modal-body{ grid-template-columns: 1fr; } }

.modal-gallery{
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}
.modal-gallery img{ width:100%; height:100%; object-fit: cover; }

.modal-panel{
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
}

.kv{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}
.kv > div{
  padding: 12px;
  border-radius: 18px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.08);
}
.kv small{ display:block; color: rgba(255,255,255,.68); font-size: 12px; }
.kv strong{ display:block; margin-top: 4px; font-size: 13px; }

.modal-cta{ display:flex; gap: 10px; flex-wrap:wrap; margin-top: 12px; }

/* Map wrapper */
.map-wrapper{
  border-radius: var(--r2);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}

/* Footer */
.footer{
  padding: 42px 0 22px;
  border-top: 1px solid rgba(255,255,255,.10);
  background: rgba(7,10,18,.55);
  backdrop-filter: blur(16px);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 18px;
}
@media (max-width: 900px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .footer-grid{ grid-template-columns: 1fr; } }

.footer-bottom{
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.72);
  font-size: 13px;
  display:flex;
  justify-content:space-between;
  gap: 10px;
  flex-wrap:wrap;
}

/* Floating action button / WhatsApp */
.fab{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display:grid;
  gap: 10px;
}

/* Back-to-top button */
.to-top{
  width: 46px;
  height: 46px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(14px);
  color: rgba(255,255,255,.94);
  cursor:pointer;
  display:grid;
  place-items:center;
  transform: translateY(10px);
  opacity: 0;
  pointer-events:none;
  transition: opacity .18s var(--ease), transform .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
}
.to-top.show{ opacity: 1; transform: translateY(0); pointer-events:auto; }
.to-top:hover{ background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.20); }

/* Scroll progress */
.scroll-progress{
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 999;
  background: linear-gradient(90deg, rgba(11,58,102,1), rgba(0,146,198,1), rgba(242,179,19,1));
  box-shadow: 0 10px 30px rgba(11,58,102,.25);
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior:auto !important; }
  body::before, body::after{ animation:none !important; }
  .btn, .card, .stat, .client-card, .service-card, .equip-thumb img{ transition:none !important; }
}


/* Select fields */

select,
.select{
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,.20);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
  background-image:
    linear-gradient(135deg, rgba(11,58,102,.20), rgba(0,146,198,.12)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat;
  background-size: auto, 18px 18px;
  background-position: 0 0, calc(100% - 12px) 50%;
  padding-right: 44px;
}
select:hover{ border-color: rgba(11,58,102,.35); }
select:focus,
.select:focus{
  border-color: rgba(11,58,102,.60);
  box-shadow: 0 0 0 4px rgba(11,58,102,.18), 0 18px 50px rgba(0,0,0,.35);
}
select:disabled{
  opacity:.6;
  cursor:not-allowed;
}
select option{ background: #0b1220; color: rgba(255,255,255,.92); }


/* =====================================================
   Super Loader (Mind-blowing page open experience)
   - Glass neon rings + shimmer + scanlines
   ===================================================== */
#ui-loader{
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(900px 450px at 10% 15%, rgba(11,58,102,.30), transparent 60%),
    radial-gradient(850px 420px at 90% 25%, rgba(242,179,19,.18), transparent 55%),
    radial-gradient(700px 380px at 50% 85%, rgba(11,58,102,.18), transparent 55%),
    rgba(7, 11, 20, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
}

#ui-loader::before{
  content:"";
  position:absolute; inset:-40%;
  background:
    conic-gradient(from 180deg,
      rgba(11,58,102,.00),
      rgba(11,58,102,.35),
      rgba(242,179,19,.22),
      rgba(11,58,102,.30),
      rgba(11,58,102,.00));
  filter: blur(28px);
  animation: uiLoaderSpin 1.8s linear infinite;
  opacity: .85;
}

#ui-loader::after{
  content:"";
  position:absolute; inset:0;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255,255,255,.05) 0px,
      rgba(255,255,255,.05) 1px,
      transparent 2px,
      transparent 6px
    );
  opacity:.10;
  mix-blend-mode: overlay;
  pointer-events:none;
  animation: uiScan 3.2s ease-in-out infinite;
}

.ui-loader__inner{
  position: relative;
  width: min(520px, 90%);
  padding: 28px 22px 24px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  box-shadow: 0 30px 120px rgba(0,0,0,.55);
  text-align: center;
  transform: translateY(0);
}

.ui-loader__logo{
  width: 84px;
  height: 84px;
  object-fit: contain;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,.55));
}

.ui-loader__rings{
  position: relative;
  width: 140px;
  height: 140px;
  margin: 14px auto 8px;
}

.ui-loader__rings span{
  position:absolute; inset:0;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow:
    inset 0 0 0 1px rgba(11,58,102,.20),
    0 0 55px rgba(11,58,102,.25);
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.08), transparent 55%);
  animation: uiRing 1.25s ease-in-out infinite;
}

.ui-loader__rings span:nth-child(2){
  inset: 12px;
  box-shadow:
    inset 0 0 0 1px rgba(242,179,19,.22),
    0 0 55px rgba(242,179,19,.16);
  animation-delay: .12s;
}
.ui-loader__rings span:nth-child(3){
  inset: 26px;
  box-shadow:
    inset 0 0 0 1px rgba(11,58,102,.25),
    0 0 55px rgba(11,58,102,.18);
  animation-delay: .24s;
}

.ui-loader__bar{
  width: min(360px, 92%);
  height: 10px;
  margin: 12px auto 0;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  overflow:hidden;
}

.ui-loader__bar > i{
  display:block;
  height:100%;
  width: 42%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(11,58,102,.95), rgba(242,179,19,.85), rgba(11,58,102,.95));
  filter: saturate(1.05);
  animation: uiBar 1.1s ease-in-out infinite;
}

.ui-loader__text{
  margin: 12px 0 0;
  color: rgba(255,255,255,.75);
  font-size: .98rem;
  letter-spacing: .2px;
}

.ui-loader__text b{
  background: linear-gradient(90deg, rgba(255,255,255,.95), rgba(255,255,255,.55));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}

#ui-loader.is-done{
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .55s ease, transform .55s ease;
  pointer-events:none;
}

@keyframes uiLoaderSpin{
  to{ transform: rotate(1turn); }
}
@keyframes uiRing{
  0%,100%{ transform: scale(1); opacity:.92; }
  50%{ transform: scale(1.06); opacity:1; }
}
@keyframes uiBar{
  0%{ transform: translateX(-40%); }
  50%{ transform: translateX(130%); }
  100%{ transform: translateX(-40%); }
}
@keyframes uiScan{
  0%,100%{ transform: translateY(-3%); }
  50%{ transform: translateY(3%); }
}

@media (prefers-reduced-motion: reduce){
  #ui-loader::before,
  #ui-loader::after,
  .ui-loader__rings span,
  .ui-loader__bar > i{ animation: none !important; }
}
