/* ===== Core Theme ===== */
:root{
  --bg:#0b0f14;
  --panel:#0f1720;
  --muted:#9aa6b2;
  --text:#e6eef3;
  --accent:#6dd3ff;
  --accent-2:#8b5cff;
  --radius:12px;
  --maxw:1100px;
  font-family:"Inter",sans-serif;
}

*{box-sizing:border-box}
html,body{margin:0;height:100%;background:#05060a;color:var(--text)}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%;height:auto}

/* Container */
.container{max-width:var(--maxw);margin:30px auto;padding:20px}

/* ===== NAVBAR ===== */
.navbar{
  display:flex;justify-content:space-between;align-items:center;
  padding:12px 16px;border-radius:10px;
  background:rgba(255,255,255,0.02);
  border:1px solid rgba(255,255,255,0.04);
}
.brand{display:flex;align-items:center;gap:12px}
.logo img{width:56px;height:56px;object-fit:cover;border-radius:10px}
.site-title{font-family:"Poppins",sans-serif;font-weight:700;font-size:18px}

.nav-links{list-style:none;display:flex;gap:12px;padding:0;margin:0}
.nav-links a{
  color:var(--muted);padding:8px 12px;border-radius:10px;font-weight:600;
}
.nav-links a:hover{color:var(--text);background:rgba(109,211,255,0.08)}

/* ===== HERO ===== */
.hero{display:grid;grid-template-columns:1fr 350px;gap:22px;margin-top:20px}
.hero-card{
  padding:22px;border-radius:12px;
  background:rgba(255,255,255,0.02);
  border:1px solid rgba(255,255,255,0.03);
}
.hero-card h1{font-family:"Poppins",sans-serif;font-size:30px;margin:0 0 10px}
.lead{color:var(--muted);margin-bottom:14px}

.cta{
  background:linear-gradient(90deg,var(--accent),var(--accent-2));
  padding:10px 16px;border-radius:10px;color:#02121a;
  font-weight:800;display:inline-block;
}

/* Services list */
.services{
  margin-top:14px;
  display:grid;grid-template-columns:repeat(2,1fr);gap:10px;
}
.service{
  padding:10px;border-radius:10px;
  background:rgba(255,255,255,0.02);
  border:1px solid rgba(255,255,255,0.04);
  font-weight:600;color:var(--muted);
}

/* ===== FIXED CONTACT + GALLERY ===== */

.contact-row{
  display:flex;
  align-items:center;
  gap:14px;
}

/* Perfect round phone pill */
.phone-pill{
  width:64px;
  height:64px;
  min-width:64px;
  border-radius:50%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  background:rgba(109,211,255,0.08);
  font-weight:800;
  font-size:13px;
  color:var(--accent);
  text-align:center;
  padding:4px;
  line-height:1.1;
}

/* email + subtitle alignment */
.contact-text{
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.email{font-weight:700;color:var(--text)}
.subtitle{color:var(--muted);margin-top:4px;font-size:14px}

/* Gallery */
.gallery{
  margin-top:14px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
}
.photo{
  border-radius:10px;
  overflow:hidden;
  background:#000;
}
.photo img{
  width:100%;
  height:90px;
  object-fit:cover;
  transition:0.2s;
}
.photo:hover img{transform:scale(1.05)}

/* ===== PRODUCTS GRID ===== */
.products-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.product{
  padding:12px;border-radius:12px;
  background:rgba(255,255,255,0.02);
  border:1px solid rgba(255,255,255,0.04);
}
.product img{
  height:130px;
  object-fit:cover;
  border-radius:10px;
}

/* ===== FOOTER ===== */
footer{text-align:center;color:var(--muted);margin-top:26px;font-size:14px}

/* ===== RESPONSIVE ===== */
@media(max-width:950px){
  .hero{grid-template-columns:1fr}
}
@media(max-width:600px){
  .nav-links{display:none}
  .products-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:420px){
  .products-grid{grid-template-columns:1fr}
  .gallery img{height:70px}
}
