:root {
  --nav-bg: #f2ffe6;
  --nav-btn: #66cc01;
  --nav-text: #f2ffe6;
  --nav-hov: #0d1a00;
  --primary: #80ff01;
  --primary-dark: #00ce35;
  --secondary: #0d0208;
  --text: #f2ffe6;
  --text-muted: #a0a0a0;
  --bg: #ffffff;
  --bg2: #061329;
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --container-max: 1500px;
  --font-main: "Roboto", sans-serif;
  --font-heading: "Bricolage Grotesque", sans-serif;
  --grad1: linear-gradient(
    247deg,
    #001451 -0.17%,
    #002eae 30.32%,
    #4063cf 58.03%,
    #aef96a 117.61%
  );
  --grad2: linear-gradient(
    267deg,
    #cfffa0 0%,
    #6dff01 33.85%,
    #2165de 112.72%,
    #0a1f44 159.18%
  );
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-main);
}

body {
  background-color: var(--bg);
  overflow-x: clip;
  scroll-behavior: smooth;
}
html {
  overflow-x: clip;
}

/* NAVBAR */
.navbar {
  background: var(--nav-bg);
  padding: 24px 20px;
  font-family: var(--font-main);
  font-weight: 600;
  position: sticky;
  top: -1px;
  width: 100%;
  z-index: 2000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(242, 255, 230, 0.9);
  padding: 12px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-wrapper {
  max-width: 1500px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  z-index: 1001;
}

.logo img {
  height: 44px;
}

.logo span {
  color: #39ff14;
  font-weight: 600;
}

/* MENU */
.nav-menu {
  display: flex;
  gap: 30px;
  list-style: none;
  background: var(--nav-btn);
  padding: 12px 20px;
  border-radius: 999px;
}

.nav-menu a {
  text-decoration: none;
  color: var(--nav-text);
  font-weight: 500;
  letter-spacing: 0.4px;
  font-size: 1rem;
}

.nav-menu .mobile-only {
  display: none;
}

.nav-menu a:hover {
  color: var(--nav-hov);
}

.nav-menu .active a {
  font-weight: 700;
}

/* CONTACT BUTTON */
.contact-btn {
  background: var(--nav-btn);
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--nav-text);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.4px;
  transition: 0.3s;
  font-family: var(--font-main);
}

/* SVG */

/* MAKE CIRCLE BEHIND SVG */
.arrow {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.85); /* default dark circle */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.arrow svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: 0.3s;
}

.contact-btn:hover {
  color: var(--nav-hov);
}

/* Circle turns blue */
.contact-btn:hover .arrow {
  background: #6493e8;
}

/* Arrow animation (you already had this) */
/* .contact-btn:hover .arrow svg {
    transform: translate(1px, -1px);
} */

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 3px;
  background: var(--nav-btn);
  transition: 0.3s;
}

