:root{
  --navy-900:#071427;
  --navy-800:#0b1f3a;
  --navy-700:#102a52;
  --blue-500:#2f8fff;
  --blue-400:#57a8ff;
  --blue-300:#8cc4ff;
  --white:#ffffff;
  --gray-50:#f7f9fc;
  --gray-100:#eef2f7;
  --gray-300:#cbd5e1;
  --gray-600:#5b6b82;
  --gray-900:#0f172a;
  --radius:16px;
  --shadow-sm:0 2px 10px rgba(9,25,54,0.06);
  --shadow-md:0 12px 30px rgba(9,25,54,0.10);
  --shadow-lg:0 24px 60px rgba(9,25,54,0.18);
}

*{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:'Inter','Segoe UI',sans-serif;
  color:var(--gray-900);
  background:var(--white);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{font-family:'Poppins','Segoe UI',sans-serif; line-height:1.25; color:var(--navy-800);}
a{text-decoration:none;color:inherit;}
ul{list-style:none;}
img,svg{display:block;max-width:100%;}
.container{max-width:1180px; margin:0 auto; padding:0 24px;}
section{padding:88px 0;}
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:13px; font-weight:600; letter-spacing:2px; text-transform:uppercase;
  color:var(--blue-500);
  margin-bottom:14px;
}
.section-head{max-width:680px; margin:0 auto 52px; text-align:center;}
.section-head h2{font-size:clamp(28px,3.5vw,38px); margin-bottom:14px;}
.section-head p{color:var(--gray-600); font-size:17px;}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:15px 30px; border-radius:999px; font-weight:600; font-size:15px;
  cursor:pointer; border:none; transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-2px);}
