/* ===== MAWTECH GLOBAL STYLES ===== */
:root {
  --navy:   #1a1e3c;
  --green:  #2d8a2d;
  --orange: #e85c0d;
  --yellow: #f5c800;
  --light:  #f8f9fc;
  --white:  #ffffff;
  --text:   #202124;
  --muted:  #5f6368;
  --border: #e0e0e0;
  --font:   'Comic Sans MS', 'Comic Sans', cursive;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  padding: 0 48px;
  height: 64px;
  gap: 0;
}
.nav-logo {
  display: flex; align-items: center; margin-right: 40px; flex-shrink: 0;
}
.nav-logo img { height: 38px; object-fit: contain; }

.nav-links {
  display: flex; gap: 4px; list-style: none; flex: 1; align-items: center;
}
.nav-links a {
  font-family: var(--font); font-size: 14px; color: var(--muted);
  padding: 6px 14px; border-radius: 4px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--navy); background: var(--light); }
.nav-links a.active { color: var(--navy); font-weight: bold; }

.nav-right { margin-left: auto; flex-shrink: 0; display: flex; align-items: center; gap: 16px; }

.nav-linkedin {
  display: flex; align-items: center;
  color: var(--muted); transition: color .2s;
}
.nav-linkedin:hover { color: #0077b5; }
.nav-linkedin svg { width: 20px; height: 20px; }

.nav-btn {
  background: var(--green); color: var(--white);
  font-family: var(--font); font-size: 14px;
  padding: 9px 22px; border-radius: 100px; border: none; cursor: pointer;
  transition: background .2s, transform .15s;
  display: inline-block; white-space: nowrap;
}
.nav-btn:hover { background: var(--navy); transform: translateY(-1px); }

/* hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  margin-left: auto; padding: 8px; background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px;
  transition: all .3s;
}
.nav-mobile {
  display: none; flex-direction: column; background: var(--white);
  border-bottom: 1px solid var(--border); padding: 12px 24px 20px;
}
.nav-mobile a {
  font-family: var(--font); font-size: 15px; color: var(--muted);
  padding: 12px 0; border-bottom: 1px solid var(--border);
  display: block;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a.active { color: var(--navy); font-weight: bold; }
.nav-mobile.open { display: flex; }

/* ── SHARED COMPONENTS ── */
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--green); font-family: var(--font); font-size: 14px;
  font-weight: bold; transition: gap .2s;
}
.card-link:hover { gap: 10px; }

.section-tag {
  font-family: var(--font); font-size: 12px; font-weight: bold;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px;
  display: block;
}

.btn-primary {
  background: var(--green); color: var(--white);
  font-family: var(--font); font-size: 15px; font-weight: bold;
  padding: 13px 36px; border-radius: 100px; border: none; cursor: pointer;
  display: inline-block; transition: transform .15s, box-shadow .2s, background .2s;
}
.btn-primary:hover { background: var(--navy); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }

.btn-white {
  background: var(--white); color: var(--green);
  font-family: var(--font); font-size: 15px; font-weight: bold;
  padding: 13px 36px; border-radius: 100px; border: none; cursor: pointer;
  display: inline-block; transition: transform .15s, box-shadow .2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }

/* ── FOOTER ── */
footer {
  background: var(--white); border-top: 1px solid var(--border);
  padding: 56px 48px 32px;
}
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-brand img { height: 36px; margin-bottom: 14px; }
.footer-brand p { font-size: .88rem; color: var(--muted); line-height: 1.7; }
.footer-brand .social { display: flex; gap: 12px; margin-top: 16px; align-items: center; }
.footer-brand .social a { color: var(--muted); transition: color .2s; }
.footer-brand .social a:hover { color: #0077b5; }
.footer-col h4 {
  font-family: var(--font); font-size: .78rem; font-weight: bold;
  text-transform: uppercase; letter-spacing: .1em; color: var(--navy); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: .9rem; color: var(--muted); transition: color .2s; }
.footer-col a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom span { font-size: .84rem; color: #9aa0a6; }
.footer-dots { display: flex; gap: 8px; }
.fdot { width: 10px; height: 10px; border-radius: 50%; }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-right .nav-btn { display: none; }
  .nav-right .nav-linkedin { display: none; }
  .nav-hamburger { display: flex; }
  footer { padding: 48px 20px 28px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 540px) {
  .footer-top { grid-template-columns: 1fr; }
}
