/* ==========================================
   mindlab - Modern CSS Styles
   ========================================== */

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --calm-teal: #5c6ac4;
  --soft-cream: #faf9f5;
  --deep-forest: #2d2a6a;
  --warm-sand: #e5e7eb;
  --golden-accent: #5c6ac4;
  --text-primary: #2d2a6a;
  --text-secondary: #5c6ac4;
  --white: #ffffff;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text-primary);
  background-color: var(--soft-cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--deep-forest);
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 1.75rem;
}
h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--calm-teal);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--deep-forest);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.wrapper-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header & Navigation */
.site-header {
  background: linear-gradient(
    135deg,
    var(--calm-teal) 0%,
    var(--deep-forest) 100%
  );
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo:hover {
  color: var(--golden-accent);
}

.logo-icon {
  width: 40px;
  height: 40px;
}

.logo-text {
  color: var(--white);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  width: 25px;
  height: 2px;
  background-color: var(--soft-cream);
  margin: 3px 0;
  transition: var(--transition);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1rem;
  align-items: center;
}
.nav-links.active {
  display: block;
  position: absolute;
  top: 70px;
  right: 20px;
  background-color: var(--deep-forest);
  padding: 1rem 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.nav-links a {
  color: var(--soft-cream);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  text-transform: uppercase;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active-link {
  background-color: var(--golden-accent);
  color: var(--deep-forest);
}

/* Hero Section */
.hero-banner {
  color: var(--white);
  padding: 6rem 0 6rem;
  text-align: center;
}

.hero-content-area {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out;
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background-color: var(--golden-accent);
  color: var(--deep-forest);
}

.btn-primary:hover {
  background-color: var(--warm-sand);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(92, 106, 196, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--deep-forest);
  transform: translateY(-2px);
}

/* Page Hero */
.page-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(../images/mind.jpeg) no-repeat center center/cover;
  color: var(--white);
  padding: 5rem 0 3rem;
  text-align: center;
}

.hero-content-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  text-align: left;
}

.hero-text-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Sections */
section {
  padding: 5rem 0;
}

.section-heading {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-subheading {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

/* Intro Section */
.intro-section {
  background-color: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-text h2 {
  margin-bottom: 1.5rem;
}

.intro-text p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* Programs Preview */
.programs-preview {
  background-color: var(--soft-cream);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.program-card {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  text-align: center;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
}

.card-icon img {
  width: 100%;
  height: 100%;
}

.program-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.program-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.card-link {
  color: var(--calm-teal);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.card-link:hover {
  gap: 0.8rem;
}

/* Testimonials */
.testimonials-section {
  background-color: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background-color: var(--soft-cream);
  padding: 2rem;
  border-radius: 16px;
  border-left: 4px solid var(--calm-teal);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.avatar-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--calm-teal), var(--deep-forest));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  overflow: hidden;
  flex-shrink: 0;
}

.avatar-circle .avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.author-info h4 {
  margin-bottom: 0.2rem;
  font-size: 1rem;
}

.author-info p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin: 0;
}

.testimonial-text {
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.7;
}

/* Registration Section */
.registration-section {
}

.registration-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  background-color: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
}

.form-description h2 {
  margin-bottom: 1rem;
}

.form-description p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.benefits-list {
  list-style: none;
}

.benefits-list li {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  padding-left: 0.5rem;
}

/* Forms */
.registration-form,
.contact-form,
.download-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--deep-forest);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 2px solid var(--warm-sand);
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  transition: var(--transition);
  background-color: var(--soft-cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--calm-teal);
  background-color: var(--white);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--text-secondary);
}

.error-message {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: none;
}

.form-group input.error ~ .error-message,
.form-group select.error ~ .error-message,
.form-group textarea.error ~ .error-message {
  display: block;
}

/* Courses Section */
.courses-section {
  background-color: var(--white);
}

.course-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
  align-items: center;
}

.course-item.reverse {
  direction: rtl;
}

.course-item.reverse > * {
  direction: ltr;
}

.course-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--calm-teal);
  color: var(--white);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.course-duration {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.course-features {
  list-style: none;
  margin: 1.5rem 0;
}

.course-features li {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
  position: relative;
}

.course-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--calm-teal);
  font-weight: 700;
}

/* Programs Detail */
.programs-detail-section {
  background-color: var(--white);
}

.program-detail {
  margin-bottom: 4rem;
  padding: 3rem;
  background-color: var(--soft-cream);
  border-radius: 20px;
}

.program-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.program-icon {
  font-size: 3rem;
}

.program-intro {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.benefit-list {
  list-style: none;
  margin: 1.5rem 0;
}

.benefit-list li {
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
  position: relative;
}

.benefit-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--calm-teal);
  font-weight: 700;
}

/* Comparison Table */
.compare-section {
  background-color: var(--soft-cream);
}

.comparison-table-wrapper {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table thead {
  background-color: var(--deep-forest);
  color: var(--white);
}

.comparison-table th,
.comparison-table td {
  padding: 1.25rem;
  text-align: left;
}

.comparison-table tbody tr:nth-child(even) {
  background-color: var(--soft-cream);
}

.comparison-table tbody tr:hover {
  background-color: var(--warm-sand);
}

/* Materials Section */
.materials-section {
  background-color: var(--white);
}

.materials-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--text-secondary);
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.material-card {
  background-color: var(--soft-cream);
  padding: 2rem;
  border-radius: 16px;
  transition: var(--transition);
}

