:root {
  --navy: #010735;
  --yellow: #ffd14f;
  --white: #ffffff;
  --text: #1a1a1a;
}

* { box-sizing: border-box; }

body {
  font-family: "Gill Sans", "Gill Sans MT", "Mulish", Calibri, "Trebuchet MS", sans-serif;
  color: var(--text);
  margin: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, .heading {
  font-family: "Gill Sans", "Gill Sans MT", "Mulish", Calibri, sans-serif;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: .02em;
}

a { text-decoration: none; }
img { max-width: 100%; height: auto; }

.text-navy { color: var(--navy) !important; }
.text-yellow { color: var(--yellow) !important; }
.bg-navy { background: var(--navy) !important; }
.bg-yellow { background: var(--yellow) !important; }

/* Accent underline */
.accent-bar {
  width: 250px;
  max-width: 60%;
  height: 5px;
  background: var(--yellow);
  border: 0;
  opacity: 1;
  margin: 1rem 0 1.75rem;
}
.text-center .accent-bar { margin-left: auto; margin-right: auto; }

/* ---------- Navbar (CSS only, no JS) ---------- */
.top-rule { height: 10px; background: var(--yellow); }

.site-nav { background: var(--white); }
.site-nav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: .75rem;
  padding-bottom: .75rem;
}
.site-nav .brand img { height: 56px; width: auto; display: block; }

.nav-toggle-cb { display: none; }
.nav-toggle {
  display: none;
  width: 46px; height: 40px;
  cursor: pointer;
  padding: 9px 8px;
  border: 1px solid rgba(1,7,53,.4);
  border-radius: 6px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  margin: 4px 0;
  border-radius: 2px;
}

.nav-menu { display: flex; align-items: center; gap: .25rem; }
.nav-menu a {
  color: var(--navy);
  font-weight: 700;
  letter-spacing: .12em;
  font-size: .9rem;
  padding: .5rem 1rem;
  text-transform: uppercase;
}
.nav-menu a:hover,
.nav-menu a.active { color: #c89b1f; }

/* Home transparent header over video */
.site-nav.nav-overlay {
  position: absolute;
  top: 10px; left: 0; right: 0;
  z-index: 20;
  background: transparent;
}
.site-nav.nav-overlay .nav-menu a { color: #fff; }
.site-nav.nav-overlay .nav-menu a:hover,
.site-nav.nav-overlay .nav-menu a.active { color: var(--yellow); }
.site-nav.nav-overlay .nav-toggle { border-color: rgba(255,255,255,.6); }
.site-nav.nav-overlay .nav-toggle span { background: #fff; }

.site-nav{
	background-color: #010735;
}

@media (max-width: 991.98px) {
  .nav-toggle { display: block; }
  .nav-menu {
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height .3s ease;
  }
  .nav-menu a { padding: .85rem 1rem; }
  .nav-toggle-cb:checked ~ .nav-menu { max-height: 320px; }
  .site-nav.nav-overlay .nav-menu {
    background: var(--navy);
    border-radius: 8px;
    margin-top: .5rem;
  }
  .site-nav:not(.nav-overlay) .nav-menu a { border-top: 1px solid rgba(1,7,53,.08); }
}

/* ---------- Hero (Home) ---------- */
.hero {
  position: relative;
  height: 600px;
  max-height: 80vh;
  overflow: hidden;
  background: var(--navy);
}
.hero video,
.hero .hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1,7,53,.45), rgba(1,7,53,.15));
}

