/********** Template CSS **********/
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #1E3A5F;
  --light: #E3F2FD;
  --dark: #0A1F3A;
  --bg-color: #F5F8FC;
  --accent-color: #3B6FA8;
  --text-color: #2C3E50;
  --white: #ffffff;
  --bg-primary: #CFE3F5;
  --text-primary: #1A2F4A;
  --heading-color: #0D1F35;
  --border-radius: 12px;
  --shadow: 0 4px 12px rgba(30, 58, 95, 0.2);
  --font-family: 'Barlow Condensed', sans-serif;
  --accent-hover: #2D5A8A;
  --accent-light: #5A8FC4;
  --dark-blue: #0A1F3A;
  --medium-blue: #1E3A5F;
  --light-blue: #3B6FA8;
  --sky-blue: #5A8FC4;
  --pale-blue: #CFE3F5;
}

* {
  font-family: var(--font-family);
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semi-bold {
  font-weight: 600 !important;
}

.error-message {
  color: #E74C3C;
  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: #E74C3C !important;
  box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 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: var(--accent-light);
}

@media (max-width: 991.98px) {
  .navbar-dark .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }
}

/* ============================================
   NEW FOOTER STYLES
   ============================================ */
.new-footer {
  background: linear-gradient(180deg, #1a0f28 0%, #0d0815 100%);
  color: var(--white);
  padding: 5rem 0 2rem;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}

.new-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-color), var(--primary), var(--accent-color), transparent);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-info {
  max-width: 350px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-brand-icon {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-color), var(--primary));
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(162, 155, 254, 0.4);
}

.footer-brand-icon .material-icons {
  font-size: 32px;
  color: var(--white);
}

.footer-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 16px;
}

.footer-brand-title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  margin: 0;
  background: linear-gradient(135deg, var(--white), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-text {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.footer-social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-icon-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(162, 155, 254, 0.15);
  border: 2px solid rgba(162, 155, 254, 0.3);
  border-radius: 12px;
  color: var(--accent-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon-link:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--white);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 6px 20px rgba(162, 155, 254, 0.4);
}

.social-icon-link .material-icons {
  font-size: 22px;
}

.footer-section-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), var(--primary));
  border-radius: 2px;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-nav-list li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-nav-list li a::before {
  content: '→';
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  color: var(--accent-color);
}

.footer-nav-list li a:hover {
  color: var(--accent-light);
  padding-left: 5px;
}

.footer-nav-list li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(162, 155, 254, 0.15);
  border-radius: 12px;
  flex-shrink: 0;
}

.contact-icon .material-icons {
  font-size: 22px;
  color: var(--accent-color);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-value {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-value:hover {
  color: var(--accent-light);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(162, 155, 254, 0.3), transparent);
  margin: 2rem 0;
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1.5rem;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 0;
}

.footer-motto {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  font-style: italic;
  margin: 0;
}

/* Footer Responsive */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  
  .footer-info {
    max-width: 100%;
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .new-footer {
    padding: 3rem 0 1.5rem;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-info {
    grid-column: 1;
  }
  
  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}


/* Google Fonts - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

/* ============================================
   COOKIE BANNER STYLES
   ============================================ */
.cookie-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: none;
}

.cookie-wrapper.show {
  transform: translateY(0);
  pointer-events: all;
}

.cookie-wrapper.hidden {
  display: none;
}

.cookie-container {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--medium-blue) 50%, var(--primary) 100%);
  padding: 2rem 2.5rem;
  box-shadow: 0 -8px 40px rgba(10, 31, 58, 0.4);
  border-top: 4px solid var(--accent-color);
  position: relative;
  overflow: hidden;
}

.cookie-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.cookie-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.cookie-icon-wrapper {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-color), var(--light-blue));
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(59, 111, 168, 0.4);
  flex-shrink: 0;
}

.cookie-icon-wrapper .material-icons {
  font-size: 32px;
  color: var(--white);
}

.cookie-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.cookie-content {
  margin-bottom: 1.5rem;
}

.cookie-text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  max-width: 900px;
}

.cookie-link {
  color: var(--accent-light);
  text-decoration: underline;
  text-decoration-color: rgba(90, 143, 196, 0.5);
  text-underline-offset: 3px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.cookie-link:hover {
  color: var(--white);
  text-decoration-color: var(--white);
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-family);
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}

.cookie-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.cookie-button:hover::before {
  width: 300px;
  height: 300px;
}