.btn-primary{background:#25D366; color:#fff; box-shadow:0 10px 24px rgba(37,211,102,0.35);}
.btn-primary:hover{box-shadow:0 14px 30px rgba(37,211,102,0.45);}
.btn-outline{background:transparent; color:#fff; border:1.5px solid rgba(255,255,255,0.55);}
.btn-outline:hover{background:rgba(255,255,255,0.1);}
.btn-dark{background:var(--navy-800); color:#fff; box-shadow:var(--shadow-md);}
.btn-block{width:100%;}

/* ===== Header ===== */
header{
  position:sticky; top:0; z-index:100;
  background:rgba(255,255,255,0.92); backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(15,23,42,0.06);
}
.nav-wrap{display:flex; align-items:center; justify-content:space-between; padding:14px 0;}
.brand{display:flex; align-items:center; gap:12px;}
.brand svg{width:42px; height:42px;}
.brand-text{line-height:1.2;}
.brand-text .name{font-family:'Poppins',sans-serif; font-weight:700; font-size:17px; color:var(--navy-800); letter-spacing:.3px;}
.brand-text .reg{font-size:10.5px; color:var(--gray-600); letter-spacing:.3px;}
nav ul{display:flex; align-items:center; gap:30px;}
nav a.nav-link{font-size:13px; font-weight:600; color:var(--navy-800); text-transform:uppercase; letter-spacing:0.8px; transition:color .15s;}
nav a.nav-link:hover, nav a.nav-link.active{color:var(--blue-500);}
.nav-actions{display:flex; align-items:center; gap:14px;}
.nav-cta{padding:11px 22px; font-size:14px;}
.hamburger{display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:6px;}
.hamburger span{width:24px; height:2px; background:var(--navy-800); border-radius:2px;}

/* ===== Hero (home) ===== */
.hero{
  position:relative; overflow:hidden;
  background:var(--navy-900);
  padding:120px 0 100px; color:#fff;
}
.hero-bg{position:absolute; inset:0; z-index:0;}
.hero-bg img{width:100%; height:100%; object-fit:cover; opacity:.5;}
.hero-bg::after{
  content:""; position:absolute; inset:0;
  background:radial-gradient(1200px 600px at 80% -10%, rgba(20,51,94,0.55) 0%, rgba(7,20,39,0.88) 55%),
             linear-gradient(180deg, rgba(7,20,39,0.55) 0%, rgba(7,20,39,0.96) 100%);
}
.hero .lines{position:absolute; inset:0; opacity:.35; pointer-events:none; z-index:1;}
.hero-inner{position:relative; z-index:2; max-width:720px;}
.hero h1{color:#fff; font-size:clamp(34px,5vw,54px); margin-bottom:20px;}
.hero h1 span{color:var(--blue-300);}
.hero p.lead{font-size:18px; color:rgba(255,255,255,0.78); max-width:560px; margin-bottom:36px;}
.hero-actions{display:flex; flex-wrap:wrap; gap:16px; margin-bottom:44px;}
.hero-trust{font-size:13.5px; color:rgba(255,255,255,0.6); display:flex; align-items:center; gap:10px;}
.hero-trust .dot{width:6px; height:6px; border-radius:50%; background:var(--blue-400);}

/* ===== Page hero (inner pages) ===== */
.page-hero{
  position:relative; overflow:hidden; background:var(--navy-900);
  padding:64px 0 56px; color:#fff;
}
.page-hero::after{
  content:""; position:absolute; inset:0;
  background:radial-gradient(1000px 500px at 85% -20%, rgba(20,51,94,0.6) 0%, rgba(7,20,39,0.95) 60%);
}
.page-hero .container{position:relative; z-index:2;}
.page-hero .crumb{font-size:13px; color:rgba(255,255,255,0.55); margin-bottom:10px;}
.page-hero .crumb a{color:var(--blue-300);}
.page-hero h1{color:#fff; font-size:clamp(28px,4vw,42px); margin-bottom:12px;}
.page-hero p{color:rgba(255,255,255,0.72); font-size:16px; max-width:640px;}

/* trust strip */
.strip{
  background:#fff; border-radius:var(--radius); box-shadow:var(--shadow-lg);
  margin-top:-56px; position:relative; z-index:5;
  display:grid; grid-template-columns:repeat(4,1fr);
}
.strip .item{display:flex; align-items:center; gap:12px; padding:26px 22px; border-right:1px solid var(--gray-100);}
.strip .item:last-child{border-right:none;}
.strip .icon{width:38px; height:38px; flex-shrink:0; border-radius:10px; background:linear-gradient(135deg,var(--navy-800),var(--blue-500)); display:flex; align-items:center; justify-content:center;}
.strip .icon svg{width:20px; height:20px; stroke:#fff;}
.strip .label{font-family:'Poppins',sans-serif; font-weight:600; font-size:14.5px; color:var(--navy-800);}
.strip .sub{font-size:12px; color:var(--gray-600);}

/* ===== Services ===== */
.services-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:26px;}
.service-card{
  background:var(--gray-50); border:1px solid var(--gray-100); border-radius:var(--radius);
  padding:34px; transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover{transform:translateY(-6px); box-shadow:var(--shadow-md); border-color:transparent; background:#fff;}
.service-card .icon{
  width:54px; height:54px; border-radius:14px; margin-bottom:20px;
  background:linear-gradient(135deg,var(--navy-800),var(--blue-500));
  display:flex; align-items:center; justify-content:center;
}
.service-card .icon svg{width:26px; height:26px; stroke:#fff;}
.service-card h3{font-size:20px; margin-bottom:10px;}
.service-card p.desc{color:var(--gray-600); font-size:14.5px; margin-bottom:18px;}
.service-card ul{display:grid; gap:9px; margin-bottom:22px;}
.service-card ul li{font-size:14px; color:var(--navy-700); display:flex; align-items:flex-start; gap:9px;}
.service-card ul li::before{content:""; width:6px; height:6px; border-radius:50%; background:var(--blue-500); margin-top:7px; flex-shrink:0;}
.service-card .link{font-size:14px; font-weight:600; color:var(--blue-500); display:inline-flex; align-items:center; gap:6px;}
.service-card .brands-note{font-size:12.5px; color:var(--gray-600); margin-bottom:16px; padding-top:12px; border-top:1px dashed var(--gray-100);}
.service-card .brands-note b{color:var(--navy-700);}

/* teaser cards (home page, link out to full pages) */
.teaser-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:22px;}
.teaser-card{
  background:var(--gray-50); border:1px solid var(--gray-100); border-radius:var(--radius);
  padding:28px 24px; transition:transform .2s ease, box-shadow .2s ease;
}
.teaser-card:hover{transform:translateY(-6px); box-shadow:var(--shadow-md); background:#fff;}
.teaser-card .icon{
  width:48px; height:48px; border-radius:12px; margin-bottom:16px;
  background:linear-gradient(135deg,var(--navy-800),var(--blue-500));
  display:flex; align-items:center; justify-content:center;
}
.teaser-card .icon svg{width:23px; height:23px; stroke:#fff;}
.teaser-card h3{font-size:16.5px; margin-bottom:8px;}
.teaser-card p{font-size:13.5px; color:var(--gray-600); margin-bottom:14px;}
.teaser-card .link{font-size:13px; font-weight:600; color:var(--blue-500);}
.section-cta{text-align:center; margin-top:40px;}

/* ===== Network coverage / signal problem section ===== */
.wifi-section{background:var(--navy-800); color:#fff; position:relative; overflow:hidden;}
.wifi-grid{display:grid; grid-template-columns:1.1fr .9fr; gap:60px; align-items:center;}
.wifi-grid h2{color:#fff; font-size:clamp(26px,3.4vw,34px); margin-bottom:18px;}
.wifi-grid > div:first-child p.lead{color:rgba(255,255,255,0.72); margin-bottom:30px; font-size:16px;}
.wifi-list{display:grid; gap:16px;}
.wifi-list li{display:flex; gap:14px; align-items:flex-start; font-size:15px; color:rgba(255,255,255,0.9);}
.wifi-list .chip{width:30px; height:30px; border-radius:50%; background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.15); display:flex; align-items:center; justify-content:center; flex-shrink:0;}
.wifi-list .chip svg{width:15px; height:15px; stroke:var(--blue-300);}
.wifi-card{
  background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.12); border-radius:var(--radius);
  padding:36px; backdrop-filter:blur(6px);
}
.wifi-card h3{color:#fff; font-size:20px; margin-bottom:14px;}
.wifi-card p{color:rgba(255,255,255,0.72); font-size:14.5px; margin-bottom:24px;}

/* ===== Industries We Serve ===== */
.industries-section{background:var(--gray-50);}
.industries-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
.industry-card{
  background:#fff; border:1px solid var(--gray-100); border-radius:var(--radius);
  padding:34px 28px; text-align:center; transition:transform .2s ease, box-shadow .2s ease;
}
.industry-card:hover{transform:translateY(-6px); box-shadow:var(--shadow-md);}
.industry-card .icon{
  width:60px; height:60px; border-radius:14px; margin:0 auto 20px;
  background:linear-gradient(135deg,var(--navy-800),var(--blue-500));
  display:flex; align-items:center; justify-content:center;
}
.industry-card .icon svg{width:29px; height:29px; stroke:#fff;}
.industry-card h3{font-size:18px; margin-bottom:10px;}
.industry-card p{font-size:14px; color:var(--gray-600); margin:0 0 16px;}
.industry-card ul{display:grid; gap:8px; text-align:left; margin-bottom:16px;}
.industry-card ul li{font-size:13.5px; color:var(--navy-700); display:flex; align-items:flex-start; gap:8px;}
.industry-card ul li::before{content:""; width:5px; height:5px; border-radius:50%; background:var(--blue-500); margin-top:7px; flex-shrink:0;}

/* ===== Brands / Products ===== */
.brands-section{background:#fff;}
.brands-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:20px;}
.brand-badge{
  background:var(--gray-50); border:1px solid var(--gray-100); border-radius:var(--radius);
  padding:26px 20px; text-align:center; transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.brand-badge:hover{transform:translateY(-4px); box-shadow:var(--shadow-md); background:#fff;}
.brand-badge .mark{
  width:52px; height:52px; border-radius:50%; margin:0 auto 14px;
  background:linear-gradient(135deg,var(--navy-800),var(--blue-500));
  display:flex; align-items:center; justify-content:center;
  font-family:'Poppins',sans-serif; font-weight:700; font-size:18px; color:#fff;
}
.brand-badge .name{font-family:'Poppins',sans-serif; font-weight:600; font-size:15.5px; color:var(--navy-800); margin-bottom:4px;}
.brand-badge .cat{font-size:12px; color:var(--gray-600);}

/* ===== Gallery / Our Work ===== */
.gallery-section{background:var(--gray-50);}
.gallery-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:22px;}
.gallery-grid.cols-3{grid-template-columns:repeat(3,1fr);}
.gallery-card{
  position:relative; border-radius:var(--radius); overflow:hidden; aspect-ratio:4/5;
  box-shadow:var(--shadow-sm); transition:transform .25s ease, box-shadow .25s ease;
}
.gallery-card:hover{transform:translateY(-6px); box-shadow:var(--shadow-md);}
.gallery-card img{width:100%; height:100%; object-fit:cover; display:block;}
.gallery-card::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(7,20,39,0) 40%, rgba(7,20,39,0.85) 100%);
}
.gallery-card .cap{position:absolute; left:16px; right:16px; bottom:14px; z-index:2; color:#fff;}
.gallery-card .cap .tag{font-size:10.5px; letter-spacing:1.5px; text-transform:uppercase; color:var(--blue-300); font-weight:600; display:block; margin-bottom:3px;}
.gallery-card .cap .t{font-family:'Poppins',sans-serif; font-weight:600; font-size:15px;}

/* ===== About ===== */
.about-grid{display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center;}
.about-visual{
  aspect-ratio:4/3.1; border-radius:20px; position:relative; overflow:hidden;
  background:linear-gradient(135deg,var(--navy-900),var(--navy-700) 60%, var(--blue-500));
}
.about-visual img{position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:.55;}
.about-visual .grid-lines{position:absolute; inset:0; opacity:.5;}
.about-visual .plate{
  position:absolute; left:24px; right:24px; bottom:24px; background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.18); border-radius:14px; padding:22px; backdrop-filter:blur(6px);
}
.about-visual .plate .name{color:#fff; font-family:'Poppins',sans-serif; font-weight:600; font-size:17px;}
.about-visual .plate .reg{color:rgba(255,255,255,0.65); font-size:11.5px; margin-top:2px;}
.about-visual .plate .tag{color:var(--blue-300); font-size:11px; letter-spacing:1.5px; margin-top:10px; font-weight:600;}
.about-copy p{color:var(--gray-600); margin-bottom:18px; font-size:15.5px;}
.why-grid{display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-top:28px;}
.why-item{display:flex; gap:12px; align-items:flex-start;}
.why-item .chip{width:34px; height:34px; border-radius:10px; background:var(--gray-100); display:flex; align-items:center; justify-content:center; flex-shrink:0;}
.why-item .chip svg{width:17px; height:17px; stroke:var(--blue-500);}
.why-item h4{font-size:14.5px; margin-bottom:3px;}
.why-item p{font-size:13px; color:var(--gray-600); margin:0;}

/* ===== Areas ===== */
.areas-section{background:var(--gray-50);}
.chip-row{display:flex; flex-wrap:wrap; gap:12px; justify-content:center;}
.area-chip{
  padding:11px 20px; border-radius:999px; background:#fff; border:1px solid var(--gray-100);
  font-size:14px; font-weight:500; color:var(--navy-700); box-shadow:var(--shadow-sm);
}

/* ===== Quote ===== */
.quote-panel{
  background:linear-gradient(135deg,var(--navy-800),var(--navy-700)); border-radius:24px;
  padding:56px; color:#fff; display:grid; grid-template-columns:.9fr 1.1fr; gap:50px;
}
.quote-panel h2{color:#fff; font-size:clamp(24px,3vw,30px); margin-bottom:16px;}
.quote-panel p{color:rgba(255,255,255,0.72); font-size:15px; margin-bottom:26px;}
.quote-contacts{display:grid; gap:16px;}
.quote-contacts a{display:flex; align-items:center; gap:12px; font-size:14.5px; color:#fff;}
.quote-contacts .chip{width:36px; height:36px; border-radius:10px; background:rgba(255,255,255,0.1); display:flex; align-items:center; justify-content:center;}
.quote-contacts .chip svg{width:17px; height:17px; stroke:var(--blue-300);}
.form-card{background:#fff; border-radius:18px; padding:32px; color:var(--gray-900);}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:14px;}
.field{display:flex; flex-direction:column; gap:6px; margin-bottom:14px;}
.field label{font-size:12.5px; font-weight:600; color:var(--navy-700);}
.field input, .field select, .field textarea{
  border:1.5px solid var(--gray-100); background:var(--gray-50); border-radius:10px; padding:12px 14px;
  font-family:inherit; font-size:14.5px; color:var(--gray-900); outline:none; transition:border-color .15s;
}
.field input:focus, .field select:focus, .field textarea:focus{border-color:var(--blue-400);}
.field textarea{resize:vertical; min-height:90px;}
.form-note{font-size:12px; color:var(--gray-600); margin-top:12px; text-align:center;}

/* ===== Contact ===== */
.contact-grid{display:grid; grid-template-columns:.85fr 1.15fr; gap:40px; align-items:stretch;}
.contact-info{background:var(--gray-50); border-radius:var(--radius); padding:36px; border:1px solid var(--gray-100);}
.contact-info .row{display:flex; gap:14px; margin-bottom:22px; align-items:flex-start;}
.contact-info .chip{width:38px; height:38px; border-radius:10px; background:linear-gradient(135deg,var(--navy-800),var(--blue-500)); display:flex; align-items:center; justify-content:center; flex-shrink:0;}
.contact-info .chip svg{width:18px; height:18px; stroke:#fff;}
.contact-info h4{font-size:14.5px; margin-bottom:4px;}
.contact-info p, .contact-info a{font-size:14px; color:var(--gray-600);}
.map-frame{border-radius:var(--radius); overflow:hidden; border:1px solid var(--gray-100); min-height:340px;}
.map-frame iframe{width:100%; height:100%; min-height:340px; border:0;}

/* ===== Footer ===== */
footer{background:var(--navy-900); color:rgba(255,255,255,0.7); padding:60px 0 26px;}
.footer-grid{display:grid; grid-template-columns:1.3fr 1fr 1fr 1fr; gap:40px; margin-bottom:44px;}
.footer-brand .brand{margin-bottom:14px;}
.footer-brand .brand-text .name{color:#fff;}
.footer-brand .brand-text .reg{color:rgba(255,255,255,0.5);}
.footer-brand p{font-size:13.5px; color:rgba(255,255,255,0.55); max-width:280px;}
footer h5{color:#fff; font-size:14px; margin-bottom:16px; font-family:'Poppins',sans-serif;}
footer ul{display:grid; gap:11px;}
footer ul a{font-size:13.5px; color:rgba(255,255,255,0.6); transition:color .15s;}
footer ul a:hover{color:var(--blue-300);}
.footer-bottom{border-top:1px solid rgba(255,255,255,0.1); padding-top:22px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; font-size:12.5px; color:rgba(255,255,255,0.45);}

.whatsapp-float{
  position:fixed; bottom:26px; right:26px; z-index:200;
  width:58px; height:58px; border-radius:50%; background:#25D366; display:flex; align-items:center; justify-content:center;
  box-shadow:0 12px 28px rgba(37,211,102,0.45);
}
.whatsapp-float svg{width:28px; height:28px; fill:#fff;}

.call-float{
  position:fixed; bottom:96px; right:26px; z-index:200;
  width:58px; height:58px; border-radius:50%;
  background:linear-gradient(135deg,var(--navy-800),var(--blue-500));
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 12px 28px rgba(15,45,90,0.4);
}
.call-float svg{width:24px; height:24px; stroke:#fff;}

@media(max-width:480px){
  .whatsapp-float, .call-float{width:52px; height:52px;}
  .whatsapp-float{bottom:20px; right:20px;}
  .call-float{bottom:82px; right:20px;}
}

[data-reveal]{opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease;}
[data-reveal].is-visible{opacity:1; transform:none;}

@media(max-width:960px){
  .services-grid{grid-template-columns:1fr;}
  .wifi-grid, .about-grid, .quote-panel, .contact-grid{grid-template-columns:1fr;}
  .strip{grid-template-columns:repeat(2,1fr);}
  .strip .item:nth-child(2){border-right:none;}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .gallery-grid{grid-template-columns:repeat(2,1fr);}
  .gallery-grid.cols-3{grid-template-columns:repeat(2,1fr);}
  .industries-grid{grid-template-columns:repeat(2,1fr);}
  .teaser-grid{grid-template-columns:repeat(2,1fr);}
  .brands-grid{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:768px){
  nav ul{position:fixed; top:70px; left:0; right:0; background:#fff; flex-direction:column; align-items:flex-start; gap:0; padding:10px 24px 20px; box-shadow:var(--shadow-md); transform:translateY(-130%); opacity:0; pointer-events:none; transition:all .25s ease;}
  nav ul.open{transform:translateY(0); opacity:1; pointer-events:auto;}
  nav ul li{width:100%; border-bottom:1px solid var(--gray-100);}
  nav ul a{display:block; padding:14px 0;}
  .nav-cta{display:none;}
  .hamburger{display:flex;}
  .strip{grid-template-columns:1fr;}
  .strip .item{border-right:none; border-bottom:1px solid var(--gray-100);}
  .form-row{grid-template-columns:1fr;}
  .quote-panel{padding:30px;}
  section{padding:64px 0;}
}
