/* ========================================
   CSS Variables & Base Styles
======================================== */
:root {
  --primary-color: #006738;
  --primary-dark: #00924f;
  --white: #FFFFFF;
  --black: #131313;
  --gray: #717171;
  --light-gray: #8d8d8d;
  --shadow-light: rgba(0, 0, 0, 0.03);
  --shadow-medium: rgba(0, 0, 0, 0.25);
  --shadow-dark: rgba(0, 0, 0, 0.37);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Afacad', sans-serif;
  background-color: var(--white);
  color: var(--black);
  line-height: 1.5;
  overflow-x: hidden;
}

/* ========================================
   Navbar
======================================== */
.navbar {
  position: fixed;
  top: 3.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 0 2.5rem;
  height: 6rem;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(6.7px);
  backdrop-filter: blur(6.7px);
  border: 3px solid var(--primary-dark);
  border-radius: 3rem;
  box-shadow: 0px 4px 4px var(--shadow-medium);
  z-index: 1000;
  width: min(67rem, 95vw);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-link {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.75rem, 1.2vw, 1.5rem);
  color: var(--white);
  text-decoration: none;
  padding: 0.625rem;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.nav-link:hover {
  opacity: 0.8;
}

.nav-link-active {
  color: #abfa82 !important;
}

.nav-logo {
  width: clamp(3.75rem, 7vw, 7.2rem);
  height: clamp(3.75rem, 7vw, 7.125rem);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0px 0px 5.8px 4px var(--shadow-medium);
  background: var(--white);
  flex-shrink: 0;
}

.nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating Language Selector */
.lang-floating {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--white);
  padding: 0.5rem;
  border-radius: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.lang-flag-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  overflow: hidden;
}

.lang-flag-btn svg {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.lang-flag-btn:hover {
  transform: scale(1.1);
  border-color: var(--primary-color);
}

.lang-flag-btn.active {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(0, 103, 56, 0.3);
}

.lang-flag-btn:not(.active) {
  opacity: 0.6;
}

.lang-flag-btn:not(.active):hover {
  opacity: 1;
}

/* Mobile: Floating language selector adjustments */
@media (max-width: 768px) {
  .lang-floating {
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.35rem;
  }
  
  .lang-flag-btn {
    width: 30px;
    height: 30px;
  }
  
  .lang-flag-btn svg {
    width: 22px;
    height: 22px;
  }
}

/* Burger Menu */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 2rem;
  height: 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.nav-burger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--white);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.nav-burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(0.4rem, 0.4rem);
}

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

.nav-burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(0.5rem, -0.5rem);
}

/* ========================================
   Buttons
======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.875rem;
  border-radius: 3.125rem;
  font-family: 'Afacad', sans-serif;
  font-weight: 500;
  font-size: clamp(1.25rem, 2vw, 2rem);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  width: auto;
  min-width: fit-content;
  max-width: 100%;
  white-space: nowrap;
}

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

.btn-submit {
  background-color: var(--primary-color);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  padding: 15px 48px;
  border-radius: 5px;
  box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.12);
  margin-left: auto;
}

/* ========================================
   Section Headers
======================================== */
.section-title {
  font-family: 'Afacad', sans-serif;
  font-weight: 500;
  font-size: clamp(1.75rem, 3vw, 2.625rem);
  color: var(--black);
  text-align: center;
}

.section-title-underline {
  border-bottom: 1px solid var(--primary-color);
  padding-bottom: 5px;
  display: inline-block;
}

.section-title-white {
  color: var(--white);
  font-weight: 700;
  letter-spacing: 2px;
  border-bottom: 2px solid var(--white);
  padding-bottom: 10px;
}