.cookie-button .material-icons {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.cookie-button:hover .material-icons {
  transform: scale(1.2);
}

.cookie-button-accept {
  background: linear-gradient(135deg, var(--accent-color), var(--light-blue));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(59, 111, 168, 0.4);
}

.cookie-button-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(59, 111, 168, 0.6);
  background: linear-gradient(135deg, var(--light-blue), var(--accent-color));
}

.cookie-button-decline {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.cookie-button-decline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Cookie Banner Responsive */
@media (max-width: 768px) {
  .cookie-container {
    padding: 1.5rem 1.5rem;
  }

  .cookie-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .cookie-icon-wrapper {
    width: 48px;
    height: 48px;
  }

  .cookie-icon-wrapper .material-icons {
    font-size: 28px;
  }

  .cookie-title {
    font-size: 1.25rem;
  }

  .cookie-text {
    font-size: 0.95rem;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-button {
    width: 100%;
    padding: 1rem 2rem;
  }
}

@media (max-width: 480px) {
  .cookie-container {
    padding: 1.25rem 1.25rem;
  }

  .cookie-title {
    font-size: 1.1rem;
  }

  .cookie-text {
    font-size: 0.9rem;
  }
}

:root {
  --blue-light: #C4B9FF;
  --blue-dark: #6C5CE7;
  --text-light: #ffffff;
  --accent: #A29BFE;
  --transition: 0.3s ease;
}

/* ============================================
   NEW HEADER STYLES
   ============================================ */
.new-header {
  background: linear-gradient(135deg, rgba(45, 27, 61, 0.98), rgba(26, 15, 40, 0.98));
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 2rem 0;
  margin-top: 2rem;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 8px 32px rgba(45, 27, 61, 0.3);
  position: relative;
  z-index: 1000;
}

.new-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--primary), var(--accent-color));
  border-radius: 0 0 10px 10px;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.header-brand:hover {
  transform: translateY(-2px);
}

.brand-icon-wrapper {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-color), var(--primary));
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(162, 155, 254, 0.4);
  transition: all 0.3s ease;
}

.header-brand:hover .brand-icon-wrapper {
  box-shadow: 0 8px 25px rgba(162, 155, 254, 0.5);
  transform: rotate(5deg);
}

.brand-icon-wrapper .material-icons {
  font-size: 30px;
  color: var(--white);
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 14px;
}

.brand-name {
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--white), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-item {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), var(--primary));
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-item:hover {
  color: var(--accent-light);
}

.nav-item:hover::before {
  width: 100%;
}

.nav-button {
  background: linear-gradient(135deg, var(--accent-color), var(--primary));
  padding: 0.7rem 2rem;
  border-radius: 30px;
  color: var(--white) !important;
  box-shadow: 0 4px 15px rgba(162, 155, 254, 0.35);
  transition: all 0.3s ease;
  margin-left: 0.5rem;
}

.nav-button::before {
  display: none;
}

.nav-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(162, 155, 254, 0.5);
  background: linear-gradient(135deg, var(--accent-hover), var(--primary));
  color: var(--white) !important;
}

.menu-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.menu-line {
  width: 100%;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.menu-toggle-btn.active .menu-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle-btn.active .menu-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.menu-toggle-btn.active .menu-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Header Responsive */
@media (max-width: 991.98px) {
  .new-header {
    margin-top: 1rem;
    padding: 1.5rem 0;
    border-radius: 15px 15px 0 0;
  }

  .menu-toggle-btn {
    display: flex;
  }

  .main-navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--medium-blue) 50%, var(--primary) 100%);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10001;
    margin: 0;
    padding: 0;
  }

  .main-navigation.active {
    transform: translateX(0);
  }

  .menu-close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10002;
    backdrop-filter: blur(10px);
  }

  .menu-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg);
  }

  .menu-close-btn .material-icons {
    font-size: 28px;
  }
}

/* Hide close button on desktop */
@media (min-width: 992px) {
  .menu-close-btn {
    display: none;
  }

  .nav-item {
    font-size: 1.3rem;
    padding: 1rem 0;
  }

  .nav-button {
    margin-left: 0;
    margin-top: 1rem;
  }
}



/* new styles  */
/* Variables globales */



/* Styles pour le bloc hero */
/* ============================================
   NEW HERO SECTION - DARK BLUE THEME
   ============================================ */
