/* Base, layout, and theme for the marketing site */
:root{
  --bg:#ffffff;
  --bg2:#ffffff;
  --surface:rgba(0,0,0,.03);
  --surface2:rgba(0,0,0,.05);
  --text:#0b0f14;
  --muted:rgba(0,0,0,.65);
  --accent:#1cafa4;
  --accent2:#1cafa4;
  --accent-rgb: 28,175,164;
  --danger:#ff5f73;
  --border:rgba(0,0,0,.10);
  --shadow: none;
  --ring: rgba(var(--accent-rgb),.55);
  --radius-xl: 22px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 10px;
  --max: 1140px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background: var(--bg);
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}

.container{
  width:min(var(--max), calc(100% - 40px));
  margin:0 auto;
}

/* Header */
.topbar{
  position:sticky;
  top:0;
  z-index:30;
  backdrop-filter: none;
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  letter-spacing:.2px;
}
.brandMark{
  width:38px;
  height:38px;
  border-radius:12px;
  background:
    radial-gradient(18px 18px at 35% 35%, rgba(255,255,255,.35), transparent 60%),
    linear-gradient(135deg, rgba(var(--accent-rgb),.95), rgba(var(--accent-rgb),.95));
  box-shadow: 0 12px 40px rgba(var(--accent-rgb),.25);
  border:1px solid rgba(255,255,255,.18);
}

/* Logo image used in header/hero/footer */
.brandLogo{
  width:44px;
  height:44px;
  border-radius:14px;
  object-fit:cover;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.03);
  box-shadow: 0 12px 40px rgba(var(--accent-rgb),.10);
}
.brandLogoSmall{
  width:34px;
  height:34px;
  border-radius:12px;
}
.heroBrandRow .brandLogo{
  width:46px;
  height:46px;
  border-radius:16px;
}
.brandSmall{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}
.brandSmall span:first-child{
  font-size:14px;
  color:var(--muted);
  font-weight:700;
}
.brandSmall span:last-child{
  font-size:16px;
}

.navLinks{
  display:flex;
  align-items:center;
  gap:20px;
}
.navLinks a{
  color:var(--muted);
  font-weight:650;
  font-size:14px;
  padding:8px 10px;
  border-radius:10px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.navLinks a:hover{
  background: rgba(0,0,0,.35);
  color:var(--text);
  transform: translateY(-1px);
}

.navRight{
  display:flex;
  align-items:center;
  gap:10px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.38);
  color:var(--text);
  font-weight:750;
  font-size:14px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
  cursor:pointer;
}
.btn:hover{
  transform: translateY(-1px);
  background: rgba(0,0,0,.48);
  border-color: rgba(255,255,255,.2);
}
.btnPrimary{
  background: linear-gradient(135deg, rgba(var(--accent-rgb),.95), rgba(var(--accent-rgb),.88));
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 14px 40px rgba(var(--accent-rgb),.18);
}
.btnPrimary:hover{
  background: linear-gradient(135deg, rgba(var(--accent-rgb),1), rgba(var(--accent-rgb),1));
}
.btnGhost{
  background: transparent;
}
.btnSmall{
  padding:10px 12px;
  border-radius:12px;
  font-size:13px;
}
.icon{
  width:18px;
  height:18px;
  display:inline-block;
}

.hamburger{
  display:none;
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.38);
  color:var(--text);
  cursor:pointer;
}
.hamburger svg{width:20px; height:20px}
.hamburger i{
  font-size:20px;
  color: var(--text);
}

/* Mobile drawer */
.mobileMenu{
  display:none;
  padding: 0 0 16px;
}
.mobileMenuInner{
  margin-top:10px;
  border:1px solid rgba(255,255,255,.1);
  background: rgba(0,0,0,.62);
  border-radius:18px;
  padding:10px;
}
.mobileMenu a{
  display:block;
  padding:12px 12px;
  border-radius:14px;
  color:var(--muted);
  font-weight:700;
}
.mobileMenu a:hover{
  background: rgba(0,0,0,.45);
  color:var(--text);
}

