/********** Template CSS **********/
:root {
  --primary: #1a237e;
  --light: #e8eaf6;
  --dark: #0d1b2a;
  --bg-color: #f8f9ff;
  --accent-color: #3f51b5;
  --text-color: #424242;
  --white: #ffffff;
  --bg-primary: #e3f2fd;
  --text-primary: #212121;
  --heading-color: #1a237e;
  --border-radius: 12px;
  --shadow: 0 4px 20px rgba(63, 81, 181, 0.15);
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* Global font family */
body, html {
  font-family: 'Outfit', sans-serif;
}

.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: linear-gradient(135deg, #1a237e 0%, #0d1b2a 100%);
  padding: 5rem 1.5rem 3rem;
  font-family: 'Outfit', sans-serif;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.innenkraft-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.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: 2.5rem;
  font-weight: 800;
  color: #ffd700;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.branding .brand-logo:hover {
  color: #ffed4e;
  transform: scale(1.05);
}

.brand-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-weight: 400;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: #ffd700;
  letter-spacing: 1px;
}

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

.footer-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  border-radius: 8px;
}

.footer-link:hover {
  color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
  transform: translateX(5px);
}

.footer-link .material-icons-outlined {
  font-size: 1.3rem;
  color: #ffd700;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-line a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.contact-line a:hover {
  color: #ffd700;
  text-decoration: underline;
  transform: translateX(3px);
}

.contact-line .material-icons-outlined {
  font-size: 1.3rem;
  color: #ffd700;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.footer-bottom {
  text-align: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 2rem;
  font-weight: 400;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-column {
    min-width: 100%;
  }
}



/* Google Fonts - Outfit */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&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: var(--gradient-primary);
  padding: 16px 0;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(63, 81, 181, 0.3);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.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: 32px;
  margin-right: 12px;
  color: #ffd700;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.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: 3px;
  background: #ffd700;
  border-radius: 2px;
  transition: width 0.3s ease;
  box-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

.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: var(--gradient-accent);
  padding: 240px 0;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(79, 172, 254, 0.9) 0%, rgba(0, 242, 254, 0.8) 100%);
  z-index: 1;
}

.hero-container {
  display: flex;
  flex-direction: column-reverse;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

@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: 3.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.hero-text {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-btn {
  display: inline-block;
  padding: 18px 40px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #1a237e;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.1rem;
}

.hero-btn:hover {
  background: linear-gradient(135deg, #ffed4e, #ffd700);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.hero-side {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-values {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
  .hero-values {
    flex-direction: row;
  }
}

.value-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  flex: 1;
}

.value-block:hover {
  background: rgba(63, 81, 181, 0.05);
  transform: translateY(-2px);
}

.value-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

.value-icon .material-icons {
  font-size: 1.8rem;
  color: white;
}

.value-content {
  flex: 1;
}

.value-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.3rem;
}

.value-description {
  font-size: 0.9rem;
  color: var(--text-color);
  line-height: 1.4;
  margin: 0;
}

.about-section {
  background: linear-gradient(135deg, #f8f9ff 0%, #e8eaf6 100%);
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="waves" width="100" height="20" patternUnits="userSpaceOnUse"><path d="M0,10 Q25,0 50,10 T100,10 V20 H0 Z" fill="%23667eea" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23waves)"/></svg>');
  opacity: 0.4;
  z-index: 1;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
  position: relative;
  z-index: 2;
}

@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: 24px;
  box-shadow: 0 20px 60px rgba(63, 81, 181, 0.2);
  position: relative;
  z-index: 2;
  border: 4px solid transparent;
  background: var(--gradient-accent);
  padding: 4px;
}

.about-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(63, 81, 181, 0.2), transparent 70%);
  border-radius: 50%;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.2; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.3; }
}

.about-text {
  text-align: left;
}

.about-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-description {
  font-size: 1.3rem;
  color: var(--text-color);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  font-weight: 400;
}

.about-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  padding: 1.2rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(63, 81, 181, 0.1);
  color: var(--text-primary);
  border: 1px solid rgba(63, 81, 181, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.about-features i {
  font-size: 1.5rem;
  color: var(--accent-color);
  filter: drop-shadow(0 2px 4px rgba(63, 81, 181, 0.2));
}

.about-features li:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 35px rgba(63, 81, 181, 0.15);
  border-color: rgba(63, 81, 181, 0.2);
}
.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: 120px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

.programs-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagons" width="30" height="30" patternUnits="userSpaceOnUse"><polygon points="15,5 25,12.5 25,22.5 15,30 5,22.5 5,12.5" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagons)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.programs-heading {
  text-align: center;
  font-size: 3.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.programs-cards {
  display: flex;
  flex-direction: column;
  gap: 50px;
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .programs-cards {
    flex-direction: row;
  }
}

