
:root {
  --navy: #0a0f1e;
  --navy-mid: #111827;
  --orange: #e86000;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ================= NAVBAR ================= */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s var(--ease);
  background: transparent;
}

#navbar.scrolled {
  background: rgba(10, 15, 30, 0.95);
  backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

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

.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text .brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 2px;
}

.logo-text .sub {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--orange);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 15px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: 0.3s;
  padding: 5px 0;
}

.nav-links a:hover {
  color: var(--orange);
}

.search-container {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 6px 15px;
  transition: 0.3s var(--ease);
}

.search-container:focus-within {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--orange);
}

.search-input {
  background: none;
  border: none;
  color: white;
  outline: none;
  font-size: 14px;
  width: 100px;
  transition: width 0.4s var(--ease);
}

.search-input:focus {
  width: 160px;
}

.search-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding-left: 8px;
}

.nav-cta {
  background: var(--orange);
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  transition: 0.3s;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: #ff710d;
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ================= MOBILE MENU ================= */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 340px;
  height: 100vh;
  background: var(--navy-mid);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  padding: 100px 40px 40px;
  transition: 0.5s var(--ease);
  gap: 8px;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-menu a:hover {
  color: var(--orange);
  padding-left: 8px;
}

.mobile-menu .mob-cta {
  margin-top: 24px;
  background: var(--orange);
  color: white;
  text-align: center;
  padding: 14px;
  border-radius: 4px;
  border: none;
}

.mobile-menu .mob-cta:hover {
  background: #c55200;
}

/* Overlay */
#overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
}

/* ================= FOOTER ================= */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 64px;
}

.footer-brand p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
  margin: 20px 0 24px;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s;
}

.social-btn:hover {
  border-color: var(--orange);
  background: var(--orange);
}

.social-btn svg {
  width: 16px;
  height: 16px;
  fill: rgba(255, 255, 255, 0.5);
  transition: fill 0.25s;
}

.social-btn:hover svg {
  fill: white;
}

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 24px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}

.footer-col ul li a:hover {
  color: white;
  padding-left: 6px;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.6);
}
.footer-col ul li p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}

.footer-col ul li p:hover {
  color: white;
  padding-left: 6px;
}
/* ================= NAVBAR ================= */
@media (max-width: 1024px) {
  .nav-links {
    gap: 10px;
  }
}

@media (max-width: 850px) {
  .nav-links,
  .nav-cta,
  .search-container {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* ================= FOOTER ================= */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}