* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: #000b21;
  color: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* NAVBAR */

header {
  background-color: #000b21;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px 16px;
  color: #fff;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.logo span {
  font-size: 1.1rem;
}

.navbar-nav {
  display: flex;
  list-style: none;
  gap: 24px;
}

.navbar-nav li {
  margin: 0;
}

.navbar a {
  color: #fff;
  padding: 5px 0;
  font-size: 0.95rem;
}

.navbar a:hover {
  color: #fdbf3b;
}

/* Hamburger */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid rgba(253, 191, 59, 0.6);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  height: 2px;
  width: 70%;
  margin: 0 auto;
  background-color: #fdbf3b;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.nav-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.nav-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.nav-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* HERO */

.hero {
  padding: 60px 0 40px;
  text-align: center;
}

.hero .hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 16px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fdbf3b;
  margin-bottom: 20px;
}

.hero p {
  font-size: clamp(0.95rem, 2.6vw, 1.05rem);
  color: #f4f4f4;
  opacity: 0.9;
}

/* PURPOSE */

.purpose {
  background: #000b21;
  padding: 40px 0 30px;
}

.purpose .container {
  text-align: center;
}

.purpose h2 {
  color: #fdbf3b;
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 16px;
}

.purpose p {
  color: #ffffff;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  max-width: 800px;
  margin: 0 auto 10px;
}

/* WHAT WE DO / INFO SECTION */

.info-section {
  background-color: #ffffff;
  color: #000b21;
  padding: 60px 0 50px;
}

.info-section .container {
  text-align: center;
}

.info-section h2 {
  font-size: clamp(1.6rem, 3.6vw, 2.3rem);
  margin-bottom: 16px;
  color: #fdbf3b;
}

.info-section p {
  font-size: clamp(0.9rem, 2.4vw, 1rem);
  color: #000b21;
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.7;
}

.what-we-do-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.what-items {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 250px;
  background: #000b21;
  padding: 24px 18px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(253, 191, 59, 0.35);
}

.what-items h3 {
  color: #fdbf3b;
  font-size: 1rem;
  margin-bottom: 10px;
}

.what-items p {
  color: #ffffff;
  font-size: 0.9rem;
  margin: 0;
}

.what-footer {
  margin-top: 24px;
  font-size: 0.95rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* SERVICE */

.Service {
  padding: 60px 0 80px;
  background: #000b21;
}

.Service .container {
  text-align: center;
}

.Service h2 {
  color: #fdbf3b;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 24px;
}

.Service-items {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  max-width: 750px;
  margin: 0 auto;
  padding: 24px 18px 28px;
  border-radius: 18px;
  background: radial-gradient(circle at top left, #09153a, #000612);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(253, 191, 59, 0.25);
}

.text-box {
  flex: 1 1 45%;
  min-width: 200px;
  background: #020c24;
  border-radius: 999px;
  padding: 10px 16px;
  text-align: center;
  color: #ffffff;
  font-size: 0.9rem;
  border: 1px solid rgba(253, 191, 59, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.text-box::before {
  content: "•";
  color: #fdbf3b;
  margin-right: 8px;
  font-size: 1.1rem;
}

/* ---------- PROOF OF WORK ---------- */

.proof {
  background: #000b21;
  padding: 60px 0 70px;
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.proof.is-visible {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .proof {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.proof .container {
  text-align: center;
}

.proof-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: #fdbf3b;
  margin-bottom: 12px;
}

.proof h2 {
  color: #fdbf3b;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 12px;
}

.proof-subline {
  color: #f4f4f4;
  opacity: 0.85;
  font-size: clamp(0.9rem, 2.4vw, 1rem);
  max-width: 640px;
  margin: 0 auto 36px;
}

/* Carousel */

.carousel {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 640px;
  margin: 0 auto;
}

.carousel-viewport {
  overflow: hidden;
  flex: 1;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.carousel-btn {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(253, 191, 59, 0.35);
  background: #020c24;
  color: #fdbf3b;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.carousel-btn:hover {
  background: rgba(253, 191, 59, 0.12);
  border-color: #fdbf3b;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(253, 191, 59, 0.3);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-dot.is-active {
  background: #fdbf3b;
  transform: scale(1.2);
}

.proof-card {
  padding: 0 10px;
  box-sizing: border-box;
}

.proof-card-inner {
  background: radial-gradient(circle at top left, #09153a, #000612);
  border: 1px solid rgba(253, 191, 59, 0.25);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
}

.proof-card img {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
  cursor: zoom-in;
  transition: transform 0.3s ease;
  background: #020c24;
  border-radius: 14px 14px 0 0;
  display: block;
}

.proof-card img:hover {
  transform: scale(1.03);
}

.proof-card figcaption {
  padding: 12px 16px 16px;
  font-size: 0.85rem;
  color: #ffffff;
  opacity: 0.85;
  text-align: left;
}

/* Lightbox */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 11, 33, 0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 10px;
  border: 1px solid rgba(253, 191, 59, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: transparent;
  border: 1px solid rgba(253, 191, 59, 0.5);
  color: #fdbf3b;
  font-size: 1.6rem;
  line-height: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
}

.lightbox-close:hover {
  background: rgba(253, 191, 59, 0.12);
}

/* ---------- CONTACT SECTION ---------- */

#contact {
  background: #000b21;
  color: #ffffff;
  padding: 60px 0 80px;
}

#contact .eyebrow {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: #fdbf3b;
  margin-bottom: 16px;
}

#contact h2 {
  color: #fdbf3b;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  line-height: 1.15;
  margin-bottom: 12px;
}

#contact .subline {
  color: #f4f4f4;
  opacity: 0.85;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  max-width: 34rem;
  margin-bottom: 32px;
}

#contact .status-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid rgba(253, 191, 59, 0.25);
  border-bottom: 1px solid rgba(253, 191, 59, 0.25);
  margin-bottom: 20px;
}

#contact .status-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: #ffffff;
}

#contact .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fdbf3b;
  animation: contactPulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes contactPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@media (prefers-reduced-motion: reduce) {
  #contact .status-dot { animation: none; }
}

#contact .open-line {
  color: #f4f4f4;
  opacity: 0.85;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  max-width: 36rem;
  margin-bottom: 40px;
}

#contact form {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 700px;
  padding: 24px 20px 28px;
  border-radius: 18px;
  background: radial-gradient(circle at top left, #09153a, #000612);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(253, 191, 59, 0.25);
}

#contact .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

#contact label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: #fdbf3b;
}

