@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@700;900&display=swap");

:root {
  --ntg-blue: #1a5fa8;
  --ntg-navy: #0d3d6e;
  --ntg-dark: #0b1f38;
  --ntg-amber: #f5a623;
  --ntg-amber-dk: #d4891a;
  --ntg-light: #f0f5fc;
  --ntg-text: #2d3748;
  --ntg-muted: #718096;
  --ntg-white: #ffffff;
  --radius: 8px;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.18);
  --transition: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
video,
iframe,
svg {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 100%;
  overflow-x: hidden;
}

/* Universal guard: nothing can ever force horizontal overflow */
* {
  max-width: 100%;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--ntg-text);
  background: #fff;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: var(--ntg-blue);
  border-radius: 4px;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--ntg-dark);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  padding: 8px 0;
  position: relative;
  z-index: 200;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-email-short {
  display: none;
}
@media (max-width: 700px) {
  .topbar-email-text {
    display: none;
  }
  .topbar-email-short {
    display: inline;
  }
}
.topbar a {
  color: var(--ntg-amber);
  text-decoration: none;
  transition: opacity 0.2s;
}
.topbar a:hover {
  opacity: 0.8;
}
.topbar .topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.topbar .hours {
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar .hours i {
  color: var(--ntg-amber);
}
.btn-topbar {
  background: var(--ntg-amber);
  color: #fff !important;
  padding: 4px 16px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}
.btn-topbar:hover {
  background: var(--ntg-amber-dk) !important;
}

/* ── HEADER ── */
header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s;
}
header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
  position: relative;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-badge {
  display: flex;
  align-items: center;
}

.logo-badge img {
  height: 55px;
  width: auto;
}
.logo-info strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ntg-navy);
  line-height: 1.2;
}
.logo-info span {
  font-size: 0.7rem;
  color: var(--ntg-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ── NAV ── */
.nav-mobile-header,
.nav-mobile-actions,
.nav-mobile-close {
  display: none;
}
nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
}
nav ul li a {
  display: block;
  padding: 8px 14px;
  text-decoration: none;
  color: var(--ntg-text);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all 0.2s;
  position: relative;
}
nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--ntg-amber);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s;
}
nav ul li a:hover::after,
nav ul li a.active::after {
  transform: scaleX(1);
}
nav ul li a:hover,
nav ul li a.active {
  color: var(--ntg-blue);
  background: rgba(26, 95, 168, 0.05);
}

/* ── HEADER CTA ── */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25d366;
  color: #fff;
  padding: 9px 18px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.84rem;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.2s;
}
.btn-wa:hover {
  background: #1aaf54;
  transform: translateY(-1px);
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ntg-blue);
  color: #fff;
  padding: 9px 18px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.84rem;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.2s;
}
.btn-cta:hover {
  background: var(--ntg-navy);
  transform: translateY(-1px);
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  background: none;
  border: 1.5px solid #e2e8f0;
  border-radius: 6px;
  padding: 7px 10px;
  cursor: pointer;
  color: var(--ntg-navy);
  font-size: 1.1rem;
}

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(
    135deg,
    var(--ntg-dark) 0%,
    var(--ntg-navy) 60%,
    var(--ntg-blue) 100%
  );
  padding: 60px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
}
.page-hero-content {
  position: relative;
  z-index: 1;
}
.breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.82rem;
}
.breadcrumb-nav a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb-nav a:hover {
  color: var(--ntg-amber);
}
.breadcrumb-nav span {
  color: rgba(255, 255, 255, 0.35);
}
.breadcrumb-nav .current {
  color: var(--ntg-amber);
  font-weight: 600;
}
.page-hero h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ── SECTION COMMON ── */
section {
  padding: 90px 0;
}
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.section-eyebrow::before {
  content: "";
  width: 36px;
  height: 3px;
  background: var(--ntg-amber);
  border-radius: 2px;
  flex-shrink: 0;
}
.section-eyebrow span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ntg-blue);
}
.section-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--ntg-navy);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.section-desc {
  color: var(--ntg-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 580px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ntg-amber);
  color: #fff;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  border: 2px solid var(--ntg-amber);
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.3px;
}
.btn-primary:hover {
  background: var(--ntg-amber-dk);
  border-color: var(--ntg-amber-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.35);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ntg-blue);
  padding: 13px 30px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  border: 2px solid var(--ntg-blue);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline:hover {
  background: var(--ntg-blue);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  transform: translateY(-2px);
}

