/* ============================================================
   NEW JOURNEY COUNSELLING — MAIN STYLESHEET
   ============================================================ */

/* --- Custom Properties --- */
:root {
  --cream:       #F5F0E8;
  --cream-dark:  #EDE6D8;
  --teal:        #2D7070;
  --teal-dark:   #1E5252;
  --teal-light:  #3D9090;
  --gold:        #E8952A;
  --text-dark:   #1C1C1C;
  --text-mid:    #4A4A4A;
  --text-light:  #767676;
  --white:       #FFFFFF;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:   0 6px 24px rgba(0,0,0,0.10);
  --radius:      10px;
  --radius-lg:   18px;
}

/* --- Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--cream);
  color: var(--text-mid);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  color: var(--teal);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 4vw, 2.9rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.1rem); }
h3 { font-size: 1.1rem; }

/* --- Layout --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 88px 0;
}

/* --- Eyebrow Labels --- */
.section-eyebrow {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-title {
  margin-bottom: 14px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 580px;
  margin-bottom: 52px;
}

.section-cta {
  text-align: center;
  margin-top: 52px;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }

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

.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--teal);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--cream);
  border-color: var(--cream);
}

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

.site-header {
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 96px;
}

.nav-logo {
  flex-shrink: 0;
  line-height: 0;
}

.nav-logo img {
  height: 68px;
  width: auto;
}

nav {
  flex: 1;
}

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  background: rgba(45, 112, 112, 0.09);
  color: var(--teal);
}

.nav-links a.active {
  color: var(--teal);
  background: rgba(45, 112, 112, 0.09);
}

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

.nav-phone {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--teal);
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-phone:hover { color: var(--teal-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--teal);
  flex-shrink: 0;
  font-size: 1.6rem;
  line-height: 1;
}

/* Hidden on desktop, shown in mobile dropdown */
.nav-mobile-only {
  display: none;
}

/* Mobile nav open state */
.nav-links.open {
  display: flex;
}

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

.hero {
  background: var(--cream);
  padding: 80px 0 80px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 72px;
  align-items: center;
}

.hero-logo-side {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-img {
  width: 280px;
  height: auto;
  display: block;
}

.hero-eyebrow {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero-text h1 {
  margin-bottom: 22px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-mid);
  margin-bottom: 38px;
  max-width: 520px;
}

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

/* ============================================================
   SERVICES SECTION
   ============================================================ */

.services-section {
  background: var(--white);
}

.services-section .section-eyebrow,
.services-section .section-title,
.services-section .section-sub {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  border-bottom: 3px solid var(--teal);
  transition: transform 0.2s, box-shadow 0.2s;
  display: block;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  display: block;
  transition: transform 0.25s ease;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card:hover .service-icon {
  transform: scale(1.15);
}

.service-card h3 {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: var(--teal);
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ============================================================
   ABOUT TEASER
   ============================================================ */

.about-teaser {
  background: var(--cream);
}

.about-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: center;
}

.about-photo-wrap {
  position: relative;
}

.about-photo {
}

.about-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.about-text .section-eyebrow {
  margin-bottom: 10px;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 16px;
  color: var(--text-mid);
}

.about-text .btn {
  margin-top: 10px;
}

.aca-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 10px 16px;
  background: var(--white);
  border-radius: 6px;
  border: 1px solid var(--cream-dark);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
}

.aca-badge-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */

.process-section {
  background: var(--white);
  text-align: center;
}

.process-section .section-eyebrow,
.process-section .section-title {
  text-align: center;
}

.process-section .section-title {
  margin-bottom: 56px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 2px;
  background: linear-gradient(to right, var(--teal-light), var(--gold), var(--teal-light));
}

.process-step {
  position: relative;
}

.step-number {
  width: 54px;
  height: 54px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.process-step h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-mid);
  max-width: 240px;
  margin: 0 auto;
}

/* ============================================================
   CTA BANNER
   ============================================================ */

.cta-banner {
  background: var(--teal);
  padding: 80px 0;
}

.cta-inner {
  text-align: center;
}

.cta-inner h2 {
  color: var(--white);
  margin-bottom: 14px;
}

.cta-inner p {
  color: rgba(255,255,255,0.80);
  margin-bottom: 36px;
  font-size: 1.05rem;
}

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

.site-footer {
  background: var(--teal-dark);
  color: rgba(255,255,255,0.72);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.6fr;
  gap: 48px;
  padding: 64px 28px 52px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-brand img {
  margin-bottom: 16px;
  height: 56px;
  width: auto;
  opacity: 1;
  border-radius: 4px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 260px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-contact a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.68);
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-contact p {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.footer-contact .btn {
  margin-top: 18px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */

.page-hero {
  background: var(--teal);
  padding: 64px 0 56px;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   FEE CARD
   ============================================================ */

.fee-card {
  display: inline-block;
  background: #E6F4F0;
  border-radius: 16px;
  padding: 22px 24px 20px;
  min-width: 220px;
}

.fee-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.fee-card-icon {
  width: 52px;
  height: 52px;
  background: var(--teal);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fee-card-icon svg {
  width: 28px;
  height: 28px;
}

.fee-card-header h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1.3;
  margin: 0;
}

.fee-card-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.fee-card-row svg {
  width: 26px;
  height: 26px;
  color: var(--teal);
  flex-shrink: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 960px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-inner {
    grid-template-columns: 200px 1fr;
    gap: 40px;
  }

  .hero-logo-img {
    width: 180px;
  }

  .about-teaser-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-photo {
    max-width: 440px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 96px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 28px 28px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    box-shadow: var(--shadow-md);
    gap: 18px;
    z-index: 999;
  }

  .nav-links .nav-mobile-only {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    padding-top: 12px;
    border-top: 1px solid var(--cream-dark);
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-cta {
    display: none;
  }

  .section {
    padding: 60px 0;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .process-steps::before {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .hero-logo-side {
    order: -1;
  }

  .hero-logo-img {
    width: 160px;
    margin: 0 auto;
  }

  .hero-sub {
    max-width: 100%;
  }

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

@media (max-width: 520px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    text-align: center;
    width: 100%;
  }

  .cta-banner {
    padding: 60px 0;
  }
}