/* Hero */
.hero{
  padding: 64px 0 30px;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
  align-items:stretch;
}
.heroCard{
  border:1px solid rgba(255,255,255,.1);
  background: rgba(0,0,0,.62);
  border-radius: var(--radius-xl);
  padding: 26px;
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}
.heroCard:before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(420px 220px at 15% 0%, rgba(var(--accent-rgb),.35), transparent 65%),
    radial-gradient(380px 220px at 80% 35%, rgba(var(--accent-rgb),.22), transparent 60%);
  opacity:.85;
  pointer-events:none;
}
.heroCard > *{position:relative}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--muted);
  font-weight:750;
  font-size:13px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.45);
}
.kickerDot{
  width:9px;
  height:9px;
  border-radius:50%;
  background: linear-gradient(135deg, rgba(var(--accent-rgb),1), rgba(var(--accent-rgb),1));
  box-shadow: 0 0 0 6px rgba(var(--accent-rgb),.15);
}
.heroTitle{
  margin:16px 0 10px;
  font-size: 44px;
  line-height: 1.06;
  letter-spacing: -0.8px;
  font-weight: 900;
}
.heroSubtitle{
  margin:0;
  color: var(--muted);
  font-size: 16px;
  line-height:1.6;
  max-width: 62ch;
}
.heroActions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:20px;
}
.stats{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
  height:100%;
}
.stat{
  border:1px solid rgba(255,255,255,.1);
  background: rgba(0,0,0,.62);
  border-radius: var(--radius-lg);
  padding:18px;
}
.stat strong{
  display:block;
  font-size:18px;
  margin-bottom:6px;
}
.stat span{
  color:var(--muted);
  line-height:1.5;
  font-size:14px;
}

/* Sections */
.section{
  padding: 28px 0;
}
.sectionHeader{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:16px;
}
.sectionHeader h2{
  margin:0;
  font-size:22px;
  letter-spacing:-.2px;
}
.sectionHeader p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
  max-width:60ch;
}
.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.grid2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}
.card{
  border:1px solid rgba(255,255,255,.1);
  background: rgba(0,0,0,.62);
  border-radius: var(--radius-lg);
  padding:18px;
  overflow:hidden;
  position:relative;
}
.card:after{
  content:"";
  position:absolute;
  inset:-1px;
  background: radial-gradient(500px 160px at 30% 0%, rgba(var(--accent-rgb),.14), transparent 70%);
  opacity:.8;
  pointer-events:none;
}
.card > *{position:relative}
.card h3{
  margin:0 0 8px;
  font-size:16px;
  letter-spacing:-.1px;
}
.card p{
  margin:0 0 12px;
  color:var(--muted);
  line-height:1.6;
  font-size:14px;
}
.list{
  margin:0;
  padding-left:18px;
  color:var(--muted);
}
.list li{
  margin:8px 0;
  line-height:1.4;
  font-size:14px;
}
.pillRow{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.pill{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.55);
  color: var(--muted);
  font-weight:700;
  font-size:13px;
  border-radius:999px;
  padding:10px 12px;
}

/* Project tiles / gallery */
.tile{
  border:1px solid rgba(255,255,255,.1);
  background: rgba(0,0,0,.62);
  border-radius: var(--radius-xl);
  padding:18px;
  min-height: 190px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:12px;
}
.tileTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.55);
  color: var(--muted);
  font-weight:800;
  font-size:13px;
}
.tileArt{
  height:110px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(135deg, rgba(var(--accent-rgb),.18), rgba(var(--accent-rgb),.12)),
    radial-gradient(120px 80px at 15% 35%, rgba(var(--accent-rgb),.28), transparent 60%),
    radial-gradient(120px 80px at 80% 65%, rgba(var(--accent-rgb),.22), transparent 60%),
    rgba(255,255,255,.03);
  position:relative;
  overflow:hidden;
}
.tileArt img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  border-radius:18px;
}
.tileArt:before{
  content:"";
  position:absolute;
  inset:-30px;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.07), rgba(255,255,255,0) 8px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.05), rgba(255,255,255,0) 8px);
  transform: rotate(7deg);
  opacity:.45;
}
.tileBottom{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
}
.tileBottom h3{
  margin:0;
  font-size:16px;
}
.tileBottom p{
  margin:6px 0 0;
  color:var(--muted);
  font-size:14px;
  line-height:1.4;
}

/* FAQ */
.faqItem{
  border:1px solid rgba(255,255,255,.1);
  background: rgba(0,0,0,.62);
  border-radius: var(--radius-lg);
  padding:16px 16px;
}
.faqQ{
  margin:0;
  font-weight:900;
  font-size:15px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
}
.faqA{
  margin:10px 0 0;
  color:var(--muted);
  line-height:1.65;
  font-size:14px;
}
.chev{
  width:18px;
  height:18px;
  flex:0 0 auto;
  opacity:.9;
  margin-top:2px;
  transition: transform .2s ease;
}
.faqItem[data-open="false"] .faqA{display:none}
.faqItem[data-open="false"] .chev{transform: rotate(-90deg)}

/* Forms */
.formGrid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
}
.field{
  display:flex;
  flex-direction:column;
  gap:8px;
}
label{
  color: var(--muted);
  font-weight:750;
  font-size:13px;
}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.62);
  color:var(--text);
  outline:none;
}
textarea{min-height:120px; resize:vertical}
input:focus, textarea:focus{
  border-color: rgba(var(--accent-rgb),.65);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb),.15);
}