.program-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  border-radius: 28px;
  padding: 50px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  flex: 1;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.program-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.program-icon-circle {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 8px 25px rgba(63, 81, 181, 0.3);
}

.program-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 25px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.program-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.program-list li {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  color: var(--text-color);
  font-weight: 400;
}

.program-list i {
  font-size: 1.6rem;
  margin-right: 15px;
  color: var(--accent-color);
  filter: drop-shadow(0 2px 4px rgba(63, 81, 181, 0.2));
}


/* 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: 100px 20px;
  background: linear-gradient(135deg, #f8f9ff 0%, #e8eaf6 100%);
  position: relative;
}

.advantages-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23667eea" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23667eea" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23667eea" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23667eea" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23667eea" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.advantages-header {
  max-width: 720px;
  margin: 0 auto 80px;
  color: var(--heading-color);
  text-align: center;
}

.advantages-title {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.advantages-subtitle {
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--text-color);
  font-weight: 400;
}

.advantages-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (min-width: 768px) {
  .advantages-cards {
    flex-direction: row;
  }
}

.advantage-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(63, 81, 181, 0.15);
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  border: 1px solid rgba(63, 81, 181, 0.1);
  position: relative;
}

.advantage-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 50px rgba(63, 81, 181, 0.25);
  border-color: rgba(63, 81, 181, 0.2);
}

.advantage-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 4px solid transparent;
  background: var(--gradient-accent);
  padding: 4px;
  border-radius: 20px 20px 0 0;
}

.advantage-text {
  padding: 30px 30px 40px;
  color: var(--text-primary);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.advantage-text h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--heading-color);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.advantage-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-color);
  font-weight: 400;
}

/* Styles pour le bloc Histoires de réussite */
.innenkraft-contact {
  background: linear-gradient(135deg, #f8f9ff 0%, #e8eaf6 100%);
  padding: 120px 20px;
  font-family: 'Outfit', sans-serif;
  position: relative;
  overflow: hidden;
}

.innenkraft-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circles" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="%23667eea" opacity="0.1"/><circle cx="60" cy="60" r="1" fill="%23667eea" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23circles)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.innenkraft-title {
  text-align: center;
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 2;
}

.innenkraft-intro {
  text-align: center;
  font-size: 1.3rem;
  max-width: 620px;
  margin: 0 auto 4rem;
  color: var(--text-color);
  font-weight: 400;
  position: relative;
  z-index: 2;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-box {
  flex: 1 1 280px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1.2rem;
  box-shadow: 0 12px 40px rgba(63, 81, 181, 0.15);
  border: 1px solid rgba(63, 81, 181, 0.1);
  transition: all 0.3s ease;
}

.contact-box .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
  filter: drop-shadow(0 2px 4px rgba(63, 81, 181, 0.2));
}

.contact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(63, 81, 181, 0.2);
  border-color: rgba(63, 81, 181, 0.2);
}