/* ── FORM INPUTS ── */
.form-group {
  margin-bottom: 14px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ntg-navy);
  margin-bottom: 6px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius);
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  color: var(--ntg-text);
  background: #fff;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--ntg-blue);
  box-shadow: 0 0 0 3px rgba(26, 95, 168, 0.12);
}
.form-textarea {
  resize: vertical;
  min-height: 110px;
}
.btn-form-submit {
  width: 100%;
  padding: 13px;
  background: var(--ntg-blue);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.3px;
}
.btn-form-submit:hover {
  background: var(--ntg-navy);
  transform: translateY(-1px);
}

/* ── FOOTER ── */
.footer {
  background: var(--ntg-dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 70px 0 0;
}
.footer-brand p {
  font-size: 0.86rem;
  line-height: 1.75;
  max-width: 280px;
  margin-top: 14px;
}
.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.footer-social a:hover {
  background: var(--ntg-amber);
  color: #fff;
}
.footer-col h5 {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--ntg-amber);
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.86rem;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-col ul li a:hover {
  color: var(--ntg-amber);
}
.footer-col ul li a i {
  color: var(--ntg-amber);
  font-size: 0.75rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 50px;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}
.footer-bottom a {
  color: var(--ntg-amber);
  text-decoration: none;
}

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
}
.delay-5 {
  transition-delay: 0.5s;
}

/* ── COUNTER NUMBERS ── */
.counter-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--ntg-amber);
  line-height: 1;
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  animation: pulse-green 2.5s infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}
@keyframes pulse-green {
  0%,
  100% {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.8);
  }
}

@media (max-width: 600px) {
  section {
    padding: 60px 0;
  }
  .btn-wa span {
    display: none;
  }
}
@media (max-width: 600px) {
  section {
    padding: 60px 0;
  }
  .btn-wa span {
    display: none;
  }
}
/* ── FOOTER GRID (responsive) ── */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
}
@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ── FORM TWO-COLUMN ROW (responsive) ── */
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 480px) {
  .form-row-2 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .counter-num {
    font-size: 1.5rem !important;
  }
}

/* ── HEADER POSITIONING FIX (dropdown anchor) ── */
.header-inner {
  position: relative;
}

/* ── FOOTER GRID (responsive, replaces inline grid on every page) ── */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
}
@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ── GENERIC 2-COLUMN FORM ROW (responsive) ── */
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 480px) {
  .form-row-2 {
    grid-template-columns: 1fr;
  }
}

/* form-row is already a class used in contact.html — make it responsive too */
@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 900px) {
  .btn-cta {
    display: none;
  }
  .hamburger {
    display: flex;
    position: relative;
    z-index: 10000;
  }
  .hamburger.open i::before {
    content: "\f00d";
  }

  nav {
    display: none !important;
    position: fixed !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    background: #ffffff !important;
    z-index: 9999 !important;
    flex: none !important;
    overflow-y: auto;
  }
  nav.open {
    display: flex !important;
    flex-direction: column !important;
  }

  /* Mini header inside the overlay, mirrors the real header */
  .nav-mobile-header {
    display: none;
  }
  nav.open .nav-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    border-bottom: 1px solid #e8ecf2;
    flex-shrink: 0;
  }
  .nav-mobile-header .logo-link {
    gap: 10px;
  }
  .nav-mobile-header .logo-badge img {
    height: 42px;
  }
  .nav-mobile-close {
    background: none;
    border: 1.5px solid #e2e8f0;
    border-radius: 6px;
    padding: 7px 10px;
    cursor: pointer;
    color: var(--ntg-navy);
    font-size: 1.1rem;
  }

  nav ul {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    gap: 0;
    width: 100%;
    padding: 8px 24px 24px;
  }
  nav ul li {
    width: 100%;
  }
  nav ul li a {
    padding: 16px 8px;
    width: 100%;
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  nav ul li a::after {
    display: none;
  }
  nav ul li a.active {
    color: var(--ntg-blue);
    background: rgba(26, 95, 168, 0.05);
  }

  /* Quick actions footer inside the overlay */
  .nav-mobile-actions {
    display: none;
  }
  nav.open .nav-mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 24px 32px;
    margin-top: auto;
    border-top: 1px solid #e8ecf2;
  }
}
