:root{
  --content-width:1200px;

  /* Blue-ish palette */
  --accent: #2f80ed;     /* blue */
  --accent-2: #00c2ff;   /* cyan */

  --bg: #0b0b0d;
  --text: #f5f5f5;

  --panel: rgba(255,255,255,0.045);
  --panel-border: rgba(255,255,255,0.10);
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  background:var(--bg);
  color:var(--text);
}

.site{ max-width:var(--content-width); margin:0 auto; padding:40px 20px; }

a{ color:var(--accent-2); text-decoration:none; }
a:hover{ text-decoration:underline; }

.header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding-bottom:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--text);
  text-decoration:none;
}

.logo{
  width:56px;
  height:56px;
  border-radius:999px;
  object-fit:cover;
  border:2px solid rgba(255,255,255,0.18);
  box-shadow: 0 0 0 6px rgba(47,128,237,0.08);
}

.brand-text{ display:flex; flex-direction:column; line-height:1.2; }
.site-title{ font-size:18px; margin:0; color:var(--text); }
.site-tagline{ margin:2px 0 0; font-size:13px; color:#bbb; }

.nav{ display:flex; align-items:center; gap:14px; flex-wrap:wrap; justify-content:flex-end; }
.nav a{ color:#ddd; padding:8px 10px; border-radius:8px; }
.nav a:hover{ background: rgba(255,255,255,0.06); text-decoration:none; }
.nav .nav-cta{ background: linear-gradient(90deg,var(--accent),var(--accent-2)); color:#fff; }

.hero{
  padding:80px 20px;
  text-align:center;
  background:
    radial-gradient(900px 300px at 50% 0%, rgba(47,128,237,0.18), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.2));
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.06);
}

.hero h1{ font-size:40px; margin:10px 0; letter-spacing:1px; }
.hero p.lead{ font-size:18px; color:#ddd; max-width:900px; margin:0 auto; }

.seo-fa{
  margin:12px auto 0;
  max-width:900px;
  font-size:13px;
  line-height:1.7;
  color:#bfc9d6;
  opacity:0.85;
}

.cta{
  display:inline-block;
  margin-top:18px;
  padding:12px 22px;
  border-radius:10px;
  background:linear-gradient(90deg,var(--accent),var(--accent-2));
  color:#fff;
  box-shadow: 0 10px 30px rgba(0,194,255,0.12);
}

.section{ padding:60px 0; }
.section h2{ margin:0 0 14px; }
.subtle{ color:#cfcfcf; }

.services .grid{ display:flex; gap:20px; flex-wrap:wrap; }
.service{
  flex:1 1 220px;
  background: var(--panel);
  padding:18px;
  border-radius:12px;
  border:1px solid var(--panel-border);
}
.service h3{ margin:0 0 8px; }

.about .about-box{
  background: var(--panel);
  border-radius:12px;
  padding:18px;
  line-height:1.6;
  border:1px solid var(--panel-border);
}

.insta-grid{ display:flex; flex-wrap:wrap; gap:10px; justify-content:center; }
.insta-item{ flex: 1 1 300px; max-width: 33%; }
@media (max-width: 900px){ .insta-item{ max-width: 48%; } }
@media (max-width: 600px){ .insta-item{ max-width: 100%; } }

/* Contact */
.contact-card{
  max-width:820px;
  margin:0 auto;
  background: var(--panel);
  border:1px solid var(--panel-border);
  padding:20px;
  border-radius:14px;
  position:relative;
  overflow:hidden;
}

.contact-card::before{
  content:"";
  position:absolute;
  inset:-120px -120px auto -120px;
  height:220px;
  background:
    radial-gradient(circle at 30% 30%, rgba(0,194,255,0.22), transparent 60%),
    radial-gradient(circle at 70% 30%, rgba(47,128,237,0.22), transparent 60%);
  pointer-events:none;
}

.contact-top{
  position:relative;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}

.contact-kicker{ margin:0; font-weight:650; color:#eaeaea; }
.contact-sub{ margin:6px 0 0; color:#cfcfcf; }

.contact-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.btn{
  display:inline-block;
  padding:11px 14px;
  border-radius:10px;
  color:#eaeaea;
  background: rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
  text-decoration:none;
  white-space:nowrap;
}

.btn:hover{
  text-decoration:none;
  border-color: rgba(0,194,255,0.35);
}

.btn.primary{
  background: linear-gradient(90deg,var(--accent),var(--accent-2));
  border:none;
  color:#fff;
}

/* Social icons row (no “gap”) */
.social-icons{
  position:relative;
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,0.10);
  padding-top:35px;
  display:flex;
  justify-content:center;   /* center the whole row */
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
}

.icon-btn{
  width:44px;
  height:44px;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;

  background: rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);

  color:#ffffff; /* white icons */
  text-decoration:none;
}

.icon-btn i{
  font-size:20px;
  line-height:1;
}

.icon-btn:hover{
  text-decoration:none;
  border-color: rgba(0,194,255,0.35);
  background: rgba(0,194,255,0.10);
  transform: translateY(-1px);
  transition: 0.15s ease;
}

.contact-note{
  position:relative;
  margin:14px 0 0;
  color:#aeb7c4;
  font-size:13px;
}

.footer{
  text-align:center;
  padding:30px 0;
  color:#999;
  font-size:14px;
  border-top:1px solid rgba(255,255,255,0.08);
  margin-top:20px;
}

.footer-title{ margin:0; color:#cfcfcf; }
.footer-copy{ margin:8px 0 0; color:#8f8f8f; }

@media (max-width:768px){
  .hero{ padding:64px 14px; }
  .hero h1{ font-size:28px; }
  .header{ flex-direction:column; text-align:center; gap:10px; }
  .nav{ justify-content:center; }
  .services .grid{ flex-direction:column; }
  .contact-actions{ justify-content:center; }
}

/* Mobile-only: push Call/Email lower so they sit below the blue/black boundary */
@media (max-width: 600px){
  .contact-card{
    padding-top: 28px; /* was 20px; adds space above content */
  }

  .contact-top{
    justify-content: center; /* keeps things centered on mobile */
  }

  .contact-actions{
    width: 100%;
    justify-content: center;
    margin-top: 18px; /* pushes buttons down */
  }
}