.material-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.material-type {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  background-color: var(--golden-accent);
  color: var(--deep-forest);
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.material-card h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.material-card p {
  color: var(--text-secondary);
}

.read-time {
  font-size: 0.875rem;
  color: var(--calm-teal);
  font-weight: 600;
}

/* Download Section */
.download-section {
  background: linear-gradient(135deg, var(--calm-teal), var(--deep-forest));
  color: var(--white);
}

.download-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.download-box h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.download-box p {
  margin-bottom: 2rem;
  opacity: 0.95;
}

.form-row {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.form-row input {
  flex: 1;
  padding: 1rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
}

.form-row button {
  white-space: nowrap;
}

/* About Section */
.about-story {
  background-color: var(--white);
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
}

.story-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.values-section {
  background-color: var(--soft-cream);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
}

.value-card h3 {
  color: var(--calm-teal);
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--text-secondary);
}

/* Team Section */
.team-section {
  background-color: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.team-member {
  text-align: center;
}

.member-photo {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.team-member h3 {
  margin-bottom: 0.5rem;
}

.member-role {
  color: var(--calm-teal);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-member p {
  color: var(--text-secondary);
}

/* Approach Section */
.approach-section {
  background-color: var(--soft-cream);
}

.approach-content {
  max-width: 800px;
  margin: 0 auto;
}

.approach-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

/* Contact Section */
.contact-section {
  background-color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item h3 {
  color: var(--calm-teal);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-item p {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.contact-note {
  font-size: 0.875rem;
  font-style: italic;
}

.contact-form-wrapper {
  background-color: var(--soft-cream);
  padding: 2.5rem;
  border-radius: 16px;
}

/* Map Section */
.map-section {
  padding: 3rem 0;
  background-color: var(--soft-cream);
}

.map-container {
  margin-top: 2rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* CTA Section */

.cta-box {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem;
  background-color: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.cta-box h2 {
  margin-bottom: 1rem;
}

.cta-box p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* Legal Content */
.legal-content {
  background-color: var(--white);
}

.legal-text {
  max-width: 900px;
  margin: 0 auto;
}

.legal-text h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.legal-text h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.legal-text p,
.legal-text li {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.legal-text ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

/* Thank You Page */
.thank-you-section {
  background-color: var(--white);
  padding: 5rem 0;
}

.thank-you-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: var(--calm-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  animation: scaleIn 0.5s ease-out;
}

.success-icon img {
  width: 50px;
  height: 50px;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.thank-you-message {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.thank-you-submessage {
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.thank-you-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.next-steps h2 {
  margin-bottom: 2rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.step-item {
  text-align: center;
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--calm-teal), var(--deep-forest));
  color: var(--white);
  border-radius: 50%;
  line-height: 50px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.step-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.step-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.additional-resources {
  background-color: var(--soft-cream);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.resource-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 16px;
  transition: var(--transition);
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.resource-card h3 {
  margin-bottom: 1rem;
}

.resource-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* Footer */
.site-footer {
  background-color: var(--deep-forest);
  color: var(--soft-cream);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column h3,
.footer-column h4 {
  color: var(--golden-accent);
  margin-bottom: 1rem;
}

.footer-column p {
  color: var(--soft-cream);
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: var(--soft-cream);
  opacity: 0.9;
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--golden-accent);
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 249, 245, 0.2);
}

.footer-bottom p {
  color: var(--soft-cream);
  opacity: 0.8;
  margin: 0;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  left: auto;
  max-width: 400px;
  background-color: var(--white);
  color: var(--text-primary);
  padding: 1.5rem;
  border-radius: 16px;
  border: 2px solid var(--calm-teal);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(150%);
  transition: var(--transition);
  z-index: 2000;
}

.cookie-popup.show {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-content a {
  color: var(--calm-teal);
  text-decoration: underline;
  font-weight: 600;
}

.btn-accept-cookies {
  padding: 0.75rem 2rem;
  background-color: var(--golden-accent);
  color: var(--deep-forest);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}

.btn-accept-cookies:hover {
  background-color: var(--calm-teal);
  color: var(--white);
  transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 968px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }
  .page-hero h1 {
    font-size: 2.5rem;
  }

  .intro-grid,
  .registration-container,
  .contact-grid,
  .course-item {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .course-item.reverse {
    direction: ltr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
  }

  .form-row {
    flex-direction: column;
  }
}
@media (max-width: 953px) {
  .wrapper-content {
    padding: 0 1.5rem;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: none;
    gap: 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 1rem;
  }
}
@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }

  .hero-banner {
    padding: 5rem 0 3rem;
  }

  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }

  .hero-title {
    font-size: 2rem;
  }
  .page-hero h1 {
    font-size: 2rem;
  }

  .programs-grid,
  .testimonials-grid,
  .materials-grid,
  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .registration-container,
  .contact-form-wrapper {
    padding: 2rem;
  }

  .comparison-table {
    font-size: 0.875rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .wrapper-content {
    padding: 0 1rem;
  }

  .hero-buttons,
  .thank-you-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .cookie-popup {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: none;
  }
}

/* Hero with header combined background wrapper */
.header-hero-wrapper {
  background:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(../images/mindlab.jpg) no-repeat center center/cover;
}

.header-hero-wrapper .site-header {
  background: transparent;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: linear-gradient(
    135deg,
    var(--calm-teal) 0%,
    var(--deep-forest) 100%
  ) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Program icons styling */
.program-icon {
  width: 64px;
  height: 64px;
}

.program-icon img {
  width: 100%;
  height: 100%;
}

/* Intro section image */
.intro-image img {
  border-radius: 16px;
  width: 100%;
  height: auto;
}

/* Course visual image */
.course-visual img {
  border-radius: 12px;
  width: 100%;
  height: auto;
}

/* Team member photo */
.member-photo img {
  width: 200px;
  height: 200px;
}

/* Legal pages styling */
.legal-section {
  background-color: var(--white);
  margin-bottom: 2rem;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.legal-section h2 {
  color: var(--deep-forest);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--warm-sand);
}

.legal-section h3 {
  color: var(--calm-teal);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.legal-section ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-section li {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.legal-section p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.legal-intro {
  background-color: var(--soft-cream);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  border-left: 4px solid var(--calm-teal);
}

.legal-intro p {
  margin: 0;
  font-weight: 500;
  color: var(--deep-forest);
}

.contact-box {
  background-color: var(--soft-cream);
  padding: 1.5rem;
  border-radius: 12px;
  margin-top: 1.5rem;
}

.contact-box p {
  margin-bottom: 0.5rem;
}

.contact-box a {
  color: var(--calm-teal);
  font-weight: 600;
}

/* Thank you page enhanced styling */
.thank-you-section {
  background: linear-gradient(
    135deg,
    rgba(92, 106, 196, 0.05),
    rgba(45, 42, 106, 0.05)
  );
  padding: 5rem 0;
}

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
}

.success-icon img {
  width: 100%;
  height: 100%;
}

.thank-you-card {
  background-color: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.next-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.step-card {
  background-color: var(--soft-cream);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
}

.step-card .step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--calm-teal), var(--deep-forest));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.step-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.step-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 0;
}

/* ==========================================
   New Sections Styles - Index Page
   ========================================== */

/* Card Features List */
.card-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.card-features li {
  padding: 0.3rem 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding-left: 1.2rem;
  position: relative;
}

.card-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--calm-teal);
  font-weight: bold;
}

/* Statistics Section */
.stats-section {
  background: linear-gradient(
    135deg,
    var(--deep-forest) 0%,
    var(--calm-teal) 100%
  );
  padding: 5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.stat-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.stat-icon img {
  width: 48px;
  height: 48px;
}

.stat-number {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--soft-cream);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--soft-cream);
  font-size: 0.95rem;
  opacity: 0.9;
}

/* How It Works Section */
.how-it-works-section {
  padding: 6rem 0;
  background-color: var(--soft-cream);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.step-item {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.step-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--golden-accent);
  color: var(--deep-forest);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.step-icon {
  margin-bottom: 1.5rem;
}

.step-icon img {
  width: 64px;
  height: 64px;
}

.step-item h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--deep-forest);
}

.step-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
  padding: 6rem 0;
  background-color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 250px);
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(45, 42, 106, 0.9));
  color: var(--soft-cream);
  transform: translateY(100%);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h4 {
  color: var(--soft-cream);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.gallery-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}

/* Quotes Carousel Section */
.quotes-carousel-section {
  padding: 6rem 0;
}

.carousel-container {
  max-width: 800px;
  margin: 3rem auto 0;
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  padding: 0 1rem;
}

.quote-card {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.quote-icon {
  margin-bottom: 1.5rem;
}

.quote-icon img {
  width: 48px;
  height: 48px;
}

.quote-card blockquote {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--deep-forest);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.quote-card cite {
  color: var(--calm-teal);
  font-style: normal;
  font-weight: 500;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.carousel-btn {
  background: var(--deep-forest);
  color: var(--soft-cream);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.carousel-btn img {
  width: 32px;
  height: 32px;
}

.carousel-btn:hover {
  background: var(--calm-teal);
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--warm-sand);
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active {
  background: var(--calm-teal);
  width: 30px;
  border-radius: 5px;
}

/* Benefits Section */
.benefits-section {
  padding: 6rem 0;
  background-color: var(--soft-cream);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-box {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  border: 2px solid transparent;
}

.benefit-box:hover {
  border-color: var(--calm-teal);
  transform: translateY(-5px);
}

.benefit-icon {
  margin-bottom: 1.5rem;
}

.benefit-icon img {
  width: 56px;
  height: 56px;
}

.benefit-box h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--deep-forest);
}

.benefit-box p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Testimonial Enhancements */
.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star-icon {
  width: 20px;
  height: 20px;
}

.testimonial-card.featured {
  background: linear-gradient(135deg, var(--deep-forest), var(--calm-teal));
  color: var(--soft-cream);
}

.testimonial-card.featured .testimonial-text {
  color: var(--soft-cream);
}

.testimonial-card.featured .author-info h4,
.testimonial-card.featured .author-info p {
  color: var(--soft-cream);
}

.testimonial-card.featured .avatar-circle {
  background: var(--golden-accent);
  color: var(--deep-forest);
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.testimonial-card.featured .testimonial-footer {
  border-top-color: rgba(255, 255, 255, 0.2);
}

/* FAQ Section */
.faq-section {
  padding: 6rem 0;
  background-color: var(--white);
}

.faq-accordion {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  background: var(--soft-cream);
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
  font-family: inherit;
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(92, 106, 196, 0.05);
}

.faq-question span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--deep-forest);
  flex: 1;
  text-align: right;
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--calm-teal);
  transition: transform 0.3s ease;
  font-weight: 300;
}

.faq-item.active .faq-toggle {
  /* transform: rotate(45deg); */
}

.faq-icon {
  flex-shrink: 0;
}

.faq-icon img {
  width: 48px;
  height: 48px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
  padding: 0 2rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 2rem 1.5rem;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
  padding-left: calc(48px + 1.5rem);
}

/* CTA Banner Section */
.cta-banner-section {
  padding: 4rem 0;
  background-color: var(--soft-cream);
}

.cta-banner {
  background: linear-gradient(
    135deg,
    var(--calm-teal) 0%,
    var(--deep-forest) 100%
  );
  border-radius: 24px;
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: var(--golden-accent);
  opacity: 0.1;
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.cta-icon img {
  width: 64px;
  height: 64px;
}

.cta-banner h2 {
  color: var(--soft-cream);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: var(--soft-cream);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline {
  display: inline-block;
  padding: 1rem 2rem;
  border: 2px solid var(--soft-cream);
  color: var(--soft-cream);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--soft-cream);
  color: var(--deep-forest);
}

/* Form Enhancements */
.benefit-icon-small {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.form-trust-badges {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.trust-badge img {
  width: 32px;
  height: 32px;
}

/* Responsive Updates */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .stat-item {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.large,
  .gallery-item.wide {
    grid-column: span 1;
  }

  .gallery-grid .gallery-item {
    height: 250px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .faq-accordion {
    margin-top: 2rem;
  }

  .faq-question {
    padding: 1rem 1.5rem;
    gap: 1rem;
  }

  .faq-question span {
    font-size: 1rem;
  }

  .faq-icon img {
    width: 36px;
    height: 36px;
  }

  .faq-answer {
    padding: 0 1.5rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1rem;
  }

  .faq-answer p {
    padding-left: calc(36px + 1rem);
  }

  .cta-banner {
    padding: 2.5rem 1.5rem;
  }

  .cta-banner h2 {
    font-size: 1.8rem;
  }

  .quote-card blockquote {
    font-size: 1.2rem;
  }

  .form-trust-badges {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ==========================================
   Courses Page Styles
   ========================================== */

/* Courses Hero Enhanced */
.courses-hero {
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.courses-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: var(--golden-accent);
  opacity: 0.1;
  border-radius: 50%;
}

.courses-hero .hero-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.courses-hero .hero-icon img {
  width: 100%;
  height: 100%;
}

.courses-hero p {
  max-width: 600px;
  margin: 0 auto;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2.5rem;
}

.hero-stat {
  text-align: center;
}

.hero-stat .stat-value {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--golden-accent);
}

.hero-stat .stat-desc {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Formats Section */
.formats-section {
  background: var(--white);
  padding: 6rem 0;
}

.formats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.format-card {
  background: var(--soft-cream);
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.format-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.format-card.featured {
  background: linear-gradient(
    135deg,
    var(--calm-teal) 0%,
    var(--deep-forest) 100%
  );
  color: var(--white);
}

.format-card.featured h3,
.format-card.featured p {
  color: var(--deep-forest);
}

.format-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--golden-accent);
  color: var(--deep-forest);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.format-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
}

.format-icon img {
  width: 100%;
  height: 100%;
}

.format-card h3 {
  margin-bottom: 1rem;
}

.format-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.format-features {
  list-style: none;
  text-align: left;
}

.format-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
}

.format-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--calm-teal);
  font-weight: 700;
}

.format-card.featured .format-features li::before {
  color: var(--golden-accent);
}

/* Course Items Enhanced */
.courses-section {
  background: var(--soft-cream);
  padding: 6rem 0;
}

.course-item {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
  padding: 3rem;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.course-item.reverse {
  grid-template-columns: 0.8fr 1.2fr;
}

.course-item.reverse .course-details {
  order: 2;
}

.course-item.reverse .course-visual {
  order: 1;
}

.course-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.course-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.course-tag .tag-icon {
  width: 18px;
  height: 18px;
}

.course-tag.online {
  background: rgba(92, 106, 196, 0.15);
  color: var(--calm-teal);
}

.course-tag.online .tag-icon {
  filter: none;
}

.course-tag.offline {
  background: rgba(45, 42, 106, 0.15);
  color: var(--deep-forest);
}

.course-tag.hybrid {
  background: rgba(92, 106, 196, 0.2);
  color: var(--deep-forest);
}

.course-level {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 0.3rem 0.8rem;
  background: var(--warm-sand);
  border-radius: 12px;
}

.course-details h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.course-duration {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.course-duration .duration-icon {
  width: 20px;
  height: 20px;
}

.course-details > p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.course-benefits {
  background: var(--soft-cream);
  padding: 1.5rem;
  border-radius: 12px;
  margin: 1.5rem 0;
}

.course-benefits h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--deep-forest);
}

.course-features {
  list-style: none;
}

.course-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.course-features .feature-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.course-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.course-price {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--calm-teal);
}

.course-visual {
  position: relative;
}

.course-visual img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.visual-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.visual-badge img {
  width: 20px;
  height: 20px;
}

.visual-badge span {
  font-weight: 700;
  color: var(--deep-forest);
}

/* Course Includes Section */
.course-includes-section {
  background: var(--deep-forest);
  padding: 6rem 0;
}

.course-includes-section .section-heading {
  color: var(--white);
}

.includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.include-item {
  text-align: center;
  padding: 2rem;
}

.include-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.include-icon img {
  width: 100%;
  height: 100%;
}

.include-item h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.include-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* Schedule Section */
.schedule-section {
  background: var(--white);
  padding: 6rem 0;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.schedule-card {
  background: var(--soft-cream);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  border: 2px solid transparent;
  transition: var(--transition);
}

.schedule-card:hover {
  border-color: var(--calm-teal);
  box-shadow: 0 15px 40px rgba(92, 106, 196, 0.15);
}

.schedule-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
}

.schedule-icon img {
  width: 100%;
  height: 100%;
}

.schedule-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.schedule-info {
  text-align: left;
  margin-bottom: 1.5rem;
}

.schedule-info p {
  padding: 0.4rem 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.schedule-info strong {
  color: var(--deep-forest);
}

.schedule-price {
  margin-bottom: 1.5rem;
}

.price-old {
  text-decoration: line-through;
  color: var(--text-secondary);
  font-size: 1rem;
  margin-right: 0.5rem;
}

.price-current {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--calm-teal);
}

/* Learning Process Section */
.learning-process-section {
  background: var(--soft-cream);
  padding: 6rem 0;
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
  position: relative;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: var(--warm-sand);
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 1rem;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--calm-teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 2;
}

.step-content {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.step-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
}

.step-icon img {
  width: 100%;
  height: 100%;
}

.step-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Courses FAQ Section */
.courses-faq-section {
  background: var(--white);
  padding: 6rem 0;
}

/* CTA Section Enhanced */
.cta-section .cta-box {
  text-align: center;
}

.cta-section .cta-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
}

.cta-section .cta-icon img {
  width: 100%;
  height: 100%;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1.5rem 0 2rem;
}

.cta-features span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-features span img {
  width: 20px;
  height: 20px;
}

/* Courses Page Responsive */
@media (max-width: 1024px) {
  .hero-content-with-image {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-text-content {
    align-items: center;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    max-width: 400px;
  }

  .formats-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .format-card.featured {
    order: -1;
  }

  .course-item,
  .course-item.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .course-item.reverse .course-details,
  .course-item.reverse .course-visual {
    order: unset;
  }

  .course-visual {
    max-width: 400px;
    margin: 0 auto;
  }

  .course-visual img {
    max-height: 300px;
    object-fit: cover;
  }

  .includes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .schedule-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .process-timeline {
    flex-direction: column;
    gap: 2rem;
  }

  .process-timeline::before {
    top: 0;
    bottom: 0;
    left: 25px;
    right: auto;
    width: 3px;
    height: auto;
  }

  .process-step {
    display: flex;
    text-align: left;
    padding: 0;
  }

  .step-number {
    flex-shrink: 0;
    margin: 0 1.5rem 0 0;
  }

  .step-content {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .hero-stat .stat-value {
    font-size: 2rem;
  }

  .course-item {
    padding: 1.5rem;
  }

  .course-details h2 {
    font-size: 1.5rem;
  }

  .course-header {
    flex-wrap: wrap;
  }

  .course-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .includes-grid {
    grid-template-columns: 1fr;
  }

  .cta-features {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ==========================================
   Contact Page Styles
   ========================================== */

/* Contact Hero */
.contact-hero {
  position: relative;
  overflow: hidden;
}

.contact-hero .hero-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.contact-hero .hero-icon img {
  width: 100%;
  height: 100%;
}

/* Quick Contacts Section */
.quick-contacts-section {
  background: var(--white);
  padding: 4rem 0;
  margin-top: -2rem;
  position: relative;
  z-index: 10;
}

.quick-contacts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.quick-contact-card {
  background: var(--soft-cream);
  padding: 2rem 1.5rem;
  border-radius: 16px;
  text-align: center;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid transparent;
}

.quick-contact-card:hover {
  border-color: var(--calm-teal);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(92, 106, 196, 0.15);
}

.qc-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
}

.qc-icon img {
  width: 100%;
  height: 100%;
}

.quick-contact-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--deep-forest);
}

.quick-contact-card p {
  color: var(--calm-teal);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.qc-note {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Contact Section Enhanced */
.contact-section {
  background: var(--soft-cream);
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-intro {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: 12px;
  transition: var(--transition);
}

.contact-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.cc-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.cc-icon img {
  width: 100%;
  height: 100%;
}

.cc-content h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.cc-content p {
  margin: 0;
  color: var(--text-primary);
}

.cc-content a {
  color: var(--calm-teal);
  font-weight: 500;
}

.cc-note {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

/* Social Links */
.social-links {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--warm-sand);
}

.social-links h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--white);
  transition: var(--transition);
}

.social-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(92, 106, 196, 0.2);
}

.social-icon img {
  width: 32px;
  height: 32px;
}

/* Contact Form Wrapper - Minimal Style */
.contact-form-wrapper {
  background: var(--white);
  padding: 3rem 2.5rem;
  border-radius: 0;
  box-shadow: none;
  border-left: 3px solid var(--calm-teal);
}

.form-header {
  text-align: left;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(45, 42, 106, 0.1);
}

.form-icon {
  width: 48px;
  height: 48px;
  margin: 0 0 1.5rem 0;
  opacity: 0.8;
}

.form-icon img {
  width: 100%;
  height: 100%;
}

.form-header h2 {
  margin-bottom: 0.75rem;
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--deep-forest);
}

.form-header p {
  color: rgba(45, 42, 106, 0.6);
  font-size: 0.95rem;
  font-weight: 400;
}

/* Minimal Form Styles - Ultra Clean */
.minimal-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.minimal-form .form-group {
  position: relative;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}

.minimal-form .form-group.full-width {
  grid-column: span 2;
}

.minimal-form input,
.minimal-form select,
.minimal-form textarea {
  width: 100%;
  padding: 1.25rem 0;
  border: none;
  border-bottom: 1px solid rgba(45, 42, 106, 0.15);
  border-radius: 0;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-primary);
  background: transparent;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
  flex-shrink: 0;
}

.minimal-form input:focus,
.minimal-form select:focus,
.minimal-form textarea:focus {
  outline: none;
  border-bottom-color: var(--calm-teal);
  background: transparent;
}

.minimal-form label {
  position: absolute;
  left: 0;
  top: 1.25rem;
  color: rgba(45, 42, 106, 0.5);
  pointer-events: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  font-weight: 400;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.minimal-form textarea + label {
  top: 1.25rem;
}

.minimal-form input:focus + label,
.minimal-form input:not(:placeholder-shown) + label,
.minimal-form select:focus + label,
.minimal-form select:valid + label,
.minimal-form textarea:focus + label,
.minimal-form textarea:not(:placeholder-shown) + label {
  top: -0.5rem;
  font-size: 0.75rem;
  color: var(--calm-teal);
  font-weight: 500;
  letter-spacing: 0.5px;
  white-space: nowrap;
  overflow: visible;
}

.minimal-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath fill='%235C6AC4' d='M7 8L0 0h14z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 2rem;
}

.minimal-form textarea {
  resize: vertical;
  min-height: 120px;
  padding-top: 1.5rem;
}

.minimal-form .btn-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  margin-top: 2.5rem;
  background: var(--deep-forest);
  color: var(--soft-cream);
  border: 1px solid var(--deep-forest);
  border-radius: 0;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.minimal-form .btn-submit:hover {
  background: transparent;
  color: var(--deep-forest);
}

.minimal-form .btn-submit .btn-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  filter: brightness(0) invert(1);
}

.minimal-form .btn-submit:hover .btn-icon {
  transform: translateX(5px);
  filter: none;
}

.btn-submit:hover .btn-icon {
  transform: translateX(5px);
}

/* Consultation Section */
.consultation-section {
  background: var(--white);
  padding: 5rem 0;
}

.consultation-box {
  background: linear-gradient(
    135deg,
    var(--calm-teal) 0%,
    var(--deep-forest) 100%
  );
  border-radius: 24px;
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.consultation-box::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: var(--golden-accent);
  opacity: 0.1;
  border-radius: 50%;
}

.consultation-content {
  position: relative;
  z-index: 1;
}

.consultation-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
}

.consultation-icon img {
  width: 100%;
  height: 100%;
}

.consultation-box h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.consultation-box p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 500px;
  margin: 0 auto 2rem;
}

.consultation-features {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  list-style: none;
  margin-bottom: 2rem;
}

.consultation-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 0.95rem;
}

.consultation-features li img {
  width: 24px;
  height: 24px;
}

/* Map Section Enhanced */
.map-section {
  background: var(--soft-cream);
  padding: 5rem 0 0;
}

.map-header {
  text-align: center;
  margin-bottom: 3rem;
}

.map-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
}