.hero-section {
  position: relative;
  padding: 6rem 0 5rem;
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--medium-blue) 50%, var(--primary) 100%);
  overflow: hidden;
  margin-top: 2rem;
  border-radius: 0 0 30px 30px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  z-index: 0;
}

.hero-pattern {
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(90, 143, 196, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(59, 111, 168, 0.3) 0%, transparent 50%);
}

.hero-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-wrapper {
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
  }
}

.hero-main {
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(90, 143, 196, 0.2);
  border: 1px solid rgba(90, 143, 196, 0.4);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--sky-blue);
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.hero-badge .material-icons {
  font-size: 18px;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--white);
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--light-blue), var(--accent-color));
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(59, 111, 168, 0.4);
  font-size: 1rem;
}

.hero-primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(59, 111, 168, 0.5);
  background: linear-gradient(135deg, var(--accent-color), var(--light-blue));
}

.hero-primary-btn .material-icons {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.hero-primary-btn:hover .material-icons {
  transform: translateX(5px);
}

.hero-secondary-btn {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-weight: 500;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  font-size: 1rem;
}

.hero-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .hero-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(90, 143, 196, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--light-blue), var(--accent-color));
  border-radius: 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(59, 111, 168, 0.3);
}

.feature-icon .material-icons {
  font-size: 28px;
  color: var(--white);
}

.feature-content {
  flex: 1;
}

.feature-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.feature-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}


.stats-card {
  background: var(--bg-primary);
  border: 2px solid var(--light);
  border-radius: var(--border-radius);
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
}

.stats-card:hover {
  border-color: var(--accent-color);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.stats-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.stats-label {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 1rem;
}

.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 */
.about-section {
  background-color: transparent;
  padding: 100px 0;
}

.about-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 992px) {
  .about-wrapper {
    flex-direction: row;
    align-items: center;
  }
}

.about-image-wrapper {
  flex: 1;
  text-align: center;
}

.about-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  border-radius: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content {
  flex: 1;
}

.about-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--bg-color);
  margin-bottom: 1.5rem;
}

.about-description {
  font-size: 1.15rem;
  color: var(--bg-color);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  font-size: 1rem;
  background: rgba(162, 155, 254, 0.1);
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  color: var(--heading-color);
  font-weight: 500;
}

.highlight-item i {
  font-size: 1.4rem;
  color: var(--light);
  margin-right: 1rem;
}


/* Styles pour le bloc Programmes */
/* ============================================
   NEW PROGRAMS SECTION - DARK BLUE THEME
   ============================================ */
.programs-section {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-color) 0%, #E8F0F8 100%);
  overflow: hidden;
}

.programs-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.05;
  z-index: 0;
}

.programs-pattern {
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(59, 111, 168, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(30, 58, 95, 0.2) 0%, transparent 50%);
}

.programs-intro {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.programs-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(59, 111, 168, 0.1);
  border: 1px solid rgba(59, 111, 168, 0.3);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.programs-badge .material-icons {
  font-size: 18px;
}

.programs-main-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .programs-main-title {
    font-size: 2.2rem;
  }
}

.programs-description {
  font-size: 1.15rem;
  color: var(--text-color);
  line-height: 1.8;
}

.programs-cards-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .programs-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.program-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  border: 2px solid rgba(59, 111, 168, 0.1);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(30, 58, 95, 0.1);
  display: flex;
  flex-direction: column;
}

.program-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(59, 111, 168, 0.2);
}

.program-card.featured {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, var(--white) 0%, rgba(90, 143, 196, 0.05) 100%);
  box-shadow: 0 8px 30px rgba(59, 111, 168, 0.25);
}

.program-badge-featured {
  position: absolute;
  top: -12px;
  right: 2rem;
  background: linear-gradient(135deg, var(--light-blue), var(--accent-color));
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(59, 111, 168, 0.3);
}

.program-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.program-number {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(59, 111, 168, 0.15);
  line-height: 1;
}

.program-icon-wrapper {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--light-blue), var(--accent-color));
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(59, 111, 168, 0.3);
}

.program-icon-wrapper .material-icons {
  font-size: 32px;
  color: var(--white);
}

.program-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.program-subtitle {
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 2rem;
  opacity: 0.8;
}

.program-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.program-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 111, 168, 0.1);
  border-radius: 10px;
  flex-shrink: 0;
}

.feature-icon .material-icons {
  font-size: 20px;
  color: var(--accent-color);
}

