/* ── Global reset & variables ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --font-inter: 'Inter', sans-serif;
  --bg-dark: #000000;
  --bg-light: #ffffff;
  --bg-card: #111111;
  --text-primary: #ffffff;
  --text-primary-dark: #000000;
  --text-secondary: #a0a0a0;
  --accent-primary: #E8FF01;
  --accent-green: #E8FF01;
  --border: #222222;
}

body {
  font-family: var(--font-inter), -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) { .container { padding: 0 16px; } }
@media (max-width: 480px) { .container { padding: 0 12px; } }

.bg-grid {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image:
    linear-gradient(rgba(232,255,1,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,255,1,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
  pointer-events: none;
}

.footer-container { margin: 0 auto; max-width: 1400px; width: 100%; }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; gap: 60px 80px; align-items: start; max-width: 1300px; margin: 0 auto; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ── Header ── */
.header {
  padding: 24px 0;
  position: sticky;
  top: 0;
  background: #000000;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.navContainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Let's Talk. + circular arrow (center) */
.letsTalk {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #ffffff;
  font-family: var(--font-inter), sans-serif;
  font-size: 18px;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.letsTalk:hover {
  opacity: 0.9;
}

.letsTalkText {
  white-space: nowrap;
}

.letsTalkArrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #E8FF01;
  color: #000000;
  font-size: 17px;
  font-weight: 700;
  flex-shrink: 0;
}

/* MENU button (far right) */
.menuButton {
  background: transparent;
  border: none;
  color: #ffffff;
  font-family: var(--font-inter), sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  padding: 8px 0;
  transition: opacity 0.3s ease;
}

.menuButton:hover {
  opacity: 0.85;
}

/* Dropdown – adha height (50vh), full width */
.dropdownOverlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 50vh;
  background: #000000;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.dropdownOverlay.dropdownOpen {
  opacity: 1;
  visibility: visible;
}

.closeButton {
  position: absolute;
  top: 32px;
  right: 40px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-family: var(--font-inter), sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  padding: 8px 0;
  transition: opacity 0.3s ease;
}

.closeButton:hover {
  opacity: 0.8;
}

.dropdownNav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex: 1;
}

.dropdownLink {
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-inter), sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.dropdownLink:hover {
  color: #E8FF01;
  opacity: 0.95;
}

/* Mobile: keep same layout, maybe stack or hide Let's Talk on very small */
@media (max-width: 768px) {
  .navContainer {
    gap: 16px;
  }

  .letsTalkText {
    font-size: 16px;
  }

  .letsTalkArrow {
    width: 32px;
    height: 32px;
    font-size: 15px;
  }

  .closeButton {
    right: 24px;
    top: 24px;
  }

  .dropdownNav {
    gap: 18px;
  }
}

