/* intl-tel-input */

/* ───── Fonts ───── */


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



@font-face {
    font-family: 'Audrey';
    src: url('../fonts/Audrey-Bold.woff2') format('woff2'),
        url('../fonts/Audrey-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}



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



@font-face {
    font-family: 'Audrey';
    src: url('../fonts/Audrey-Normal.woff2') format('woff2'),
        url('../fonts/Audrey-Normal.woff') format('woff');
    font-weight: normal;
    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-dark {
  filter: brightness(0) saturate(100%) invert(0%) sepia(3%) saturate(7500%) hue-rotate(153deg) brightness(98%) contrast(103%);
   height: 60px;
}

.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: 110vh;
  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-bg{
    position:absolute;
    inset:0;
    z-index:0;
}

.hero-bg-image{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-content{
    position:relative;
    z-index:2;
}

.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) 0%, rgba(255, 255, 255, 0) 60%, rgb(0 0 0 / 70%) 100%);
    pointer-events: none;
}

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

.hero-eyebrow {
  display: none;
}

.hero-title {
  font-family: 'Audrey', serif;
  font-size: clamp(32px, 4.3vw, 63px);
  font-weight: 400;
  color:#FFFFFF;
  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 50px;
  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: 12px;
}

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

.features-title {
  font-family: 'Audrey', serif;
  font-size: clamp(32px, 3.5vw, 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.6;
}

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

.contact-card {
  padding: 60px 90px;
  background-color: var(--bg);
  height: 100%;
  border-radius: 12px;
  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: 'Audrey', 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;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

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



.store-title {
  position: absolute;
  left: 0%;
    visibility: hidden;
    pointer-events: none;
    opacity: 0%;
  font-family: 'Audrey', serif;
  font-size: clamp(30px, 4vw, 70px);
  font-weight: 400;
  color: #F6F8FE;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.store-address {
  font-size: 20px;
  font-weight: 400;
  color: var(--bg);
  line-height: 1.7;
   align-self: flex-end;
}

.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%;
}
.store-svg{
     width: 100%;
     max-width: 500px;
}
@media (min-width: 992px) {
   .store-svg{
 width: 90%;
}
}
@media (min-width: 1200px) {
  .store-svg{
  width: 100%;
  max-width: 600px;
}
}

/* ───── Footer ───── */
.footer {
  background: #F9F1E4;
  color: var(--navy);
  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-logo {
  display: flex;
  align-items: start;
  justify-content: start;
  
}
.footer-left {
  display: flex;
  flex-direction: column;
   flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
@media (max-width: 768px) {
 .store-address {
    align-self: start;
    font-size: 18px;
   
  }
  .footer-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    justify-content: center;
  }
  .footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
   gap: 20px;
  
}
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  align-items: center;
  justify-content: center;

}
}


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

.footer-social {
  display: flex;
  align-items: center;
  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-description {
  font-size: 14px;
  color: #000000;
  line-height: 1.6;
  max-width: 400px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  justify-content:end;
}

.logo-script-footer {
  font-family: 'Audrey', 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: 40px;
  width: auto;
  display: block;
}

.footer-phone-link {
  font-size: 25px;
  font-weight: 500;
  color: var(--navy);
  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;
  max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
}

.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: rgb(0, 0, 0);
  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(--navy);
}
.footer-phone {
  display: flex;
  justify-content: flex-end;
  
}
@media (max-width: 768px)  {
  .footer-legals {
    flex-direction:column-reverse;
    justify-content: center;
    gap:10px;
  }
  .footer-nav__list{
    justify-content: center;
    align-items: 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: 0;
  }

  .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 {
    position: relative;
    padding: 80px 55px;
    grid-template-columns: 1fr ;
  }

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

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

  }
  .hero-title{
    font-size: clamp(25px, 4.3vw, 63px);
  }
  

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

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

  .logo-img {
    height: 100%;
        width: 100%;
        object-fit: contain;
        max-height: 55px;
  }
   .logo-img.logo-dark {
   height: 40px; 
  }
  .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;
  }

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

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

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

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

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

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

 

  .yamed-logo-img {
     height: 40px;
        width: auto;
  }

  .footer-right img {
    height: 30px;
    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: 'Audrey', 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: 'Audrey', 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: 'Audrey', 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: 'Audrey', 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;
}
body.thanks-page-body .logo-img  {
  filter: brightness(0) saturate(100%) invert(0%) sepia(3%) saturate(7500%) hue-rotate(153deg) brightness(98%) contrast(103%);
}

/* ───── 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;
  }
	.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgb(255 255 255 / 0%) 0%, rgba(255, 255, 255, 0) 60%, rgb(0 0 0 / 70%) 100%);
    pointer-events: none;
}
	.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-bottom: 20px;
}
}

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

/* ───── Metropolitan Section ───── */
.metropolitan-section {
  padding: 100px 60px;
  
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
    padding-top: 0px;
    margin: 0 auto;
    max-width: 1800px;
}

.metropolitan-wrap {
  max-width: 1800px;
  margin: 0 auto;
  background-color: #F9F1E4;
  padding: 85px 80px;
  border-radius: 12px;
  overflow: hidden;
}