.feature-text {
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.6;
  padding-top: 0.5rem;
}

.program-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-top: auto;
}

.program-link:hover {
  color: var(--light-blue);
  gap: 0.75rem;
}

.program-link .material-icons {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.program-link:hover .material-icons {
  transform: translateX(5px);
}


/* 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 */
/* ============================================
   NEW ADVANTAGES SECTION - COMPLETE REDESIGN
   ============================================ */
.advantages-section {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(180deg, #E8F0F8 0%, var(--bg-color) 100%);
  overflow: hidden;
}

.advantages-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.05;
  z-index: 0;
}

.advantages-pattern {
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(59, 111, 168, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(30, 58, 95, 0.2) 0%, transparent 50%);
}

.advantages-decorations {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
}

.decoration-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(59, 111, 168, 0.1);
  border: 2px solid rgba(59, 111, 168, 0.2);
}

.circle-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 5%;
  animation: float 6s ease-in-out infinite;
}

.circle-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 10%;
  animation: float 8s ease-in-out infinite reverse;
}

.circle-3 {
  width: 100px;
  height: 100px;
  top: 50%;
  right: 20%;
  animation: float 7s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.advantages-header-section {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 992px) {
  .advantages-header-section {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
  }
}

.advantages-intro {
  text-align: left;
}

.advantages-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(59, 111, 168, 0.1);
  border: 1px solid rgba(59, 111, 168, 0.3);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.advantages-badge .material-icons {
  font-size: 18px;
}

.advantages-main-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .advantages-main-title {
    font-size: 2.2rem;
  }
}

.advantages-main-description {
  font-size: 1.15rem;
  color: var(--text-color);
  line-height: 1.8;
}

.advantages-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(59, 111, 168, 0.2);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-color);
  font-weight: 500;
}

.advantages-main-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 992px) {
  .advantages-main-content {
    grid-template-columns: 1.5fr 1fr;
  }
}

.advantages-feature-large {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(30, 58, 95, 0.15);
  border: 2px solid rgba(59, 111, 168, 0.1);
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .advantages-feature-large {
    grid-template-columns: 1fr 1.2fr;
  }
}

.feature-large-image {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.feature-large-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-large-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: linear-gradient(135deg, var(--light-blue), var(--accent-color));
  color: var(--white);
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(59, 111, 168, 0.4);
}

.feature-large-badge .material-icons {
  font-size: 18px;
}

.feature-large-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.feature-large-number {
  font-size: 4rem;
  font-weight: 700;
  color: rgba(59, 111, 168, 0.15);
  line-height: 1;
  margin-bottom: 1rem;
}

.feature-large-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.feature-large-description {
  font-size: 1.05rem;
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.feature-large-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-large-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-color);
  font-size: 0.95rem;
}

.feature-large-list .material-icons {
  font-size: 20px;
  color: var(--accent-color);
}

.advantages-cards-compact {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.advantage-compact-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  border: 2px solid rgba(59, 111, 168, 0.1);
  box-shadow: 0 4px 15px rgba(30, 58, 95, 0.1);
  transition: all 0.3s ease;
  display: flex;
  gap: 1.5rem;
}

.advantage-compact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(59, 111, 168, 0.2);
  border-color: var(--accent-color);
}

.compact-card-icon {
  flex-shrink: 0;
}

.icon-bg {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--light-blue), var(--accent-color));
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(59, 111, 168, 0.3);
}

.icon-bg .material-icons {
  font-size: 28px;
  color: var(--white);
}

.compact-card-content {
  flex: 1;
}

.compact-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 0.75rem;
}

.compact-card-text {
  font-size: 0.95rem;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.compact-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.compact-feature-tag {
  background: rgba(59, 111, 168, 0.1);
  color: var(--accent-color);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.advantages-benefits-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.benefit-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(59, 111, 168, 0.2);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(59, 111, 168, 0.2);
  border-color: var(--accent-color);
}

.benefit-icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--light-blue), var(--accent-color));
  border-radius: 18px;
  box-shadow: 0 4px 15px rgba(59, 111, 168, 0.3);
}

.benefit-icon-wrapper .material-icons {
  font-size: 32px;
  color: var(--white);
}

.benefit-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
}

.benefit-text {
  font-size: 0.9rem;
  color: var(--text-color);
  line-height: 1.5;
}

/* ============================================
   NEW CALMNEST SUCCESS SECTION - DARK BLUE THEME
   ============================================ */