/* Footer */
.footer{
  padding: 26px 0 44px;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 30px;
}
.footerGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:16px;
  align-items:start;
}
.footer p{margin:10px 0 0; color:var(--muted); line-height:1.7}
.footerSmall{
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  color:var(--muted);
  font-size:13px;
}
.footerLinks{
  display:flex;
  flex-wrap:wrap;
  gap:10px 14px;
  justify-content:flex-end;
}
.footerLinks a{
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}
.footerLinks a:hover{color:var(--text)}

/* Floating WhatsApp button */
.waFloat{
  position:fixed;
  right:14px;
  bottom:14px;
  z-index:40;
}
.waBtn{
  width:48px;
  height:48px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.16);
  background: linear-gradient(135deg, rgba(var(--accent-rgb),.95), rgba(var(--accent-rgb),.88));
  box-shadow: 0 16px 50px rgba(var(--accent-rgb),.25);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  color:#ffffff !important; /* svg uses currentColor */
  transition: transform .2s ease;
}
.waBtn:hover{transform: translateY(-1px)}
.waBtn svg{
  width:22px;
  height:22px;
  stroke: #ffffff !important;
}
.waBtn i{
  font-size:22px;
  color:#ffffff !important;
}
.waBtn i.fa-brands,
.waBtn i.fa-solid{
  line-height:1;
}
.waBtn svg path{
  stroke: #ffffff !important;
  fill: none !important;
}

/* Hero slider */
.heroFull{
  padding:0;
  min-height: calc(100vh - 72px);
  position:relative;
  display:flex;
  align-items:stretch;
}
.heroFullBg{
  position:absolute;
  inset:0;
  z-index:0;
}
.heroFullBg .heroVideo{
  /* Helps keep text readable over busy footage */
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter: saturate(1.05) contrast(1.05);
}
.heroBgGradient{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.96), rgba(0,0,0,.55) 55%, rgba(0,0,0,.86));
  pointer-events:none;
}
.heroOverlayWrap{
  position:relative;
  z-index:1;
  width:100%;
  display:flex;
  align-items:center;
  padding: 46px 0;
}
.heroOverlayCard{
  max-width: 720px;
  width: 100%;
}
.heroBrandRow{
  display:flex;
  align-items:center;
  gap:12px;
  margin: 14px 0 6px;
}
.heroBrandText{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}
.heroBrandName{
  font-weight:950;
  letter-spacing:-.2px;
  font-size:18px;
}
.heroBrandTag{
  color:var(--muted);
  font-weight:750;
  font-size:13px;
}

.heroSliderCard{
  border:1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  border-radius: var(--radius-xl);
  padding:16px;
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}
.heroSliderCard:before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(420px 220px at 15% 0%, rgba(var(--accent-rgb),.35), transparent 65%),
    radial-gradient(380px 220px at 80% 35%, rgba(var(--accent-rgb),.22), transparent 60%);
  opacity:.75;
  pointer-events:none;
}
.heroSliderCard > *{position:relative}
.heroSliderHeader{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
}
.heroSliderHeaderText{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}
.heroSliderTitle{
  font-weight:900;
  letter-spacing:-.2px;
}
.heroSliderTag{
  color:var(--muted);
  font-weight:750;
  font-size:13px;
}
.sliderViewport{
  border:1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
  border-radius:18px;
  overflow:hidden;
  height: 260px;
}
.heroBgViewport{
  border:none;
  background: transparent;
  border-radius:0;
  height: 100%;
}
.heroBgViewport .sliderImg{
  /* "Crash" (unexpected cropping) stops when we don't force cover */
  object-fit: contain;
  border-radius:0;
}
.sliderTrack{
  display:flex;
  width:300%;
  height:100%;
  transition: transform .55s ease;
}
.sliderSlide{
  flex:0 0 100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:12px;
}
.sliderImg{
  width:100%;
  height:100%;
  object-fit:contain; /* avoid cropping logo/text inside images */
  border-radius:12px;
}
.sliderDots{
  display:flex;
  gap:10px;
  justify-content:center;
  margin-top:12px;
}
.heroBgDots{
  position:absolute;
  left:0;
  right:0;
  bottom:18px;
  margin-top:0;
}
.sliderDot{
  width:14px;
  height:14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.06);
  cursor:pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn i{
  font-size:18px;
  line-height:1;
}
.sliderDot:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.10);
}
.sliderDot.is-active{
  background: linear-gradient(135deg, rgba(var(--accent-rgb),.95), rgba(var(--accent-rgb),.9));
  border-color: rgba(255,255,255,.35);
}

