:root {
  --bg: #ffffff;
  --text: #222;
  --accent: #0f766e;
  --muted: #6b7280;
  --max-width: 1200px;
  --social-bg: #222;
  --cta-bg: #f59e0b;
}

/* RESET */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, Arial, sans-serif;
  margin: 0;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;

  /* space for fixed header */
  padding-top: 96px;
}

@media (max-width: 900px) {
  body {
    padding-top: 76px;
  }
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}

/* ================= HEADER ================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 10000;
}

/* HEADER LAYOUT */
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  min-height: 96px;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 70px;
  width: auto;
  display: block;
}

/* DESKTOP NAV */
.nav-list {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-list a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  padding: 6px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav-list a:hover {
  background: #f3f4f6;
}

.nav-list a.active {
  font-weight: 700;
  color: var(--accent);
}
/* ACTIVE MENU */
.nav-list a.active {
  font-weight: 700;
  color: var(--accent);
  position: relative;
}

/* underline indicator */
.nav-list a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

/* HEADER ACTIONS */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  gap: 4px;
}

.social-icon-link {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background: var(--social-bg);
  color: #fff;
  align-items: center;
  justify-content: center;
}

/* CTA */
.free-consultation-btn {
  background: var(--cta-bg);
  color: var(--text);
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

/* ================= HAMBURGER ================= */

.hamburger {
  display: none;
  background: transparent;
  border: 0;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  color: var(--text);
}

/* ================= MOBILE NAV ================= */

.mobile-nav {
  display: none;
  background: #fff;
  border-top: 1px solid #eee;
}

.mobile-nav[aria-hidden="false"] {
  display: block;
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 12px 16px;
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
}

/* ================= MOBILE VIEW ================= */

@media (max-width: 900px) {

  .site-header .wrap {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    min-height: 76px;
  }

  .nav,
  .social-icons,
  .free-consultation-btn {
    display: none;
  }

  .logo img {
    height: 48px;
  }

  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
  }
}
/* ================= MOBILE HEADER RIGHT ALIGN FIX ================= */
@media (max-width: 900px) {

  /* make header-actions occupy right column */
  .header-actions {
    justify-self: end;
  }

  /* ensure hamburger sits at far right */
  .hamburger {
    margin-left: auto;
  }
}
