/* ============================================
   VALUESHAPERS — PROFESSIONAL STYLE
   ============================================ */

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

:root {
  --navy: #111827;
  --navy-light: #1f2937;
  --charcoal: #374151;
  --slate: #6b7280;
  --silver: #9ca3af;
  --light-grey: #f3f4f6;
  --off-white: #f9fafb;
  --white: #ffffff;
  --gold: #0ea5e9;
  --gold-light: #38bdf8;
  --gold-dark: #0284c7;

  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  --max-width: 1140px;
  --nav-height: 72px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);

  --transition: 0.3s ease;
}

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

body {
  font-family: var(--font-body);
  color: var(--slate);
  line-height: 1.7;
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--navy);
}

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

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

ul {
  list-style: none;
}


/* --- Utility --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}


/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

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

.btn-primary:hover {
  background-color: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-secondary:hover {
  background-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}


/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay {
  transition-delay: 0.3s;
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}


/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background-color: transparent;
  transition: background-color var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background-color: rgba(17, 24, 39, 0.97);
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.nav-logo span {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background-color: var(--gold) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 600 !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background-color: var(--gold-dark) !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--white);
  transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* --- Hero --- */
/*
  To add a background image, place your image (e.g. hero-bg.jpg) in
  this folder and uncomment the background-image line below.
*/
.hero {
  min-height: 100vh;
  background-color: var(--navy);
  background-image: url('NewHero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}

/* Dark overlay so text stays readable over any background image */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.92) 0%, rgba(31, 41, 55, 0.88) 50%, rgba(55, 65, 81, 0.85) 100%);
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-container {
  text-align: center;
  max-width: 780px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: 20px;
  line-height: 1.7;
  font-weight: 500;
}

.hero-description {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
  line-height: 1.7;
}

.hero .btn {
  margin-top: 20px;
}

.hero .btn i {
  margin-right: 8px;
}


/* --- Sections --- */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--gold);
  margin: 16px auto 0;
}

.section-lead {
  font-size: 1.1rem;
  color: var(--slate);
  max-width: 640px;
  margin: 0 auto;
}

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


/* --- Profile Picture --- */
.profile-picture {
  margin-bottom: 28px;
}

.profile-photo {
  width: 260px;
  height: 260px;
  border-radius: 12px;
  object-fit: cover;
  margin: 0 auto;
}


/* --- Experience --- */
.experience {
  background-color: var(--white);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.experience-card {
  background-color: var(--off-white);
  border-radius: 8px;
  padding: 40px 32px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.experience-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.experience-card p {
  color: var(--slate);
  line-height: 1.7;
}

.experience-detail {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 40px;
}

.experience-detail p {
  font-size: 1.05rem;
  color: var(--slate);
  font-style: italic;
}

.credentials {
  background-color: var(--off-white);
  border-radius: 8px;
  padding: 40px;
  border-left: 4px solid var(--gold);
}

.credentials h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--navy);
}

.credentials-list {
  display: grid;
  gap: 14px;
}

.credentials-list li {
  padding-left: 24px;
  position: relative;
  color: var(--slate);
  line-height: 1.6;
}

.credentials-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background-color: var(--gold);
  border-radius: 50%;
}


/* --- How I Work --- */
.how-i-work {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
}

.how-i-work .section-header h2 {
  color: var(--white);
}

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

.approach-card {
  padding: 36px 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  transition: background var(--transition), transform var(--transition);
}

.approach-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.approach-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: 0.7;
}

.approach-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--white);
}

.approach-card p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

.how-i-work .btn-primary {
  background-color: var(--gold);
  color: var(--white);
}


/* --- Services --- */
.services {
  background-color: var(--off-white);
}

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

.service-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 36px 32px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

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

.service-icon {
  margin-bottom: 16px;
}

.service-icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(14, 165, 233, 0.12);
  font-size: 1.2rem;
  color: var(--gold);
}

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

.service-tagline {
  font-size: 1rem;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 20px;
}

.service-details {
  margin-top: auto;
  display: grid;
  gap: 16px;
}

.service-details h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--silver);
  margin-bottom: 6px;
}

.service-details p {
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.6;
}

.service-outcome p {
  font-weight: 600;
  color: var(--charcoal);
}


/* --- Connect --- */
.connect {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  text-align: center;
}

.connect h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 16px;
}

.connect h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--gold);
  margin: 16px auto 0;
}

.connect p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.calendly-inline-widget {
  border-radius: 8px;
  overflow: hidden;
}


/* --- FAQ --- */
.faq {
  background-color: var(--white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  background-color: var(--off-white);
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  padding: 20px 52px 20px 24px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  position: relative;
  list-style: none;
  transition: color var(--transition), background-color var(--transition);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform var(--transition);
  font-family: var(--font-body);
}

.faq-item[open] summary::after {
  content: '\2212';
}

.faq-item summary:hover {
  color: var(--gold-dark);
  background-color: rgba(14, 165, 233, 0.04);
}

.faq-answer {
  padding: 0 24px 24px;
  color: var(--slate);
  line-height: 1.7;
  animation: faqOpen 0.3s ease;
}

@keyframes faqOpen {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-answer p {
  margin-bottom: 12px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ul {
  margin: 8px 0 16px;
  padding-left: 20px;
}

.faq-answer li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
  line-height: 1.6;
}

.faq-answer li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background-color: var(--gold);
  border-radius: 50%;
}


/* --- Footer --- */
.footer {
  background-color: var(--navy);
  padding: 32px 0;
  text-align: center;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--silver);
  color: var(--silver);
  font-size: 1rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.footer p {
  color: var(--silver);
  font-size: 0.85rem;
}


/* --- Landing Page --- */
.landing-navbar,
.landing-navbar.scrolled {
  background-color: transparent !important;
  box-shadow: none !important;
}

.landing-navbar .nav-container {
  justify-content: flex-end;
}

.landing-hero {
  min-height: calc(100vh - 64px);
  background-color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
}

.landing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
  z-index: 0;
}

.landing-hero > * {
  position: relative;
  z-index: 1;
}

.landing-content {
  max-width: 700px;
}

.landing-logo-img {
  height: 300px;
  width: auto;
  margin: 0 auto 32px;
}

.landing-title {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.landing-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--gold-light);
  font-weight: 400;
  margin-bottom: 48px;
  letter-spacing: 0.04em;
}

.landing-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.landing-nav .btn {
  min-width: 200px;
}


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

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

  .approach-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background-color: rgba(17, 24, 39, 0.98);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    min-height: auto;
    padding: 100px 20px 60px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .btn {
    padding: 12px 28px;
    font-size: 0.9rem;
  }

  .credentials {
    padding: 28px 24px;
  }

  .approach-card {
    padding: 28px 24px;
  }

  .service-card {
    padding: 28px 24px;
  }

  .faq-item summary {
    font-size: 0.95rem;
    padding: 18px 44px 18px 20px;
  }

  .faq-answer {
    padding: 0 20px 20px;
    font-size: 0.93rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.7rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }
}