.metropolitan-title {
  font-family: 'Audrey', serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.metropolitan-desc {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 23px;
  max-width: 950px;
  font-weight: 400;
}

/* .metropolitan-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
}
@media (min-width: 1024px) {
  .metropolitan-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .metropolitan-grid {
    grid-template-columns: repeat(4, 1fr);
  }
} */

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

@media (max-width: 768px) {
  .metropolitan-grid {
    grid-template-columns: repeat(2, 1fr);
    
  }
}
@media (max-width: 576px) {
  .metropolitan-grid {
    grid-template-columns: repeat(1, 1fr);
    
  }
}



.metropolitan-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  aspect-ratio: 3/4;
  display: flex;
  align-items: flex-end;
  padding: 30px 24px;
}

.metropolitan-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);
  pointer-events: none;
  z-index: 1;
}


.metropolitan-card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.metropolitan-card-title {
    position: relative;
    z-index: 2;
}

.metropolitan-card-title {
  position: relative;
  z-index: 2;
  font-family: 'Audrey', serif;
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  
      .metropolitan-section {
       
        padding: 0 60px;
    }
}

@media (max-width: 640px) {
 
  .metropolitan-section {
    padding:60px 0 0;
  }
  .metropolitan-wrap {
  max-width: 1800px;
  margin: 0 auto;
  background-color: #F9F1E4;
  padding: 53px 24px;
 
}
}

/* ───── Signature Section ───── */
.signature-section {
  padding: 60px 60px;
  background-color: var(--white);
  max-width: 1800px;
  margin: 0 auto;
}

.signature-wrap {
  max-width: 1800px;
  margin: 0 auto;
}

.signature-header {
  text-align: center;
  margin-bottom: 60px;
}

.signature-title {
  font-family: 'Audrey', serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.signature-desc {
  font-size: clamp(15px, 1.8vw, 18px);
  color: #616161;
  max-width: 1024px;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
font-weight: 400;
font-size: 18px;
line-height: 150%;
letter-spacing: 0%;
text-align: center;

}

.signature-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.signature-top-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
}

.signature-bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.signature-img-wrapper {
  border-radius:12px;
  overflow: hidden;
  display: flex;
}

.signature-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.signature-text-box {
  background-color: rgb(246, 248, 263);
  border-radius: 12px;
  overflow: hidden;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.signature-text-box p {
  color: rgb(26, 38, 92);
  margin: 0;
  font-family: 'Inter', sans-serif;
font-weight: 400;
font-size: 20px;
line-height: 150%;
letter-spacing: 0%;
text-align: left;

}

@media (max-width: 992px) {
  .signature-top-row {
    grid-template-columns: 1fr 1fr;
  }
  .signature-bottom-row {
    grid-template-columns: 1fr;
  }
  .signature-bottom-row .signature-img-wrapper {
    aspect-ratio: 16/9;
  }
  .signature-text-box p {
    text-align: left;
    font-size: 18px;
  }
}

@media (max-width: 640px) {
  .signature-section {
    padding: 60px 24px;
  }
  .signature-top-row {
    grid-template-columns: 1fr;
  }
}

/* ───── Emplacement ───── */
.emplacement-section {
 
  background: var(--white);
  max-width: 1800px;
  margin: 0 auto;
  overflow: hidden;
  padding: 100px 60px;
  padding-top: 0%;
   
}

.emplacement-wrap {
  display: flex;
  align-items: stretch;
  position: relative;
  width: 100%;
     border-radius: 12px;
      background: rgb(245, 246, 260);
}

.emplacement-image {
  flex: 0 0 60%;
  width: 60%;
   border-radius: 12px 0px 0px 12px;
   overflow: hidden;
   order: 1;
   max-height: 600px;
}

.emplacement-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (min-width: 1200px) {
.emplacement-image img {
 object-position: 0% 70%;
}}

.emplacement-content {
  flex: 0 0 40%;
  width: 40%;
  background-color: var(--navy);
  color: var(--white);
  padding: 90px 50px;
  border-radius: 12px;
  order: 2;
  display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
  
}

.emplacement-title {
  font-family: 'Audrey', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.emplacement-desc {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.7;
      text-align: left;
}

@media (max-width: 992px) {
  .emplacement-wrap {
    flex-direction: column;
    
  }
  .emplacement-desc {
      text-align: left;
}
  .emplacement-image {
    flex: 1 1 100%;
    width: 100%;
    order: 2;
  }
  .emplacement-content {
    flex: 1 1 100%;
    width: 100%;
    position: relative;
    order: 1;
    padding: 40px;
  }
}

@media (max-width: 640px) {
  .emplacement-section {
    padding: 0px;
  }
  
  .emplacement-content {
    width: 100%;
    padding: 30px 20px;
  }
}

.wpcf7 .wpcf7-submit:disabled {
    cursor: not-allowed;
    background-color: #a9b5c6;
}
@media (max-width: 600px) {
    .signature-text-box p {
        font-size: 15px;
    }
    .signature-text-box {

    padding: 35px 20px;

   }
   .signature-desc {    font-size: 16px;}
}