.map-icon img {
  width: 100%;
  height: 100%;
}

.map-container {
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  display: block;
}

.map-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: -3rem;
  position: relative;
  z-index: 10;
  padding-bottom: 3rem;
}

.map-info-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.map-info-card img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.map-info-card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.map-info-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
  .quick-contacts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .map-info-cards {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .quick-contacts-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }

  .minimal-form .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .minimal-form .form-group.full-width {
    grid-column: span 1;
  }

  .contact-form-wrapper {
    padding: 2rem 1.5rem;
    border-left: 2px solid var(--calm-teal);
  }

  .form-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }

  .form-header h2 {
    font-size: 1.5rem;
  }

  .consultation-box {
    padding: 2.5rem 1.5rem;
  }

  .consultation-features {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
}

/* ======================================
   THANK YOU PAGE STYLES
   ====================================== */

/* Thank You Hero */
.thank-you-hero {
  background: linear-gradient(
    135deg,
    var(--soft-cream) 0%,
    var(--warm-sand) 100%
  );
  padding: 6rem 0 4rem;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thank-you-card {
  background: white;
  border-radius: 24px;
  padding: 3rem;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 10px 40px rgba(45, 42, 106, 0.1);
}

.success-animation {
  margin-bottom: 2rem;
  position: relative;
}

.success-icon-wrapper {
  width: 100px;
  height: 100px;
  background: linear-gradient(
    135deg,
    var(--deep-forest) 0%,
    var(--calm-teal) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  animation: successPulse 2s ease-in-out infinite;
  box-shadow: 0 10px 30px rgba(92, 106, 196, 0.3);
}

.success-icon-wrapper img {
  width: 50px;
  height: 50px;
}

@keyframes successPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(92, 106, 196, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(92, 106, 196, 0.4);
  }
}

.thank-you-card h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--deep-forest);
  margin-bottom: 1rem;
}