.contact-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-form {
  flex: 1 1 450px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(63, 81, 181, 0.15);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border: 1px solid rgba(63, 81, 181, 0.1);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field label {
  font-weight: 600;
  color: var(--heading-color);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-field input {
  padding: 1rem 1.2rem;
  font-size: 1.1rem;
  border: 2px solid rgba(63, 81, 181, 0.2);
  border-radius: 12px;
  background: #ffffff;
  color: var(--text-primary);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(63, 81, 181, 0.05);
}

.form-field input:focus {
  border-color: var(--accent-color);
  outline: none;
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(63, 81, 181, 0.15);
  transform: translateY(-1px);
}

.contact-btn {
  padding: 1.2rem 2rem;
  background: var(--gradient-primary);
  color: white;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(63, 81, 181, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.1rem;
}

.contact-btn:hover {
  background: var(--gradient-secondary);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(63, 81, 181, 0.4);
}

.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;
  }
}




/* New Pricing Section Styles */
.new-pricing-section {
  padding: 120px 20px;
  background: linear-gradient(135deg, #f8f9ff 0%, #e8eaf6 100%);
  position: relative;
  overflow: hidden;
}

.new-pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="light-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="%23667eea" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23667eea" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23light-pattern)"/></svg>');
  opacity: 0.4;
  z-index: 1;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.pricing-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pricing-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-subtitle {
  font-size: 1.3rem;
  color: var(--text-color);
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  padding: 8px;
  box-shadow: 0 8px 25px rgba(63, 81, 181, 0.1);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4rem;
}

.tab-button {
  flex: 1;
  padding: 12px 24px;
  border: none;
  background: transparent;
  color: var(--text-color);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.tab-button.active {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(63, 81, 181, 0.3);
}

.discount-badge {
  background: #ff6b6b;
  color: white;
  font-size: 0.8rem;
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: 700;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.pricing-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 15px 50px rgba(63, 81, 181, 0.1);
  border: 1px solid rgba(63, 81, 181, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 80px rgba(63, 81, 181, 0.2);
  border-color: rgba(63, 81, 181, 0.2);
}

.pricing-card.featured {
  transform: scale(1.05);
  border: 2px solid var(--accent-color);
  box-shadow: 0 20px 60px rgba(63, 81, 181, 0.25);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: white;
  padding: 8px 24px;
  border-radius: 0 0 20px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-header {
  text-align: center;
  margin-bottom: 2rem;
}

.plan-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 25px rgba(79, 172, 254, 0.3);
}

.plan-icon .material-icons {
  font-size: 2.5rem;
  color: white;
}

.plan-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.plan-description {
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.5;
}

.card-pricing {
  text-align: center;
  margin-bottom: 2rem;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-color);
}

.amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
}

.period {
  font-size: 1.1rem;
  color: var(--text-color);
  font-weight: 500;
}

.card-features {
  margin-bottom: 2rem;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 1rem;
  color: var(--text-color);
  border-bottom: 1px solid rgba(63, 81, 181, 0.1);
}

.features-list li:last-child {
  border-bottom: none;
}

.features-list .material-icons {
  color: var(--accent-color);
  font-size: 1.2rem;
}

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

.cta-button {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(63, 81, 181, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  background: var(--gradient-secondary);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(63, 81, 181, 0.4);
}

.cta-button.primary {
  background: var(--gradient-accent);
  box-shadow: 0 8px 25px rgba(79, 172, 254, 0.3);
}

.cta-button.primary:hover {
  background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  box-shadow: 0 12px 35px rgba(79, 172, 254, 0.4);
}

.pricing-guarantee {
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(63, 81, 181, 0.1);
  max-width: 600px;
  margin: 0 auto;
}

.guarantee-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 500;
}

.guarantee-content .material-icons {
  color: var(--accent-color);
  font-size: 1.5rem;
}

/* Success Stories Section Styles */
.success-stories-section {
  padding: 120px 20px;
  background: linear-gradient(135deg, #f8f9ff 0%, #e8eaf6 100%);
  position: relative;
  overflow: hidden;
}

.success-stories-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="success-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="3" fill="%23667eea" opacity="0.1"/><circle cx="60" cy="60" r="2" fill="%23667eea" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23success-pattern)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.3rem;
  color: var(--text-color);
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}

.stories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .stories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.story-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(63, 81, 181, 0.1);
  border: 1px solid rgba(63, 81, 181, 0.1);
  transition: all 0.4s ease;
}

.story-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 80px rgba(63, 81, 181, 0.2);
  border-color: rgba(63, 81, 181, 0.2);
}

.story-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.story-card:hover .story-image img {
  transform: scale(1.05);
}

.story-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.story-overlay .material-icons {
  font-size: 2rem;
  color: var(--accent-color);
}

.story-card:hover .story-overlay {
  background: var(--accent-color);
  transform: translate(-50%, -50%) scale(1.1);
}

.story-card:hover .story-overlay .material-icons {
  color: white;
}

.story-content {
  padding: 2rem;
}

.story-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.client-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.3rem;
}

.client-info p {
  font-size: 0.9rem;
  color: var(--text-color);
  margin: 0;
}

.story-rating {
  display: flex;
  gap: 2px;
}

.story-rating .material-icons {
  font-size: 1.2rem;
  color: #ffd700;
}

.story-quote {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
  font-style: italic;
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--accent-color);
  padding-left: 1rem;
}

.story-results {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.result-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-color);
  background: rgba(63, 81, 181, 0.05);
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

.result-item .material-icons {
  font-size: 1rem;
  color: var(--accent-color);
}

.testimonials-section {
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.testimonial-item {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(63, 81, 181, 0.1);
  border: 1px solid rgba(63, 81, 181, 0.1);
  transition: all 0.3s ease;
}

.testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(63, 81, 181, 0.15);
  border-color: rgba(63, 81, 181, 0.2);
}

.testimonial-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 25px rgba(79, 172, 254, 0.3);
}

.testimonial-icon .material-icons {
  font-size: 2rem;
  color: white;
}

.testimonial-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.8rem;
}

.testimonial-description {
  font-size: 0.95rem;
  color: var(--text-color);
  line-height: 1.5;
  margin: 0;
}

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

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-subtitle {
  font-size: 1.2rem;
  color: var(--text-color);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 16px 32px;
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(63, 81, 181, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  background: var(--gradient-secondary);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(63, 81, 181, 0.4);
}

.cta-button .material-icons {
  font-size: 1.3rem;
}

/* 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;
  }
}