.section-subtitle {
  font-size: 24px;
  color: var(--black);
  text-align: center;
  margin-top: 8px;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

/* ========================================
   Hero Section
======================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: var(--white);
  border-radius: 0 0 3.125rem 3.125rem;
  padding: 12.5rem 6.25% 6.25rem;
  overflow: hidden;
}

.hero-decoration {
  position: absolute;
  pointer-events: none;
}

.hero-decoration img {
  max-width: 100%;
  height: auto;
}

.hero-decoration-top-right {
  top: 32%;
  right: 5%;
  width: clamp(2rem, 4vw, 3.5rem);
  z-index: 2;
}

.hero-decoration-top-left {
  top: 32%;
  left: 5%;
  width: clamp(2rem, 3vw, 2.5rem);
  transform: rotate(254deg);
  z-index: 2;
}

.hero-decoration-bottom-left {
  bottom: 25%;
  left: 2%;
  width: clamp(6rem, 12vw, 10rem);
  transform: rotate(292deg);
}

.hero-decoration-bottom-right {
  bottom: 15%;
  right: 2%;
  width: clamp(8rem, 15vw, 14rem);
  transform: rotate(354deg);
}

.hero-title {
  text-align: center;
  margin-bottom: 3.125rem;
  font-size: clamp(1.75rem, 4vw, 3.5rem);
  font-weight: 400;
  max-width: 65rem;
  margin-left: auto;
  margin-right: auto;
}

.title-highlight {
  color: var(--primary-color);
  font-weight: 500;
}

.title-subtitle {
  text-transform: uppercase;
  display: block;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
  max-width: 94rem;
  margin: 0 auto;
  position: relative;
  padding-top: 2rem;
}

.hero-left,
.hero-right {
  flex: 1;
  max-width: 20rem;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  gap: 1.5rem;
  padding-top: 2rem;
}

.hero-text {
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  text-align: left;
  line-height: 1.5;
}

.hero-center {
  flex: 2;
  max-width: 47rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-circle {
  position: absolute;
  width: 90%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 103, 56, 0.1) 0%, transparent 70%);
  z-index: 0;
}

.hero-image {
  width: 100%;
  max-width: 47rem;
  aspect-ratio: 1;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

/* ========================================
   Services Section
======================================== */
.services-section {
  background-color: var(--primary-color);
  border-radius: 3.125rem 3.125rem 0 0;
  padding: 2.5rem 6.25% 5rem;
  margin-top: -3.125rem;
  position: relative;
  box-shadow: 0px -10px 27.7px var(--shadow-dark);
}

.services-header {
  text-align: center;
  margin-bottom: 3.125rem;
}

.services-header .section-title {
  width: min(25.5rem, 100%);
  margin: 0 auto 1.25rem;
}

.services-tagline {
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 2rem);
  color: var(--white);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 1.875rem;
}

.services-grid {
  display: flex;
  justify-content: center;
  gap: 1rem;
  max-width: 75rem;
  margin: 0 auto;
}

.services-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  max-width: 23.2rem;
}

.service-card {
  background: var(--white);
  border-radius: 1.25rem;
  padding: 0.5rem 0.3rem;
  box-shadow: 0px 4px 17px -5px var(--shadow-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

a.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 25px -3px var(--shadow-medium);
}

.service-icon {
  width: clamp(4rem, 6vw, 5.625rem);
  height: clamp(4rem, 6vw, 5.625rem);
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.service-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.service-title {
  font-weight: 600;
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  color: var(--primary-color);
  text-align: center;
}

.service-arrow {
  width: 1.25rem;
  height: 1.7rem;
}

.service-description {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--black);
  text-align: justify;
  padding: 0.625rem;
  height: 0.625rem;
  overflow: hidden;
  transition: height 0.3s ease;
}

.service-card:hover .service-description {
  height: auto;
  overflow: visible;
}

/* ========================================
   Process Section
======================================== */
.process-section {
  padding: 3.75rem 1rem;
  max-width: 108rem;
  margin: 0 auto;
}

.process-steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
  max-width: 90rem;
  margin: 0 auto;
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  flex: 1;
  max-width: 22rem;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--primary-color);
}

.step-number {
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 500;
}

.step-title {
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 500;
}

.step-image-container {
  position: relative;
  height: 17.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.step-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.step-description {
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  text-align: justify;
  line-height: 1.4;
}

.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(4rem, 8vw, 8rem);
  flex-shrink: 0;
  align-self: center;
  margin-top: 2rem;
}

.process-arrow img {
  width: 100%;
  height: auto;
}