.calmnest-success {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--medium-blue) 50%, var(--primary) 100%);
  overflow: hidden;
  color: var(--white);
}

.success-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  z-index: 0;
}

.success-pattern {
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 30% 40%, rgba(90, 143, 196, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(59, 111, 168, 0.3) 0%, transparent 50%);
}

.success-intro {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.success-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(90, 143, 196, 0.2);
  border: 1px solid rgba(90, 143, 196, 0.4);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--sky-blue);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.success-badge .material-icons {
  font-size: 18px;
}

.success-main-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .success-main-title {
    font-size: 2.2rem;
  }
}

.success-main-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

.testimonials-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(90, 143, 196, 0.5);
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-card.featured-testimonial {
  border: 2px solid var(--accent-color);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 30px rgba(59, 111, 168, 0.4);
}

.testimonial-quote-mark {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--light-blue), var(--accent-color));
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(59, 111, 168, 0.3);
}

.testimonial-quote-mark .material-icons {
  font-size: 28px;
  color: var(--white);
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-rating .material-icons {
  font-size: 18px;
  color: #FFD700;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  flex-grow: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.author-avatar {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(90, 143, 196, 0.2);
  border-radius: 50%;
  flex-shrink: 0;
}

.author-avatar .material-icons {
  font-size: 24px;
  color: var(--sky-blue);
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.author-details {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .testimonial-card {
    padding: 2rem;
  }
}


/* Styles pour le bloc Conseils pratiques */
/* ============================================
   NEW TIPS SECTION - DARK BLUE THEME
   ============================================ */
.tips-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--bg-color) 0%, #E8F0F8 100%);
  position: relative;
}

.tips-intro-section {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.tips-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(59, 111, 168, 0.1);
  border: 1px solid rgba(59, 111, 168, 0.3);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.tips-badge .material-icons {
  font-size: 18px;
}

.tips-main-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .tips-main-title {
    font-size: 2.2rem;
  }
}

.tips-main-description {
  font-size: 1.15rem;
  color: var(--text-color);
  line-height: 1.8;
}

.tips-visual-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .tips-visual-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tips-visual-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(30, 58, 95, 0.2);
  transition: transform 0.3s ease;
}

.tips-visual-item:hover {
  transform: translateY(-8px);
}

.tips-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.tips-visual-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tips-visual-item:hover .tips-visual-image {
  transform: scale(1.1);
}

.tips-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10, 31, 58, 0.9), transparent);
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
}

.tips-image-overlay .material-icons {
  font-size: 24px;
}

.tips-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .tips-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tips-card-item {
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  border: 2px solid rgba(59, 111, 168, 0.1);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(30, 58, 95, 0.1);
}

.tips-card-item:hover {
  border-color: var(--accent-color);
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(59, 111, 168, 0.2);
}

.tips-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.tips-card-number {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(59, 111, 168, 0.15);
  line-height: 1;
}

.tips-card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--light-blue), var(--accent-color));
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(59, 111, 168, 0.3);
}

.tips-card-icon .material-icons {
  font-size: 28px;
  color: var(--white);
}

.tips-card-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.tips-card-text {
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.tips-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.tips-card-link:hover {
  color: var(--light-blue);
  gap: 0.75rem;
}

.tips-card-link .material-icons {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.tips-card-link:hover .material-icons {
  transform: translateX(5px);
}


/* ============================================
   NEW PRICING SECTION - COMPLETE REDESIGN
   ============================================ */
.pricing-section-new {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--medium-blue) 50%, var(--primary) 100%);
  overflow: hidden;
  color: var(--white);
}

.pricing-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  z-index: 0;
}

.pricing-pattern {
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 15% 25%, rgba(90, 143, 196, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(59, 111, 168, 0.3) 0%, transparent 50%);
}

.pricing-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(90, 143, 196, 0.1);
  border: 1px solid rgba(90, 143, 196, 0.2);
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -100px;
  animation: rotate 20s linear infinite;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
  animation: rotate 15s linear infinite reverse;
}

.shape-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  right: 10%;
  animation: rotate 25s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.pricing-intro {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3rem;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(90, 143, 196, 0.2);
  border: 1px solid rgba(90, 143, 196, 0.4);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--sky-blue);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.pricing-badge .material-icons {
  font-size: 18px;
}

.pricing-main-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .pricing-main-title {
    font-size: 2.2rem;
  }
}