/* ---------- Page hero (inner) ---------- */
.page-hero {
  text-align: center;
  padding: 5rem 1rem 1rem;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.9rem);
  text-transform: uppercase;
}
.page-intro {
  max-width: 880px;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ---------- About (Home) ---------- */
.about-section { position: relative; padding: 5rem 0; overflow: hidden; }
.deco-circle {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.about-img-wrap { position: relative; z-index: 2; }
.about-img-wrap img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(1,7,53,.25);
}
.about-content { position: relative; z-index: 2; }
.about-content h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
.about-content p { line-height: 1.75; font-size: 1.02rem; }

/* ---------- Services (Home) ---------- */
.services-section {
  position: relative;
  text-align: center;
  padding: 4rem 0 7rem;
  background: #fff;
}
.services-section::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 320px;
  background: url('../assets/img/home/moon-background.jpg') center bottom/cover no-repeat;
  opacity: .12;
  z-index: 0;
}
.services-section h2 { font-size: clamp(2rem,4vw,3.4rem); }
.service-circle {
  width: 210px; height: 210px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 1rem auto;
  padding: 1rem;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 14px 30px rgba(1,7,53,.18);
  line-height: 1.3;
}
.service-circle:hover { transform: translateY(-8px); box-shadow: 0 22px 40px rgba(1,7,53,.28); }
.moon-bg {
  background: url('../assets/img/home/moon-background.jpg') center/cover no-repeat;
}

/* ---------- Specializing band ---------- */
.specializing {
  background: var(--yellow);
  color: var(--navy);
  text-align: center;
  padding: 4.5rem 1rem;
}
.specializing h2 { font-size: clamp(1.8rem,4vw,3rem); }
.specializing ul {
  list-style: none;
  padding: 0;
  margin: 2rem auto 0;
  max-width: 720px;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 2.2;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ---------- Content rows (Legacy) ---------- */
.feature-row { padding: 2.5rem 0; }
.feature-row img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(1,7,53,.15);
}
.feature-row h3 { font-size: 1.7rem; }
.feature-row p { line-height: 1.75; }

/* ---------- Showcase (Custom) ---------- */
.showcase { padding: 3rem 0; }
.showcase h3 { font-size: 1.7rem; text-align: center; }
.showcase .accent-bar { margin-left:auto; margin-right:auto; }
.showcase img {
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(1,7,53,.18);
  width: 100%;
}

/* ---------- Print groups ---------- */
.print-group { padding: 2.5rem 0; }
.print-group h3 { font-size: 1.7rem; }
.print-group img {
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(1,7,53,.15);
  width: 100%;
}

/* ---------- Yellow info band ---------- */
.info-band {
  background: var(--yellow);
  color: var(--navy);
  padding: 4rem 1rem;
}
.info-band p { font-size: 1.08rem; line-height: 1.8; }

/* ---------- Contact form ---------- */
.contact-section { position: relative; padding: 1rem 0 5rem; overflow: hidden; }
.contact-form { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.contact-form .form-control {
  border: 0;
  background: #fff;
  border-radius: 6px;
  padding: .9rem 1rem;
  margin-bottom: 1.1rem;
  box-shadow: 0 6px 18px rgba(1,7,53,.08);
  font-weight: 600;
  color: var(--navy);
}
.contact-form .form-control::placeholder { color: var(--navy); opacity: .7; letter-spacing:.08em; }
.btn-submit {
  background: var(--navy);
  color: #fff;
  border: 0;
  padding: .85rem 3rem;
  font-weight: 700;
  letter-spacing: .15em;
  border-radius: 6px;
  text-transform: uppercase;
}
.btn-submit:hover { background: #0a1560; color: var(--yellow); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: #cfd2e6;
  text-align: center;
  padding: 3.5rem 1rem 2.5rem;
}
.site-footer img { height: 70px; margin-bottom: 1.5rem; filter: brightness(1.15); }
.site-footer .footer-meta { font-size: .95rem; letter-spacing: .03em; }
.site-footer .socials { margin: 1.5rem 0; }
.site-footer .socials a {
  display: inline-flex;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  margin: 0 .4rem;
  font-size: 1.05rem;
  transition: transform .2s;
}
.site-footer .socials a:hover { transform: translateY(-3px); }
.site-footer .socials a svg { width: 18px; height: 18px; fill: var(--navy); }
.site-footer .credit { font-size: .8rem; opacity: .65; margin-top: 1rem; }

@media (max-width: 575.98px) {
  .service-circle { width: 175px; height: 175px; font-size: .85rem; }
  .hero { height: 60vh; }
}