#contact input,
#contact select,
#contact textarea {
  background: #020c24;
  border: 1px solid rgba(253, 191, 59, 0.25);
  border-radius: 10px;
  color: #ffffff;
  font-family: inherit;
  font-size: 1rem;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
}

#contact select option {
  background: #020c24;
}

#contact input::placeholder,
#contact textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

#contact input:focus,
#contact select:focus,
#contact textarea:focus {
  border-color: #fdbf3b;
}

#contact textarea {
  resize: vertical;
}

#contact .submit-btn {
  align-self: flex-start;
  margin-top: 8px;
  background: #fdbf3b;
  color: #000b21;
  border: none;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  padding: 14px 28px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s ease, transform 0.15s ease;
}

#contact .submit-btn:hover {
  background: #ffd066;
}

#contact .submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

#contact .submit-btn:focus-visible,
#contact input:focus-visible,
#contact select:focus-visible,
#contact textarea:focus-visible {
  outline: 2px solid #fdbf3b;
  outline-offset: 3px;
}

#contact .form-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: -12px;
}

#contact .form-note.error {
  color: #ff8a65;
}

#contact .success-message {
  display: none;
  text-align: center;
  padding: 48px 0;
  border-top: 1px solid rgba(253, 191, 59, 0.25);
}

#contact .success-message h3 {
  color: #fdbf3b;
  font-size: 1.4rem;
  margin-bottom: 8px;
}

#contact .success-message p {
  color: #f4f4f4;
  opacity: 0.85;
  margin: 0;
}

#contact.is-sent form,
#contact.is-sent .status-bar,
#contact.is-sent .open-line {
  display: none;
}

#contact.is-sent .success-message {
  display: block;
}

#contact .direct-email {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 40px;
  color: #f4f4f4;
  opacity: 0.85;
  font-size: 0.95rem;
}

#contact .direct-email a {
  color: #fdbf3b;
  border-bottom: 1px solid #fdbf3b;
  text-decoration: none;
}

#contact .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

#contact .social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(253, 191, 59, 0.25);
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 10px 18px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

#contact .social-links a:hover {
  border-color: #fdbf3b;
  color: #fdbf3b;
}

#contact .closing-line {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(253, 191, 59, 0.25);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

/* RESPONSIVE BREAKPOINTS */

@media (max-width: 992px) {
  .what-items {
    flex: 1 1 calc(50% - 20px);
  }
}

/* Mobile: navbar + WHAT WE DO carousel */

@media (max-width: 768px) {
  .navbar {
    padding: 10px 16px 12px;
  }

  .nav-toggle {
    display: flex;
  }

  .navbar-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #000b21;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-top: 1px solid rgba(253, 191, 59, 0.25);
  }

  .navbar-nav.nav-open {
    max-height: 300px;
  }

  .navbar-nav li {
    width: 100%;
  }

  .navbar-nav a {
    display: block;
    width: 100%;
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  .what-we-do-container {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
  }

  .what-we-do-container::-webkit-scrollbar {
    height: 6px;
  }

  .what-we-do-container::-webkit-scrollbar-track {
    background: #0a1533;
  }

  .what-we-do-container::-webkit-scrollbar-thumb {
    background: #fdbf3b;
    border-radius: 10px;
  }

  .what-items {
    flex: 0 0 80%;
    min-width: 80%;
    scroll-snap-align: start;
  }

  .Service-items {
    flex-direction: column;
  }

  .text-box {
    white-space: normal;
  }

  #contact .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  #contact .status-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  #contact form {
    padding: 20px 16px 24px;
  }

  .carousel-btn {
    width: 34px;
    height: 34px;
    font-size: 1.2rem;
  }

  .carousel {
    gap: 6px;
  }

  .proof-card img {
    max-height: 60vh;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 40px;
  }

  .hero p {
    text-align: left;
  }

  .purpose p,
  .info-section p {
    text-align: left;
  }

  .what-items {
    flex: 0 0 85%;
    min-width: 85%;
  }
}