/* MOBILE */
@media (max-width: 800px) {
  .navbar {
    padding: 12px 20px;
  }

  .logo img {
    height: 32px;
  }
  /* .nav-menu .active a {
    color: rgb(106, 238, 30);
  } */

  .nav-menu {
    position: fixed;
    top: -15px;
    right: -100%;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    display: flex;
    border-radius: 0;
    padding-top: 100px;
    z-index: 1000;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg2);
    box-shadow: -10px 0 20px rgba(0, 0, 0, 0.2);
  }

  .nav-menu.active {
    right: -25px;
  }

  /* Show mobile-only contact link */
  .nav-menu .mobile-only {
    display: block !important;
    margin-top: 30px;
  }

  .contact-btn-mobile {
    background: var(--nav-text);
    color: var(--nav-btn) !important;
    padding: 12px 30px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
  }

  .contact-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hamburger Animation to Cross */
  .hamburger.active span {
    background: #ffffff;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* footer */

.footer {
  background: var(--bg2);
  color: #fff;
  padding: 80px 40px;
  font-family: var(--font-main);
}

.footer-container {
  max-width: 1500px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}
.footer-left {
  display: flex;
  margin-top: -20px;
}
.footer-logo img {
  height: 42px;
}

/* CENTER */
.footer-center {
  flex: 1;
}

.footer-main-links,
.footer-sub-links {
  display: flex;
  gap: 25px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-main-links a,
.footer-sub-links a {
  text-decoration: none;
  color: #ccc;
  font-size: 14px;
}

.footer-main-links a:hover,
.footer-sub-links a:hover {
  color: #fff;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 20px 0;
}

/* RIGHT */
.footer-right {
  text-align: right;
}

.social-icons {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.social-icons svg {
  width: 20px;
  height: 20px;
  fill: white;
  opacity: 0.7;
  cursor: pointer;
  transition: 0.3s;
}

.social-icons svg:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.footer-email {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #ccc;
}

.copyright {
  margin-top: 20px;
  font-size: 12px;
  color: #aaa;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .footer {
    padding: 60px 20px;
  }

  .footer-right {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-email {
    justify-content: center;
  }
  .footer-main-links,
  .footer-sub-links {
    justify-content: center;
  }
}

/* cta */

.cta-section {
  background: var(--grad2);
  width: 100%;
  padding: 40px 32px;
  font-family: var(--font-main);
}

.cta-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  min-height: 56px;
}

.cta-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cta-icon {
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-icon svg {
  width: 22px;
  height: 22px;
}

.cta-title {
  font-family: var(--font-main);
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.2;
}

.cta-sub {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
}

.cta-btns {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-primary {
  background: #003832;
  color: #aef96a;
  border: none;
  border-radius: 8px;
  padding: 11px 22px;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.btn-primary:hover {
  opacity: 0.88;
}

.btn-primary svg {
  width: 14px;
  height: 14px;
}

.btn-outline {
  background: transparent;
  color: #003832;
  border: 1.6px solid #003832;
  border-radius: 8px;
  padding: 11px 22px;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Tablet */
@media (max-width: 768px) {
  .cta-section {
    padding: 18px 20px;
  }
  .cta-title {
    font-size: 17px;
  }
  .cta-sub {
    font-size: 12px;
  }
  .btn-primary,
  .btn-outline {
    font-size: 13px;
    padding: 9px 16px;
  }
  .cta-left {
    gap: 10px;
  }
}

/* Mobile - single row, tighter */
@media (max-width: 540px) {
  .cta-section {
    padding: 14px 14px;
  }
  .cta-icon {
    width: 28px;
    height: 28px;
  }
  .cta-icon svg {
    width: 14px;
    height: 14px;
  }
  .cta-title {
    font-size: 12px;
  }
  .cta-sub {
    font-size: 9px;
  }
  .cta-btns {
    gap: 8px;
  }
  .btn-primary,
  .btn-outline {
    font-size: 6px;
    padding: 6px 8px;
  }
  .footer-divider {
    background: rgb(255 255 255);
    margin: 20px auto;
    width: 80%;
  }
  .footer-main-links a {
    font-size: 12px;
  }
  .footer-sub-links a {
    font-size: 10px;
  }
  .footer-sub-links {
    gap: 20px;
  }
  .footer-container {
    gap: 22px;
  }
  .footer {
    padding: 60px 15px;
  }
  .social-icons {
    margin-bottom: 15px;
  }
  .footer-email {
    font-size: 12px;
    gap: 0px;
  }
  .copyright {
    font-size: 10px;
  }
}

/* Very small - wrap to two rows */
@media (max-width: 380px) {
  .cta-wrap {
    flex-wrap: wrap;
    gap: 12px;
  }
  .cta-btns {
    width: 100%;
  }
  .btn-primary,
  .btn-outline {
    flex: 1;
    justify-content: center;
  }
}

.page-head {
  background: var(--bg2);
  padding: 100px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Gradient overlay */
.page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: var(--grad1); */
  opacity: 0.08;
}

/* Glow */
.page-head::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #6dff01 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.12;
  filter: blur(80px);
}

.page-head-container {
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Breadcrumb */
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* SVG icon */
.home-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-muted);
  transition: 0.3s;
}

.breadcrumb:hover .home-icon svg {
  stroke: var(--primary);
}

/* Separator */
.separator {
  opacity: 0.6;
}

/* Active */
.breadcrumb .active {
  color: var(--primary);
}

/* Title */
.page-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 20px;
}

/* Subtitle */
.page-subtitle {
  font-family: var(--font-main);
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .page-head {
    padding: 70px 16px 60px;
  }

  .page-title {
    font-size: 2rem;
  }
  .page-subtitle {
    font-size: 14px;
  }
}
