/* ------------------------------------------------------------
   RESET
------------------------------------------------------------ */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'poppins', sans-serif;
}


/* ------------------------------------------------------------
   GLOBAL
------------------------------------------------------------ */

.container{
margin:auto;
padding:0 20px;
}


/* ------------------------------------------------------------
   HERO
------------------------------------------------------------ */
.hero-section {
  position: relative;
  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 120px; /* plus d'espace autour */
  overflow: hidden;
}

/* Cadre vidéo */

.hero-video-container {
  position: absolute;

  width: calc(100% - 240px);
  height: calc(100% - 200px);

  border-radius: 35px;
  overflow: hidden;
}

/* Vidéo */

.hero-video-background {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transform: translateY(0);
  will-change: transform;

  filter: brightness(40%);
}

/* Contenu */

.hero-content {
  position: relative;
  text-align: center;
  max-width: 700px;
  padding: 20px;
  z-index: 2;
  color: #fff;
}

/* Titre */

.hero-title {
  font-size: 4em;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
}

/* Sous titre */

.hero-subtitle {
  font-size: 1.5em;
  color: #e9e9e9;
}

/* Boutons */

.hero-buttons {
  display: flex;
  justify-content: center;
  margin-top: 20px;
    text-decoration: none;
}

/* Style bouton */