.pricing-main-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.pricing-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(90, 143, 196, 0.15);
  border: 1px solid rgba(90, 143, 196, 0.3);
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--sky-blue);
  margin-top: 1rem;
}

.pricing-guarantee .material-icons {
  font-size: 20px;
}

.pricing-comparison {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.pricing-toggle-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.toggle-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.save-badge {
  background: linear-gradient(135deg, var(--light-blue), var(--accent-color));
  color: var(--white);
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-toggle {
  position: relative;
  width: 60px;
  height: 30px;
  cursor: pointer;
}

.pricing-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  transition: 0.3s;
}

.toggle-slider:before {
  content: '';
  position: absolute;
  height: 24px;
  width: 24px;
  left: 3px;
  bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: 0.3s;
}

.pricing-toggle input:checked + .toggle-slider {
  background: var(--accent-color);
}

.pricing-toggle input:checked + .toggle-slider:before {
  transform: translateX(30px);
}

.pricing-cards-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .pricing-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card-wrapper {
  position: relative;
}

.pricing-card-wrapper.featured-wrapper {
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .pricing-card-wrapper.featured-wrapper {
    transform: scale(1);
  }
}

.pricing-popular-ribbon {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--light-blue), var(--accent-color));
  color: var(--white);
  padding: 0.6rem 1.5rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(59, 111, 168, 0.5);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  white-space: nowrap;
}

.pricing-popular-ribbon .material-icons {
  font-size: 18px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(90, 143, 196, 0.5);
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured-card {
  border: 2px solid var(--accent-color);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 40px rgba(59, 111, 168, 0.5);
}

.pricing-card-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.pricing-plan-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(90, 143, 196, 0.2);
  border: 2px solid rgba(90, 143, 196, 0.4);
  border-radius: 16px;
  flex-shrink: 0;
}

.pricing-plan-icon .material-icons {
  font-size: 28px;
  color: var(--sky-blue);
}

.pricing-plan-icon.featured-icon {
  background: linear-gradient(135deg, var(--light-blue), var(--accent-color));
  border-color: var(--accent-color);
}

.pricing-plan-icon.featured-icon .material-icons {
  color: var(--white);
}

.pricing-plan-icon.premium-icon {
  background: linear-gradient(135deg, var(--accent-color), var(--primary));
  border-color: var(--accent-color);
}

.pricing-plan-icon.premium-icon .material-icons {
  color: var(--white);
}

.pricing-plan-header {
  flex: 1;
}

.pricing-plan-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.25rem 0;
  line-height: 1.2;
}

.pricing-plan-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.pricing-price-section {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.pricing-price-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.pricing-currency-symbol {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--sky-blue);
}

.pricing-amount {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.pricing-period-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.pricing-yearly-price {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.pricing-features-section {
  flex-grow: 1;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.pricing-feature-item:not(.disabled) {
  color: rgba(255, 255, 255, 0.9);
}

.pricing-feature-item.disabled {
  color: rgba(255, 255, 255, 0.4);
}

.feature-icon-check {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.feature-icon-check .material-icons {
  font-size: 20px;
}

.pricing-feature-item:not(.disabled) .feature-icon-check .material-icons {
  color: var(--sky-blue);
}

.pricing-feature-item.disabled .feature-icon-check .material-icons {
  color: rgba(255, 255, 255, 0.3);
}

.feature-text {
  flex: 1;
}

.pricing-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: auto;
}

.pricing-action-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.pricing-action-btn .material-icons {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.pricing-action-btn:hover .material-icons {
  transform: translateX(5px);
}

.pricing-action-btn.featured-btn {
  background: linear-gradient(135deg, var(--light-blue), var(--accent-color));
  border: 2px solid var(--accent-color);
  box-shadow: 0 4px 15px rgba(59, 111, 168, 0.4);
}

.pricing-action-btn.featured-btn:hover {
  background: linear-gradient(135deg, var(--accent-color), var(--light-blue));
  box-shadow: 0 6px 25px rgba(59, 111, 168, 0.5);
  border-color: var(--accent-color);
}

.pricing-footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.pricing-footer-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 500;
}

.pricing-footer-item .material-icons {
  font-size: 22px;
  color: var(--sky-blue);
}

/* ============================================
   NEW CONTACT FORM STYLES
   ============================================ */
.contact-form-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(30, 58, 95, 0.15);
  border: 2px solid rgba(59, 111, 168, 0.1);
}

.contact-form-new {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group-new {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group-new.full-width {
  grid-column: 1 / -1;
}

.form-group-new label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-blue);
}

.form-group-new label .material-icons {
  font-size: 20px;
  color: var(--accent-color);
}

.form-group-new input,
.form-group-new textarea {
  padding: 1rem 1.25rem;
  border: 2px solid rgba(59, 111, 168, 0.2);
  border-radius: 12px;
  font-size: 1rem;
  font-family: var(--font-family);
  color: var(--text-color);
  background: var(--bg-color);
  transition: all 0.3s ease;
}

.form-group-new input:focus,
.form-group-new textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(59, 111, 168, 0.1);
}

.form-group-new textarea {
  resize: vertical;
  min-height: 120px;
}

.error-message {
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 0.25rem;
  display: none;
}

.error-message.show {
  display: block;
}

.contact-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: linear-gradient(135deg, var(--light-blue), var(--accent-color));
  border: none;
  border-radius: 50px;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--font-family);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 111, 168, 0.3);
  margin-top: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(59, 111, 168, 0.4);
  background: linear-gradient(135deg, var(--accent-color), var(--light-blue));
}

