/* ==========================================================================
   SIMON SINEK EXACT HEADER & TYPOGRAPHY METRICS
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Simon Sinek Palette */
  --bg-white: #ffffff;
  --bg-offwhite: #f7f6f2;
  --bg-dark: #121212;

  --text-dark: #1e1e1e;
  --text-muted: #666666;
  --text-light: #888888;
  --text-white: #ffffff;

  --accent-orange: #f25c05;
  --accent-orange-light: rgba(242, 92, 5, 0.06);

  --border-light: #eaeaea;
  --border-dark: #222222;

  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --header-height: 80px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-white);
  color: var(--text-dark);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
}

body {
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Simon Sinek Header Typography Specs */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  transition: all 0.2s ease;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1360px;
  padding: 0 2rem;
  margin: 0 auto;
}

.logo-img {
  height: 52px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

/* Exact Simon Sinek Nav Font Weight (Medium 500, font-size 14.5px, subtle letter spacing) */
.nav-link {
  color: #2b2b2b;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 0.15s ease;
  padding: 0.5rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-orange);
}

/* Dropdown Menu Container */
.dropdown-item {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  width: 320px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1.2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
}

.dropdown-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: flex;
  flex-direction: column;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s ease;
}

.dropdown-link:hover {
  background: var(--bg-offwhite);
}

.dropdown-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.dropdown-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: var(--bg-offwhite);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  color: var(--text-dark);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

.mobile-toggle:hover, .mobile-toggle:active {
  background: #ebe9e2;
  border-color: #d0d0d0;
  transform: scale(0.96);
}

.mobile-toggle svg {
  display: block;
  width: 22px;
  height: 22px;
  stroke: var(--text-dark);
}

@media (max-width: 992px) {
  .nav-menu {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
}

/* Mobile Drawer System */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -340px;
  width: 320px;
  height: 100vh;
  background: #ffffff;
  z-index: 2000;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-drawer.open {
  transform: translateX(-340px);
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.8rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border-light);
}

.drawer-close {
  background: var(--bg-offwhite);
  border: 1px solid var(--border-light);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.2s ease;
}

.drawer-close:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

.drawer-menu {
  list-style: none !important;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: 0 !important;
  margin: 0 !important;
}

.drawer-menu li {
  list-style: none !important;
}

.drawer-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s ease;
  display: block;
}

.drawer-link:hover, .drawer-link.active {
  color: var(--accent-orange);
}

.drawer-submenu {
  list-style: none !important;
  padding: 0.4rem 0 0.2rem 1rem !important;
  margin: 0.3rem 0 0 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.6rem !important;
  border-left: 2px solid var(--border-light) !important;
}

.drawer-submenu li {
  list-style: none !important;
}

.drawer-sublink {
  font-size: 0.9rem !important;
  color: var(--text-muted) !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  transition: color 0.15s ease !important;
  display: block !important;
}

.drawer-sublink:hover {
  color: var(--accent-orange) !important;
}

.drawer-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.drawer-contact-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  display: block;
}

.drawer-email {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-orange);
  text-decoration: none !important;
  display: inline-block;
  margin-bottom: 0.8rem;
}

.drawer-socials {
  display: flex;
  gap: 1.2rem;
}

.drawer-socials a {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none !important;
  font-weight: 600;
  transition: color 0.2s ease;
}

.drawer-socials a:hover {
  color: var(--accent-orange);
}


.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}