.thank-you-message {
  font-size: 1.1rem;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.thank-you-submessage {
  font-size: 0.95rem;
  color: var(--text-primary);
  opacity: 0.7;
  margin-bottom: 1.5rem;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--calm-teal);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.phone-link:hover {
  background: var(--deep-forest);
  transform: translateY(-2px);
}

.phone-link img {
  width: 20px;
  height: 20px;
}

.thank-you-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--calm-teal);
  color: var(--white);
  padding: 0.875rem 1.75rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--deep-forest);
  color: var(--soft-cream);
}

.btn-primary img,
.btn-outline img {
  width: 16px;
  height: 16px;
}

.btn-icon-left {
  transform: rotate(180deg);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--deep-forest);
  padding: 0.875rem 1.75rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid var(--deep-forest);
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--deep-forest);
  color: var(--soft-cream);
}

/* Next Steps Section */
.next-steps-section {
  padding: 5rem 0;
  background: var(--soft-cream);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-icon {
  width: 60px;
  height: 60px;

  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.section-icon img {
  width: 28px;
  height: 28px;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
  color: var(--deep-forest);
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-primary);
  opacity: 0.7;
  font-size: 1.1rem;
}

.steps-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}

.step-card {
  flex: 1;
  max-width: 280px;
  background: white;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 20px rgba(45, 42, 106, 0.08);
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(45, 42, 106, 0.12);
}

.step-number {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--calm-teal);
  color: var(--white);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.step-icon {
  width: 60px;
  height: 60px;
  background: rgba(92, 106, 196, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.step-card:hover .step-icon {
  background: var(--calm-teal);
}

.step-icon img {
  width: 28px;
  height: 28px;
  transition: filter 0.3s ease;
}

.step-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: var(--deep-forest);
  margin-bottom: 0.75rem;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--deep-forest);
  opacity: 0.7;
  line-height: 1.6;
}

.step-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--calm-teal), var(--warm-sand));
  align-self: center;
  margin-top: 2rem;
}

/* Resources Section */
.resources-section {
  padding: 5rem 0;
  background: var(--deep-forest);
}

.resources-section .section-heading {
  color: var(--soft-cream);
}

.resources-section .section-subheading {
  color: rgba(250, 249, 245, 0.7);
}