.process-arrow.process-arrow-down img {
  transform: scaleX(-1);
}

/* ========================================
   Method Section
======================================== */
.method-section {
  padding: 3.75rem 1rem;
  max-width: 108rem;
  margin: 0 auto;
}

.method-grid {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  max-width: 102rem;
  margin: 0 auto;
}

.method-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex: 1;
  max-width: 26rem;
}

.method-icon {
  width: clamp(4rem, 6vw, 5.7rem);
  height: clamp(4rem, 6vw, 5.7rem);
}

.method-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.method-text {
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  text-align: center;
  min-height: 6.75rem;
}

/* ========================================
   About Section
======================================== */
.about-section {
  position: relative;
  padding: 2.5rem 10%;
  min-height: 18.75rem;
}

.about-decoration {
  position: absolute;
  pointer-events: none;
}

.about-decoration img {
  max-width: 100%;
  height: auto;
}

.about-decoration-right {
  top: 1.25rem;
  right: 0;
  width: clamp(15rem, 26vw, 25rem);
  transform: rotate(17deg);
}

.about-decoration-left {
  top: 3.75rem;
  left: 0;
  width: clamp(12rem, 23vw, 22rem);
  transform: rotate(319deg);
}

.about-card {
  background: transparent;
  border: 1px solid var(--primary-color);
  border-radius: 3.125rem;
  padding: 1rem 0.7rem;
  box-shadow: 0px -3px 23.4px var(--shadow-medium);
  max-width: 87rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-title {
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.625rem);
  color: var(--black);
  text-align: center;
  border-bottom: 1px solid var(--primary-color);
  padding-bottom: 0.625rem;
  max-width: 30rem;
  margin: 0 auto 1rem;
}

.about-text {
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  text-align: center;
  max-width: 85.5rem;
  margin: 0 auto;
  line-height: 1.5;
}

.text-highlight {
  color: var(--primary-color);
  font-weight: 500;
}

/* ========================================
   Expertise Section
======================================== */
.expertise-section {
  position: relative;
  padding: 3.75rem 6.25%;
  min-height: 47rem;
}

.expertise-decoration {
  position: absolute;
  top: 10.625rem;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(30rem, 55vw, 54rem);
  pointer-events: none;
  z-index: 0;
}

