/* =====================================================
   CONSULTING PAGE - COMPLETE CSS
   ===================================================== */

/* Root Variables (ensure these exist in shared.css) */
:root {
  --color-primary: #4a5d45;
  --color-secondary: #5dbd9a;
  --color-accent: #c8b68e;
  --color-bg: #f5f4ed;
  --color-surface: #ffffff;
  --color-surface-alt: #f0eee2;
  --color-text-light: #faf9f2;
  --font-heading: 'Rubik', sans-serif;
  --font-accent: 'Readex Pro', sans-serif;
  --transition-base: 0.3s ease;
  --radius-md: 12px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #1f2018;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
}

section {
  width: 100%;
}

.section {
  width: 100%;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

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

.consulting-hero {
  position: relative;
  min-height: 90vh;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 8vw, 6rem) 0;
  width: 100%;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 6rem);
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: var(--color-primary);
}

.hero-text h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  color: var(--color-primary);
}

.hero-text h1 .highlight-box {
  display: inline-block;
  background: #9b0000;
  color: #e3e5d1;
  padding: 0.2em 0.5em;
  border-radius: 8px;
  font-weight: 700;
}

.hero-subdescription {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(74, 93, 69, 0.85);
  margin: 0;
  max-width: 550px;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-feature svg {
  color: var(--color-accent);
  min-width: 20px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-cta .btn {
  padding: 1rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #3d4f39;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--color-primary);
  color: #ffffff;
}

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}

/* =====================================================
   HEALING SECTION
   ===================================================== */

.healing-section {
  background: var(--color-primary);
  color: var(--color-text-light);
  padding: clamp(4rem, 10vw, 7rem) 0;
  text-align: center;
  width: 100%;
}

.healing-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.healing-icon svg {
  color: var(--color-accent);
  width: 60px;
  height: 60px;
}

.healing-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  margin: 0 0 3rem;
  color: var(--color-text-light);
}

.healing-title em {
  font-style: italic;
  color: var(--color-accent);
  font-weight: 300;
}

.healing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(2rem, 5vw, 3rem);
  max-width: 1000px;
  margin: 0 auto;
}

.healing-pillar {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0 1rem;
}

.healing-pillar h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
  color: var(--color-accent);
}

.healing-pillar p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(250, 249, 242, 0.9);
  margin: 0;
}

/* =====================================================
   OFFER SECTION
   ===================================================== */

.offer-section {
  background: linear-gradient(135deg, #f8f7f1 0%, #f0eee2 100%);
  padding: clamp(4rem, 10vw, 7rem) 0;
  width: 100%;
}

.offer-section .container {
  text-align: center;
}

.offer-title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 700;
  color: var(--color-text-light);
  background: linear-gradient(135deg, #323f2f 0%, #2c614c 100%);
  padding: 1rem 2rem;
  border-radius: 50px;
  margin: 0 auto 3rem;
  display: inline-block;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 20px rgba(93, 189, 154, 0.3);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.offer-card {
  background: var(--color-surface);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(33, 36, 26, 0.12);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(93, 189, 154, 0.2);
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(33, 36, 26, 0.18);
  border-color: rgba(93, 189, 154, 0.4);
}

.offer-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--color-surface-alt);
}

.offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.offer-card:hover .offer-image img {
  transform: scale(1.08);
}

.offer-label {
  background: linear-gradient(135deg, #323f2f 0%, #2c614c 100%);
  color: var(--color-text-light);
  padding: 2rem 1.5rem;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}

.offer-label p {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
  text-align: center;
  letter-spacing: 0.01em;
}

/* =====================================================
   PROGRAM SECTION
   ===================================================== */

.program-section {
  background: var(--color-bg);
  padding: clamp(4rem, 10vw, 7rem) 0;
  width: 100%;
}

.program-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

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

.text-center.stack-lg {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.section-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin: 0;
  color: var(--color-primary);
  line-height: 1.2;
}

.section-intro {
  font-size: 1.05rem;
  color: rgba(31, 32, 24, 0.8);
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.program-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 20px rgba(33, 36, 26, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  transition: all var(--transition-base);
  border: 1px solid rgba(93, 189, 154, 0.1);
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(33, 36, 26, 0.15);
}

.program-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(200, 182, 142, 0.12);
  line-height: 1;
}

.program-icon {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: rgba(200, 182, 142, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.program-icon svg {
  width: 32px;
  height: 32px;
}

.program-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
  line-height: 1.3;
}

.program-card p {
  color: rgba(31, 32, 24, 0.75);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

.program-cta-card {
  background: linear-gradient(135deg, #4a5d45 0%, #3d4f39 100%);
  color: var(--color-text-light);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 30px rgba(74, 93, 69, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  transition: all var(--transition-base);
  border: none;
  grid-column: 3;
  grid-row: 2;
  max-width: 100%;
}

.program-cta-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(74, 93, 69, 0.35);
}

.program-cta-card h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-text-light);
  margin: 0;
}

.program-cta-card p {
  font-size: 0.95rem;
  color: rgba(250, 249, 242, 0.9);
  margin: 0;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--color-text-light);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  transition: all var(--transition-base);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
}

.cta-link:hover {
  background: rgba(250, 249, 242, 0.95);
  transform: translateX(4px);
}

/* =====================================================
   QUOTE SECTION
   ===================================================== */

.quote-section {
  background: var(--color-surface-alt);
  padding: clamp(4rem, 10vw, 7rem) 0;
  width: 100%;
}

.quote-section .container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
  max-width: 1100px;
}

.quote-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(33, 36, 26, 0.2);
}

.quote-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.quote-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.quote-text {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-primary);
  margin: 0;
}

.quote-text em {
  font-style: italic;
  color: var(--color-secondary);
  font-weight: 600;
}

.quote-description {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(31, 32, 24, 0.8);
  margin: 0;
}

/* =====================================================
   CTA SECTION
   ===================================================== */

.cta-section {
  background: url('../assets/cnslt-img/contact-bcg.png') center/cover no-repeat;
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 29, 20, 0.7);
  z-index: 0;
}

.cta-section .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-box {
  max-width: 700px;
  margin: 0 auto;
}

.cta-box h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--color-text-light);
}

.cta-box p {
  font-size: 1.1rem;
  color: rgba(250, 249, 242, 0.85);
  margin: 0 0 2rem;
}

.btn-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: var(--color-text-light);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: all var(--transition-base);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
}

.btn-light:hover {
  background: rgba(250, 249, 242, 0.95);
  transform: translateY(-2px);
}

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

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.5rem;
  }

  .hero-text {
    text-align: center;
    align-items: center;
    order: 2;
  }

  .hero-image {
    order: 1;
  }

  .hero-text h1 {
    text-align: center;
  }

  .hero-subdescription {
    max-width: 100%;
    text-align: center;
  }

  .hero-features {
    align-items: center;
  }

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

  .quote-section .container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .quote-image {
    max-width: 250px;
    margin: 0 auto;
  }
}

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

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

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

  .program-cta-card {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .consulting-hero {
    padding: 2rem 0;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .hero-text h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

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

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

  .program-card {
    padding: 2rem 1.5rem;
  }

  .cta-box h2 {
    font-size: 1.5rem;
  }
}
