/* ========================================
   GENERAL STYLES
   ======================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  background: 
    linear-gradient(to top, rgba(10, 37, 64, 0.75) 0%, rgba(13, 74, 115, 0.10) 1%),
    url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1920&q=80&blur=0') center/cover no-repeat fixed;
    background-attachment: fixed;
  color: #333;
  line-height: 1.6;
  font-size: clamp(14px, 1.2vw, 16px);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

/* ========================================
   2. NAVBAR
   ======================================== */

/* ============================================================
   2. NAVBAR
   ============================================================ */

.nav-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 5%;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.3s ease;
  animation: slideDown 0.6s ease-out;
}

/* ── 2a. Animations navbar ── */

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1);   }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0);    }
}

.nav-container.scrolled {
  background-color: rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 20px rgba(0, 114, 188, 0.3);
  backdrop-filter: blur(5px);
}

/* ── 2b. Logo ── */

.logo img {
  width: clamp(200px, 17vw, 400px);
  height: auto;
  transition: width 0.3s ease;
  animation: fadeInScale 0.8s ease-out 0.2s both;
}

/* ── 2c. Liens de navigation ── */

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(15px, 2vw, 35px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li { animation: fadeInUp 0.6s ease-out both; }
.nav-links li:nth-child(1) { animation-delay: 0.3s; }
.nav-links li:nth-child(2) { animation-delay: 0.4s; }
.nav-links li:nth-child(3) { animation-delay: 0.5s; }
.nav-links li:nth-child(4) { animation-delay: 0.6s; }
.nav-links li:nth-child(5) { animation-delay: 0.7s; }
.nav-links li:nth-child(6) { animation-delay: 0.8s; }

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: clamp(13px, 1.1vw, 17px);
  padding-bottom: 5px;
  position: relative;
  transition: color 0.3s;
  white-space: nowrap;
}

.nav-links a:hover { color: #0072BC; }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background-color: #0072BC;
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }

/* ── 2d. Boutons CTA ── */

.nav-actions {
  display: flex;
  gap: clamp(8px, 1vw, 12px);
  align-items: center;
  animation: fadeInRight 0.8s ease-out 0.7s both;
}

.phone-button,
.eligibilite-button {
  background: #0099ff;
  color: white;
  border: none;
  padding: clamp(10px, 1.2vw, 14px) clamp(18px, 2.5vw, 28px);
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 114, 188, 0.3);
}

.phone-button:hover,
.eligibilite-button:hover {
  background: #0072BC;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px #0072BC;
}

/* ── 2e. Menu hamburger ── */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-container.open .hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-container.open .hamburger span:nth-child(2) { opacity: 0; }
.nav-container.open .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

/* ========================================
   HERO SECTION - Style Nemoxia
   ======================================== */

.hero-container {
  padding: clamp(120px, 15vh, 160px) clamp(1rem, 3vw, 2rem) clamp(4rem, 8vh, 6rem);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Effet de fond animé */
.hero-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(0, 114, 188, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(0, 191, 255, 0.1) 0%, transparent 50%);
  z-index: 0;
  animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.hero-container .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 6rem);
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Text Section - Style Nemoxia avec overlay */
.text-section {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vh, 2.5rem);
  width: 100%;
  padding: clamp(2rem, 4vh, 3rem) clamp(2rem, 3vw, 3rem);
  background: rgba(10, 25, 41, 0.7);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 16px 64px rgba(0, 114, 188, 0.15);
  animation: fadeInLeft 0.8s ease-out forwards;
  margin-left: 50px;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.text-section h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
  word-wrap: break-word;
  text-align: left;
  letter-spacing: -0.02em;
}

.text-section h1 .Titre {
  display: inline-block;
  background: linear-gradient(135deg, #00bfff 0%, #0072BC 50%, #1e90ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  position: relative;
  animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.2);
  }
}

