/* ================================== CSS VARIABLES & RESET ================================== */
:root {
  --primary-green: #004f55;
  --secondary-green: #003134;
  --tertiary-green: #004043;
  --accent-yellow: #fdd681;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-white: #ffffff;
  --font-main: "Lora", serif;
  --font-secondary: "Inter", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-white);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

main {
  flex: 1;
}

/* ================================== TYPOGRAPHY & COMPONENTS ================================== */
.btn-primary {
  background-color: var(--accent-yellow);
  color: var(--primary-green);
  border: none;
  padding: 12px 40px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease,
    padding 0.3s ease,
    font-size 0.3s ease;
}

.btn-primary:hover {
  background-color: #e2b95b;
  transform: translateY(-2px);
}

/* ================================== RESPONSIVE BUTTONS ================================== */

@media (max-width: 992px) {
  .btn-primary {
    padding: 12px 32px;
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .btn-primary {
    padding: 10px 28px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .btn-primary {
    padding: 10px 20px;
    font-size: 0.75rem;
  }
}

/* ================================== HEADER ================================== */
.site-header {
  background-color: var(--bg-white);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  max-height: 45px;
  width: auto;
  display: block;
  transition: max-height 0.3s ease;
}

/* ================================== FOOTER ================================== */
.site-footer {
  background-color: var(--secondary-green);
  color: var(--accent-yellow);
  text-align: center;
  padding: 45px 0;
  margin-top: auto;
}

.footer-title {
  font-family: var(--font-main);
  margin-bottom: 8px;
  font-weight: 400;
  line-height: 134%;
  font-size: 36px;
  letter-spacing: 0.5px;
  transition: font-size 0.3s ease;
}

.footer-subtext {
  font-family: var(--font-secondary);
  color: var(--text-light);
  font-size: 16px;
  font-weight: 400;
  line-height: 134%;
  letter-spacing: 0.5px;
}

/* ================================== RESPONSIVE MEDIA QUERIES ================================== */

@media (max-width: 992px) {
  .site-header {
    padding: 15px 0;
  }

  .logo img {
    max-height: 38px;
  }

  .footer-title {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 35px 0;
  }

  .footer-title {
    font-size: 26px;
  }

  .footer-subtext {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 12px 0;
  }

  .logo img {
    max-height: 32px;
  }

  .footer-title {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .footer-subtext {
    font-size: 13px;
  }
}

/* ================================== HERO BANNER SECTION ================================== */
.hero-section {
  background:
    linear-gradient(to right, var(--primary-green) 40%, transparent 100%),
    url("../assets/images/banner-bg.webp") no-repeat center right;
  background-size: cover;
  min-height: 90vh; /* Takes up most of the screen height */
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 50%;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Meta Information (Top Row) */
.hero-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.meta-item {
  font-family: var(--font-secondary);
  color: var(--text-light);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0%;
  display: flex;
  align-items: center;
  gap: 8px;
}

.meta-item svg {
  color: var(--accent-yellow);
}

/* Typography for Hero */
.hero-title {
  font-family: var(--font-main);
  color: var(--accent-yellow);
  font-size: 32px;
  line-height: 110%;
  letter-spacing: 0%;
  font-weight: 400;
  margin-bottom: 20px;
}

.hero-title em {
  font-style: italic;
  color: var(--text-light);
}

.hero-description {
  color: var(--text-light);
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0%;
  margin-bottom: 40px;
  max-width: 90%;
}

.hero-footer-text {
  font-family: var(--font-secondary);
  color: var(--text-light);
  font-size: 16px;
  line-height: 110%;
  letter-spacing: 0%;
  margin-top: 25px;
  opacity: 0.9;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 992px) {
  .hero-content {
    max-width: 70%;
  }
  .hero-section {
    background:
      linear-gradient(
        to right,
        var(--primary-green) 50%,
        rgba(11, 61, 59, 0.7) 100%
      ),
      url("../assets/images/banner-bg.jpg") no-repeat center right;
    background-size: cover;
  }
}

@media (max-width: 768px) {
  .hero-content {
    max-width: 100%;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-meta {
    flex-wrap: wrap;
    gap: 15px;
  }
}

/* ================================== STATS SECTION ================================== */
.stats-section {
  background-color: var(--accent-yellow);
  padding: 45px 0;
}

.stats-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat-item {
  text-align: center;
}

.stat-item h2 {
  color: var(--primary-green);
  font-family: var(--font-secondary);
  font-size: 48px;
  font-weight: 700;
  line-height: 110%;
  margin-bottom: 8px;
  letter-spacing: 0%;
}

.stat-item p {
  color: var(--primary-green);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: 0%;
}

/* Responsive adjustments for the stats bar */
@media (max-width: 768px) {
  .stats-container {
    flex-wrap: wrap;
    gap: 40px 0;
  }

  .stat-item {
    flex: 0 0 50%;
  }
}

/* ================================== "YOU ARE NOT ALONE" SECTION ================================== */
.not-alone-section {
  background-color: var(--primary-green);
  padding: 80px 0;
}

.not-alone-container {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

/* Image Column */
.not-alone-image-wrapper {
  flex: 0 0 45%;
}

.not-alone-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Content Column */
.not-alone-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section-subtitle {
  font-family: var(--font-secondary);
  color: var(--text-light);
  font-size: 16px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 20%;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-title {
  font-family: var(--font-main);
  color: var(--accent-yellow);
  font-size: 36px;
  line-height: 134%;
  letter-spacing: 0%;
  font-weight: 600;
  margin-bottom: 30px;
}

.section-title em {
  font-style: italic;
  color: var(--text-light);
}

.section-paragraphs {
  margin-bottom: 40px;
}

.section-paragraphs p {
  font-family: var(--font-secondary);
  color: var(--text-light);
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0%;
  font-weight: 300;
  margin-bottom: 16px;
  opacity: 0.9;
}

.section-paragraphs p:last-child {
  margin-bottom: 0;
}

/* Questions List */
.question-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.question-item {
  border-left: 2px solid var(--accent-yellow);
  padding-left: 16px;
}

.question-item h4 {
  font-family: var(--font-main);
  color: var(--accent-yellow);
  font-size: 20px;
  font-weight: 400;
  line-height: 134%;
  letter-spacing: 0%;
  margin-bottom: 6px;
}

.question-item p {
  font-family: var(--font-secondary);
  color: var(--text-light);
  font-size: 14px;
  line-height: 148%;
  letter-spacing: 0%;
  font-weight: 300;
  opacity: 0.9;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .not-alone-container {
    flex-direction: column;
    gap: 40px;
  }

  .not-alone-image-wrapper {
    flex: 0 0 100%;
    width: 100%;
  }

  .section-title {
    font-size: 30px;
  }
}

/* ================================== WHO IS THIS FOR SECTION ================================== */
.who-is-for-section {
  background-color: var(--secondary-green);
  padding: 80px 0;
}

.who-is-for-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.who-is-for-card {
  background-color: var(--tertiary-green);
  padding: 40px 56px;
  border-radius: 0;
}

.who-is-for-card h3 {
  font-family: var(--font-main);
  color: var(--accent-yellow);
  font-size: 24px;
  font-weight: 400;
  line-height: 134%;
  letter-spacing: 0%;
  margin-bottom: 20px;
}

.who-is-for-card p {
  font-family: var(--font-secondary);
  color: var(--text-light);
  font-size: 14px;
  line-height: 148%;
  letter-spacing: 0%;
  font-weight: 300;
  opacity: 0.9;
}

/* Responsive adjustments for tablets and mobile screens */
@media (max-width: 992px) {
  .who-is-for-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .who-is-for-grid {
    grid-template-columns: 1fr;
  }
  .who-is-for-section {
    padding: 60px 0;
  }
}

/* ================================== BIO SECTION ================================== */
.bio-section {
  background-color: var(--accent-yellow);
  padding: 80px 0;
  color: var(--secondary-green);
}

.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* --- Left Column: Image --- */
.bio-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
}

.bio-image {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* The teal name tag overlapping the image */
.bio-name-tag {
  position: absolute;
  bottom: 36px;
  left: 0;
  background-color: #008285;
  color: var(--text-light);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 0 20px 20px 0;
  line-height: 100%;
  letter-spacing: 0.5px;
}

/* --- Left Column: Credentials --- */
.bio-credentials {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.cred-item {
  flex: 1;
  border-left: 2px solid rgba(0, 49, 52, 0.15);
  padding-left: 15px;
}

.cred-item:last-child {
  border-right: 2px solid rgba(0, 49, 52, 0.15);
}

.cred-item h4 {
  font-family: var(--font-main);
  color: var(--secondary-green);
  font-size: 16px;
  font-weight: 400;
  line-height: 134%;
  letter-spacing: 0%;
  margin-bottom: 8px;
}

.cred-item p {
  font-family: var(--font-secondary);
  color: var(--secondary-green);
  font-size: 12px;
  line-height: 148%;
  font-weight: 300;
  opacity: 0.9;
}

/* --- Right Column: Bio Content --- */
.bio-subtitle {
  display: block;
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 20%;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.bio-title {
  font-family: var(--font-secondary);
  font-size: 36px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 20%;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: var(--secondary-green);
}

.bio-tagline {
  font-family: var(--font-main);
  font-size: 36px;
  font-weight: 400;
  line-height: 134%;
  letter-spacing: 0%;
  margin-bottom: 30px;
}

.bio-tagline em {
  color: #9a6a00;
  font-style: italic;
}

.bio-content p {
  width: 90%;
  font-family: var(--font-secondary);
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0%;
  margin-bottom: 20px;
  font-weight: 300;
  color: var(--secondary-green);
  opacity: 0.9;
}

.bio-content p:last-child {
  margin-bottom: 0;
}

/* --- Bottom Mission Box --- */
.mission-box {
  background-color: var(--secondary-green);
  padding: 40px;
  border-radius: 8px;
  margin-top: 60px;
  text-align: center;
}

.mission-box h4 {
  font-family: var(--font-secondary);
  color: var(--accent-yellow);
  font-size: 20px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 15px;
}

.mission-box p {
  font-family: var(--font-main);
  color: var(--accent-yellow);
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  line-height: 134%;
  letter-spacing: 0%;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
  .bio-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bio-title {
    font-size: 28px;
  }

  .mission-box p {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .bio-credentials {
    flex-wrap: wrap;
    gap: 20px 0;
  }

  .cred-item {
    flex: 0 0 100%; /* Stack credentials on mobile */
    border-right: none;
    border-left: none;
    border-bottom: 1px solid rgba(0, 49, 52, 0.15);
    padding-bottom: 15px;
  }

  .cred-item:last-child {
    border-right: none;
  }
}

/* ================================== JOIN MASTERCLASS SECTION ================================== */
.masterclass-section {
  background-color: var(--primary-green);
  padding: 80px 0;
}

.text-center {
  justify-content: center;
  text-align: center;
}

.text-white {
  color: var(--text-light) !important;
}

/* Base styling for the dark boxes */
.mc-card {
  padding: 50px 60px;
  margin-bottom: 40px;
}

.dark-card {
  background-color: var(--tertiary-green);
}

/* Top Box Typography */
.mc-title {
  font-family: var(--font-main);
  color: var(--accent-yellow);
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 110%;
  letter-spacing: 0%;
}

.mc-subtitle {
  font-family: var(--font-secondary);
  color: var(--text-light);
  font-size: 20px;
  line-height: 148%;
  letter-spacing: 0%;
  font-weight: 300;
  opacity: 0.9;
}

/* 4-Column Details Grid */
.mc-details-grid {
  display: flex;
  margin-top: 40px;
  gap: 10px;
}

.detail-item {
  flex: 1;
  border: 2px solid rgba(253, 214, 129, 0.4);
  padding: 16px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.detail-label {
  font-family: var(--font-secondary);
  color: var(--text-light);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.detail-value {
  font-family: var(--font-secondary);
  color: var(--accent-yellow);
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 110%;
  letter-spacing: 0%;
}

/* Middle Text Area */
.mc-middle-content {
  margin-bottom: 40px;
}

.mc-heading {
  font-family: var(--font-main);
  color: var(--accent-yellow);
  font-size: 32px;
  font-weight: 600;
  line-height: 134%;
  letter-spacing: 0%;
  margin-bottom: 15px;
}

.mc-desc {
  font-family: var(--font-secondary);
  color: var(--text-light);
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  letter-spacing: 0%;
  opacity: 0.9;
}

/* Bonus List Area (Reusing styling logic from earlier) */
.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.bonus-item {
  border-left: 2px solid var(--accent-yellow);
  padding-left: 20px;
}

.bonus-item h4 {
  font-family: var(--font-main);
  color: var(--accent-yellow);
  font-size: 20px;
  font-weight: 400;
  line-height: 134%;
  letter-spacing: 0%;
  margin-bottom: 8px;
}

.bonus-item p {
  font-family: var(--font-secondary);
  color: var(--text-light);
  font-size: 14px;
  line-height: 148%;
  letter-spacing: 0%;
  font-weight: 300;
  opacity: 0.9;
}

/* Yellow CTA Box */
.mc-cta-box {
  background-color: var(--accent-yellow);
  padding: 50px 40px;
  color: var(--secondary-green);
}

.mc-cta-box h3 {
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 0%;
  line-height: 110%;
}

.mc-cta-box h3 s {
  opacity: 0.6;
  margin-right: 8px;
}

.cta-italic-text {
  font-family: var(--font-main);
  font-size: 20px;
  font-style: italic;
  margin-bottom: 30px;
}

/* Secondary Button (Dark Green) */
.btn-secondary {
  background-color: var(--secondary-green);
  color: var(--accent-yellow);
  border: none;
  padding: 14px 40px;
  border-radius: 50px;
  font-family: var(--font-secondary);
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition:
    transform 0.2s ease,
    opacity 0.3s ease;
}

.btn-secondary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .mc-details-grid {
    flex-wrap: wrap;
  }
  .detail-item {
    flex: 0 0 50%;
  }
}

@media (max-width: 768px) {
  .mc-card {
    padding: 30px 20px;
  }
  .mc-title {
    font-size: 28px;
  }
  .detail-item {
    flex: 0 0 100%;
  }
  .mc-cta-box {
    padding: 40px 20px;
  }
}

/* ================================== WHAT YOU WILL DISCOVER SECTION ================================== */
.discover-section {
  background-color: var(--secondary-green);
  padding: 80px 0;
}

/* Inner Yellow Box */
.discover-box {
  background-color: var(--accent-yellow);
  border-radius: 12px;
  padding: 60px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.discover-subtitle {
  font-family: var(--font-secondary);
  color: var(--secondary-green);
  font-size: 16px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 20%;
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
}

.discover-title {
  font-family: var(--font-main);
  color: var(--secondary-green);
  font-size: 36px;
  font-weight: 400;
  line-height: 134%;
  letter-spacing: 0%;
  margin-bottom: 20px;
}

.discover-title em {
  font-style: italic;
  color: #a87b2d;
}

.discover-desc {
  font-family: var(--font-secondary);
  color: var(--secondary-green);
  font-size: 20px;
  line-height: 148%;
  font-weight: 300;
  margin-bottom: 50px;
  opacity: 0.9;
}

/* Cards Layout Container */
.discover-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Individual Cards */
.discover-card {
  background-color: var(--secondary-green);
  border-radius: 8px;
  padding: 35px 30px;
  text-align: left;
  flex: 0 0 calc(33.333% - 14px);
  display: flex;
  flex-direction: column;
}

.card-number {
  font-family: var(--font-secondary);
  color: var(--accent-yellow);
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 110%;
  letter-spacing: 0%;
}

.card-title {
  font-family: var(--font-main);
  color: var(--accent-yellow);
  font-size: 22px;
  font-weight: 400;
  line-height: 134%;
  letter-spacing: 0%;
  margin-bottom: 15px;
}

.card-desc {
  font-family: var(--font-secondary);
  color: var(--text-light);
  font-size: 14px;
  line-height: 148%;
  font-weight: 300;
  opacity: 0.9;
  margin-bottom: 30px;
  flex-grow: 1;
}

.card-tags {
  font-family: var(--font-secondary);
  color: #008285;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: auto;
}

/* Key Outcomes Area */
.outcomes-area {
  margin-top: 80px;
}

.outcomes-title {
  font-family: var(--font-main);
  color: var(--accent-yellow);
  font-size: 32px;
  font-weight: 600;
  line-height: 134%;
  letter-spacing: 0%;
  margin-bottom: 40px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.outcome-card {
  background-color: var(--tertiary-green);
  padding: 24px 40px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.outcome-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.outcome-card p {
  font-family: var(--font-secondary);
  color: var(--text-light);
  font-size: 14px;
  line-height: 148%;
  font-weight: 300;
  opacity: 0.9;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .discover-card {
    flex: 0 0 calc(50% - 10px);
  }
  .outcomes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .discover-box {
    padding: 40px 20px;
  }
  .discover-title {
    font-size: 28px;
  }
  .discover-card {
    flex: 0 0 100%;
  }
  .outcomes-grid {
    grid-template-columns: 1fr;
  }
  .outcomes-title {
    font-size: 26px;
  }
}

/* ================================== FAQ SECTION ================================== */
.faq-section {
  background-color: var(--primary-green);
  padding: 80px 0;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-title {
  font-family: var(--font-main);
  color: var(--accent-yellow);
  font-size: 32px;
  font-weight: 600;
  line-height: 134%;
  margin-bottom: 40px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--tertiary-green);
  border-radius: 6px;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 30px;
  background: none;
  border: none;
  color: var(--text-light);
  font-family: var(--font-main);
  font-size: 20px;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--accent-yellow);
  background-color: rgba(253, 214, 129, 0.15);
  color: var(--accent-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 20px;
  transition:
    transform 0.4s ease,
    background-color 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-content {
  padding: 0 30px 30px 30px;
  padding-right: 80px;
}

.faq-answer-content p {
  font-family: var(--font-secondary);
  color: var(--text-light);
  font-size: 14px;
  line-height: 148%;
  font-weight: 300;
  opacity: 0.9;
}

/* --- ACTIVE STATE --- */
.faq-item.active .faq-question {
  color: var(--accent-yellow);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .faq-question {
    font-size: 16px;
    padding: 20px;
  }
  .faq-answer-content {
    padding: 0 20px 20px 20px;
  }
}

/* ================= TRANSFORMATION CTA SECTION ================= */
.transformation-section {
  background-color: var(--accent-yellow);
  padding: 80px 0;
  color: var(--secondary-green);
}

.transformation-subtitle {
  color: var(--secondary-green);
}

.transformation-title {
  font-family: var(--font-main);
  font-size: 38px;
  font-weight: 400;
  margin-bottom: 16px;
}

.transformation-title em {
  font-style: italic;
}

.transformation-desc {
  font-family: var(--font-secondary);
  font-size: 20px;
  line-height: 148%;
  font-weight: 300;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* Inner CTA Card */
.cta-final-card {
  background-color: var(--secondary-green);
  border-radius: 8px;
  padding: 60px 20px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-final-title {
  font-family: var(--font-main);
  color: var(--text-light);
  font-size: 40px;
  font-weight: 400;
  line-height: 148%;
  margin-bottom: 12px;
}

/* Slightly larger button for the final CTA */
.cta-final-btn {
  font-size: 32px;
  padding: 8px 36px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--secondary-green);
}

.cta-final-date {
  font-family: var(--font-secondary);
  color: var(--text-light);
  font-size: 16px;
  font-weight: 400;
  line-height: 134%;
  margin-bottom: 8px;
  opacity: 0.9;
}

.cta-final-spam {
  font-family: var(--font-secondary);
  color: #18696e;
  font-size: 12px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .transformation-title {
    font-size: 30px;
  }
  .cta-final-card {
    padding: 40px 20px;
  }
  .cta-final-title {
    font-size: 26px;
  }
  .cta-final-btn {
    font-size: 16px;
    padding: 14px 30px;
  }
}

/* ================================== THANK YOU PAGE ================================== */
.thank-you-body {
  background-color: var(--secondary-green);
  display: flex;
  min-height: 100vh;
}

.thank-you-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.ty-logo-link {
  display: inline-block;
  margin-bottom: 40px;
}

.ty-logo {
  max-height: 60px;
  width: auto;
}

.ty-subtitle {
  font-family: var(--font-secondary);
  color: var(--accent-yellow);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
}

.ty-title {
  font-family: var(--font-main);
  color: var(--text-light);
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 20px;
}

.ty-intro {
  font-family: var(--font-secondary);
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 40px;
}

/* Info Card containing the bullet points */
.ty-info-card {
  background-color: var(--primary-green);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 35px 40px;
  max-width: 650px;
  margin: 0 auto 30px auto;
}

.ty-info-card p {
  font-family: var(--font-secondary);
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ty-info-card p:last-child {
  margin-bottom: 0;
}

.ty-info-card p span {
  font-size: 20px;
  line-height: 1.3;
}

.ty-footer-text {
  font-family: var(--font-main);
  color: var(--accent-yellow);
  font-size: 20px;
  font-style: italic;
  margin-bottom: 40px;
}

/* Action Buttons */
.ty-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-outline {
  display: inline-block;
  background-color: transparent;
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px 30px;
  border-radius: 50px;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: var(--text-light);
  background-color: rgba(255, 255, 255, 0.05);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #25d366;
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition:
    transform 0.2s ease,
    box-shadow 0.3s ease;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Responsive adjustments for Thank You Page */
@media (max-width: 768px) {
  .ty-title {
    font-size: 32px;
  }
  .ty-info-card {
    padding: 25px 20px;
  }
  .ty-info-card p {
    font-size: 14px;
  }
  .ty-actions {
    flex-direction: column;
    gap: 15px;
  }
  .btn-outline,
  .btn-whatsapp {
    width: 100%;
    justify-content: center;
    max-width: 300px;
  }
}

/* ================================== EXIT INTENT POPUP ================================== */
.exit-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 49, 52, 0.85); /* Dark green blur overlay */
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

.exit-popup-overlay.show-popup {
  opacity: 1;
  visibility: visible;
}

.exit-popup-container {
  background-color: #faf8f5; /* Very soft off-white */
  border-radius: 20px;
  width: 90%;
  max-width: 850px;
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.exit-popup-overlay.show-popup .exit-popup-container {
  transform: translateY(0) scale(1);
}

.close-popup-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: white;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--secondary-green);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
  transition:
    background-color 0.2s,
    transform 0.2s;
}

.close-popup-btn:hover {
  background-color: #f0f0f0;
  transform: scale(1.05);
}

.popup-grid {
  display: flex;
}

/* Left Image */
.popup-image-wrapper {
  flex: 0 0 45%;
  padding: 40px 0 40px 40px;
  background-image: radial-gradient(
    circle at bottom left,
    rgba(253, 214, 129, 0.2) 0%,
    transparent 50%
  );
}

.popup-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 150px 150px 20px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Right Content */
.popup-content {
  flex: 1;
  padding: 50px 40px;
  color: var(--secondary-green);
}

.popup-header-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.warning-icon {
  width: 40px;
  height: 40px;
  color: #db5a5a;
}

.popup-title {
  font-family: var(--font-main);
  font-size: 36px;
  line-height: 1.1;
  font-weight: 500;
}

.popup-subtitle {
  font-family: var(--font-secondary);
  font-size: 15px;
  margin-bottom: 30px;
  color: #555;
}

.popup-subtitle strong {
  color: var(--secondary-green);
}

.gold-heart {
  color: var(--accent-yellow);
}

/* Bullet Points */
.popup-benefits {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dashed rgba(0, 49, 52, 0.1);
}

.benefit-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(253, 214, 129, 0.3);
  color: var(--secondary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-text h4 {
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}

.benefit-text p {
  font-family: var(--font-secondary);
  font-size: 12px;
  color: #666;
}

/* Button */
.popup-cta-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  padding: 15px 0;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .popup-image-wrapper {
    display: none;
  }
  .popup-content {
    padding: 40px 30px;
  }
  .popup-title {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .popup-content {
    padding: 30px 20px;
  }
  .popup-title {
    font-size: 26px;
  }
}
