/* ============================================
   Luvuno Consulting — brand stylesheet
   Navy #122C46 · Teal #1F9C7C · Mint #7FDDBB · Gray #A7A7A7
   ============================================ */
/* ============================================
   Luvuno Consulting — brand stylesheet
   Navy #122C46 · Teal #1F9C7C · Mint #7FDDBB · Gray #A7A7A7
   ============================================ */

:root {
  --navy: #122C46;
  --navy-light: #1B3C5E;
  --teal: #1F9C7C;
  --teal-dark: #17795F;
  --mint: #7FDDBB;
  --gray: #A7A7A7;
  --bg-light: #F4F4F2;
  --text: #3D3D3A;
  --white: #FFFFFF;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 100px;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
}

h1,
h2,
h3,
h4 {
  font-family: 'Poppins', Arial, sans-serif;
  color: var(--navy);
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}


/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  font-family: 'Poppins', Arial, sans-serif;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--teal-dark);
}

.btn-outline {
  border-color: var(--mint);
  color: var(--mint);
  background: transparent;
}

.btn-outline:hover {
  background: var(--mint);
  color: var(--navy);
}

.btn-outline-navy {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}


/* ============================================
   HEADER / NAVIGATION
   ============================================ */

header.site-header {
  padding: 10px 6%;
  background: var(--white);
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}

header.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: none;
  padding: 0;
}

/* Larger logo */
.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo img {
  height: 65px;
  width: auto;
  display: block;
}

/* Navigation */
nav.main-nav {
  margin: 0 auto;
}

nav.main-nav ul {
  display: flex;
  align-items: center;
  gap: 45px;
  list-style: none;
}

nav.main-nav a {
  font-size: 19px;
  font-weight: 500;
  color: #333;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  color: #209f83;
  border-bottom-color: #209f83;
}

.nav-right {
  flex-shrink: 0;
}

.nav-right .btn-primary {
  background-color: #209f83;
  padding: 16px 35px;
  border-radius: 9px;
  font-size: 15px;
}

.nav-right .btn-primary:hover {
  background-color: var(--teal-dark);
}


/* ============================================
   MOBILE NAV TOGGLE
   ============================================ */

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--navy);
}


/* ============================================
   HERO
   ============================================ */

.hero {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 90px 0;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 2;
}

.hero-copy {
  flex: 1.1;
}

.hero-copy .eyebrow {
  color: var(--mint);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

.hero-copy h1 {
  color: var(--white);
  font-size: 42px;
  margin-bottom: 18px;
}

.hero-copy p {
  font-size: 16px;
  color: #C9D6E2;
  max-width: 480px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-graphic {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-graphic svg {
  width: 100%;
  max-width: 380px;
  height: auto;
}


/* ============================================
   HERO BACKGROUND SHAPES
   ============================================ */

.hero-bg-shape-1,
.hero-bg-shape-2 {
  position: absolute;
  border-radius: 20%;
}

.hero-bg-shape-1 {
  width: 300px;
  height: 300px;
  background: var(--teal);
  opacity: 0.12;
  left: -100px;
  bottom: -140px;
  transform: rotate(25deg);
}

.hero-bg-shape-2 {
  width: 200px;
  height: 200px;
  background: var(--mint);
  opacity: 0.10;
  right: -60px;
  top: -80px;
  transform: rotate(15deg);
}


/* ============================================
   PAGE HEADER
   ============================================ */

.page-header {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  color: var(--white);
  font-size: 32px;
  margin-bottom: 10px;
}

.page-header p {
  color: #C9D6E2;
  font-size: 15px;
  max-width: 520px;
}

.page-header .hero-bg-shape-2 {
  right: -40px;
  top: -60px;
}


/* ============================================
   SECTION BASE
   ============================================ */

section {
  padding: 80px 0;
}

section.alt {
  background: var(--bg-light);
}

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
}

.section-head .eyebrow {
  color: var(--teal);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.section-head h2 {
  font-size: 30px;
  margin-bottom: 12px;
}

.section-head p {
  color: #6B6B68;
  font-size: 15px;
}


/* ============================================
   GRIDS
   ============================================ */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}


/* ============================================
   CARDS
   ============================================ */

.card {
  background: var(--white);
  border: 1px solid #ECECE9;
  border-radius: 12px;
  padding: 30px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(18,44,70,0.08);
}

.card .icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.card .icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--mint);
}

.card h3 {
  font-size: 18px;
  color: var(--teal);
  margin-bottom: 8px;
}

.card p {
  font-size: 14px;
  color: #6B6B68;
}


/* ============================================
   NAVY TALENT SECTION
   ============================================ */

.navy-talent {
  background: var(--navy);
  padding: 80px 0;
}

.card-on-navy {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}

.card-on-navy:hover {
  box-shadow: 0 14px 30px rgba(0,0,0,0.25);
}

.card-on-navy h3 {
  color: var(--mint);
}


/* ============================================
   CARD LINKS
   ============================================ */

.card-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  cursor: pointer;
}