.section-heading {
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
  color: var(--deep-forest);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subheading {
  color: var(--text-secondary);
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.resources-section .resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.resources-section .resource-card {
  background: rgba(250, 249, 245, 0.06);
  border: 1px solid rgba(250, 249, 245, 0.1);
  border-radius: 16px;
  padding: 2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  position: relative;
}

.resources-section .resource-card:hover {
  background: rgba(250, 249, 245, 0.1);
  transform: translateY(-5px);
  border-color: rgba(92, 106, 196, 0.3);
}

.resources-section .resource-icon {
  width: 56px;
  height: 56px;
  background: rgba(92, 106, 196, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.resources-section .resource-card:hover .resource-icon {
  background: var(--calm-teal);
}

.resources-section .resource-icon img {
  width: 26px;
  height: 26px;
}

.resources-section .resource-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: var(--soft-cream);
  margin-bottom: 0.75rem;
}

.resources-section .resource-card p {
  color: rgba(250, 249, 245, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.card-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(92, 106, 196, 0.2);
  border-radius: 50%;
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  transition: all 0.3s ease;
}

.resources-section .resource-card:hover .card-link-icon {
  background: var(--calm-teal);
}

.card-link-icon img {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.resources-section .resource-card:hover .card-link-icon img {
  transform: translateX(2px);
  filter: brightness(0) saturate(100%) invert(18%) sepia(15%) saturate(1500%)
    hue-rotate(110deg);
}

/* Contact Reminder Section */
.contact-reminder-section {
  padding: 4rem 0;
}

.contact-reminder-box {
  background: linear-gradient(
    135deg,
    var(--deep-forest) 0%,
    var(--calm-teal) 100%
  );
  border-radius: 24px;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.reminder-content {
  flex: 1;
}

.reminder-icon {
  width: 50px;
  height: 50px;
  background: rgba(250, 249, 245, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.reminder-icon img {
  width: 24px;
  height: 24px;
}

.reminder-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--soft-cream);
  margin-bottom: 0.5rem;
}

.reminder-content p {
  color: rgba(250, 249, 245, 0.8);
  font-size: 1rem;
}

.reminder-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.reminder-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(250, 249, 245, 0.1);
  color: var(--soft-cream);
  padding: 0.75rem 1.25rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(250, 249, 245, 0.2);
}

.reminder-link:hover {
  background: var(--soft-cream);
  color: var(--deep-forest);
}

.reminder-link:hover img {
  filter: brightness(0) saturate(100%) invert(18%) sepia(15%) saturate(1500%)
    hue-rotate(110deg);
}

.reminder-link img {
  width: 18px;
  height: 18px;

  transition: filter 0.3s ease;
}

/* Thank You Page Responsive */
@media (max-width: 992px) {
  .steps-timeline {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .step-connector {
    display: none;
  }

  .step-card {
    flex: 0 0 calc(50% - 0.75rem);
    max-width: none;
  }

  .resources-section .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-reminder-box {
    flex-direction: column;
    text-align: center;
  }

  .reminder-icon {
    margin: 0 auto 1rem;
  }

  .reminder-contacts {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .thank-you-hero {
    padding: 4rem 0 3rem;
    min-height: auto;
  }

  .thank-you-card {
    padding: 2rem 1.5rem;
  }

  .thank-you-card h1 {
    font-size: 2rem;
  }

  .success-icon-wrapper {
    width: 80px;
    height: 80px;
  }

  .success-icon-wrapper img {
    width: 40px;
    height: 40px;
  }

  .thank-you-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .step-card {
    flex: 0 0 100%;
  }

  .resources-section .resources-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
  }

  .contact-reminder-box {
    padding: 2rem 1.5rem;
  }

  .reminder-contacts {
    flex-direction: column;
    width: 100%;
  }

  .reminder-link {
    justify-content: center;
  }
}

/* ======================================
   PROGRAMS PAGE STYLES
   ====================================== */

/* Programs Hero */
.programs-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(../images/mind.jpeg);
  background-size: cover;
  background-position: center;
  padding: 6rem 1.5rem 4rem;

  text-align: center;
  position: relative;
  overflow: hidden;
}

.programs-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: rgba(250, 249, 245, 0.03);
  border-radius: 50%;
}

.programs-hero h1 {
  color: var(--soft-cream);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(250, 249, 245, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
}

.hero-badge img {
  width: 20px;
  height: 20px;
}

.hero-badge span {
  color: var(--soft-cream);
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-subtitle {
  color: rgba(250, 249, 245, 0.85);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(250, 249, 245, 0.08);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(250, 249, 245, 0.1);
}

.stat-item img {
  width: 28px;
  height: 28px;

  opacity: 0.8;
}

.stat-content {
  text-align: left;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--soft-cream);
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(250, 249, 245, 0.7);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-block;
  background: rgba(92, 106, 196, 0.1);
  color: var(--calm-teal);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
  color: var(--deep-forest);
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--deep-forest);
  opacity: 0.7;
  font-size: 1.1rem;
}

/* Programs Why Section */
.programs-why {
  padding: 5rem 0;
  background: var(--soft-cream);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: white;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(45, 42, 106, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(45, 42, 106, 0.05);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(45, 42, 106, 0.1);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: rgba(92, 106, 196, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: all 0.3s ease;
}

.why-card:hover .why-icon {
  background: var(--calm-teal);
}

.why-icon img {
  width: 28px;
  height: 28px;
  transition: filter 0.3s ease;
}

.why-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  color: var(--deep-forest);
  margin-bottom: 0.75rem;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--deep-forest);
  opacity: 0.7;
  line-height: 1.6;
}

/* Programs Grid - 2 per row */
.programs-detail-section {
  padding: 5rem 0;
}

.programs-grid-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.program-card-large {
  background: var(--soft-cream);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 6px 25px rgba(45, 42, 106, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(45, 42, 106, 0.05);
}

.program-card-large:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(45, 42, 106, 0.12);
}

.program-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.program-icon-large {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--deep-forest) 0%,
    var(--calm-teal) 100%
  );
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(92, 106, 196, 0.3);
}

.program-icon-large img {
  width: 36px;
  height: 36px;
}

.program-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
}

.program-duration,
.program-format {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(45, 42, 106, 0.05);
  padding: 0.4rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--deep-forest);
}

.program-duration img,
.program-format img {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

.program-card-large h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--deep-forest);
  margin-bottom: 0.75rem;
}

.program-card-large .program-intro {
  color: var(--deep-forest);
  opacity: 0.8;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.program-benefits {
  background: rgba(92, 106, 196, 0.05);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.program-benefits h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--deep-forest);
  margin-bottom: 0.75rem;
}

.program-benefits h4 img {
  width: 18px;
  height: 18px;
}

.program-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.program-benefits ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--deep-forest);
  opacity: 0.8;
}

.program-benefits ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--calm-teal);
  border-radius: 50%;
}

.program-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(45, 42, 106, 0.1);
}

.program-level {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--deep-forest);
  opacity: 0.7;
}

.program-level img {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

.btn-program {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--calm-teal);
  color: var(--soft-cream);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-program:hover {
  background: var(--deep-forest);
  transform: translateX(3px);
}

.btn-program img {
  width: 16px;
  height: 16px;

  transition: transform 0.3s ease;
}

.btn-program:hover img {
  transform: translateX(3px);
}

/* Programs Process Section */
.programs-process {
  padding: 5rem 0;
  background: var(--soft-cream);
}

.process-timeline {
  display: flex;

  justify-content: center;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  max-width: 180px;
}

.process-step .step-number {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--calm-teal);
  color: var(--deep-forest);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  z-index: 2;
}

.process-step .step-icon {
  width: 70px;
  height: 70px;
  background: white;
  border: 3px solid var(--calm-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.process-step:hover .step-icon {
  background: var(--calm-teal);
  transform: scale(1.1);
}

.process-step .step-icon img {
  width: 30px;
  height: 30px;
  transition: filter 0.3s ease;
}

.process-step h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  color: var(--deep-forest);
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--deep-forest);
  opacity: 0.7;
  line-height: 1.5;
}

.process-connector {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--calm-teal), var(--warm-sand));
  margin-top: 35px;
  flex-shrink: 0;
}

/* Programs Formats Section */
.programs-formats {
  padding: 5rem 0;
}

.programs-formats .section-header h2,
.programs-formats .section-header p {
  color: var(--deep-forest);
}

.programs-formats .section-header p {
  opacity: 0.7;
}

.programs-formats .section-badge {
  background: rgba(92, 106, 196, 0.2);
  color: var(--calm-teal);
}

.formats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.format-card {
  background: rgba(250, 249, 245, 0.06);
  border: 1px solid rgba(250, 249, 245, 0.1);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.format-card:hover {
  background: rgba(250, 249, 245, 0.1);
  transform: translateY(-5px);
}

.format-card.featured {
  background: rgba(92, 106, 196, 0.15);
  border-color: rgba(92, 106, 196, 0.3);
}

.format-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--calm-teal);
  color: var(--deep-forest);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 1rem;
  border-radius: 15px;
}

.format-icon {
  width: 60px;
  height: 60px;
  background: rgba(92, 106, 196, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: all 0.3s ease;
}

.format-card:hover .format-icon {
  background: var(--calm-teal);
}

.format-icon img {
  width: 28px;
  height: 28px;
}

.format-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: var(--deep-forest);
  margin-bottom: 0.75rem;
}

.format-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.format-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.format-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.format-features li img {
  width: 16px;
  height: 16px;
  filter: brightness(0) saturate(100%) invert(73%) sepia(38%) saturate(456%)
    hue-rotate(118deg);
}

/* Compare Section Update */
.compare-section {
  padding: 5rem 0;
}

.compare-section .section-badge {
  background: rgba(45, 42, 106, 0.1);
  color: var(--deep-forest);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--soft-cream);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(45, 42, 106, 0.08);
}

.comparison-table thead {
  background: var(--deep-forest);
}

.comparison-table th {
  padding: 1.25rem 1rem;
  color: var(--soft-cream);
  font-weight: 600;
  text-align: left;
  font-size: 0.9rem;
}

.comparison-table th img {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 0.5rem;

  opacity: 0.7;
}

.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(45, 42, 106, 0.08);
  color: var(--deep-forest);
  font-size: 0.9rem;
}

.comparison-table tbody tr:hover {
  background: rgba(92, 106, 196, 0.05);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

/* Programs FAQ */
.programs-faq {
  padding: 5rem 0;
  background: var(--soft-cream);
}

.programs-faq .faq-container {
  max-width: 750px;
  margin: 0 auto;
}

.programs-faq .faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(45, 42, 106, 0.05);
  border: 1px solid rgba(45, 42, 106, 0.05);
}

.programs-faq .faq-question {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.programs-faq .faq-question:hover {
  background: rgba(92, 106, 196, 0.05);
}

.programs-faq .faq-question h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  color: var(--deep-forest);
  margin: 0;
  padding-right: 1rem;
}