.hero-button {
  font-family: 'poppins';
  padding: 10px 20px;
  text-decoration: none;
  margin: 0 10px;
  font-size: 1.2em;
  font-weight: bold;
  border: none;
  cursor: pointer;
  border-radius: 15px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Bouton clair */

.hero-button-black {
  background-color: #F3F2F2;
  color: #113356;
}

.hero-button-black:hover {
  background-color: #F2B705;
  color: #113356;
}

/* Bouton foncé */

.hero-button-white {
  background-color: #113356;
  color: #ffffff;
}

.hero-button-white:hover {
  background-color: #F2B705;
  color: #113356;
}

/* -------------------------------------- Tablette -------------------------------------- */

@media (max-width: 1024px) {

  .hero-section {
    padding: 0;
    min-height: 100vh;
  }

  .hero-video-container {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 0;
  }

  .hero-video-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-title {
    font-size: 3em;
  }

  .hero-subtitle {
    font-size: 1.2em;
  }

  .hero-buttons {
    flex-wrap: wrap;
    gap: 15px;
  }

  .hero-button {
    padding: 10px 18px;
    font-size: 1em;
  }

}

/* -------------------------------------- Mobile -------------------------------------- */

@media (max-width: 768px) {

  .hero-section {
    padding: 0;
    min-height: 100vh;
  }

  .hero-video-container {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 0;
  }

  .hero-video-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-title {
    font-size: 2.5em;
  }

  .hero-subtitle {
    font-size: 1em;
  }

  .hero-content {
    padding: 20px;
  }

  .hero-buttons {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .hero-button {
    padding: 8px 16px;
    font-size: 1em;
    margin: 0 5px;
  }

}

/* -------------------------------------- Offer section -------------------------------------- */

/* SECTION EXPERIENCE */

.fh-experience{
padding:100px 20px;
background:white;
text-align:center;
}

/* éviter les boutons soulignés */

.fh-buttons a{
text-decoration:none;
}

/* TITRE */

.fh-title{
font-size:2.6em;
color:#113356;
margin-bottom:25px;
font-weight:700;
}

/* INTRO */

.fh-intro{
max-width:750px;
margin:auto;
font-size:1.1em;
color:#555;
line-height:1.7;
margin-bottom:60px;
}

/* FEATURES */

.fh-features{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:50px;
max-width:1000px;
margin:auto;
}

/* FEATURE */

.fh-feature i{
font-size:30px;
color:#113356;
margin-bottom:15px;
}

.fh-feature h3{
font-size:1.3em;
color:#113356;
margin-bottom:10px;
}

.fh-feature p{
color:#666;
font-size:0.95em;
line-height:1.6;
}

/* BOUTONS */

.fh-buttons{
margin-top:60px;
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

/* TABLET */

@media(max-width:900px){

.fh-features{
grid-template-columns:1fr 1fr;
gap:40px;
}

.fh-title{
font-size:2.2em;
}

.fh-intro{
font-size:1.05em;
}

}

/* MOBILE OPTIMISATION */

@media(max-width:600px){

.fh-experience{
padding:70px 25px;
}

/* texte */

.fh-title{
font-size:1.9em;
line-height:1.3;
}

.fh-intro{
font-size:0.95em;
margin-bottom:40px;
}

/* grid → colonne */

.fh-features{
grid-template-columns:1fr;
gap:35px;
}

/* icones */

.fh-feature i{
font-size:26px;
}

/* boutons */

.fh-buttons{
flex-direction:column;
gap:15px;
align-items:center;
}

/* boutons pleine largeur */

.hero-button{
width:100%;
max-width:280px;
justify-content:center;
}

}

/* -------------------------------------- Video section -------------------------------------- */

.flight-process{
padding:100px 0;
background:#ffffff;
text-align:center;
}

.process-title{
font-size:2.4em;
color:#113356;
margin-bottom:60px;
}

/* GRID */

.process-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
}

/* CARD */

.process-card{
background:white;
border-radius:20px;
overflow:hidden;
transition:0.3s;
}

.process-card:hover{
transform:translateY(-5px);
box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

/* IMAGE */

.process-card img{
width:100%;
height:200px;
object-fit:cover;
}

/* TEXTE */

.process-card h3{
color:#113356;
margin:20px 0 10px;
font-size:1.2em;
}

.process-card p{
color:#666;
font-size:0.95em;
padding:0 20px 25px;
line-height:1.6;
}

/* TABLET */

@media(max-width:900px){

.process-grid{
grid-template-columns:1fr 1fr;
}

}

/* MOBILE */

@media(max-width:600px){

.flight-process{
padding:70px 20px;
}

.process-title{
font-size:1.9em;
margin-bottom:40px;
}

.process-grid{
grid-template-columns:1fr;
gap:25px;
}

.process-card img{
height:180px;
}

}


/* ------------------------------------------------------------
SECTION CTA VOL
------------------------------------------------------------ */

.cta-flight{
padding:120px 20px;
background:#ffffff;
}

/* CONTAINER */

.cta-container{
max-width:1400px;
margin:auto;

display:flex;
align-items:center;
gap:60px;
}

/* IMAGE */

.cta-image{
flex:1;
}

.cta-image img{
width:100%;
height:auto;
border-radius:25px;
object-fit:cover;
display:block;
}

/* TEXTE */

.cta-text{
flex:1;
max-width:520px;
}

.cta-text h2{
font-size:2.5em;
color:#113356;
margin-bottom:20px;
}

.cta-text p{
color:#555;
line-height:1.7;
margin-bottom:30px;
}

/* BOUTONS */

.cta-buttons{
display:flex;
gap:15px;
flex-wrap:wrap;
}

.cta-buttons a{
text-decoration:none;
display:inline-flex;
align-items:center;
gap:8px;
}

/* ------------------------------------------------------------
TABLET
------------------------------------------------------------ */

@media(max-width:900px){

.cta-container{
flex-direction:column;
text-align:center;
gap:40px;
}

.cta-text{
max-width:650px;
}

.cta-buttons{
justify-content:center;
}

}


/* ------------------------------------------------------------
MOBILE
------------------------------------------------------------ */

@media(max-width:600px){

.cta-flight{
padding:80px 20px;
}

.cta-text h2{
font-size:2em;
}

.cta-text p{
font-size:0.95em;
}

.hero-button{
width:100%;
max-width:260px;
justify-content:center;
}

}

/* ------------------------------------------------------------
SECTION PRIX
------------------------------------------------------------ */

.pricing-section{
padding:120px 20px;
background:white;
text-align:center;
}

.pricing-title{
font-size:2.5em;
color:#113356;
margin-bottom:20px;
}

.pricing-intro{
max-width:700px;
margin:auto;
color:#555;
line-height:1.7;
margin-bottom:40px;
}

/* PRIX PRINCIPAL */

.price-highlight{
margin:40px 0;
}

.price-number{
font-size:3em;
font-weight:700;
color:#113356;
}

.price-unit{
font-size:1.3em;
color:#666;
margin-left:5px;
}

.pricing-details{
color:#666;
margin-bottom:60px;
}

/* BOUTONS */

.pricing-buttons{
margin-top:50px;
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.pricing-buttons a{
text-decoration:none;
display:inline-flex;
align-items:center;
gap:8px;
}


/* ------------------------------------------------------------
TABLET
------------------------------------------------------------ */

@media(max-width:900px){

.pricing-title{
font-size:2.2em;
}

}


/* ------------------------------------------------------------
MOBILE
------------------------------------------------------------ */

@media(max-width:600px){

.pricing-section{
padding:80px 20px;
}

.pricing-title{
font-size:2em;
}

.price-number{
font-size:2.4em;
}

}

/* ------------------------------------------------------------
CONTACT SECTION
------------------------------------------------------------ */

.contact-section{
padding:120px 20px;
background:#ffffff;
text-align:center;
}


/* CONTAINER */

.contact-container{

max-width:700px;
margin:auto;

background:white;
padding:45px;

border-radius:20px;

box-shadow:0 10px 25px rgba(0,0,0,0.05);

}


/* TITRE */

.contact-container h2{

font-size:2.3em;
color:#113356;

margin-bottom:10px;

}


/* TEXTE */

.contact-container p{

color:#666;
line-height:1.7;

margin-bottom:30px;

}


/* FORM */

.contact-container form{

display:flex;
flex-direction:column;
gap:16px;

}


/* INPUT */

.contact-container input,
.contact-container textarea{

padding:13px 14px;

border-radius:10px;
border:1px solid #e5e7eb;

font-family:'Poppins';
font-size:0.95em;

transition:0.25s;

}


/* FOCUS */

.contact-container input:focus,
.contact-container textarea:focus{

outline:none;

border-color:#F2B705;

box-shadow:0 0 0 2px rgba(242,183,5,0.2);

}


/* TEXTAREA */

.contact-container textarea{

min-height:120px;
resize:vertical;

}


/* BUTTON */

.contact-container button{

margin-top:10px;

padding:12px 22px;

background:#113356;
color:white;

border:none;
border-radius:30px;

font-family:'Poppins';
font-weight:500;

cursor:pointer;

transition:0.25s;

}


/* HOVER */

.contact-container button:hover{

background:#F2B705;
color:#113356;

}


/* ------------------------------------------------------------
TABLET
------------------------------------------------------------ */

@media(max-width:900px){

.contact-container{
padding:35px;
}

.contact-container h2{
font-size:2em;
}

}


/* ------------------------------------------------------------
MOBILE
------------------------------------------------------------ */

@media(max-width:600px){

.contact-section{
padding:80px 20px;
}

.contact-container{
padding:30px 25px;
}

.contact-container h2{
font-size:1.8em;
}

.contact-container p{
font-size:0.95em;
}

}