.card-link h3 {
  margin-bottom: 0;
}


/* ============================================
   SERVICE CARDS
   ============================================ */

.service-card {
  border-radius: 12px;
  padding: 40px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 190px;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(18,44,70,0.18);
}

.service-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.service-card .icon svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
}

.service-card h3 {
  font-size: 17px;
  color: #fff;
  margin: 0;
}

.service-card .learn-more {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  margin-top: 10px;
  letter-spacing: 0.5px;
}

.service-card.bg-navy {
  background: #122C46;
}

.service-card.bg-teal {
  background: #1F9C7C;
}

.service-card.bg-slate {
  background: #2C4A66;
}

.service-card.bg-gray {
  background: #5A6E7F;
}

.service-card.bg-dark-teal {
  background: #17795F;
}

.service-card.bg-blue {
  background: #1B3C5E;
}


/* ============================================
   MISSION / VISION
   ============================================ */

.mv-toggle {
  display: none;
}

.mv-card {
  background: var(--white);
  border-left: 4px solid var(--teal);
  border-radius: 10px;
  padding: 28px;
  box-shadow: 0 6px 20px rgba(18,44,70,0.06);
  display: block;
  cursor: pointer;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.mv-card:hover {
  box-shadow: 0 12px 30px rgba(18,44,70,0.12);
  transform: translateY(-2px);
}

.mv-card.mint {
  border-left-color: var(--mint);
}

.mv-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.mv-card p {
  font-size: 14px;
  color: #6B6B68;
}

.mv-card .mv-extra {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  transition: max-height 0.45s ease,
              opacity 0.35s ease,
              margin-top 0.35s ease;
}

.mv-toggle:checked + .mv-card .mv-extra,
.mv-card:hover .mv-extra {
  max-height: 300px;
  opacity: 1;
  margin-top: 12px;
}


/* ============================================
   PROCESS STEPS
   ============================================ */

.process {
  background: var(--navy);
  border-radius: 16px;
  padding: 48px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.process-step {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.process-step .num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin: 0 auto 14px;
}

.process-step h4 {
  color: var(--white);
  font-size: 15px;
  margin-bottom: 4px;
}

.process-step span {
  color: var(--mint);
  font-size: 13px;
}

.process-line {
  flex: 0.4;
  height: 2px;
  background: rgba(127,221,187,0.35);
  min-width: 30px;
}


/* ============================================
   CEO / QUOTE BLOCK
   ============================================ */

.quote-block {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--bg-light);
  border-radius: 14px;
  padding: 40px;
  flex-wrap: wrap;
}

/* Larger CEO image */
.quote-block img {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--white);
  box-shadow: 0 8px 25px rgba(18,44,70,0.18);
  flex-shrink: 0;
}

.quote-block .quote-text {
  flex: 1;
  min-width: 220px;
}

.quote-block h3 {
  font-size: 20px;
  margin-bottom: 8px;
  font-style: italic;
}

.quote-block .name {
  color: var(--teal);
  font-weight: 600;
  font-size: 14px;
}

.quote-block .role {
  color: #6B6B68;
  font-size: 13px;
}


/* ============================================
   SERVICE DETAIL BLOCKS
   ============================================ */

.service-detail {
  padding: 70px 0;
  border-bottom: 1px solid #ECECE9;
}

.service-detail:last-of-type {
  border-bottom: none;
}

.service-detail .detail-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.service-detail .detail-head .icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-detail .detail-head .icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--mint);
}

.service-detail .detail-head h2 {
  font-size: 26px;
  margin: 0;
}

.service-detail .detail-body p {
  color: #6B6B68;
  font-size: 15px;
  max-width: 720px;
  margin-bottom: 26px;
}


/* ============================================
   MINI PROCESS
   ============================================ */

.mini-process {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

.mini-process-step {
  text-align: center;
  flex: 1;
  min-width: 100px;
}

.mini-process-step .num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  margin: 0 auto 10px;
}

.mini-process-step span {
  font-size: 13px;
  color: var(--navy);
  font-weight: 600;
}


/* ============================================
   DATA CYCLE
   ============================================ */

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cycle-step {
  text-align: center;
}

.cycle-step .num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 2px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.cycle-step .num svg {
  width: 24px;
  height: 24px;
  stroke: var(--teal);
}

.cycle-step h4 {
  font-size: 15px;
  margin-bottom: 4px;
}

.cycle-step span {
  font-size: 12px;
  color: var(--gray);
}


/* ============================================
   BENEFIT TILES
   ============================================ */

.benefit-tile {
  text-align: center;
  padding: 10px;
}

.benefit-tile .num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.benefit-tile .num svg {
  width: 26px;
  height: 26px;
  stroke: var(--mint);
}

.benefit-tile p {
  font-size: 13px;
  color: #6B6B68;
}

.benefit-tile strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
  margin-top: 2px;
}


/* ============================================
   STATS STRIP
   ============================================ */

.stats-strip {
  background: var(--teal);
  color: var(--white);
  padding: 40px 0;
}