.programs-faq .faq-toggle {
  width: 28px;
  height: 28px;
  color: var(--calm-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.programs-faq .faq-toggle::before {
  content: "+";
  color: white;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1;
}

.programs-faq .faq-item.active .faq-toggle {
  /* transform: rotate(45deg); */
}

.programs-faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.programs-faq .faq-item.active .faq-answer {
  max-height: 300px;
}

.programs-faq .faq-answer p {
  padding: 0 1.5rem 1.25rem;
  color: var(--deep-forest);
  opacity: 0.8;
  line-height: 1.7;
  margin: 0;
}

/* Programs CTA */
.programs-cta {
  padding: 5rem 0;
}

.cta-box {
  background: linear-gradient(
    135deg,
    var(--deep-forest) 0%,
    var(--calm-teal) 100%
  );
  border-radius: 24px;
  padding: 4rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: rgba(250, 249, 245, 0.05);
  border-radius: 50%;
}

.cta-icon {
  width: 70px;
  height: 70px;
  background: rgba(250, 249, 245, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
}

.cta-icon img {
  width: 32px;
  height: 32px;
}

.cta-box h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--soft-cream);
  margin-bottom: 1rem;
  position: relative;
}

.cta-box p {
  color: rgba(250, 249, 245, 0.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  position: relative;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--calm-teal);
  color: var(--deep-forest);
  padding: 1rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta-primary:hover {
  background: var(--soft-cream);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary img {
  width: 18px;
  height: 18px;
  filter: brightness(0) saturate(100%) invert(18%) sepia(15%) saturate(1500%)
    hue-rotate(110deg);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--soft-cream);
  padding: 1rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(250, 249, 245, 0.3);
  transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
  border-color: var(--soft-cream);
  background: rgba(250, 249, 245, 0.1);
}

.btn-cta-secondary img {
  width: 18px;
  height: 18px;
}

/* Programs Page Responsive */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-timeline {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .process-connector {
    display: none;
  }

  .process-step {
    flex: 0 0 calc(33.333% - 1rem);
    max-width: none;
  }
}

@media (max-width: 992px) {
  .programs-grid-two {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .formats-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .hero-stats {
    gap: 1rem;
  }

  .stat-item {
    flex: 0 0 calc(50% - 0.5rem);
  }
}

@media (max-width: 768px) {
  .programs-hero {
    padding: 6rem 0 3rem;
  }

  .programs-hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .stat-item {
    flex: 0 0 100%;
    justify-content: center;
  }

  .why-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }

  .process-step {
    flex: 0 0 100%;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .program-card-header {
    flex-direction: column;
    gap: 1rem;
  }

  .program-meta {
    flex-direction: row;
    align-items: center;
  }

  .program-footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .cta-box {
    padding: 2.5rem 1.5rem;
  }

  .cta-box h2 {
    font-size: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    justify-content: center;
    max-width: 280px;
  }

  .comparison-table-wrapper {
    overflow-x: auto;
  }

  .comparison-table {
    min-width: 600px;
  }
}

/* ======================================
   MATERIALS PAGE STYLES
   ====================================== */

/* Materials Hero */
.materials-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../images/mind.jpeg) no-repeat center center/cover;
  padding: 8rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.materials-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: rgba(250, 249, 245, 0.03);
  border-radius: 50%;
}

.materials-hero h1 {
  color: var(--soft-cream);
}

/* Materials Categories */
.materials-categories {
  padding: 5rem 0;
  background: var(--soft-cream);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.category-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(45, 42, 106, 0.06);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: var(--calm-teal);
  box-shadow: 0 8px 30px rgba(92, 106, 196, 0.15);
}

.category-icon {
  width: 60px;
  height: 60px;
  background: rgba(92, 106, 196, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.category-card:hover .category-icon {
  background: var(--calm-teal);
}

.category-icon img {
  width: 28px;
  height: 28px;
  transition: filter 0.3s ease;
}

.category-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: var(--deep-forest);
  margin-bottom: 0.5rem;
}

.category-card p {
  font-size: 0.9rem;
  color: var(--deep-forest);
  opacity: 0.7;
  margin-bottom: 0.75rem;
}

.category-count {
  display: inline-block;
  background: rgba(92, 106, 196, 0.1);
  color: var(--calm-teal);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 15px;
}

/* Materials Section */
.materials-section {
  padding: 5rem 0;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.material-card {
  background: var(--soft-cream);
  border-radius: 16px;
  padding: 1.75rem;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(45, 42, 106, 0.06);
}

.material-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(45, 42, 106, 0.1);
}

.material-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(45, 42, 106, 0.08);
  color: var(--deep-forest);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
}

.material-type-badge img {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

.material-type-badge.practice {
  background: rgba(92, 106, 196, 0.15);
  color: var(--calm-teal);
}

.material-type-badge.exercise {
  background: rgba(92, 106, 196, 0.2);
  color: var(--deep-forest);
}

.material-type-badge.meditation {
  background: rgba(45, 42, 106, 0.1);
  color: var(--deep-forest);
}

.material-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(
    135deg,
    var(--deep-forest) 0%,
    var(--calm-teal) 100%
  );
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.material-icon img {
  width: 28px;
  height: 28px;
}

.material-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  color: var(--deep-forest);
  margin-bottom: 0.75rem;
  padding-right: 3rem;
}

.material-card > p {
  font-size: 0.9rem;
  color: var(--deep-forest);
  opacity: 0.75;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.material-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.material-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--deep-forest);
  opacity: 0.6;
}

.material-meta span img {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

.btn-material {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--calm-teal);
  border: 2px solid var(--calm-teal);
  padding: 0.6rem 1.25rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.btn-material:hover {
  background: var(--calm-teal);
  color: var(--soft-cream);
}

.btn-material img {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.btn-material:hover img {
  transform: translateX(3px);
}

/* Materials How To Section */
.materials-how-to {
  padding: 5rem 0;
  background: var(--soft-cream);
}

.how-to-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.how-to-card {
  background: white;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 20px rgba(45, 42, 106, 0.06);
  transition: all 0.3s ease;
}

.how-to-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(45, 42, 106, 0.1);
}

.how-to-number {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--calm-teal);
  color: var(--deep-forest);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.3rem 0.75rem;
  border-radius: 15px;
}

.how-to-icon {
  width: 60px;
  height: 60px;
  background: rgba(92, 106, 196, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.5rem auto 1rem;
  transition: all 0.3s ease;
}

.how-to-card:hover .how-to-icon {
  background: var(--calm-teal);
}

.how-to-icon img {
  width: 28px;
  height: 28px;
  transition: filter 0.3s ease;
}

.how-to-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: var(--deep-forest);
  margin-bottom: 0.75rem;
}

.how-to-card p {
  font-size: 0.9rem;
  color: var(--deep-forest);
  opacity: 0.7;
  line-height: 1.6;
}

/* Materials Benefits Section */
.materials-benefits {
  padding: 5rem 0;
  background: var(--deep-forest);
}

.benefits-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.benefits-text .section-badge {
  background: rgba(92, 106, 196, 0.2);
  color: var(--calm-teal);
}

.benefits-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
  color: var(--soft-cream);
  margin-bottom: 1rem;
}

.benefits-text > p {
  color: rgba(250, 249, 245, 0.7);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.benefits-list li img {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(73%) sepia(38%) saturate(456%)
    hue-rotate(118deg);
}

.benefits-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-card {
  background: rgba(250, 249, 245, 0.08);
  border: 1px solid rgba(250, 249, 245, 0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  background: rgba(250, 249, 245, 0.12);
  transform: translateX(5px);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: rgba(92, 106, 196, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.benefit-icon img {
  width: 24px;
  height: 24px;
}

.benefit-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--calm-teal);
  margin-bottom: 0.25rem;
}

.benefit-label {
  font-size: 0.95rem;
  color: rgba(250, 249, 245, 0.7);
}

/* Download Section Update */
.download-section {
  padding: 5rem 0;
}

.download-box {
  background: linear-gradient(
    135deg,
    var(--deep-forest) 0%,
    var(--calm-teal) 100%
  );
  border-radius: 24px;
  padding: 4rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.download-box::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: rgba(250, 249, 245, 0.05);
  border-radius: 50%;
}

.download-icon {
  width: 70px;
  height: 70px;
  background: rgba(250, 249, 245, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
}

.download-icon img {
  width: 32px;
  height: 32px;
}

.download-box h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--soft-cream);
  margin-bottom: 1rem;
  position: relative;
}

.download-box > p {
  color: rgba(250, 249, 245, 0.85);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.download-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  position: relative;
}

.download-features span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--soft-cream);
  font-size: 0.9rem;
}

.download-features span img {
  width: 16px;
  height: 16px;
  filter: brightness(0) saturate(100%) invert(73%) sepia(38%) saturate(456%)
    hue-rotate(118deg);
}