.contact-submit-btn .material-icons {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.contact-submit-btn:hover .material-icons {
  transform: translateX(5px);
}

/* Form validation styles */
.form-group-new input.is-invalid,
.form-group-new textarea.is-invalid {
  border-color: #e74c3c;
  background-color: rgba(231, 76, 60, 0.05);
}

.form-group-new input.is-valid,
.form-group-new textarea.is-valid {
  border-color: #27ae60;
  background-color: rgba(39, 174, 96, 0.05);
}

.invalid-feedback {
  display: none;
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  font-weight: 500;
}

.form-group-new input.is-invalid ~ .invalid-feedback,
.form-group-new textarea.is-invalid ~ .invalid-feedback,
.form-group-new input:invalid:not(:placeholder-shown) ~ .invalid-feedback,
.form-group-new textarea:invalid:not(:placeholder-shown) ~ .invalid-feedback {
  display: block;
}

.contact-form-new.was-validated .form-group-new input:invalid ~ .invalid-feedback,
.contact-form-new.was-validated .form-group-new textarea:invalid ~ .invalid-feedback {
  display: block;
}

.form-status {
  margin-top: 1.5rem;
  text-align: center;
}

.form-status .loading {
  color: var(--accent-color);
  font-weight: 500;
  display: none;
}

.form-status .error-message {
  color: #e74c3c;
  font-weight: 500;
  display: none;
}

.form-status .sent-message {
  color: #27ae60;
  font-weight: 500;
  display: none;
}

/* Styles pour le bloc Contacts */
.calmnest-contact {
  background: transparent;
  padding: 70px 15px 100px;
  color: var(--bg-primary);
}

.calmnest-title {
  font-weight: 700;
  font-size: 2.8rem;
  color: var(--dark);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--font-family);
}

.calmnest-intro {
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.15rem;
  line-height: 1.5;
  text-align: center;
  color: var(--bg-primary);
  font-style: italic;
}

.contact-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-details {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  background: rgba(162, 155, 254, 0.08);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(108, 92, 231, 0.12);
  border: 1px solid var(--light);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--bg-color);
}

.contact-item .icon {
  font-size: 28px;
  color: var(--bg-color);
}

.contact-link {
  color: var(--bg-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--bg-color);
  text-decoration: underline;
}

.contact-address {
  font-style: normal;
  color: var(--bg-color);
}

.contact-form {
  flex: 1 1 400px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 2.5rem 2rem 3rem;
  box-shadow: 0 5px 20px rgba(108, 92, 231, 0.15);
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  border: 1px solid var(--light);
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1rem;
}

.form-group input {
  padding: 0.9rem 1rem;
  font-size: 1rem;
  border: 2px solid var(--light);
  border-radius: 10px;
  outline-offset: 2px;
  transition: border-color 0.3s ease;
  font-family: inherit;
  color: var(--heading-color);
  background: var(--white);
}

.form-group input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 10px rgba(162, 155, 254, 0.35);
  background: var(--light);
}

.error-message {
  color: #E74C3C;
  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: var(--font-family);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.btn-submit:hover {
  background: var(--accent-hover);
}

@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }
}


.error-message {
  color: #E74C3C;
  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(162, 155, 254, 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;
  }
}
}