.expertise-decoration img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.expertise-grid {
  display: flex;
  justify-content: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.expertise-card {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border: 2px solid var(--primary-color);
  border-radius: 1.25rem;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex: 1;
  max-width: 40rem;
  min-height: 38rem;
  justify-content: center;
}

.expertise-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.expertise-icon {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

.expertise-title {
  font-weight: 500;
  font-size: clamp(1.5rem, 2vw, 2rem);
  color: var(--primary-color);
}

.expertise-list {
  font-size: clamp(1rem, 2vw, 2rem);
  list-style-position: inside;
  padding: 0 1.25rem;
}

.expertise-list li {
  margin-bottom: 8px;
}

/* ========================================
   Audience Section
======================================== */
.audience-section {
  padding: 3.75rem 1rem;
  min-height: 34rem;
}

.audience-grid {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  max-width: 97rem;
  margin: 0 auto;
}

.audience-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  max-width: 32rem;
}

.audience-image {
  width: clamp(15rem, 22vw, 21.25rem);
  height: clamp(12rem, 16vw, 16rem);
  margin-bottom: 0.625rem;
}

.audience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.audience-title {
  font-weight: 500;
  font-size: clamp(1.25rem, 2vw, 2rem);
  color: var(--black);
  text-align: center;
  margin-bottom: 0.5rem;
}

.audience-description {
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  text-align: center;
}

/* ========================================
   Contact Section
======================================== */
.contact-section {
  padding: 5rem 5%;
  background: linear-gradient(135deg, #f8fdf9 0%, #e8f5eb 100%);
}

.contact-container {
  max-width: 75rem;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-top: 1rem;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-info-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 103, 56, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.contact-link {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: var(--dark-green);
  text-decoration: underline;
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(0, 103, 56, 0.1);
  background: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
}

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

.btn-submit svg {
  transition: transform 0.2s ease;
}

.btn-submit:hover svg {
  transform: translateX(4px);
}

/* Form Success/Error States */
.form-message {
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 500;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Responsive Contact */
@media (max-width: 48rem) {
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    order: 2;
  }
  
  .contact-form {
    order: 1;
  }
}

/* ========================================
   Footer
======================================== */
.footer {
  background-color: var(--primary-color);
  padding: 3.125rem 6.25%;
  min-height: 22.5rem;
}

.footer-content {
  display: flex;
  gap: clamp(2rem, 6vw, 6.25rem);
  max-width: 95.5rem;
  margin: 0 auto;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-about {
  flex: 1;
  max-width: 26.25rem;
}

.footer-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(1.125rem, 1.5vw, 1.5rem);
  color: var(--white);
}

.footer-text {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.875rem, 1.2vw, 1.125rem);
  color: var(--white);
  line-height: 1.5;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links li a {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.3s ease;
}

.footer-links li a:hover {
  opacity: 0.8;
}

.footer-links li a::before {
  content: '▶';
  font-size: 10px;
}

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 90rem) {
  .navbar {
    gap: 1rem;
    padding: 0 1.875rem;
  }
  
  .nav-links {
    gap: 0.75rem;
  }
  
  .hero-section {
    padding: 11.25rem 3.75rem 5rem;
  }
}

@media (max-width: 75rem) {
  .navbar {
    height: 5rem;
  }
  
  .nav-links {
    gap: 0.5rem;
  }
  
  .nav-link {
    padding: 0.4rem;
  }
  
  .hero-content {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-left,
  .hero-right {
    flex: none;
    width: 100%;
    max-width: 37.5rem;
    align-items: center;
    text-align: center;
  }
  
  .hero-text {
    text-align: center;
  }
  
  .hero-center {
    max-width: 31.25rem;
  }
  
  .services-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .process-steps {
    flex-direction: column;
    align-items: center;
  }
  
  .process-arrow {
    display: none;
  }
  
  .expertise-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .expertise-card {
    width: 100%;
    max-width: 40rem;
  }
}

@media (max-width: 48rem) {
  .navbar {
    width: min(90vw, 20rem);
    height: auto;
    padding: 1rem;
    top: 1.25rem;
    flex-direction: column;
    gap: 0;
    border-radius: 1.5rem;
  }
  
  .navbar:not(.nav-open) {
    width: auto;
    height: auto;
    padding: 0.75rem 1rem;
    flex-direction: row;
  }
  
  .nav-burger {
    display: flex;
  }
  
  .navbar:not(.nav-open) .nav-links {
    display: none;
  }
  
  .navbar:not(.nav-open) .nav-logo {
    display: none;
  }
  
  .navbar.nav-open {
    width: min(90vw, 20rem);
    padding: 1.5rem;
    gap: 1rem;
  }
  
  .navbar.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }
  
  .navbar.nav-open .nav-link {
    padding: 0.75rem;
    text-align: center;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
  }
  
  .navbar.nav-open .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  .navbar.nav-open .nav-logo {
    width: 4rem;
    height: 4rem;
    margin: 0.5rem 0;
  }
  
  .hero-section {
    padding: 9.375rem 1.25rem 3.75rem;
    min-height: auto;
  }
  
  .btn-primary {
    width: auto;
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }
  
  .services-section {
    padding: 2.5rem 1.25rem 3.75rem;
  }
  
  .services-column {
    width: 100%;
    max-width: 23.2rem;
  }
  
  .method-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .audience-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-container {
    flex-direction: column;
  }
  
  .contact-info {
    width: 100%;
    min-height: 25rem;
  }
  
  .contact-form {
    padding: 2.5rem 1.25rem;
  }
  
  .form-row {
    flex-direction: column;
    gap: 1.25rem;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 2.5rem;
  }
  
  .footer-about {
    max-width: 100%;
  }
}

@media (max-width: 30rem) {
  .navbar.nav-open {
    width: 90vw;
  }
}

/* ========================================
   Services Page Specific Styles
======================================== */

.services-page-container {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: var(--white);
}

.service-page-section {
  padding: 4rem 6.25%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.service-page-section.alt-bg {
  background-color: rgba(149, 222, 183, 0.25);
  border-radius: 30px;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.15);
  margin: 2rem 0;
}

/* Service Title Pill */
.service-pill-title {
  background-color: #abfa82;
  border-radius: 50px;
  padding: 10px 40px;
  text-align: center;
  margin-bottom: 2rem;
  display: inline-block;
}

.service-pill-title h2 {
  font-family: 'Afacad', sans-serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--black);
  margin: 0;
  white-space: pre-wrap;
}

/* Two Column Layout */
.service-content-grid {
  display: flex;
  width: 100%;
  max-width: 80rem;
  gap: 3rem;
  align-items: center;
  justify-content: center;
}

/* Reverse layout for alternating sections */
.service-page-section:nth-child(even) .service-content-grid {
  flex-direction: row-reverse;
}

.service-text-column {
  flex: 1.5;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-image-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 25rem;
}

/* Image Styling */
.service-image-wrapper {
  width: 100%;
  aspect-ratio: 409/436;
  border-radius: 20px;
  box-shadow: 2px 4px 30px 3px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  position: relative;
}

.service-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CTA Pill Button */
.service-cta-pill {
  background-color: var(--primary-color);
  border-radius: 50px;
  padding: 10px 20px;
  width: 80%;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.5rem;
}

.service-cta-pill:hover {
  background-color: var(--primary-dark);
}

.service-cta-pill span {
  font-family: 'Afacad', sans-serif;
  font-weight: 500;
  font-size: clamp(1.1rem, 1.5vw, 1.5rem);
  color: var(--white);
}

/* Typography */
.service-subtitle {
  font-family: 'Afacad', sans-serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 2vw, 2rem);
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.service-description-text {
  font-family: 'Afacad', sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  color: var(--black);
  text-align: justify;
  line-height: 1.5;
}

/* Lists and Sub-blocks */
.service-sub-block {
  margin-top: 1rem;
}

.service-sub-blocks-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.service-sub-blocks-row .service-sub-block {
  flex: 1;
  min-width: 200px;
}

.service-sub-title {
  font-family: 'Afacad', sans-serif;
  font-weight: 500;
  font-size: clamp(1.25rem, 1.5vw, 1.5rem);
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.service-list {
  list-style-type: disc;
  padding-left: 1.5rem;
}

.service-list li {
  font-family: 'Afacad', sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  color: var(--black);
  margin-bottom: 0.5rem;
}

/* Modalities Row */
.service-modalities {
  display: flex;
  gap: 15px;
  align-items: center;
  margin: 1rem 0;
}

.service-modalities img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Formats Pills */
.formats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.formats-row-vertical {
  flex-direction: column;
}

.format-pill {
  border: 1px solid #14ae5c;
  border-radius: 50px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.format-pill span {
  font-family: 'Afacad', sans-serif;
  font-weight: 400;
  font-size: clamp(0.9rem, 1.25vw, 1.25rem);
  color: var(--black);
  text-align: center;
}

/* Footer Specific Adjustments */
.footer-dark {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 2.5rem 6.25%;
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 90rem;
  margin: 0 auto;
}

.footer-col h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.footer-contact-item img {
  width: 14px;
  height: 14px;
}

.footer-contact-text {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
}

.footer-social-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
  text-decoration: none;
  color: var(--white);
  transition: opacity 0.3s ease;
}

.footer-social-item:hover {
  opacity: 0.8;
}

.footer-link {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: opacity 0.3s ease;
}

.footer-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.footer-social-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social-icon svg {
  width: 18px;
  height: 18px;
}

.footer-social-icon img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.footer-description p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

/* Responsive Adjustments for Services Page */
@media (max-width: 900px) {
  .service-content-grid {
    flex-direction: column !important;
  }
  
  .service-image-column {
    width: 100%;
    max-width: 100%;
  }

  .service-image-wrapper {
    max-width: 25rem;
  }

  .service-text-column {
    width: 100%;
  }
}

/* ========================================
   Formations Page Specific Styles
======================================== */

.formations-page-container {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.formations-bg-decoration {
  position: absolute;
  top: 15rem;
  left: 0;
  width: 100%;
  max-width: 100rem;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.formations-bg-decoration img {
  width: 100%;
  height: auto;
}

/* Hero Section */
.formations-hero {
  position: relative;
  padding: 2rem 6.25%;
  z-index: 1;
}

.formations-hero-decoration {
  position: absolute;
  top: 0;
  left: 5%;
  width: 5rem;
  transform: rotate(-15deg);
  pointer-events: none;
}

.formations-hero-decoration img {
  width: 100%;
  height: auto;
}

.formations-hero-content {
  display: flex;
  gap: 4rem;
  align-items: center;
  max-width: 80rem;
  margin: 0 auto;
}

.formations-hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.formations-hero-title {
  font-family: 'Afacad', sans-serif;
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 3rem);
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--black);
}

.formations-hero-description {
  font-family: 'Afacad', sans-serif;
  font-weight: 400;
  font-size: clamp(1.125rem, 1.5vw, 1.5rem);
  color: var(--black);
  text-align: justify;
  line-height: 1.5;
}

.formations-hero-image {
  flex: 0 0 33rem;
  max-width: 33rem;
  border-radius: 50px;
  overflow: hidden;
}

.formations-hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Info Section */
.formations-info-section {
  position: relative;
  padding: 3rem 6.25%;
  z-index: 1;
}

.formations-info-grid {
  display: flex;
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
  justify-content: center;
}

.formations-info-card {
  flex: 1;
  max-width: 40rem;
  border: 1px solid var(--primary-color);
  border-radius: 20px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.formations-card-title {
  font-family: 'Afacad', sans-serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 2vw, 2rem);
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.formations-card-intro {
  font-family: 'Afacad', sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 1.25vw, 1.5rem);
  color: var(--black);
  margin-bottom: 1rem;
}

.formations-list {
  list-style-type: disc;
  padding-left: 2.5rem;
  font-family: 'Afacad', sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 1.25vw, 1.5rem);
  color: var(--black);
}

.formations-list li {
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.formations-list strong {
  font-weight: 500;
}

/* Pedagogical Formats Section */
.formations-formats-section {
  position: relative;
  padding: 3rem 6.25%;
  background: rgba(181, 255, 216, 0.25);
  border-radius: 20px 20px 0 0;
  box-shadow: 0px -4px 30px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.formations-section-title {
  font-family: 'Afacad', sans-serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 2vw, 2rem);
  color: var(--primary-color);
  margin-bottom: 2rem;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.formations-formats-grid {
  display: flex;
  gap: 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
  justify-content: center;
}

.formations-format-card {
  flex: 1;
  max-width: 26rem;
  border: 1px solid var(--primary-color);
  border-radius: 20px;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.format-card-title {
  font-family: 'Afacad', sans-serif;
  font-weight: 500;
  font-size: clamp(1.25rem, 1.75vw, 2rem);
  color: var(--black);
}

.format-card-content {
  font-family: 'Afacad', sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 1.25vw, 1.5rem);
  color: var(--black);
}

.format-card-content p {
  margin-bottom: 1rem;
}

.text-muted {
  color: #525252;
  font-size: 0.9em;
}

.format-list {
  list-style-type: disc;
  padding-left: 2rem;
}

.format-list li {
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.format-list strong {
  font-weight: 500;
}

/* Themes & Benefits Section */
.formations-themes-section {
  position: relative;
  padding: 3rem 6.25%;
  z-index: 1;
}

.formations-themes-grid {
  display: flex;
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
  align-items: flex-start;
}

.formations-themes-column {
  flex: 1;
}

.formations-column-title {
  font-family: 'Afacad', sans-serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 2vw, 2rem);
  color: var(--black);
  margin-bottom: 1rem;
}

.formations-themes-list,
.formations-benefits-list {
  list-style-type: disc;
  padding-left: 2rem;
  font-family: 'Afacad', sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 1.25vw, 1.5rem);
  color: var(--black);
}

.formations-themes-list li,
.formations-benefits-list li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.formations-themes-list strong {
  font-weight: 500;
}

.benefit-highlight {
  font-weight: 500;
  color: var(--primary-color);
}

.formations-divider {
  width: 2px;
  background-color: var(--primary-color);
  align-self: stretch;
  min-height: 20rem;
}

/* Pedagogical Method Section */
.formations-method-section {
  position: relative;
  padding: 3rem 6.25% 5rem;
  z-index: 1;
}

.formations-section-title-center {
  font-family: 'Afacad', sans-serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 2vw, 2rem);
  color: var(--black);
  text-align: center;
  margin-bottom: 3rem;
}

/* Conteneur principal avec flex */
.method-process-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  max-width: 75rem;
  margin: 0 auto;
  z-index: 1;
}