/* Page header */
.pageHead{
  padding: 30px 0 10px;
}
.pageHeadCard{
  border:1px solid rgba(255,255,255,.1);
  background: rgba(0,0,0,.62);
  border-radius: var(--radius-xl);
  padding: 18px;
  box-shadow: var(--shadow);
}
.crumb{
  color:var(--muted);
  font-weight:750;
  font-size:13px;
}
.pageHead h1{
  margin:10px 0 0;
  font-size: 30px;
  letter-spacing:-.4px;
}

/* Utilities */
.muted{color:var(--muted)}
.mt16{margin-top:16px}
.mt22{margin-top:22px}
.divider{
  height:1px;
  background: rgba(255,255,255,.08);
  margin: 18px 0;
}
.srOnly{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* Contact: world map with 3 branch pins */
.span2{
  grid-column: 1 / -1;
}

.worldMap{
  position:relative;
  width:100%;
  height: 320px;
  border:1px solid rgba(0,0,0,.08);
  border-radius:18px;
  overflow:hidden;
  background:#ffffff;
}

.worldMapSvg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  display:block;
}

.mapPin{
  position:absolute;
  transform: translate(-50%, -50%);
  outline:none;
  cursor: default;
}

.mapPinDot{
  width:14px;
  height:14px;
  border-radius:999px;
  background: var(--accent);
  margin:0 auto;
  box-shadow: 0 0 0 7px rgba(var(--accent-rgb), .15);
  border: 2px solid rgba(255,255,255,.95);
}

.mapPinCard{
  position:absolute;
  left:50%;
  top: -10px;
  transform: translate(-50%, -100%);
  min-width: 190px;
  max-width: 240px;
  padding:10px 12px;
  border-radius:14px;
  background:#ffffff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 14px 40px rgba(0,0,0,.06);
}

.mapPinTitle{
  font-weight:950;
  margin-bottom:6px;
  color:#0b0f14;
}

.mapPinLine{
  font-size:13px;
  line-height:1.35;
  color: rgba(11,15,20,.72);
}

/* Responsiveness */
@media (max-width: 980px){
  .heroGrid{grid-template-columns:1fr}
  .grid3{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .footerGrid{grid-template-columns:1fr}
  .footerLinks{justify-content:flex-start}
  .formGrid{grid-template-columns:1fr}
  .navLinks{display:none}
  .hamburger{display:inline-flex; align-items:center; justify-content:center}
  /* JS controls open/close state */
  .mobileMenu{display:none}
  .sliderViewport{height: 220px}
  .heroOverlayWrap{padding: 26px 0}
  .heroTitle{font-size: 34px}
}

/* ---- Light theme override (white background, minimal design) ---- */
body{
  background:#ffffff !important;
  color: #0b0f14 !important;
}
.heroFullBg{display:none !important;}
.heroFullBg{display:block !important;}
.heroBgGradient{
  /* Keep video clear (no strong white wash) */
  background: transparent !important;
}
.heroFullBg .heroVideo{
  filter: none !important;
}
.topbar{
  background: rgba(255,255,255,.98) !important;
  border-bottom: 1px solid rgba(0,0,0,.08) !important;
}
.navLinks a{
  color: rgba(0,0,0,.65) !important;
}
.navLinks a:hover{
  background: rgba(0,0,0,.05) !important;
  color: #0b0f14 !important;
}
.btn{
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,.12) !important;
  color: #0b0f14 !important;
  box-shadow:none !important;
}
.btn:hover{
  background: #f5f7fa !important;
}
.btnPrimary{
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #ffffff !important;
}
.btnGhost{
  background: transparent !important;
  border-color: var(--accent) !important;
  color: var(--accent) !important;
}
.heroCard,
.heroOverlayCard,
.card,
.tile,
.stat,
.faqItem,
.pageHeadCard,
.mobileMenuInner{
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,.08) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}
.heroCard:before,
.card:after,
.tileArt:before,
.heroSliderCard:before,
.sliderViewport{
  /* remove decorative glass/gradients */
  display: none !important;
}
.kicker{
  background:#ffffff !important;
  border: 1px solid rgba(0,0,0,.08) !important;
  color: rgba(0,0,0,.75) !important;
}
.tileArt{
  border-color: rgba(0,0,0,.12) !important;
}
.badge,
.pill{
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,.10) !important;
  color: rgba(0,0,0,.72) !important;
}
input, textarea{
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,.12) !important;
  color: #0b0f14 !important;
}
.heroTitle,
.sectionHeader h2,
.pageHead h1,
.heroBrandName{
  color: #0b0f14 !important;
}

/* Make feature/thumbnail areas plain */
.tileArt{
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,.08) !important;
}

.sectionHeader h2{
  font-size: 26px !important;
}
.pageHead h1{
  font-size: 34px !important;
}
.heroTitle{
  font-size: 54px !important;
}
.muted{color: var(--muted) !important;}
.footer, .footer p, .footerLinks a{
  color: var(--muted) !important;
}

