/********** Template CSS **********/
:root {
  --primary: #073550;
  --light: #e6f7db;
  --dark: #111a24;
  --bg-color: #f8fffc;
  --accent-color: #043d4e;
  --text-color: #666565;
  --white: #ffffff;
  --bg-primary: #dff7dd;
  --text-primary: #383838;
  --heading-color: #112413;
  --border-radius: 0;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semi-bold {
  font-weight: 600 !important;
}

.error-message {
  color: #35dc46;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
  min-height: 1.2rem;
  display: block;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.error-message:not(:empty) {
  opacity: 1;
}

/* Додатковий стиль для полів з помилками */
.form-control.error {
  border-color: #35dc46 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15) !important;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 2px;
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: #ffffff;
  font-size: 15px;
  text-transform: uppercase;
  outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: #35dc46;
}

@media (max-width: 991.98px) {
  .navbar-dark .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }
}

/* Footer Styles */
.innenkraft-footer {
  background: #f2fefe;
  padding: 4rem 1.5rem 2.5rem;
  font-family: 'Inter', sans-serif;
  color: #153432;
  border-top: 1px solid rgba(21, 52, 50, 0.1);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.footer-column {
  flex: 1 1 280px;
  min-width: 260px;
}

.branding .brand-logo {
  font-size: 2rem;
  font-weight: 700;
  color: #137c72;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1rem;
}

.branding .brand-logo:hover {
  color: #0f5a52;
}

.brand-description {
  font-size: 1rem;
  color: #305c5a;
  line-height: 1.6;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #0d3b37;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: #174c48;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #0e7f72;
}

.footer-link .material-icons-outlined {
  font-size: 1.2rem;
  color: #137c72;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
  color: #174c48;
}

.contact-line a {
  color: #174c48;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-line a:hover {
  color: #0e7f72;
  text-decoration: underline;
}

.contact-line .material-icons-outlined {
  font-size: 1.2rem;
  color: #137c72;
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: #3a5f5c;
  border-top: 1px solid rgba(21, 52, 50, 0.1);
  padding-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-column {
    min-width: 100%;
  }
}



/* Google Fonts - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

@media (max-width: 700px) {
  .cookie-wrapper {
    width: 100%;
  }
}

.cookie-wrapper {
  position: fixed;
  bottom: 0px;
  right: 0;
  width: 40%;
  background: #f2f2f2;
  padding: 15px 25px 22px;
  transition: right 0.3s ease;
  box-shadow: 0 5px 10px rgb(0, 0, 0);
  z-index: 999;
  width: 100%;

  @media (max-width: 600px) {
    width: 100%;
  }
}

.cookie-wrapper .show {
  right: 20px;
}

.hidden {
  display: none;
}

:root {
  --blue-light: #a1c4fd;
  --blue-dark: #0d47a1;
  --text-light: #ffffff;
  --accent: #ffd700;
  --transition: 0.3s ease;
}

.gradient-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(90deg, #1b3d3a, #295e59);
  padding: 14px 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

.header-logo .material-icons {
  font-size: 28px;
  margin-right: 10px;
  color: #80f8e8;
}

.header-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
}

.header-toggle span {
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.header-nav {
  display: flex;
  gap: 24px;
}

.header-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #7dfde3;
  transition: width 0.3s ease;
}

.header-nav a:hover::after {
  width: 20px;
}

@media (max-width: 991.98px) {
  .header-toggle {
    display: flex;
  }

  .header-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1c4d49;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
  }

  .header-nav.open {
    max-height: 300px;
  }

  .header-nav a {
    padding: 12px 0;
    width: 100%;
    text-align: center;
  }
}

.data {
  text-align: center;
}

.data p a {
  color: var(--accent-color);
  text-decoration: none;
  text-align: center !important;
}

.data p a:hover {
  text-decoration: underline;
}

.buttons {
  padding: 20px 0px;
  text-align: center;
}

.buttons .cookie-button {
  border: 2px solid var(--accent-color);
  color: #fff;
  padding: 8px 0;
  background: var(--accent-color);
  cursor: pointer;
  width: calc(100% / 2 - 10px);
  transition: all 0.5s ease;
  max-width: 150px;
  border-radius: 0;
}

.buttons #acceptBtn:hover {
  background-color: transparent;
  color: var(--accent-color);
}

#declineBtn {
  background-color: #fff;
  color: var(--accent-color);
}

#declineBtn:hover {
  background-color: var(--accent-color);
  color: #fff;
}

/* new styles  */
/* Variables globales */

.hero-section {
  background: #d1ece7;
  padding: 220px 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-container {
  display: flex;
  flex-direction: column-reverse;
  gap: 4rem;
}

@media (min-width: 992px) {
  .hero-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.hero-content {
  flex: 1;
  text-align: left;
}

.hero-heading {
  font-size: 2.75rem;
  font-weight: 700;
  color: #184c43;
  margin-bottom: 1.5rem;
}

.hero-text {
  font-size: 1.25rem;
  color: #2e5f58;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(45deg, #7de7d5, #b6f1ea);
  color: #00322c;
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  background: linear-gradient(45deg, #67d6c5, #a0e5dc);
}

.hero-side {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: #ffffff;
  padding: 2rem;
  border-radius: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .hero-stats {
    flex-direction: row;
  }
}

.stat-block {
  text-align: center;
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: #004a38;
}

.stat-label {
  color: #004a38;
  margin-top: 0.5rem;
}

.about-section {
  background: linear-gradient(135deg, #fff3f0, #ffe8e3);
  padding: 100px 20px;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

@media (min-width: 992px) {
  .about-container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img {
  width: 100%;
  max-width: 500px;
  border-radius: 1.5rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.about-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 112, 85, 0.25), transparent 70%);
  border-radius: 50%;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about-text {
  text-align: left;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #a6342d;
  margin-bottom: 1.2rem;
}

.about-description {
  font-size: 1.125rem;
  color: #6a2c25;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.about-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  background: #fff9f8;
  padding: 0.9rem 1.2rem;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  color: #732b24;
}

.about-features i {
  font-size: 1.3rem;
  color: #ff6f61;
}
.tips-section {
  background: linear-gradient(135deg, #f0f5f4, #e1eeec);
  padding: 140px 0;
  position: relative;
}

.tips-header {
  text-align: center;
  margin-bottom: 5rem;
}

.tips-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #184c43;
}

.tips-intro {
  font-size: 1.25rem;
  color: #3a6760;
  margin-top: 1rem;
  line-height: 1.8;
}

.tips-layout {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  height: 600px;
}

.tip-item {
  position: absolute;
  width: 260px;
  background: #ffffff;
  padding: 1.75rem;
  border-radius: 1.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  text-align: left;
}

.tip-item:hover {
  transform: translateY(-6px);
}

.tip-number {
  display: inline-block;
  background: linear-gradient(45deg, #76e4d2, #b1f5eb);
  color: #00342c;
  font-weight: bold;
  font-size: 1.1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-bottom: 1rem;
}

.tip-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: #1f5148;
  margin-bottom: 0.5rem;
}

.tip-description {
  font-size: 1rem;
  color: #3b5f56;
  line-height: 1.6;
}

.tip-top-left {
  top: 0;
  left: 0;
}

.tip-top-right {
  top: 0;
  right: 0;
}

.tip-bottom-left {
  bottom: 0;
  left: 0;
}

.tip-bottom-right {
  bottom: 0;
  right: 0;
}

.tip-center-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(0, 255, 221, 0.12), transparent 60%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.tip-center-glow {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  backdrop-filter: blur(12px);
}


.btn-primary-custom {
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: white;
  padding: 12px 32px;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary-custom:hover {
  background-color: transparent;
  color: var(--accent-color);
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-section {
    padding: 60px 0;
  }

  .stats-card {
    margin-bottom: 1.5rem;
  }
}

/* Styles pour le bloc À propos */


/* Styles pour le bloc Programmes */
.programs-section {
  padding: 100px 20px;
  background: #edfffc;
}

.programs-heading {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
  color: #0a5245;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.programs-cards {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 992px) {
  .programs-cards {
    flex-direction: row;
  }
}

.program-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 30px;
  box-shadow: 0 12px 30px rgba(0, 60, 50, 0.1);
  flex: 1;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 60, 50, 0.15);
}

.program-icon-circle {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #4ad6c3, #20b89d);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.program-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #054c42;
  margin-bottom: 20px;
}

.program-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.program-list li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #245c55;
}

.program-list i {
  font-size: 1.4rem;
  margin-right: 12px;
  color: #1aa194;
}


/* Responsive pour les nouveaux blocs */
@media (max-width: 768px) {

  .about-title,
  .programs-title {
    font-size: 2rem;
  }

  .about-image {
    height: 300px;
    margin-bottom: 2rem;
  }

  .program-card {
    padding: 2rem;
  }
}

/* Styles pour le bloc Avantages */
.advantages-section {
  padding: 80px 20px;
  background:  #edfffc;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
}

.advantages-header {
  max-width: 720px;
  margin: 0 auto 60px;
  color: #074038;
}

.advantages-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.advantages-subtitle {
  font-size: 1.25rem;
  line-height: 1.5;
  color: #0a4d41dd;
}

.advantages-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (min-width: 768px) {
  .advantages-cards {
    flex-direction: row;
  }
}

.advantage-card {
  background: #e3f7f5;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgb(20 89 81 / 0.15);
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgb(20 89 81 / 0.3);
}

.advantage-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 3px solid #49c9be;
}

.advantage-text {
  padding: 20px 25px 30px;
  color: #11433b;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.advantage-text h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #05675f;
}

.advantage-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #0a504a;
}

/* Styles pour le bloc Histoires de réussite */
.innenkraft-contact {
  background: #edfffc;
  padding: 90px 20px;
  font-family: 'Montserrat', sans-serif;
}

.innenkraft-title {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #112b32;
  text-transform: uppercase;
}

.innenkraft-intro {
  text-align: center;
  font-size: 1.2rem;
  max-width: 620px;
  margin: 0 auto 3rem;
  color: #334e52;
  font-style: italic;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-box {
  flex: 1 1 260px;
  background: #d9f6f2;
  padding: 2rem;
  border-radius: 14px;
  text-align: center;
  color: #055a4f;
  font-weight: 600;
  font-size: 1.1rem;
}

.contact-box .icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #038475;
}

.contact-link {
  color: #055a4f;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-form {
  flex: 1 1 400px;
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field label {
  font-weight: 600;
  color: #334e52;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-field input {
  padding: 0.85rem 1rem;
  font-size: 1rem;
  border: 2px solid #aae2d8;
  border-radius: 8px;
  background: #f6fffd;
  color: #333;
  transition: border-color 0.3s;
}

.form-field input:focus {
  border-color: #06a797;
  outline: none;
  background: #ffffff;
}

.contact-btn {
  padding: 0.9rem 1.4rem;
  background: #06a797;
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-btn:hover {
  background: #04897f;
}

.innenkraft-success {
  background: #edfffc;
  padding: 90px 20px;
  font-family: 'Montserrat', sans-serif;
}

.innenkraft-success-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 800;
  color: #112b32;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.innenkraft-success-intro {
  text-align: center;
  font-size: 1.1rem;
  font-style: italic;
  color: #334e52;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.success-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.success-card {
  background: #e0fbf7;
  border-radius: 16px;
  padding: 2rem;
  flex: 1 1 300px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.success-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.quote-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 1.6rem;
  color: #038475;
}

.success-text {
  margin-top: 2.5rem;
  font-size: 1rem;
  font-style: italic;
  color: #2f3e40;
  line-height: 1.6;
  min-height: 110px;
}

.success-author {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1rem;
  color: #038475;
  gap: 0.6rem;
}

@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .success-grid {
    flex-direction: column;
  }
}




/* Styles pour le bloc Tarifs */
.pricing-section-new {
  padding: 100px 20px;
  background:  #edfffc;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  color: #00ffc8;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 60px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .pricing-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-box {
  background: #eaf4f2;
  border-radius: 20px;
  padding: 2.8rem 2.5rem 3rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #11433b;
}

.pricing-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.pricing-box .box-title {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pricing-box .box-price {
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 2rem;
  color: #056c5a;
}

.pricing-box .box-price span {
  font-size: 1.3rem;
  font-weight: 500;
  color: #438a75;
}

.pricing-box .box-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
  line-height: 1.6;
  font-weight: 500;
}

.pricing-box .box-features li {
  margin-bottom: 1.1rem;
  padding-left: 1.2rem;
  position: relative;
  color: #2a5a4a;
}

.pricing-box .box-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0a7a5f;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
}

.box-button {
  text-align: center;
  background: #056c5a;
  color: #eaf4f2;
  padding: 14px 32px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.box-button:hover {
  background: #0a8f6e;
}

.highlighted {
  background: linear-gradient(135deg, #1ed6b9, #0a8f6e);
  color: #eaf4f2;
  box-shadow: 0 25px 40px rgba(14, 143, 110, 0.5);
  transform: scale(1.1);
  z-index: 10;
  position: relative;
}

.highlighted .box-title,
.highlighted .box-price,
.highlighted .box-features li {
  color: #eaf4f2;
}

.highlighted .box-features li::before {
  color: #d0f4ea;
}

.highlighted .box-button {
  background: #eaf4f2;
  color: #0a8f6e;
  font-weight: 700;
}

.highlighted .box-button:hover {
  background: #b3e5d6;
  color: #056c5a;
}

/* Styles pour le bloc Contacts */


.error-message {
  color: #d9534f;
  font-size: 0.85rem;
  margin-top: 4px;
  min-height: 18px;
  font-weight: 600;
}

.btn-submit {
  margin-top: 1rem;
  background: var(--accent-color);
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 1rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.btn-submit:hover {
  background: #a281d3;
}

@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }
}


.error-message {
  color: #35dc46;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
  display: none;
}

.btn-primary {
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: white;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-1px);
}

.btn-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(78, 21, 4, 0.25);
}

/* Responsive pour les blocs finaux */
@media (max-width: 768px) {

  .contact-title,
  .form-title {
    font-size: 2rem;
  }

  .contact-info {
    padding: 2rem;
  }

  .form-container {
    padding: 2rem;
    margin: 0 1rem;
  }

  .social-links {
    gap: 0.75rem;
  }

  .social-link {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
}