/* Courbe SVG en arrière-plan */
.method-curve-svg {
  position: absolute;
  top: 2.5rem;
  left: 0;
  width: 100%;
  height: 15rem;
  z-index: -1;
  overflow: visible;
}

/* Style d'une étape */
.method-step {
  width: 18%;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Décalage des étapes paires (2 et 4) vers le bas */
.method-step:nth-child(even) {
  margin-top: 11rem;
}

.method-number {
  font-family: 'Albert Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(4rem, 6vw, 5rem);
  color: rgba(149, 222, 183, 0.75);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.method-step-title {
  font-family: 'Afacad', sans-serif;
  font-weight: 600;
  font-size: clamp(1.1rem, 1.3vw, 1.35rem);
  color: var(--primary-color);
  margin: 0.25rem 0;
}

.method-step-desc {
  font-family: 'Afacad', sans-serif;
  font-weight: 400;
  font-size: clamp(0.9rem, 1.1vw, 1.1rem);
  color: var(--black);
  text-align: center;
  line-height: 1.4;
}

.method-curve-svg {
  width: 100%;
  height: 6rem;
  margin: -3rem 0;
  z-index: -1;
}

/* Responsive Adjustments for Formations Page */
@media (max-width: 75rem) {
  .formations-hero-content {
    flex-direction: column;
  }
  
  .formations-hero-image {
    flex: none;
    max-width: 100%;
    width: 100%;
  }
  
  .formations-info-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .formations-info-card {
    max-width: 100%;
  }
  
  .formations-formats-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .formations-format-card {
    max-width: 100%;
    width: 100%;
  }
  
  .formations-themes-grid {
    flex-direction: column;
  }
  
  .formations-divider {
    width: 100%;
    height: 2px;
    min-height: auto;
  }
}

@media (max-width: 48rem) {
  .method-process-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  
  .method-step {
    width: 100%;
    max-width: 20rem;
  }
  
  .method-step:nth-child(even) {
    margin-top: 0;
  }
  
  .method-curve-svg {
    display: none;
  }
  
  .method-number {
    font-size: 4rem;
  }
  
  .process-steps {
    flex-direction: column;
    align-items: center;
  }
  
  .process-arrow {
    transform: rotate(90deg);
    margin: 1rem 0;
  }
  
  .process-step {
    max-width: 100%;
  }
}

/* ========================================
   Legal Pages Styles
======================================== */
.legal-page {
  padding: 4rem 5%;
  max-width: 900px;
  margin: 0 auto;
  min-height: 60vh;
}

.legal-page h1 {
  font-family: 'Afacad', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 700;
}

.legal-page .last-update {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 3rem;
  font-style: italic;
}

.legal-page h2 {
  font-family: 'Afacad', sans-serif;
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.legal-page h3 {
  font-family: 'Afacad', sans-serif;
  font-size: 1.2rem;
  color: var(--black);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.legal-page p {
  font-family: 'Afacad', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--black);
  margin-bottom: 1rem;
}

.legal-page ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-page li {
  font-family: 'Afacad', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.legal-page a {
  color: var(--primary-color);
  text-decoration: underline;
}

.legal-page a:hover {
  color: var(--primary-dark);
}

@media (max-width: 48rem) {
  .legal-page {
    padding: 2rem 5%;
  }
  
  .legal-page h2 {
    font-size: 1.3rem;
    margin-top: 2rem;
  }
}