.stats-strip .grid-3 {
  text-align: center;
}

.stats-strip .num {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 30px;
}

.stats-strip .label {
  font-size: 13px;
  color: #E4FFF4;
}


/* ============================================
   CTA BAND
   ============================================ */

.cta-band {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-band h2 {
  color: var(--white);
  font-size: 26px;
  margin-bottom: 12px;
}

.cta-band p {
  color: #C9D6E2;
  margin-bottom: 26px;
}


/* ============================================
   CONTACT
   ============================================ */

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-form {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(18,44,70,0.08);
  border: 1px solid #ECECE9;
}

.form-row {
  margin-bottom: 18px;
}

.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #DDD;
  border-radius: 6px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  background: var(--bg-light);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid var(--teal);
  background: var(--white);
}

.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 12px;
  padding: 32px;
}

.contact-info-card h3 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 20px;
}

.info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.info-item .icon-sm {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-item .icon-sm svg {
  width: 18px;
  height: 18px;
  stroke: var(--white);
}

.info-item .label {
  font-size: 12px;
  color: var(--mint);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-item .value {
  font-size: 14px;
  color: var(--white);
}


/* ============================================
   FOOTER
   ============================================ */

footer.site-footer {
  background: var(--navy);
  color: #C9D6E2;
  padding: 50px 0 22px;
}

footer.site-footer .footer-top {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

footer.site-footer h4 {
  color: var(--white);
  font-size: 14px;
  margin-bottom: 14px;
}

footer.site-footer ul {
  list-style: none;
}

footer.site-footer li {
  margin-bottom: 8px;
  font-size: 13px;
}

footer.site-footer a:hover {
  color: var(--mint);
}

footer.site-footer .logo-white {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 10px;
  display: block;
}

footer.site-footer .foot-desc {
  font-size: 13px;
  max-width: 260px;
  color: #9FB3C6;
}

footer.site-footer .foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 18px;
  font-size: 12px;
  color: #8199AE;
  text-align: center;
}


/* ============================================
   DIVIDER TRIANGLE
   ============================================ */

.divider-triangle {
  width: 0;
  height: 0;
  border-left: 90px solid transparent;
  border-bottom: 46px solid var(--gray);
  opacity: 0.45;
}


/* ============================================
   TABLET / MOBILE
   ============================================ */

@media (max-width: 820px) {

  /* Header */
  header.site-header {
    padding: 8px 24px;
  }

  header.site-header .container {
    width: 100%;
  }

  .logo img {
    height: 50px;
  }

  /* Mobile navigation */
  nav.main-nav {
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
    display: none;
    margin: 0;
  }

  nav.main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px;
  }

  nav.main-nav li {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  nav.main-nav a {
    display: block;
    padding: 14px 0;
  }

  .nav-toggle:checked ~ nav.main-nav {
    display: block;
  }

  .nav-toggle-label {
    display: block;
  }

  .nav-right .btn-primary {
    padding: 10px 18px;
    font-size: 13px;
    border-radius: 6px;
  }


  /* Grids */
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }


  /* Hero */
  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }


  /* Process */
  .process {
    flex-direction: column;
  }

  .process-line {
    width: 2px;
    height: 30px;
  }


  /* Data grid */
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }


  /* Contact */
  .contact-wrap {
    grid-template-columns: 1fr;
  }


  /* CEO section */
  .quote-block {
    justify-content: center;
    text-align: center;
    padding: 32px 24px;
  }

  .quote-block img {
    width: 200px;
    height: 200px;
  }

  .quote-block .quote-text {
    min-width: 100%;
  }
}


/* ============================================
   SMALL MOBILE
   ============================================ */

@media (max-width: 600px) {

  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  /* Header */
  header.site-header {
    padding: 8px 18px;
  }

  .logo img {
    height: 48px;
  }

  nav.main-nav {
    top: 64px;
  }

  .nav-right .btn-primary {
    padding: 9px 13px;
    font-size: 12px;
  }


  /* Hero */
  .hero {
    padding: 65px 0;
  }

  .hero-copy h1 {
    font-size: 34px;
  }

  .hero-copy p {
    font-size: 15px;
  }

  .hero-graphic svg {
    max-width: 280px;
  }


  /* General sections */
  section {
    padding: 60px 0;
  }

  .section-head h2 {
    font-size: 26px;
  }


  /* Service cards */
  .service-card {
    min-height: 170px;
  }


  /* CEO */
  .quote-block {
    padding: 28px 18px;
    gap: 22px;
  }

  .quote-block img {
    width: 190px;
    height: 190px;
  }

  .quote-block h3 {
    font-size: 18px;
  }


  /* Data grid */
  .grid-4 {
    grid-template-columns: 1fr;
  }


  /* Contact */
  .contact-form,
  .contact-info-card {
    padding: 24px;
  }


  /* CTA */
  .cta-band {
    padding: 50px 18px;
  }

  .cta-band h2 {
    font-size: 23px;
  }
}