.text-section h1 span.relative {
  background: linear-gradient(135deg, #ffffff 0%, #e0f7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.text-section h2 {
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.6;
  text-align: left;
}

.text-section h3 {
  font-size: clamp(0.85rem, 1.3vw, 1rem);
  font-weight: 600;
  color: #00bfff;
  margin: 0;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Boutons d'action dans le hero */
.text-section .action-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.text-section .action-buttons a,
.text-section .action-buttons button {
  padding: clamp(12px, 1.5vh, 16px) clamp(24px, 3vw, 32px);
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  border: none;
}

.text-section .action-buttons .primary-btn {
  background: linear-gradient(135deg, #0072BC 0%, #00bfff 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 114, 188, 0.3);
}

.text-section .action-buttons .primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 191, 255, 0.4);
}

.text-section .action-buttons .secondary-btn {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.text-section .action-buttons .secondary-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Form Section - Design moderne et compact avec hauteur optimisée */
.form-section {
  width: 100%;
  max-width: 450px;
  max-height: 800px;
  padding: clamp(1.2rem, 2.5vh, 2rem);
  background: rgba(10, 25, 41, 0.7);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.2),
    0 20px 80px rgba(0, 114, 188, 0.15);
  border: 1px solid  rgba(255, 255, 255, 0.11);
  animation: fadeInRight 0.8s ease-out forwards;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-section h3 {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 700;
  color: #f5f5f5;
  text-align: center;
  margin: 0 0 clamp(0.3rem, 0.6vh, 0.5rem) 0;
  line-height: 1.2;
}

.form-section .subtitle {
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin: 0 0 clamp(0.8rem, 1.5vh, 1.2rem) 0;
  line-height: 1.4;
}

.form-section form {
  display: flex;
  flex-direction: column;
  gap: clamp(0.6rem, 1.2vh, 0.9rem);
  width: 100%;
  max-height: 700px;
}

.form-section form > div {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.form-section .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.6rem, 1.2vh, 0.9rem);
  width: 100%;
}

.form-section label {
  margin-bottom: 0.3rem;
  color: #f6f6f7;
  font-size: clamp(0.75rem, 0.95vw, 0.85rem);
  font-weight: 600;
  display: block;
}

.form-section input,
.form-section select,
.form-section textarea {
  border-radius: 10px;
  font-size: clamp(0.8rem, 0.95vw, 0.9rem);
  padding: clamp(8px, 1.2vh, 11px) clamp(10px, 1.8vw, 14px);
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  background-color: #ffffff;
  width: 100%;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form-section textarea {
  min-height: clamp(60px, 10vh, 80px);
  resize: vertical;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form-section input:focus,
.form-section select:focus,
.form-section textarea:focus {
  border-color: #0072BC;
  box-shadow: 0 0 0 3px rgba(0, 114, 188, 0.1);
  outline: none;
  background-color: #f8fafc;
}

.form-section button {
  background: linear-gradient(135deg, #0072BC 0%, #00bfff 100%);
  color: #fff;
  font-weight: 700;
  padding: clamp(10px, 1.5vh, 13px) clamp(20px, 2.5vw, 28px);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  width: 100%;
  margin-top: clamp(0.4rem, 0.8vh, 0.6rem);
  box-shadow: 0 4px 15px rgba(0, 114, 188, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-section button:hover {
  background: linear-gradient(135deg, #005f9e 0%, #0099cc 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 191, 255, 0.4);
}

.form-section button:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(0, 114, 188, 0.3);
}

/* Section éligibilité */
.eligibility-section {
  max-width: 1400px;
  margin: clamp(3rem, 6vh, 5rem) auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

.section-title {
  text-align: center;
  margin-bottom: clamp(2rem, 4vh, 3rem);
}

.section-title h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  margin-bottom: clamp(1rem, 2vh, 1.5rem);
  font-weight: 700;
}

.section-title p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.image-box {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  transition: transform 0.5s ease;
  max-height: 600px;
}

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

.eligibility-box {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: clamp(2rem, 4vh, 3rem);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.eligibility-box h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #0a1929;
  margin-bottom: 1rem;
  text-align: center;
}

.eligibility-box .subtitle {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  text-align: center;
}

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

.features-list li {
  padding: 12px 0 12px 45px;
  position: relative;
  color: #334155;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  line-height: 1.5;
}

.features-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 12px;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #0072BC 0%, #00bfff 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 2px 10px rgba(0, 114, 188, 0.3);
}

.iframe-container {
  margin-top: 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

footer {
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  color: white;
  padding: clamp(40px, 6vh, 70px) 5%;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
}

footer h3 {
  color: lightskyblue;
  margin-bottom: 18px;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  text-shadow: 0 2px 8px rgba(135, 206, 250, 0.3);
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 10px;
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
}

footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s;
}

footer a:hover {
  color: #0072BC;
  text-shadow: 0 0 8px rgba(0, 114, 188, 0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(25px, 4vw, 40px);
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid a {
  color: #0099ff;
  transition: color 0.3s;
}

.footer-grid div {
  margin: auto;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #0099ff;
  margin-top: clamp(25px, 4vh, 40px);
  padding-top: clamp(18px, 3vh, 28px);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  opacity: 0.8;
}

.footer-bottom p {
  text-align: center;
}

.footer-bottom a {
  color: #0099ff;
}

/* ========================================
   RESPONSIVE - MOBILE (max 768px)
   ======================================== */

@media (max-width: 768px) {
  .nav-container {
    padding: 12px 5%;
  }

  .logo img {
    width: 160px;
  }

  .hamburger {
    display: flex;
  }
  .nav-container.open .nav-links {
    display: flex;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 55px;
    left: 0;
    width: 100%;
    height: calc(100vh - 55px);
    background: linear-gradient(to bottom, rgba(3, 7, 18, 0.98), rgba(13, 59, 102, 0.98));
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    gap: 20px;
    overflow-y: auto;
    backdrop-filter: blur(10px);
  }

  .nav-actions {
    gap: 8px;
  }

  .phone-button, .eligibilite-button {
        padding: 4px 6px;
        font-size: 8px;
    }

  .hero-container .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .text-section {
    padding: 1.5rem;
    order: 1;
    margin-left: 0;
    margin-top: 10px;
  }

  .text-section h1 {
    font-size: 1.8rem;
    text-align: center;
  }

  .text-section h2,
  .text-section h3 {
    text-align: center;
  }
  .form-section form{
    gap:5px
  }
  .text-section .action-buttons {
    justify-content: center;
  }

  .form-section {
    order: 2;
    max-width: 100%;
    max-height: 900px;
  }

  .form-section .grid {
    grid-template-columns: 1fr;
  }

  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .image-box {
    order: -1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ========================================
   RESPONSIVE - TABLET (769px - 1024px)
   ======================================== */

@media (min-width: 769px) and (max-width: 1024px) {
  .hero-container .container {
    gap: 3rem;
  }
  .nav-links a {
    font-size: 10px;
  }
  .logo img {
    width: 150px;
  }
  .text-section {
    padding: 2rem;
    margin-left: 0;
  }
  .phone-button,
  .eligibilite-button {
    padding: 5px 8px;
    font-size: 8px;
  }
  .form-section {
    max-width: 400px;
  }

  .content-wrapper {
    gap: 3rem;
  }
}

/* ========================================
   8. RESPONSIVE - DESKTOP (1024px - 1439px)
   ======================================== */

@media (min-width: 1024px) and (max-width: 1439px) {
  .hero-container {
    padding-top: 120px;
  }
  .logo img {
    width: 200px;
  }
  .nav-links a {
    font-size: 12.5px;
  }

  .text-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(1.3rem, 2.2vh, 1.6rem);
    margin-left:50px;
  }

  .text-section h1 {
    font-size: 2.4rem;
  }

  .text-section h2 {
    font-size: 1.05rem;
  }

  .form-section {
    max-width: clamp(0px, 38vw, 380px);
    width: 100%;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 100px;
  }

  .form-section h3 {
    font-size: clamp(1rem, 1.15vw, 1.2rem);
    margin-bottom: clamp(0.22rem, 0.35vh, 0.28rem);
  }

  .form-section .subtitle {
    font-size: clamp(0.9rem, 0.95vw, 0.8rem);
    margin-bottom: clamp(0.4rem, 0.7vh, 0.5rem);
  }

  .form-section form {
    gap: clamp(0.25rem, 0.45vh, 0.35rem);
  }

  .form-section .grid {
    grid-template-columns: 1fr 1fr;
    gap: clamp(0.25rem, 0.45vh, 0.35rem);
  }
  .form-section label {
    font-size: 0.8rem;
    margin-bottom: clamp(0.1rem, 0.15vh, 0.2rem);
  }

  .form-section input,
  .form-section select,
  .form-section textarea {
    padding: clamp(5px, 0.85vh, 7px) clamp(5px, 1.35vw, 5px);
    font-size: clamp(0.68rem, 0.85vw, 0.76rem);
    background: #dfdedebb;
    margin-bottom: 5px;
  }

  .form-section textarea {
    min-height: clamp(38px, 6vh, 45px);
  }

  .form-section button {
    padding: clamp(6px, 1.05vh, 8px) clamp(11px, 1.75vw, 14px);
    font-size: clamp(0.72rem, 0.88vw, 0.8rem);
    margin-top: clamp(0.28rem, 0.5vh, 0.35rem);
  }

    .phone-button,
  .eligibilite-button {
    padding: 8px 12px;
    font-size: 10px;
}
}
/* ========================================
   9. RESPONSIVE - LARGE DESKTOP (1440px - 1919px)
   ======================================== */

@media (min-width: 1440px) and (max-width: 1919px) {
  .container,
  .hero-container .container,
  .eligibility-section {
    max-width: 1280px;
  }

  .logo img {
    width: 220px;
  }

  .nav-links a {
    font-size: 13px;
  }

  .phone-button,
  .eligibilite-button {
    padding: 11px 22px;
    font-size: 13px;
  }

  .hero-container .container {
    gap: 4rem;
  }

  .text-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(1.4rem, 2.4vh, 1.8rem);
  }

  .text-section h1 {
    font-size: 2.6rem;
  }

  .text-section h2 {
    font-size: 1.2rem;
  }

  .form-section {
    max-width: clamp(400px, 40vw, 450px);
    width: 100%;
    padding: clamp(0.8rem, 1.4vh, 1.1rem);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .form-section h3 {
    font-size: clamp(0.88rem, 1.2vw, 1rem);
    margin-bottom: clamp(0.25rem, 0.4vh, 0.3rem);
  }

  .form-section .subtitle {
    font-size: clamp(0.74rem, 0.98vw, 0.84rem);
    margin-bottom: clamp(0.45rem, 0.75vh, 0.55rem);
  }

  .form-section form {
    gap: clamp(0.28rem, 0.5vh, 0.38rem);
  }

  .form-section .grid {
    grid-template-columns: 1fr 1fr;
    gap: clamp(0.28rem, 0.5vh, 0.38rem);
  }

  .form-section input,
  .form-section select,
  .form-section textarea {
    padding: clamp(5px, 0.9vh, 7px) clamp(9px, 1.4vw, 11px);
    font-size: clamp(0.7rem, 0.88vw, 0.78rem);
  }

  .form-section textarea {
    min-height: clamp(40px, 6.5vh, 48px);
  }

  .form-section button {
    padding: clamp(7px, 1.1vh, 9px) clamp(12px, 1.85vw, 16px);
    font-size: clamp(0.74rem, 0.9vw, 0.82rem);
    margin-top: clamp(0.3rem, 0.55vh, 0.4rem);
  }

  .section-title h1 {
    font-size: 2.3rem;
  }

  .eligibility-box h2 {
    font-size: 1.7rem;
  }

  .features-list li {
    font-size: 0.92rem;
  }
}

/* ========================================
   RESPONSIVE - LARGE DESKTOP (1400px+)
   ======================================== */

@media (min-width: 1921px) {
  .hero-container .container {
    max-width: 1600px;
    gap: 15rem;
  }
  .nav-links a{
    font-size: 20px;
  }
  .eligibilite-button,.phone-button{
    font-size: 20px;
  }
  
  .text-section h1 {
    font-size: 3.5rem;
  }

  .text-section h2 {
    font-size: 1.5rem;
  }

  .form-section {
    max-width: 500px;
    padding: 3rem;
  }
}