.download-form {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.download-form .form-row {
  display: flex;
  gap: 0.75rem;
}

.download-form .input-wrapper {
  flex: 1;
  position: relative;
}

.download-form .input-wrapper img {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  opacity: 0.5;
}

.download-form input {
  width: 100%;
  padding: 1rem 1rem 1rem 2.75rem;
  border: 2px solid rgba(250, 249, 245, 0.2);
  border-radius: 30px;
  background: rgba(250, 249, 245, 0.1);
  color: var(--soft-cream);
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.download-form input::placeholder {
  color: rgba(250, 249, 245, 0.6);
}

.download-form input:focus {
  border-color: var(--calm-teal);
  background: rgba(250, 249, 245, 0.15);
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--calm-teal);
  color: var(--deep-forest);
  padding: 1rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-download:hover {
  background: var(--soft-cream);
  transform: translateY(-2px);
}

.btn-download img {
  width: 16px;
  height: 16px;
  filter: brightness(0) saturate(100%) invert(18%) sepia(15%) saturate(1500%)
    hue-rotate(110deg);
}

/* Newsletter Section */
.newsletter-section {
  padding: 4rem 0;
  background: var(--soft-cream);
}

.newsletter-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: white;
  border-radius: 20px;
  padding: 2rem 2.5rem;
  box-shadow: 0 4px 20px rgba(45, 42, 106, 0.08);
  max-width: 900px;
  margin: 0 auto;
}

.newsletter-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.newsletter-icon {
  width: 50px;
  height: 50px;
  background: rgba(92, 106, 196, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.newsletter-icon img {
  width: 24px;
  height: 24px;
}

.newsletter-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  color: var(--deep-forest);
  margin-bottom: 0.25rem;
}

.newsletter-content p {
  font-size: 0.9rem;
  color: var(--deep-forest);
  opacity: 0.7;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
}

.newsletter-form input {
  padding: 0.875rem 1.25rem;
  border: 2px solid var(--warm-sand);
  border-radius: 25px;
  font-size: 0.95rem;
  outline: none;
  min-width: 220px;
  transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
  border-color: var(--calm-teal);
}

.newsletter-form button {
  background: var(--calm-teal);
  color: var(--soft-cream);
  padding: 0.875rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--deep-forest);
}

/* Newsletter Success Message */
.newsletter-success {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: rgba(92, 106, 196, 0.15);
  border: 2px solid var(--calm-teal);
  padding: 0.75rem 1.25rem;
  border-radius: 25px;
  margin-top: 1rem;
}

.newsletter-success.show {
  display: flex;
  animation: fadeInSuccess 0.4s ease;
}

@keyframes fadeInSuccess {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.newsletter-success img {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(58%) sepia(67%) saturate(405%)
    hue-rotate(127deg);
}

.newsletter-success span {
  color: var(--calm-teal);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Materials FAQ */
.materials-faq {
  padding: 5rem 0;
}

.materials-faq .faq-container {
  max-width: 750px;
  margin: 0 auto;
}

.materials-faq .faq-item {
  background: var(--soft-cream);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(45, 42, 106, 0.05);
}

.materials-faq .faq-question {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.materials-faq .faq-question:hover {
  background: rgba(92, 106, 196, 0.05);
}

.materials-faq .faq-question h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  color: var(--deep-forest);
  margin: 0;
}

.materials-faq .faq-toggle {
  width: 28px;
  height: 28px;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: right;
  flex-shrink: 0;
  /* transition: transform 0.3s ease; */
}

.materials-faq .faq-toggle::before {
  content: "+";
  color: var(--calm-teal);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1;
}

.materials-faq .faq-item.active .faq-toggle {
  /* transform: rotate(45deg); */
}

.materials-faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.materials-faq .faq-item.active .faq-answer {
  max-height: 300px;
}

.materials-faq .faq-answer p {
  padding: 0 1.5rem 1.25rem;
  color: var(--deep-forest);
  opacity: 0.8;
  line-height: 1.7;
  margin: 0;
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(45, 42, 106, 0.9);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow-y: auto;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--soft-cream);
  border-radius: 24px;
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
  display: none;
}

.modal.active {
  transform: scale(1) translateY(0);
  opacity: 1;
  display: block;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: rgba(45, 42, 106, 0.05);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--deep-forest);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: var(--calm-teal);
  color: var(--soft-cream);
}

.modal-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
}

.modal-prev,
.modal-next {
  width: 44px;
  height: 44px;
  background: var(--calm-teal);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  pointer-events: auto;
  box-shadow: 0 4px 15px rgba(92, 106, 196, 0.3);
}

.modal-prev:hover,
.modal-next:hover {
  background: var(--deep-forest);
  transform: scale(1.1);
}

.modal-prev img,
.modal-next img {
  width: 20px;
  height: 20px;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.modal-type {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(45, 42, 106, 0.08);
  color: var(--deep-forest);
  padding: 0.4rem 0.85rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.modal-type img {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

.modal-type.practice {
  background: rgba(92, 106, 196, 0.15);
  color: var(--calm-teal);
}

.modal-type.exercise {
  background: rgba(92, 106, 196, 0.2);
  color: var(--deep-forest);
}

.modal-type.meditation {
  background: rgba(45, 42, 106, 0.1);
  color: var(--deep-forest);
}

.modal-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--deep-forest) 0%,
    var(--calm-teal) 100%
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

.modal-icon img {
  width: 24px;
  height: 24px;
}

.modal h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  color: var(--deep-forest);
  margin-bottom: 1rem;
}

.modal-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.modal-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--deep-forest);
  opacity: 0.7;
}

.modal-meta span img {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

.modal-content {
  color: var(--deep-forest);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.modal-content p {
  margin-bottom: 1rem;
}

.modal-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  color: var(--deep-forest);
  margin: 1.5rem 0 0.75rem;
}

.modal-content ul,
.modal-content ol {
  margin: 0.75rem 0;
  padding-left: 1.5rem;
}

.modal-content li {
  margin-bottom: 0.5rem;
}

.btn-modal-cta {
  display: inline-block;
  background: var(--calm-teal);
  color: var(--soft-cream);
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-modal-cta:hover {
  transform: translateY(-2px);
}

/* Materials Page Responsive */
@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-to-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .benefits-cards {
    flex-direction: row;
  }

  .benefit-card {
    flex: 1;
  }
}

@media (max-width: 992px) {
  .materials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter-box {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-content {
    flex-direction: column;
  }

  .newsletter-form {
    width: 100%;
    max-width: 400px;
  }

  .newsletter-form input {
    flex: 1;
    min-width: auto;
  }
}

@media (max-width: 768px) {
  .materials-hero {
    padding: 6rem 0 3rem;
  }

  .categories-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }

  .materials-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .how-to-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }

  .benefits-cards {
    flex-direction: column;
  }

  .download-box {
    padding: 2.5rem 1.5rem;
  }

  .download-form .form-row {
    flex-direction: column;
  }

  .download-form .input-wrapper {
    width: 100%;
  }

  .btn-download {
    width: 100%;
    justify-content: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }

  .modal {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }

  .modal h2 {
    font-size: 1.5rem;
  }

  .modal-nav {
    position: fixed;
    top: auto;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    gap: 1rem;
    padding: 0;
  }
}

/* ======================================
   ABOUT PAGE STYLES
   ====================================== */

/* About Hero */
.about-hero {
  background: linear-gradient(
    135deg,
    var(--deep-forest) 0%,
    var(--calm-teal) 100%
  );
  padding: 8rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: rgba(250, 249, 245, 0.03);
  border-radius: 50%;
}

.about-hero h1 {
  color: var(--soft-cream);
}

/* About Story Section */
.about-story {
  padding: 5rem 0;
  background: var(--soft-cream);
}

.story-header {
  text-align: center;
  margin-bottom: 3rem;
}

.story-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--deep-forest);
}

/* Story Timeline */
.story-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto 3rem;
  padding-left: 60px;
}

.story-timeline::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    to bottom,
    var(--calm-teal) 0%,
    var(--deep-forest) 100%
  );
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
  opacity: 0;
  transform: translateX(-20px);
  animation: fadeInTimeline 0.6s ease forwards;
}

.timeline-item:nth-child(1) {
  animation-delay: 0.1s;
}
.timeline-item:nth-child(2) {
  animation-delay: 0.3s;
}
.timeline-item:nth-child(3) {
  animation-delay: 0.5s;
}

@keyframes fadeInTimeline {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-icon {
  position: absolute;
  left: -60px;
  top: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--deep-forest) 0%,
    var(--calm-teal) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(92, 106, 196, 0.3);
  z-index: 1;
}

.timeline-icon img {
  width: 24px;
  height: 24px;
}

.timeline-content {
  background: white;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(45, 42, 106, 0.06);
  transition: all 0.3s ease;
  border-left: 4px solid var(--calm-teal);
}

.timeline-content:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(45, 42, 106, 0.1);
}

.timeline-label {
  display: inline-block;
  background: rgba(92, 106, 196, 0.1);
  color: var(--calm-teal);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 15px;
  margin-bottom: 0.75rem;
}

.timeline-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  color: var(--deep-forest);
  margin-bottom: 0.75rem;
}

.timeline-content p {
  font-size: 1rem;
  color: var(--deep-forest);
  opacity: 0.8;
  line-height: 1.7;
  margin: 0;
}

/* Story Quote */
.story-quote {
  background: linear-gradient(
    135deg,
    var(--deep-forest) 0%,
    var(--calm-teal) 100%
  );
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.story-quote::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: rgba(250, 249, 245, 0.05);
  border-radius: 50%;
}

.quote-icon {
  width: 60px;
  height: 60px;
  background: rgba(250, 249, 245, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
}

.quote-icon img {
  width: 30px;
  height: 30px;
}

.story-quote blockquote {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--soft-cream);
  line-height: 1.6;
  margin-bottom: 1rem;
  position: relative;
}

