/* ==============================
   CONTACT PAGE FULL STYLE
============================== */

:root{
  --bg:#020617;
  --card:#0f172a;
  --border:#1e293b;
  --primary:#6366f1;
  --primary-2:#a855f7;
  --text:#f8fafc;
  --muted:#94a3b8;
}

/* RESET */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Inter,system-ui,sans-serif;
}

body{
  background:var(--bg);
  color:var(--text);
}

/* ================= NAVBAR ================= */

.tok-nav{
  position:fixed;
  top:0;
  width:100%;
  padding:18px 6%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:rgba(2,6,23,.85);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
  z-index:1000;
}

.tok-logo{
  font-size:22px;
  font-weight:800;
  background:linear-gradient(135deg,var(--primary),var(--primary-2));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.tok-nav ul{
  list-style:none;
  display:flex;
  gap:28px;
}

.tok-nav a{
  text-decoration:none;
  color:var(--muted);
  font-size:14px;
  transition:.3s;
}

.tok-nav a:hover,
.tok-nav a.active{
  color:var(--text);
}

/* ================= HERO ================= */

.contact-hero{
  min-height:60vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:140px 20px 60px;
  background:
    radial-gradient(circle at top,#1e293b,#020617);
}

.badge{
  background:rgba(99,102,241,.15);
  border:1px solid var(--border);
  padding:8px 18px;
  border-radius:50px;
  font-size:12px;
  color:var(--primary);
  margin-bottom:25px;
}

.contact-hero h1{
  font-size:clamp(44px,6vw,72px);
  font-weight:800;
}

.contact-hero h1 span{
  background:linear-gradient(135deg,var(--primary),var(--primary-2));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.contact-sub{
  margin-top:20px;
  color:var(--muted);
  max-width:600px;
  line-height:1.6;
}

/* ================= CONTACT OPTIONS ================= */

.contact-options{
  padding:100px 6%;
  text-align:center;
}

.section-title{
  font-size:36px;
  font-weight:800;
}

.section-subtitle{
  margin-top:10px;
  color:var(--muted);
  margin-bottom:60px;
}

/* GRID */

.contact-grid{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

/* CARD */

.contact-box{
  background:var(--card);
  border:1px solid var(--border);
  padding:45px 35px;
  border-radius:22px;
  transition:.35s;
}

.contact-box:hover{
  transform:translateY(-10px);
  border-color:var(--primary);
  box-shadow:0 0 30px rgba(99,102,241,.25);
}

.contact-box h3{
  font-size:20px;
  margin-bottom:10px;
}

.contact-box p{
  color:var(--muted);
  font-size:14px;
  margin-bottom:15px;
}

.contact-box span{
  display:block;
  margin-bottom:25px;
  color:#cbd5f5;
  font-weight:500;
}

/* BUTTON */

.btn{
  display:inline-block;
  padding:12px 28px;
  background:linear-gradient(135deg,var(--primary),#4f46e5);
  border-radius:12px;
  color:white;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
}

.btn:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 25px rgba(99,102,241,.4);
}

/* ================= RESPONSIVE ================= */

@media(max-width:900px){

  .tok-nav ul{
    gap:18px;
  }

}

@media(max-width:700px){

  .tok-nav ul{
    display:none; /* simple mobile hide */
  }

  .contact-hero{
    padding-top:120px;
  }

  .section-title{
    font-size:28px;
  }

}


.main-footer {
  background:#020617;
  color:#f0f6fc;
  padding:80px 20px 20px;
  border-top:1px solid #1e293b;
  font-family:Inter,system-ui,sans-serif;
}

.footer-container{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.5fr 2fr;
  gap:60px;
}

/* Brand */
.footer-logo{
  font-size:1.8rem;
  font-weight:800;
}

.footer-logo .highlight{
  color:#58a6ff;
}

/* Social */
.social-links{
  display:flex;
  gap:14px;
  margin-top:22px;
}

.social-icon{
  width:42px;
  height:42px;
  border-radius:10px;
  border:1px solid #30363d;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.3s;
}

.social-icon img{
  width:18px;
  height:18px;
}

.social-icon:hover{
  background:#1e293b;
  transform:translateY(-3px);
}

/* Links */
.footer-links-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.link-column h3{
  font-size:14px;
  margin-bottom:20px;
  text-transform:uppercase;
}

.link-column ul{
  list-style:none;
  padding:0;
}

.link-column li{
  margin-bottom:12px;
}

.link-column a{
  color:#8b949e;
  text-decoration:none;
  transition:.3s;
}

.link-column a:hover{
  color:#58a6ff;
}

/* Bottom */
.footer-bottom{
  margin-top:70px;
  padding-top:25px;
  border-top:1px solid #30363d;
}

.bottom-container{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  font-size:13px;
  color:#8b949e;
}

/* Mobile */
@media(max-width:768px){
  .footer-container{
    grid-template-columns:1fr;
  }

  .footer-links-grid{
    grid-template-columns:1fr 1fr;
  }

  .bottom-container{
    flex-direction:column;
    gap:10px;
    text-align:center;
  }
}
