/* intl-tel-input */

/* ───── Fonts ───── */
@font-face {
  font-family: 'Ginger';
  src: url('../fonts/Ginger.woff2') format('woff2'),
    url('../fonts/Ginger.woff') format('woff'),
    url('../fonts/Ginger.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Medium.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}


/* ───── Reset & Base ───── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #1B2652;
  --navy2: #080B18;
  --light: #EAF6FD;
  --bg: #F6F8FE;
  --bg-second: #FAFAFA;
  --muted: #A6A6A6;
  --sep: #D1D3DC;
  --white: #FFFFFF;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
}

/* ───── Navbar ───── */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 32px 60px 0;
}

.nav-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.logo-img {
  height: 90px;
  width: auto;
  display: block;
}

.logo-img-footer {
  height: 44px;
  width: auto;
  display: block;
}

.nav-links {
  display: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

/* ───── Hero ───── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-bottom: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/img_00.jpg') center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.18) 60%, rgb(255 255 255) 100%)
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.18) 60%,
        rgb(255, 255, 255) 100%
    );
    pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 820px;
  padding: 0 24px;
}

.hero-eyebrow {
  display: none;
}

.hero-title {
  font-family: 'Ginger', serif;
  font-size: clamp(36px, 5.5vw, 76px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ───── Buttons ───── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.15s;
}

.btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--navy);
  color: var(--light);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
}

.btn-submit {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  padding: 18px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  border-radius: 12px;
  margin-top: 8px;
  transition: all 0.2s ease;
}

.btn-submit:hover {
  background: #121A3B;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(27, 38, 82, 0.15);
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  margin-top: 8px;
  margin-bottom: 8px;
}

.consent-checkbox {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--navy);
  cursor: pointer;
  border: 1.5px solid #CBD5E1;
  border-radius: 4px;
}
.consent-label .wpcf7-list-item{
  margin: 0 !important;
}
.consent-label span {
  font-size: 12px;
  color: #6C748F;
  line-height: 1.6;
  margin: 0 !important;
}

.consent-link {
  color: #3B82F6;
  text-decoration: none;
  transition: color 0.15s ease;
}

.consent-link:hover {
  color: #1D4ED8;
  text-decoration: underline;
}

/* ───── Gallery ───── */
.gallery {
  padding: 0px 60px 120px;
  background: var(--white);
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 24px;
}


.gallery-nav {
  display: flex;
  gap: 10px;
}

.gallery-btn {
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}

.gallery-btn:hover {
  color: var(--navy);
}

.gallery-btn svg {
  width: 100%;
  height: 100%;
}

.gallery-track-wrapper {
  overflow: hidden;
  border-radius: 8px;
}

.gallery-track {
  display: flex;
  gap: 12px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-slide {
  flex: 0 0 calc(25% - 9px);
  min-width: 0;
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-slide:hover img {
  transform: scale(1.04);
}

/* ───── Features + Contact ───── */
.features-contact {
  padding: 0 60px;
  padding-top: 90px;
  margin: 0 auto 120px;
  max-width: 1800px;
}

.contact-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  justify-content: space-between;
  background: var(--navy);
  overflow: hidden;
  border-radius: 30px;
}

.features-card {
  background: var(--navy);
  padding: 80px 60px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  border-bottom-left-radius: 30px;
  border-top-left-radius: 30px;
}

.features-title {
  font-family: 'Ginger', serif;
  font-size: clamp(32px, 3.8vw, 60px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 32px;
}

.features-desc {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.6x;
  max-width: 500px;
}

.features-desc--mt {
  margin-top: 24px;
}

.contact-card {
  padding: 60px 90px;
  background-color: var(--bg);
  height: 100%;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-title {

  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 500;
  color: var(--navy);
  text-align: center;
  margin-bottom: 8px;
}

.contact-sub {
  font-size: clamp(12px, 2vw, 16px);
  color: #6C748F;
  text-align: center;
  margin-bottom: 32px;
  font-weight: 400;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form  .wpcf7-not-valid-tip{
  display: block;
   color: rgb(220, 38, 38);
    font-size: 12px;
     margin-top: 4px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group input:not([type="checkbox"]) {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  background: var(--white);
  outline: none;
  transition: all 0.2s ease;
}

.form-group input:not([type="checkbox"]):focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27, 38, 82, 0.05);
}

.form-group input:not([type="checkbox"])::placeholder {
  color: #94A3B8;
  opacity: 0.8;
}

/* ───── Phone Input (intl-tel-input customization) ───── */
.iti {
  width: 100%;
}

.iti input[type="tel"] {
  width: 100% !important;
  padding: 16px 20px 16px 100px !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 12px !important;
  font-size: 14px !important;
  font-family: 'Inter', sans-serif !important;
  color: var(--navy) !important;
  background: var(--white) !important;
  outline: none !important;
  transition: all 0.2s ease !important;
}

.iti input[type="tel"].error {
  border-color: #dc2626 !important;
}

.iti input[type="tel"]:focus {
  border-color: var(--navy) !important;
  box-shadow: 0 0 0 3px rgba(27, 38, 82, 0.05) !important;
}

.iti__flag-container {
  padding: 0 0 0 20px !important;
  border: none !important;
}

.iti__selected-flag {
  background: transparent !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 5px !important;
}

.iti__flag {
  /* width: 20px !important;
  height: 20px !important;
  border-radius: 50% !important;
  background-position-y: 2.5px !important;*/
}

.iti__arrow {
  border: none !important;
  width: 10px !important;
  height: 8px !important;
  margin-left: 4px !important;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 23 14" fill="none"><path d="M21.4262 1.36769L11.3967 12.1687L1.36719 1.36769" stroke="%239AA0B6" stroke-width="2.73532" stroke-linecap="round" stroke-linejoin="round"/></svg>') !important;
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  transition: transform 0.15s ease !important;
}

.iti__arrow--up {
  border: none !important;
  transform: rotate(180deg) !important;
}

.iti__country-list {
  border-radius: 12px !important;
  border: 1px solid #E2E8F0 !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
  margin-top: 8px !important;
  z-index: 100 !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
}

.phone-code-text {
  font-size: 14px;
  font-weight: 500;
  color: #6C748F;
  margin-left: 2px;
}

/* ───── Advantages ───── */
.advantages {
  background: var(--bg-second);
}

.advatn-wrap {

  padding: 80px 60px 120px;
  text-align: center;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
}

.advantages-title {
  font-family: 'Ginger', serif;
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 56px;
}

.advantages-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 2px;
  background-color: #d1d3dc70;
  margin: 0 auto;
  margin-top: 20px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px 20px;
  max-width: 960px;
  margin: 0 auto;
}

.advantage-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.advantage-icon {
  width: 100%;
  max-width: 140px;
  height: auto;
  display: block;
}

.advantage-label {
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  text-align: center;
  line-height: 1.45;
  letter-spacing: 0.01em;
}

/* ───── Yamed Store ───── */
.store-section {
  background: var(--navy);
  overflow: hidden;
}

.store-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1800px;
  padding: 100px 80px;

  margin: 0 auto;
}

.store-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}



.store-title {
  font-family: 'Ginger', serif;
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 400;
  color: #F6F8FE;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.store-address {
  font-size: 18px;
  font-weight: 400;
  color: var(--bg);
  line-height: 1.7;
}

.store-address-titel {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 8px;
}

.store-right {
  display: flex;
  align-items: center;

  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/* ───── Footer ───── */
.footer {
  background: var(--navy2);
  padding: 48px 60px 24px;
  
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.yamed-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  transition: all 0.2s ease-out;
}

.footer-social a:hover {
  border-color: var(--bg);
  transform:translateY(-3px);
  color: var(--bg);
}

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

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.logo-script-footer {
  font-family: 'Ginger', serif;
  font-style: italic;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
}

.logo-brand-right {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-right img {
  height: 80px;
  width: auto;
  display: block;
}

.footer-phone-link {
  font-size: 25px;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.2s ease;
  opacity: 0.9;
}

.footer-phone-link:hover {
  opacity: 1;
}

.footer-legals {
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-side-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.footer-nav__list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  row-gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.footer-nav__list a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.footer-nav__list a:hover {
  color: var(--white);
}
.footer-phone {
  display: flex;
  justify-content: flex-end;
  
}
@media (max-width: 600px)  {
  .footer-legals {
    flex-direction:column-reverse;
    gap:10px;
  }
  .footer-nav__list{
    justify-content: center;
  }
  .footer-phone {
    justify-content: center;
    
  }
  .footer-phone-link {
    font-size: 20px;
  }

}

/* ───── Responsive ───── */
@media (max-width: 1024px) {
  .navbar {
    padding: 24px 32px;
  }

  .gallery {
    padding: 0px 32px 90px 32px;
  }

  .features-contact {
    padding: 0 32px;
      padding-top: 58px;
    margin-bottom: 90px;
  }

  .advatn-wrap {
    padding: 80px 60px 90px;
  }





  .features-card {
    padding: 60px 40px;
  }

  .contact-card {
    padding: 60px 50px;
    border-radius: 30px 30px 0 0;
  }


  .gallery-slide {
    flex: 0 0 calc(33% - 6px);
  }

  .footer {
    padding: 40px 32px 20px;
  }
}

@media (max-width: 992px) {
  .advantages-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 16px;
  }

  .contact-card {
    padding: 60px 80px;
  }

  .contact-content-wrapper {
    grid-template-columns: 1fr;
  }

  .hero {
    max-height: 800px;
  }


}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .advantages-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 16px;
  }

  .store-inner {
    padding: 80px 55px;
  }

  .contact-card {
    padding: 60px 40px;
  }



  .footer-right img {
    height: 60px;
  }


}

@media (max-width: 600px) {
  .store-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 70px 32px;

  }






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

  .advantages-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .logo-img {
    height: 55px;
  }

  .gallery-slide {
    flex: 0 0 calc(50% - 6px);
  }
}

@media (max-width: 540px) {
  .gallery-slide {
    flex: 0 0 calc(50% - 6px);
  }
}

@media (max-width: 480px) {
  .gallery-slide {
    flex: 0 0 calc(100% - 0px);
  }

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .yamed-logo-img {
    height: 30px;
  }

  .footer-social a {
    width: 28px;
    height: 28px;
  }

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

  .footer-right img {
    height: 50px;
  }

  .contact-card {
    padding: 60px 30px;
  }

  .features-card {
    padding: 60px 30px;
  }
}

@media (max-width: 400px) {
  .gallery {
    padding: 0px 15px 80px 15px;
  }

  .features-contact {
    padding: 0 15px;
    padding-top: 38px;
    margin-bottom: 80px;
  }

  .advatn-wrap {
    padding: 60px 32px 80px;
  }

  .footer-inner {
    display: flex;
    gap: 20px;
  }

  .footer-left,
  .footer-right {
    width: calc(50% - 10px);
  }

  .yamed-logo-img {
    height: auto;
    width: 100%;
  }

  .footer-right img {
    height: auto;
    width: 100%;
  }

  .contact-card {
    padding: 50px 20px;
  }

  .features-card {
    padding: 50px 20px;
  }

  .btn {
    padding: 14px 26px;
    width: 100%;
  }
}

/* ───── Custom Modal Alert ───── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
}

.modal-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  width: 90%;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-icon-wrapper {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #F8FAFC;
}

.modal-icon {
  width: 48px;
  height: 48px;
}

.modal-title {
  font-family: 'Ginger', serif;
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 12px;
}

.modal-message {
  font-size: 15px;
  color: #6C748F;
  line-height: 1.6;
  margin-bottom: 30px;
}

.modal-btn {
  background: var(--navy);
  color: var(--white);
  width: 100%;
  padding: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.modal-btn:hover {
  background: #121A3B;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(27, 38, 82, 0.15);
}

/* ───── Contact Form 7 Response Output Styling ───── */
.wpcf7-response-output {
  margin: 0px 0 0 0 !important;
  padding: 16px 20px !important;
  border-radius: 12px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
  text-align: center !important;
  border: 1px solid transparent !important;
}

/* Success message styling */
.wpcf7-mail-sent-ok {
  background-color: #ecfdf5 !important;
  padding: 16px 20px !important;
  font-size: 14px !important;
  border-color: #10b981 !important;
  color: #065f46 !important;
}

/* Validation errors / warning styling */
.wpcf7-validation-errors,
.wpcf7-acceptance-missing {
  background-color: #fffbeb !important;
  border-color: #f59e0b !important;
  color: #92400e !important;
   padding: 16px 20px !important;
  font-size: 14px !important;
}

/* General / Mail failure error styling */
.wpcf7-mail-sent-ng,
.wpcf7-aborted {
  background-color: #fef2f2 !important;
  border-color: #ef4444 !important;
  color: #991b1b !important;
   padding: 16px 20px !important;
  font-size: 14px !important;
}

/* Field specific validation message tips */
.wpcf7-not-valid-tip {
  color: #dc2626 !important;
  font-size: 12px !important;
  margin-top: 4px !important;
  display: block !important;
}




.is-animated--false {
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
.is-animated--fade {
  opacity: 0;

  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
.is-visible {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}

/* ───── Mentions Légales Block ───── */
.mentions-legales {
  padding: 200px 60px 80px;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
}

.mentions-legales-wrap {
  max-width: 1000px;
  margin: 0 auto;
}

.mentions-legales-title {
  font-family: 'Ginger', serif;
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.2;
}

.mentions-legales-date {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 48px;
  display: block;
  letter-spacing: 0.02em;
}

.mentions-legales-intro {
  font-size: 16px;
  line-height: 1.7;
  color: var(--navy);
  margin-bottom: 15px;
  font-weight: 400;
  opacity: 0.95;
}

.mentions-legales-content {
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.8;
  color: var(--navy2);
}

.mentions-legales-content h2,
.mentions-legales-content h3 {
  font-family: 'Ginger', serif;
  font-weight: 400;
  color: var(--navy);
  margin-top: 40px;
  margin-bottom: 16px;
  line-height: 1.3;
}

.mentions-legales-content h2 {
  font-size: clamp(22px, 2.5vw, 32px);
}

.mentions-legales-content h3 {
  font-size: clamp(18px, 2vw, 24px);
}

.mentions-legales-content p {
  font-size: 16px;
  margin-bottom: 20px;
  opacity: 0.85;
}

.mentions-legales-content ul,
.mentions-legales-content ol {
  margin-bottom: 24px;
  padding-left: 24px;
  opacity: 0.85;
}

.mentions-legales-content li {
  font-size: 16px;
  margin-bottom: 8px;
}

.mentions-legales-content a {
  font-size: 16px;
  color: var(--navy);
  text-decoration: underline;
  transition: opacity 0.2s;
}

.mentions-legales-content a:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .mentions-legales {
    padding: 130px 20px;
    padding-bottom: 80px;
  }
  
  .mentions-legales-date {
    margin-bottom: 32px;
  }
  .mentions-legales-content {
  font-size: 14px;}
  .mentions-legales-content a {
  font-size: 14px;
}
.mentions-legales-content li {
  font-size: 14px;}
  .mentions-legales-content p {
  font-size: 14px;}
  .mentions-legales-intro {
  font-size: 14px;}

}

/* ───── Page de Merci ───── */
.thanks-section {
  padding: 190px 24px 120px;
  background: var(--bg);
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thanks-wrap {
  width: 100%;
  max-width: 500px;
  background: var(--white);
  padding: 50px 30px;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(27, 38, 82, 0.05);
  margin: 0 auto;
}

.thanks-icon {
  color: var(--navy);
  margin-bottom: 20px;
  display: inline-block;
}

.thanks-title {
  font-family: 'Ginger', serif;
  font-size: clamp(32px, 4vw, 44px);
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.2;
}

.thanks-message {
  font-size: 15px;
  line-height: 1.6;
  color: #6C748F;
  margin-bottom: 28px;
}

.thanks-actions .btn {
  padding: 16px 36px;
  font-size: 13px;
  border-radius: 40px;
}

@media (max-width: 768px) {
  .thanks-section {
    padding: 130px 20px 80px;
  }
  .thanks-wrap {
    padding: 40px 20px;
  }
 
}

body.thanks-page-body {
  background-color: var(--bg) !important;
}

/* ───── PDF Download Modal ───── */
.pdf-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.pdf-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 11, 24, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pdf-modal-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 500px;
  background: var(--white);
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 48px 36px 36px;
}

.pdf-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--navy);
  cursor: pointer;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.pdf-modal-close:hover {
  opacity: 1;
}

/* Active State anims */
.pdf-modal.active .pdf-modal-overlay {
  opacity: 1;
}

.pdf-modal.active .pdf-modal-content {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 576px) {
  .pdf-modal {
    padding: 16px;
  }
  .pdf-modal-content {
    padding: 40px 24px 28px;
    border-radius: 20px;
  }
}

.pdf-modal-title {
  margin-bottom: 24px;
  font-family: 'Ginger', serif;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--navy);
  text-align: center;
  font-weight: 500;
  line-height: 1.2;
}