.quote-author {
  font-size: 0.95rem;
  color: rgba(250, 249, 245, 0.7);
  position: relative;
}

.story-container {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.story-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(
    135deg,
    var(--deep-forest) 0%,
    var(--calm-teal) 100%
  );
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.story-icon img {
  width: 50px;
  height: 50px;
}

.story-content {
  flex: 1;
}

.story-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
  color: var(--deep-forest);
  margin-bottom: 1.5rem;
}

.story-content p {
  font-size: 1.05rem;
  color: var(--deep-forest);
  opacity: 0.85;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

/* Mission Section */
.about-mission {
  padding: 5rem 0;
}

.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.mission-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
  color: var(--deep-forest);
  margin-bottom: 1rem;
}

.mission-text > p {
  font-size: 1.05rem;
  color: var(--deep-forest);
  opacity: 0.85;
  margin-bottom: 2rem;
}

.mission-points {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mission-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.point-icon {
  width: 48px;
  height: 48px;
  background: rgba(92, 106, 196, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.point-icon img {
  width: 24px;
  height: 24px;
}

.point-content h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: var(--deep-forest);
  margin-bottom: 0.25rem;
}

.point-content p {
  font-size: 0.9rem;
  color: var(--deep-forest);
  opacity: 0.7;
}

.mission-visual {
  display: flex;
  justify-content: center;
}

.mission-card {
  background: linear-gradient(
    135deg,
    var(--deep-forest) 0%,
    var(--calm-teal) 100%
  );
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  max-width: 350px;
}

.mission-card img {
  width: 80px;
  height: 80px;

  margin-bottom: 1.5rem;
}

.mission-quote {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--soft-cream);
  line-height: 1.6;
}

/* Values Section Updated */
.values-section {
  padding: 5rem 0;
  background: var(--soft-cream);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(45, 42, 106, 0.06);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: var(--calm-teal);
  box-shadow: 0 8px 30px rgba(92, 106, 196, 0.15);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: rgba(92, 106, 196, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  background: var(--calm-teal);
}

.value-card:hover .value-icon img {
}
.value-icon img {
  width: 36px;
  height: 36px;
  transition: filter 0.3s ease;
}

.value-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  color: var(--deep-forest);
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.95rem;
  color: var(--deep-forest);
  opacity: 0.75;
  line-height: 1.6;
}

/* Team Section Updated */
.team-section {
  padding: 5rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.team-member {
  background: var(--soft-cream);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  box-shadow: 0 4px 20px rgba(45, 42, 106, 0.06);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(45, 42, 106, 0.1);
}

.member-photo {
  width: 120px;
  height: 120px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(
    135deg,
    var(--deep-forest) 0%,
    var(--calm-teal) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-info {
  flex: 1;
}

.member-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  color: var(--deep-forest);
  margin-bottom: 0.25rem;
}

.member-role {
  color: var(--calm-teal);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.member-desc {
  font-size: 0.9rem;
  color: var(--deep-forest);
  opacity: 0.75;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.member-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.member-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(92, 106, 196, 0.1);
  color: var(--calm-teal);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 15px;
}

.member-badges span img {
  width: 14px;
  height: 14px;
}

/* Approach Section Updated */
.approach-section {
  padding: 5rem 0;
  background: var(--soft-cream);
}

.approach-container {
  max-width: 1000px;
  margin: 0 auto;
}

.approach-header {
  text-align: center;
  margin-bottom: 3rem;
}

.approach-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
  color: var(--deep-forest);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.approach-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(45, 42, 106, 0.06);
  transition: all 0.3s ease;
}

.approach-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(45, 42, 106, 0.1);
}

.approach-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--deep-forest) 0%,
    var(--calm-teal) 100%
  );
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.approach-icon img {
  width: 36px;
  height: 36px;
}

.approach-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: var(--deep-forest);
  margin-bottom: 0.75rem;
}

.approach-card p {
  font-size: 0.95rem;
  color: var(--deep-forest);
  opacity: 0.75;
  line-height: 1.6;
}

/* Space Section */
.space-section {
  padding: 5rem 0;
  background: var(--deep-forest);
}

.space-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.space-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.space-image {
  border-radius: 24px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.space-image img {
  width: 350px;
  height: 350px;
}

.space-features {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.space-feature {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(250, 249, 245, 0.1);
  border: 1px solid rgba(250, 249, 245, 0.2);
  padding: 0.6rem 1rem;
  border-radius: 25px;
}

.space-feature img {
  width: 18px;
  height: 18px;
  filter: brightness(0) saturate(100%) invert(73%) sepia(38%) saturate(456%)
    hue-rotate(118deg);
}

.space-feature span {
  color: var(--soft-cream);
  font-size: 0.9rem;
}

.space-text .section-badge {
  background: rgba(92, 106, 196, 0.2);
  color: var(--calm-teal);
}

.space-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
  color: var(--soft-cream);
  margin-bottom: 1.5rem;
}

.space-text p {
  color: rgba(250, 249, 245, 0.8);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.space-text .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--calm-teal);
  color: var(--white);
  padding: 0.875rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.space-text .btn-primary:hover {
  background: var(--soft-cream);
  transform: translateY(-2px);
}

.space-text .btn-primary img {
  width: 18px;
  height: 18px;
  filter: brightness(0) saturate(100%) invert(18%) sepia(15%) saturate(1500%)
    hue-rotate(110deg);
}

/* Achievements Section */
.achievements-section {
  padding: 5rem 0;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.achievement-card {
  background: var(--soft-cream);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(45, 42, 106, 0.06);
  transition: all 0.3s ease;
}

.achievement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(45, 42, 106, 0.1);
}

.achievement-icon {
  width: 60px;
  height: 60px;
  background: rgba(92, 106, 196, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.achievement-icon img {
  width: 28px;
  height: 28px;
}

.achievement-number {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--calm-teal);
  margin-bottom: 0.5rem;
}

.achievement-label {
  font-size: 0.9rem;
  color: var(--deep-forest);
  opacity: 0.75;
}

/* About CTA Section */
.about-cta {
  padding: 5rem 0;
  background: var(--soft-cream);
}

.cta-box {
  background: linear-gradient(
    135deg,
    var(--deep-forest) 0%,
    var(--calm-teal) 100%
  );
  border-radius: 24px;
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(250, 249, 245, 0.05);
  border-radius: 50%;
}

.cta-icon {
  width: 80px;
  height: 80px;
  background: rgba(250, 249, 245, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
}

.cta-icon img {
  width: 40px;
  height: 40px;
}

.cta-box h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--soft-cream);
  margin-bottom: 1rem;
  position: relative;
}

.cta-box > p {
  color: rgba(250, 249, 245, 0.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  position: relative;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--calm-teal);
  color: var(--white);
  padding: 1rem 1.75rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-cta-primary:hover {
  background: var(--soft-cream);
  transform: translateY(-2px);
}

.btn-cta-primary img {
  width: 18px;
  height: 18px;
  filter: brightness(0) saturate(100%) invert(18%) sepia(15%) saturate(1500%)
    hue-rotate(110deg);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--soft-cream);
  border: 2px solid rgba(250, 249, 245, 0.3);
  padding: 0.95rem 1.75rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
  background: rgba(250, 249, 245, 0.1);
  border-color: var(--soft-cream);
}

.btn-cta-secondary img {
  width: 18px;
  height: 18px;
}

/* About Page Responsive */
@media (max-width: 1024px) {
  .mission-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mission-visual {
    order: -1;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .approach-grid .approach-card:last-child {
    grid-column: span 2;
    max-width: 400px;
    margin: 0 auto;
  }

  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .space-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 6rem 0 3rem;
  }

  /* Timeline responsive */
  .story-timeline {
    padding-left: 50px;
  }

  .story-timeline::before {
    left: 18px;
  }

  .timeline-icon {
    left: -50px;
    width: 40px;
    height: 40px;
  }

  .timeline-icon img {
    width: 20px;
    height: 20px;
  }

  .timeline-content {
    padding: 1.25rem;
  }

  .timeline-content h3 {
    font-size: 1.15rem;
  }

  .story-quote {
    padding: 2rem 1.5rem;
  }

  .story-quote blockquote {
    font-size: 1.15rem;
  }

  .story-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .story-icon {
    width: 80px;
    height: 80px;
  }

  .story-icon img {
    width: 40px;
    height: 40px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-member {
    flex-direction: column;
    text-align: center;
  }

  .member-photo {
    margin: 0 auto;
  }

  .member-badges {
    justify-content: center;
  }

  .approach-grid {
    grid-template-columns: 1fr;
  }

  .approach-grid .approach-card:last-child {
    grid-column: span 1;
    max-width: none;
  }

  .achievements-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-box {
    padding: 2.5rem 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .achievements-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }

  .space-features {
    justify-content: center;
  }
}

/* Footer center alignment for small screens */
@media (max-width: 510px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-column {
    text-align: center;
  }

  .footer-column ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-column p {
    text-align: center;
  }
}
