
/* =========================================================
   CTA + MAP ACCUEIL PREMIUM
========================================================= */

.pp-home-contact-cta {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(56,196,245,.10), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.pp-home-contact-inner {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(56,196,245,.16), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(49,183,238,.12), transparent 30%),
    linear-gradient(135deg, #041225 0%, #061b38 56%, #0b4d86 100%);
  box-shadow: 0 42px 110px rgba(6,27,56,.22);
}

.pp-home-contact-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.03) 0,
      rgba(255,255,255,.03) 1px,
      transparent 1px,
      transparent 140px
    );
  pointer-events: none;
}

.pp-home-contact-water {
  position: absolute;
  inset: -20%;
  opacity: .30;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 70%, rgba(255,255,255,.12), transparent 16%),
    radial-gradient(ellipse at 58% 84%, rgba(255,255,255,.08), transparent 20%),
    linear-gradient(120deg, transparent 0%, rgba(255,255,255,.06) 48%, transparent 100%);
  animation: ppHomeContactWater 16s ease-in-out infinite alternate;
}

@keyframes ppHomeContactWater {
  0% {
    transform: translate3d(-24px, 8px, 0) scale(1.04);
  }

  50% {
    transform: translate3d(14px, -12px, 0) scale(1.08);
  }

  100% {
    transform: translate3d(30px, 4px, 0) scale(1.05);
  }
}

/* CONTENU */

.pp-home-contact-content {
  position: relative;
  z-index: 2;
  padding: 82px 78px;
}

.pp-home-contact-content h2 {
  margin: 0 0 26px;
  max-width: 720px;
  color: #fff;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.03em;
}

.pp-home-contact-content p {
  max-width: 760px;
  margin: 0 0 20px;
  color: rgba(255,255,255,.82);
  font-size: 15px;
  line-height: 1.7;
}

.pp-home-contact-content p:last-of-type {
  margin-bottom: 0;
}

.pp-home-contact-content p a {
  position: relative;
  color: #38c4f5;
  text-decoration: none;
  font-weight: 600;
}

.pp-home-contact-content p a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #31b7ee, #38c4f5);
  opacity: .65;
}

.pp-home-contact-content p a:hover {
  color: #fff;
}

/* ACTIONS */

.pp-home-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 38px;
}

.pp-home-contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 72px;
  padding: 14px 20px;
  color: #fff;
  text-decoration: none;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
  box-shadow: 0 22px 50px rgba(0,0,0,.14);
  transition:
    transform .28s ease,
    border-color .28s ease,
    box-shadow .28s ease;
}

.pp-home-contact-phone:hover {
  color: #fff;
  transform: translateY(-3px);
  border-color: rgba(56,196,245,.38);
  box-shadow:
    0 30px 65px rgba(0,0,0,.18),
    0 0 30px rgba(56,196,245,.12);
}

.pp-home-contact-phone-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #31b7ee, #1687c8);
  box-shadow: 0 16px 34px rgba(22,135,200,.26);
  flex-shrink: 0;
}

.pp-home-contact-phone-icon i {
  font-size: 19px;
}

.pp-home-contact-phone-content {
  display: flex;
  flex-direction: column;
}

.pp-home-contact-phone-content small {
  margin-bottom: 3px;
  color: rgba(255,255,255,.62);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.pp-home-contact-phone-content strong {
  color: #fff;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -.02em;
}

.pp-home-contact-btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 0 32px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #31b7ee, #1687c8);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .10em;
  box-shadow: 0 24px 58px rgba(22,135,200,.24);
  transition:
    transform .28s ease,
    box-shadow .28s ease;
}

.pp-home-contact-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      transparent 0%,
      rgba(255,255,255,.18) 48%,
      transparent 100%
    );
  transform: translateX(-100%);
  transition: transform .75s ease;
}

.pp-home-contact-btn::after {
  content: "»";
  margin-left: 16px;
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.12em;
  transform: translateY(-1px);
  transition:
    transform .28s ease,
    text-shadow .28s ease;
	margin-top:-7px;
}

.pp-home-contact-btn:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow:
    0 32px 70px rgba(22,135,200,.30),
    0 0 30px rgba(56,196,245,.18);
}

.pp-home-contact-btn:hover::before {
  transform: translateX(100%);
}

.pp-home-contact-btn:hover::after {
  transform: translateX(6px) translateY(-1px);
}

/* MAP */

.pp-home-contact-map {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 620px;
  background: #061b38;
  overflow: hidden;
}

.pp-home-contact-map::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  border: 1px solid rgba(255,255,255,.34);
  pointer-events: none;
}

.pp-home-contact-map::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  box-shadow: inset 28px 0 55px rgba(4,18,37,.26);
  pointer-events: none;
}

.pp-home-contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(1.02) contrast(1.04);
}

/* RESPONSIVE */

@media (max-width: 1199px) {
  .pp-home-contact-content {
    padding: 70px 58px;
  }

  .pp-home-contact-map {
    min-height: 480px;
  }
}

@media (max-width: 767px) {
  .pp-home-contact-cta {
    padding: 80px 0;
  }

  .pp-home-contact-content {
    padding: 54px 30px;
  }

  .pp-home-contact-content p {
    font-size: 14px;
  }

  .pp-home-contact-actions {
    flex-direction: column;
  }

  .pp-home-contact-phone,
  .pp-home-contact-btn {
    width: 100%;
  }

  .pp-home-contact-map {
    min-height: 380px;
  }
}

@media (max-width: 575px) {
  .pp-home-contact-cta {
    padding: 65px 0;
  }

  .pp-home-contact-content {
    padding: 44px 24px;
  }

  .pp-home-contact-content h2 {
    font-size: 32px;
  }

  .pp-home-contact-map {
    min-height: 330px;
  }
}



/* =========================================================
   HERO ACCUEIL PREMIUM
========================================================= */

.pp-home-hero {
  position: relative;
  overflow: hidden;

  min-height: calc(100vh - 186px);

  display: flex;
  align-items: center;

  background: #041225;
}

/* IMAGE */

.pp-home-hero-bg {
  position: absolute;
  inset: 0;
}

.pp-home-hero-bg::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(4,18,37,.92) 0%,
      rgba(4,18,37,.72) 38%,
      rgba(4,18,37,.34) 100%
    ),
    linear-gradient(
      180deg,
      rgba(4,18,37,.24) 0%,
      rgba(4,18,37,.10) 100%
    );
}

.pp-home-hero-bg img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  animation: ppHeroZoom 16s ease-in-out infinite alternate;
}

@keyframes ppHeroZoom {

  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.08);
  }
}

/* REFLETS EAU */

.pp-home-water-light {
  position: absolute;

  top: -180px;
  right: -120px;

  width: 640px;
  height: 640px;

  background:
    radial-gradient(circle, rgba(56,196,245,.18), transparent 70%);

  filter: blur(35px);

  pointer-events: none;
}

.pp-home-water-reflection {
  position: absolute;
  inset: -15%;

  opacity: .20;

  background:
    radial-gradient(
      ellipse at 20% 70%,
      rgba(255,255,255,.12),
      transparent 18%
    ),
    radial-gradient(
      ellipse at 78% 34%,
      rgba(255,255,255,.08),
      transparent 20%
    ),
    linear-gradient(
      120deg,
      transparent 0%,
      rgba(255,255,255,.06) 48%,
      transparent 100%
    );

  mix-blend-mode: screen;

  animation: ppWaterMove 18s ease-in-out infinite alternate;

  pointer-events: none;
}

@keyframes ppWaterMove {

  0% {
    transform:
      translate3d(-20px, 8px, 0)
      scale(1.02);
  }

  50% {
    transform:
      translate3d(12px, -12px, 0)
      scale(1.06);
  }

  100% {
    transform:
      translate3d(28px, 6px, 0)
      scale(1.03);
  }
}

/* CONTENU */

.pp-home-hero-content {
  position: relative;
  z-index: 3;

  max-width: 760px;

  padding: 140px 0;
}

.pp-home-kicker {
  display: inline-block;

  margin-bottom: 18px;

  color: #38c4f5;

  font-size: 11px;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: .18em;
}

.pp-home-hero-content h2 {
  margin: 0;

  max-width: 720px;

  color: #fff;

  font-size: clamp(34px, 4vw, 58px);

  font-weight: 600;

  line-height: 1.02;

  letter-spacing: -.05em;

  text-shadow:
    0 10px 40px rgba(0,0,0,.24);
}

/* CTA */

.pp-home-hero-actions {
  margin-top: 38px;
}

.pp-home-hero-btn {
  position: relative;

  isolation: isolate;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 66px;

  padding: 0 34px 0 40px;

  overflow: hidden;

  color: #fff;

  background:
    linear-gradient(135deg, #31b7ee, #1687c8);

  text-decoration: none;

  text-transform: uppercase;

  font-size: 12px;

  font-weight: 600;

  letter-spacing: .10em;

  box-shadow:
    0 28px 65px rgba(22,135,200,.24);

  transition:
    transform .3s ease,
    box-shadow .3s ease;

}

.pp-home-hero-btn::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      120deg,
      transparent 0%,
      rgba(255,255,255,.20) 48%,
      transparent 100%
    );

  transform: translateX(-105%);

  transition: transform .7s ease;
}

.pp-home-hero-btn::after {
  content: "»";

  margin-left: 16px;

  font-size: 34px;

  font-weight: 300;

  line-height: 1;

  letter-spacing: -.12em;

  transform: translateY(-1px);

  transition:
    transform .28s ease,
    text-shadow .28s ease;
		margin-top:-7px;
}

.pp-home-hero-btn:hover {
  color: #fff;

  transform: translateY(-4px);

  box-shadow:
    0 34px 75px rgba(22,135,200,.30),
    0 0 28px rgba(56,196,245,.18);
}

.pp-home-hero-btn:hover::before {
  transform: translateX(105%);
}

.pp-home-hero-btn:hover::after {
  transform:
    translateX(6px)
    translateY(-1px);

  text-shadow:
    0 0 18px rgba(255,255,255,.35);
}

/* SCROLL */

.pp-home-scroll {
  position: absolute;

  left: 48px;
  bottom: 42px;

  z-index: 3;

  display: flex;
  align-items: center;
  gap: 12px;

  color: rgba(255,255,255,.62);

  font-size: 11px;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: .16em;
}

.pp-home-scroll::before {
  content: "";

  width: 58px;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,.18),
      rgba(56,196,245,.85)
    );
}

/* RESPONSIVE */

@media (max-width: 991px) {

  .pp-home-hero {
    min-height: 760px;
  }

  .pp-home-hero-content {
    padding: 120px 0;
  }

  .pp-home-hero-content h2 {
    font-size: clamp(34px, 7vw, 52px);

    line-height: 1.04;
  }

}

@media (max-width: 575px) {

  .pp-home-hero {
    min-height: 680px;
  }

  .pp-home-hero-content {
    padding: 100px 0 120px;
  }

  .pp-home-hero-content h2 {
    max-width: 100%;

    font-size: 38px;

    line-height: 1.06;
  }

  .pp-home-hero-btn {
    width: 100%;
  }

  .pp-home-scroll {
    left: 22px;
    bottom: 26px;
  }

}


/* =========================================================
   HERO RESPONSIVE HEIGHT
========================================================= */

@media (max-width: 1024px) {

  .pp-home-hero {
    min-height:450px;
  }

  .pp-home-hero-content {
    padding: 110px 0 100px;
  }

}

@media (max-width: 768px) {

  .pp-home-hero {
    min-height: 400px;
  }

  .pp-home-hero-content {
    padding: 90px 0 90px;
  }

  .pp-home-hero-content h2 {
    font-size: 42px;
  }

}

@media (max-width: 600px) {

  .pp-home-hero {
    min-height: 400px;
  }

  .pp-home-hero-content {
    padding: 80px 0 80px;
  }

  .pp-home-hero-content h2 {
    font-size: 38px;
  }

}

@media (max-width: 425px) {

  .pp-home-hero {
    min-height:325px;
  }

  .pp-home-hero-content {
    padding: 70px 0 70px;
  }

  .pp-home-hero-content h2 {
    font-size: 32px;

    line-height: 1.04;
  }

  .pp-home-hero-btn {
    min-height: 58px;

    padding: 0 28px;

    font-size: 11px;
  }

}

@media (max-width: 375px) {

  .pp-home-hero {
    min-height: 325px;
  }

  .pp-home-hero-content {
    padding: 60px 0 60px;
  }

  .pp-home-hero-content h2 {
    font-size: 28px;
  }

}
/* =========================================================
   SECTION NOS SERVICES PREMIUM
========================================================= */
.pp-services-heading {
  position: relative;
  z-index: 1;

  max-width: 100%;

  margin: 0 auto 48px;

  text-align: center;
}

.pp-services-heading span {
  display: block;

  margin-bottom: 14px;

  color: #1687c8;

  font-size: 11px;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: .16em;
}

.pp-services-heading h2 {
  margin: 0 auto;

  max-width: 920px;

  color: #061b38;

  font-size: clamp(28px, 3vw, 42px);

  font-weight: 600;

  line-height: 1.1;

  letter-spacing: -.03em;

  text-align: center;
}
.pp-services-grid-section {
  position: relative;
  overflow: hidden;
  padding: 115px 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(56,196,245,.10), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(49,183,238,.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
}

.pp-services-grid-section::before {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -170px;
  height: 360px;
  background: radial-gradient(ellipse at center, rgba(56,196,245,.12), transparent 68%);
  pointer-events: none;
}

.pp-services-heading {
  position: relative;
  z-index: 1;
  max-width: 740px;
  margin-bottom: 48px;
}

.pp-services-heading span {
  display: inline-block;
  margin-bottom: 14px;
  color: #1687c8;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.pp-services-heading h2 {
  margin: 0;
  color: #061b38;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.03em;
}

/* CARDS */

.pp-service-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(6,27,56,.08);
  box-shadow: 0 26px 70px rgba(6,27,56,.08);
  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}

.pp-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(49,183,238,.08), transparent 35%),
    radial-gradient(circle at 20% 0%, rgba(56,196,245,.14), transparent 32%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}

.pp-service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(49,183,238,.24);
  box-shadow:
    0 34px 85px rgba(6,27,56,.12),
    0 0 26px rgba(56,196,245,.12);
}

.pp-service-card:hover::before {
  opacity: 1;
}

.pp-service-card-image {
  position: relative;
  display: block;
  height: 260px;
  overflow: hidden;
  background: #061b38;
}

.pp-service-card-image::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,.36);
  z-index: 2;
  pointer-events: none;
  opacity: .75;
  transition:
    inset .35s ease,
    opacity .35s ease;
}

.pp-service-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.04);
  transition:
    transform 1s ease,
    filter .35s ease;
}

.pp-service-card:hover .pp-service-card-image img {
  transform: scale(1.1);
  filter: saturate(1.06) contrast(1.03);
}

.pp-service-card:hover .pp-service-card-image::after {
  inset: 18px;
  opacity: 1;
}

.pp-service-card-content {
  position: relative;
  z-index: 1;
  padding: 30px 28px 32px;
}

.pp-service-card-content h3 {
  margin: 0 0 14px;
  color: #061b38;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.02em;
}

.pp-service-card-content p {
  margin: 0 0 24px;
  color: #000;
  font-size: 14px;
  line-height: 1.45;
}

.pp-service-card-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 22px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #061b38, #1687c8);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  box-shadow: 0 16px 34px rgba(22,135,200,.18);
  transition:
    transform .28s ease,
    box-shadow .28s ease;
}

.pp-service-card-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      transparent 0%,
      rgba(255,255,255,.18) 48%,
      transparent 100%
    );
  transform: translateX(-105%);
  transition: transform .65s ease;
}

.pp-service-card-link::after {
  content: "»";
  margin-left: 13px;
  font-size: 27px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.12em;
  transform: translateY(-1px);
  transition: transform .28s ease;
}

.pp-service-card-link:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow:
    0 22px 45px rgba(22,135,200,.24),
    0 0 18px rgba(56,196,245,.16);
}

.pp-service-card-link:hover::before {
  transform: translateX(105%);
}

.pp-service-card-link:hover::after {
  transform: translateX(5px) translateY(-1px);
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .pp-services-grid-section {
    padding: 85px 0;
  }

  .pp-service-card-image {
    height: 240px;
  }
}

@media (max-width: 575px) {
  .pp-services-grid-section {
    padding: 65px 0;
  }

  .pp-services-heading {
    margin-bottom: 36px;
  }

  .pp-services-heading h2 {
    font-size: 30px;
  }

  .pp-service-card-content {
    padding: 26px 24px 28px;
  }
}
.pp-service-text p a {
  position: relative;

  color: #1687c8;

  font-weight: 600;

  text-decoration: none;

  transition:
    color .28s ease,
    opacity .28s ease;
}

.pp-service-text p a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -3px;

  width: 100%;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      rgba(22,135,200,.85),
      rgba(56,196,245,.45)
    );

  transform: scaleX(.35);

  transform-origin: left center;

  opacity: .75;

  transition:
    transform .32s ease,
    opacity .32s ease,
    box-shadow .32s ease;
}

.pp-service-text p a:hover {
  color: #061b38;
}

.pp-service-text p a:hover::after {
  transform: scaleX(1);

  opacity: 1;

  box-shadow:
    0 0 12px rgba(56,196,245,.22);
}

/* =========================================================
   CTA CONTACT PREMIUM
========================================================= */

.pp-cta-contact {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background:
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.pp-cta-contact-inner {
  position: relative;
  overflow: hidden;
  padding: 90px 85px;
  background:
    radial-gradient(circle at 12% 18%, rgba(56,196,245,.16), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(49,183,238,.14), transparent 30%),
    linear-gradient(135deg, #041225 0%, #061b38 55%, #0b4d86 100%);
  box-shadow:
    0 40px 110px rgba(6,27,56,.22);
}

.pp-cta-contact-inner::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.03) 0,
      rgba(255,255,255,.03) 1px,
      transparent 1px,
      transparent 140px
    );

  pointer-events: none;
}

.pp-cta-contact-inner::after {
  content: "";

  position: absolute;
  top: -120px;
  right: -120px;

  width: 420px;
  height: 420px;

  background:
    radial-gradient(circle, rgba(56,196,245,.20), transparent 70%);

  filter: blur(20px);

  pointer-events: none;
}

/* REFLET EAU */

.pp-cta-water {
  position: absolute;
  inset: -20%;
  opacity: .32;
  pointer-events: none;

  background:
    radial-gradient(ellipse at 20% 70%, rgba(255,255,255,.12), transparent 16%),
    radial-gradient(ellipse at 58% 84%, rgba(255,255,255,.08), transparent 20%),
    linear-gradient(
      120deg,
      transparent 0%,
      rgba(255,255,255,.06) 48%,
      transparent 100%
    );

  animation: ppCTAWaterMove 16s ease-in-out infinite alternate;
}

@keyframes ppCTAWaterMove {

  0% {
    transform:
      translate3d(-24px, 8px, 0)
      scale(1.04);
  }

  50% {
    transform:
      translate3d(14px, -12px, 0)
      scale(1.08);
  }

  100% {
    transform:
      translate3d(30px, 4px, 0)
      scale(1.05);
  }
}

/* CONTENU */

.pp-cta-content {
  position: relative;
  z-index: 2;
}

.pp-cta-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: #38c4f5;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.pp-cta-content h2 {
  margin: 0 0 26px;
  max-width: 760px;
  color: #fff;
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.03em;
}

.pp-cta-content p {
  max-width: 760px;
  margin: 0 0 20px;
  color: rgba(255,255,255,.82);
  font-size: 15px;
  line-height: 1.7;
}

.pp-cta-content p:last-child {
  margin-bottom: 0;
}

.pp-cta-content a {
  position: relative;
  color: #38c4f5;
  text-decoration: none;
  transition:
    color .28s ease,
    text-shadow .28s ease;
}

.pp-cta-content a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background:
    linear-gradient(90deg, #31b7ee, #38c4f5);
  opacity: .55;
}

.pp-cta-content a:hover {
  color: #fff;
  text-shadow:
    0 0 18px rgba(56,196,245,.42);
}

/* ACTIONS */

.pp-cta-actions {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  gap: 20px;

  padding-left: 40px;
}

/* BOUTON TÉLÉPHONE */

.pp-cta-phone {
  position: relative;

  display: flex;
  align-items: center;
  gap: 18px;

  min-height: 96px;

  padding: 18px 22px;

  background:
    rgba(255,255,255,.08);

  border: 1px solid rgba(255,255,255,.14);

  backdrop-filter: blur(12px);

  text-decoration: none;

  box-shadow:
    0 22px 50px rgba(0,0,0,.14);

  transition:
    transform .28s ease,
    border-color .28s ease,
    box-shadow .28s ease;
}

.pp-cta-phone:hover {
  transform: translateY(-4px);

  border-color: rgba(56,196,245,.38);

  box-shadow:
    0 30px 65px rgba(0,0,0,.18),
    0 0 30px rgba(56,196,245,.12);
}

.pp-cta-phone-icon {
  width: 64px;
  height: 64px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #fff;

  background:
    linear-gradient(135deg, #31b7ee, #1687c8);

  box-shadow:
    0 16px 34px rgba(22,135,200,.26);

  flex-shrink: 0;
}

.pp-cta-phone-icon i {
  font-size: 24px;
}

.pp-cta-phone-content {
  display: flex;
  flex-direction: column;
}

.pp-cta-phone-content small {
  margin-bottom: 4px;

  color: rgba(255,255,255);

  font-size: 11px;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: .12em;
}

.pp-cta-phone-content strong {
  color: #fff;

  font-size: 24px;

  font-weight: 600;

  letter-spacing: -.02em;
}

/* CTA PRINCIPAL */

.pp-cta-main-btn {
  position: relative;

  isolation: isolate;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 66px;

  padding: 0 34px;

  overflow: hidden;

  color: #fff;

  background:
    linear-gradient(135deg, #31b7ee, #1687c8);

  text-decoration: none;

  text-transform: uppercase;

  font-size: 13px;

  font-weight: 600;

  letter-spacing: .10em;

  box-shadow:
    0 24px 58px rgba(22,135,200,.24);

  transition:
    transform .28s ease,
    box-shadow .28s ease;
}

.pp-cta-main-btn::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      120deg,
      transparent 0%,
      rgba(255,255,255,.18) 48%,
      transparent 100%
    );

  transform: translateX(-100%);

  transition: transform .75s ease;
}

.pp-cta-main-btn::after {
  content: "»";

  margin-left: 16px;

  font-size: 34px;

  font-weight: 300;

  line-height: 1;

  letter-spacing: -.12em;

  transform: translateY(-1px);

  transition:
    transform .28s ease,
    text-shadow .28s ease;
	    margin-top: -7px;
}

.pp-cta-main-btn:hover {
  color: #fff;

  transform: translateY(-3px);

  box-shadow:
    0 32px 70px rgba(22,135,200,.30),
    0 0 30px rgba(56,196,245,.18);
}

.pp-cta-main-btn:hover::before {
  transform: translateX(100%);
}

.pp-cta-main-btn:hover::after {
  transform:
    translateX(6px)
    translateY(-1px);

  text-shadow:
    0 0 18px rgba(255,255,255,.35);
}

/* RESPONSIVE */

@media (max-width: 1199px) {

  .pp-cta-contact-inner {
    padding: 75px 60px;
  }

  .pp-cta-actions {
    padding-left: 0;
    margin-top: 40px;
  }

}

@media (max-width: 767px) {

  .pp-cta-contact {
    padding: 80px 0;
  }

  .pp-cta-contact-inner {
    padding: 55px 28px;
  }

  .pp-cta-content h2 {
    font-size: 34px;
  }

  .pp-cta-content p {
    font-size: 14px;
    line-height: 1.7;
  }

  .pp-cta-phone {
    min-height: 88px;
  }

  .pp-cta-phone-content strong {
    font-size: 20px;
  }

  .pp-cta-main-btn {
    width: 100%;
  }

}


/* =========================================================
   BLOC DURÉE DE VIE PISCINE
========================================================= */

.pp-lifetime-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(56,196,245,.18), transparent 30%),
    radial-gradient(circle at 88% 80%, rgba(49,183,238,.14), transparent 32%),
    linear-gradient(135deg, #041225 0%, #061b38 52%, #083767 100%);
}

.pp-lifetime-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.035) 0,
      rgba(255,255,255,.035) 1px,
      transparent 1px,
      transparent 130px
    );
  pointer-events: none;
}

.pp-lifetime-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}

.pp-lifetime-content {
  padding: 54px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 32px 90px rgba(0,0,0,.20);
}

.pp-lifetime-kicker {
  display: inline-block;
  margin-bottom: 16px;
  color: #1687c8;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.pp-lifetime-content h2 {
  margin: 0 0 26px;
  color: #061b38;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.03em;
}

.pp-lifetime-text p {
  margin: 0 0 20px;
  color: #000;
  font-size: 15px;
  line-height: 1.1;
  text-align: justify;
}

.pp-lifetime-text p:last-child {
  margin-bottom: 0;
}

/* IMAGE */

.pp-lifetime-visual {
  position: relative;
}

.pp-lifetime-image {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  box-shadow: 0 42px 95px rgba(0,0,0,.28);
}

.pp-lifetime-image::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  border: 1px solid rgba(255,255,255,.42);
  pointer-events: none;
}

.pp-lifetime-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(4,18,37,.38)),
    radial-gradient(circle at 20% 18%, rgba(56,196,245,.20), transparent 32%);
  pointer-events: none;
}

.pp-lifetime-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 1.2s ease;
}

.pp-lifetime-image:hover img {
  transform: scale(1.09);
}

/* BADGE */

.pp-lifetime-badge {
  position: absolute;
  top: -34px;
  left: -34px;
  z-index: 5;
  width: 156px;
  height: 156px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, #31b7ee, #1687c8);
  color: #fff;
  box-shadow: 0 24px 55px rgba(0,0,0,.24);
}

.pp-lifetime-badge strong {
  font-size: 42px;
  font-weight: 600;
  line-height: 1;
}

.pp-lifetime-badge span {
  max-width: 105px;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-align: center;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .pp-lifetime-section {
    padding: 85px 0;
  }

  .pp-lifetime-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .pp-lifetime-content {
    padding: 38px;
  }

  .pp-lifetime-image,
  .pp-lifetime-image img {
    height: 520px;
    min-height: 520px;
  }

  .pp-lifetime-badge {
    left: 24px;
  }
}

@media (max-width: 575px) {
  .pp-lifetime-section {
    padding: 65px 0;
  }

  .pp-lifetime-content {
    padding: 28px;
  }

  .pp-lifetime-content h2 {
    font-size: 30px;
  }

  .pp-lifetime-text p {
    font-size: 14px;
  }

  .pp-lifetime-image,
  .pp-lifetime-image img {
    height: 390px;
    min-height: 390px;
  }

  .pp-lifetime-badge {
    width: 128px;
    height: 128px;
    top: -24px;
    left: 18px;
  }

  .pp-lifetime-badge strong {
    font-size: 34px;
  }
}


/* =========================================================
   BLOC INTRO SERVICE PREMIUM
========================================================= */

.pp-service-intro {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(56,196,245,.10), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(49,183,238,.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.pp-service-intro::before {
  content: "";
  position: absolute;
  inset: auto -10% 0 -10%;
  height: 340px;
  background: radial-gradient(ellipse at center, rgba(56,196,245,.10), transparent 70%);
  pointer-events: none;
}

/* IMAGE */

.pp-service-image-wrap {
  position: relative;
  padding-right: 40px;
}

.pp-service-image-glow {
  position: absolute;
  top: 50%;
  left: 45%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(56,196,245,.18), transparent 70%);
  transform: translate(-50%, -50%);
  filter: blur(24px);
  pointer-events: none;
}

.pp-service-image {
  position: relative;
  overflow: hidden;
  box-shadow: 0 38px 85px rgba(6,27,56,.14);
}

.pp-service-image::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  border: 1px solid rgba(255,255,255,.42);
  pointer-events: none;
}

.pp-service-image img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
  transition: transform 1.2s ease;
}

.pp-service-image:hover img {
  transform: scale(1.08);
}

/* CONTENU */

.pp-service-content {
  position: relative;
  padding-left: 70px;
}

.pp-service-subtitle {
  display: inline-block;
  margin-bottom: 16px;
  color: #1687c8;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.pp-service-content h2 {
  margin: 0 0 24px;
  color: #061b38;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.03em;
}
.pp-service-content h1 {
  margin: 0 0 24px;
  color: #061b38;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.03em;
}

.pp-service-text p {
  margin: 0 0 22px;
  color: #000;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.1;
  text-align: justify;
}

.pp-service-text p:last-child {
  margin-bottom: 0;
}

/* BOUTON CTA PREMIUM */

.pp-service-actions {
  margin-top: 42px;
}

.pp-service-btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 0 26px 0 38px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, #061b38 0%, #0a3565 48%, #1687c8 100%);
  border: 1px solid rgba(49,183,238,.38);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .09em;
  box-shadow:
    0 24px 54px rgba(6,27,56,.22),
    inset 0 1px 0 rgba(255,255,255,.18);
  transition:
    transform .3s ease,
    box-shadow .3s ease,
    border-color .3s ease;
}

.pp-service-btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,.22), transparent 24%),
    linear-gradient(120deg, transparent 0%, rgba(255,255,255,.20) 48%, transparent 100%);
  transform: translateX(-110%);
  transition: transform .75s ease;
}

.pp-service-btn::after {
  content: "»";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 18px;
  width: 34px;
  height: 34px;
  color: #fff;
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.12em;
  text-indent: -0.08em;
  transition:
    transform .28s ease,
    background .28s ease,
    box-shadow .28s ease,
    border-color .28s ease;
	margin-top: -7px;
}

.pp-service-btn:hover {
  color: #fff;
  transform: translateY(-3px);
 
}

.pp-service-btn:hover::before {
  transform: translateX(110%);
}

.pp-service-btn:hover::after {
  transform: translateX(6px);

}

/* RESPONSIVE */

@media (max-width: 1199px) {
  .pp-service-content {
    padding-left: 50px;
  }

  .pp-service-image img {
    height: 600px;
  }
}

@media (max-width: 991px) {
  .pp-service-intro {
    padding: 85px 0;
  }

  .pp-service-image-wrap {
    padding-right: 0;
  }

  .pp-service-content {
    padding-left: 0;
    padding-top: 48px;
  }

  .pp-service-image img {
    height: 520px;
  }
}

@media (max-width: 575px) {
  .pp-service-intro {
    padding: 65px 0;
  }

  .pp-service-content h1 {
    font-size: 30px;
  } 
	
	.pp-service-content h2 {
    font-size: 30px;
  }

  .pp-service-text p {
    font-size: 14px;
  }

  .pp-service-image img {
    height: 400px;
  }

  .pp-service-btn {
    width: 100%;
    padding: 0 22px 0 26px;
  }
}

/* =========================================================
   PAGE CONTACT PREMIUM
========================================================= */
/* HOVER PREMIUM INFOS CONTACT */

.pp-contact-line a {
  position: relative;

  display: inline-block;

  transition:
    color .28s ease,
    transform .28s ease,
    text-shadow .28s ease;
}

.pp-contact-line a::before {
  content: "";

  position: absolute;

  left: 0;
  bottom: -3px;

  width: 0;
  height: 1px;

  background:
    linear-gradient(90deg, #31b7ee, #38c4f5);

  box-shadow:
    0 0 12px rgba(56,196,245,.35);

  transition:
    width .3s ease;
}

.pp-contact-line a:hover {
  color: #1687c8;

  transform: translateX(4px);

  text-shadow:
    0 0 16px rgba(56,196,245,.24);
}

.pp-contact-line a:hover::before {
  width: 100%;
}
.pp-contact-page {
  position: relative;
  overflow: hidden;

  padding: 110px 0;

  background:
    radial-gradient(circle at 12% 8%, rgba(56,196,245,.10), transparent 32%),
    radial-gradient(circle at 88% 12%, rgba(49,183,238,.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
}

.pp-contact-page::before {
  content: "";

  position: absolute;

  inset: auto -10% 0 -10%;

  height: 360px;

  background:
    radial-gradient(
      ellipse at center,
      rgba(56,196,245,.12),
      transparent 68%
    );

  pointer-events: none;
}

/* INTRO */

.pp-contact-intro {
  position: relative;
  z-index: 1;

  max-width: 820px;

  margin-bottom: 56px;
}

.pp-contact-intro span,
.pp-map-header span {
  display: inline-block;

  margin-bottom: 14px;

  color: #1687c8;

  font-size: 12px;
  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: .14em;
}

.pp-contact-intro h1,
.pp-map-header h2 {
  margin: 0 0 18px;

  color: #061b38;

  font-size: clamp(30px, 3vw, 44px);

  font-weight: 600;

  letter-spacing: -.03em;

  line-height: 1.08;
}

.pp-contact-intro p {
  max-width: 720px;

  margin: 0;

  color: #000;

  font-size: 17px;

  line-height: 1.85;
}

/* CARDS */

.pp-contact-card {
  position: relative;
  z-index: 1;

  height: 100%;

  background: rgba(255,255,255,.84);

  border: 1px solid rgba(6,27,56,.08);

  backdrop-filter: blur(14px);

  box-shadow:
    0 28px 80px rgba(6,27,56,.08);
}

.pp-contact-info-card {
  padding: 42px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.92),
      rgba(246,251,255,.88)
    );
}

.pp-form-card {
  padding: 42px;
}

.pp-contact-card h2 {
  position: relative;

  margin: 0 0 30px;

  color: #061b38;

  font-size: 22px;

  font-weight: 600;

  letter-spacing: -.02em;

  line-height: 1.2;
}

.pp-contact-card h2::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -14px;

  width: 54px;
  height: 2px;

  background:
    linear-gradient(90deg, #31b7ee, #1687c8);
}

/* INFOS CONTACT */

.pp-contact-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.pp-contact-line {
  display: grid;

  grid-template-columns: 48px 1fr;

  gap: 18px;

  align-items: flex-start;
}

.pp-contact-icon {
  width: 48px;
  height: 48px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #1687c8;

  background:
    linear-gradient(180deg, #ffffff, #f0f9ff);

  border: 1px solid rgba(22,135,200,.14);

  box-shadow:
    0 14px 30px rgba(6,27,56,.06);
}

.pp-contact-icon i {
  font-size: 18px;
}

.pp-contact-line strong {
  display: block;

  margin-bottom: 5px;

  color: #061b38;

  font-size: 12px;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: .10em;
}

.pp-contact-line a,
.pp-contact-line span {
  color: rgba(6,27,56,.72);

  font-size: 16px;

  line-height: 1.7;

  text-decoration: none;

  transition:
    color .25s ease,
    transform .25s ease;
}

.pp-contact-line a:hover {
  color: #1687c8;
}

/* FORMULAIRE */

.pp-contact-form label {
  display: block;

  margin-bottom: 9px;

  color: #061b38;

  font-size: 12px;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: .10em;
}

.pp-contact-form input,
.pp-contact-form select,
.pp-contact-form textarea {
  width: 100%;

  min-height: 58px;

  padding: 0 18px;

  color: #061b38;

  background: #f7fbff;

  border: 1px solid rgba(6,27,56,.10);

  outline: none;

  font-size: 15px;

  transition:
    border-color .25s ease,
    background .25s ease,
    box-shadow .25s ease;
}

.pp-contact-form textarea {
  min-height: 150px;

  padding-top: 18px;

  resize: vertical;
}

.pp-contact-form input:focus,
.pp-contact-form select:focus,
.pp-contact-form textarea:focus {
  background: #fff;

  border-color: rgba(49,183,238,.7);

  box-shadow:
    0 0 0 4px rgba(49,183,238,.12);
}

.pp-contact-form input::placeholder,
.pp-contact-form textarea::placeholder {
  color: rgba(6,27,56,.38);
}

/* BOUTON */

.pp-submit-btn {
  min-height: 56px;

  padding: 0 32px;

  border: none;

  color: #fff;

  background:
    linear-gradient(135deg, #31b7ee, #1687c8);

  box-shadow:
    0 18px 40px rgba(22,135,200,.18);

  text-transform: uppercase;

  font-size: 13px;

  font-weight: 600;

  letter-spacing: .08em;

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease;
}

.pp-submit-btn:hover {
  transform: translateY(-2px);

  box-shadow:
    0 24px 54px rgba(22,135,200,.24);
}

/* MAP */

.pp-map-section {
  position: relative;
  z-index: 1;

  margin-top: 70px;
}

.pp-map-header {
  max-width: 720px;

  margin-bottom: 30px;
}

.pp-map-frame {
  position: relative;

  overflow: hidden;

  height: 460px;

  background: #061b38;

  box-shadow:
    0 30px 90px rgba(6,27,56,.12);
}

.pp-map-frame::before {
  content: "";

  position: absolute;

  inset: 18px;

  z-index: 1;

  border: 1px solid rgba(255,255,255,.32);

  pointer-events: none;
}

.pp-map-frame iframe {
  width: 100%;
  height: 100%;

  border: 0;

  filter:
    saturate(.92)
    contrast(1.04);
}

/* RESPONSIVE */

@media (max-width: 991px) {

  .pp-contact-page {
    padding: 80px 0;
  }

  .pp-contact-info-card,
  .pp-form-card {
    padding: 34px;
  }

  .pp-map-frame {
    height: 380px;
  }

}

@media (max-width: 575px) {

  .pp-contact-page {
    padding: 62px 0;
  }

  .pp-contact-intro {
    margin-bottom: 40px;
  }

  .pp-contact-intro p {
    font-size: 16px;
  }

  .pp-contact-info-card,
  .pp-form-card {
    padding: 26px;
  }

  .pp-contact-line {
    grid-template-columns: 42px 1fr;

    gap: 14px;
  }

  .pp-contact-icon {
    width: 42px;
    height: 42px;
  }

  .pp-map-frame {
    height: 320px;
  }

}
/* =========================================================
   TOP BANNER PREMIUM
========================================================= */

.pp-inner-banner {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: #031326;
}

/* IMAGE DE FOND */

.pp-banner-image {
  position: absolute;
  inset: 0;
  z-index: -5;

  background-image: var(--banner-img);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  transform: scale(1.04);
}

/* OVERLAY PRINCIPAL */

.pp-inner-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;

  background:
    linear-gradient(
      90deg,
      rgba(3,19,38,.90) 0%,
      rgba(6,44,88,.62) 48%,
      rgba(12,143,198,.26) 100%
    ),
    linear-gradient(
      180deg,
      rgba(3,19,38,.14) 0%,
      rgba(3,19,38,.62) 100%
    );
}

/* LUEUR BASSE */

.pp-inner-banner::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -85px;

  z-index: -1;

  height: 190px;

  background:
    radial-gradient(
      ellipse at center,
      rgba(56,196,245,.34),
      transparent 68%
    );

  filter: blur(24px);
}

/* REFLETS EAU */

.pp-water-reflection {
  position: absolute;
  inset: -20%;

  z-index: -3;

  background:
    radial-gradient(
      ellipse at 20% 70%,
      rgba(255,255,255,.16),
      transparent 18%
    ),

    radial-gradient(
      ellipse at 50% 84%,
      rgba(255,255,255,.12),
      transparent 20%
    ),

    radial-gradient(
      ellipse at 78% 68%,
      rgba(255,255,255,.14),
      transparent 18%
    ),

    linear-gradient(
      115deg,
      transparent 0%,
      rgba(255,255,255,.04) 42%,
      rgba(255,255,255,.16) 50%,
      rgba(255,255,255,.04) 58%,
      transparent 100%
    );

  opacity: .62;

  animation: ppWaterReflectionMove 14s ease-in-out infinite alternate;

  pointer-events: none;
}

@keyframes ppWaterReflectionMove {

  0% {
    transform:
      translate3d(-18px, 8px, 0)
      scale(1.03);
  }

  50% {
    transform:
      translate3d(12px, -10px, 0)
      scale(1.07);
  }

  100% {
    transform:
      translate3d(28px, 6px, 0)
      scale(1.04);
  }
}

/* FIL D’ARIANE */

.pp-breadcrumb {
  position: relative;
  z-index: 5;

  margin-bottom: 42px;

  display: inline-flex;

  padding: 15px 22px;

  background: rgba(255,255,255,.12);

  border: 1px solid rgba(255,255,255,.22);

  backdrop-filter: blur(16px);

  box-shadow:
    0 18px 45px rgba(0,0,0,.16),
    inset 0 1px 0 rgba(255,255,255,.16);
}

.pp-breadcrumb ul {
  display: flex;
  align-items: center;
  gap: 13px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.pp-breadcrumb li {
  display: inline-flex;
  align-items: center;

  margin: 0;
  padding: 0;
}

.pp-breadcrumb li:not(:last-child)::after {
  content: "/";

  margin-left: 13px;

  color: rgba(255,255,255,.42);
}

.pp-breadcrumb a,
.pp-breadcrumb span {
  color: #fff;

  text-decoration: none;

  font-size: 13px;
  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: .06em;
}

.pp-breadcrumb a {
  color: rgba(255,255,255,.76);

  transition:
    color .25s ease,
    text-shadow .25s ease;
}

.pp-breadcrumb a:hover {
  color: #fff;

  text-shadow:
    0 0 18px rgba(56,196,245,.45);
}

/* RESPONSIVE */

@media (max-width: 575px) {

  .pp-inner-banner {
    min-height: 205px;
  }

  .pp-breadcrumb {
    margin-bottom: 30px;
    padding: 13px 16px;
  }

  .pp-breadcrumb a,
  .pp-breadcrumb span {
    font-size: 11px;
  }

}




/* =========================================================
   HEADER PREMIUM
========================================================= */

.pp-container {
  max-width: 1640px;
  padding-left: 48px;
  padding-right: 48px;
}

body.pp-menu-open {
  overflow: hidden;
}

.pp-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 20px 60px rgba(2, 18, 42, 0.08);
}

/* TOP BAR */

.pp-topbar {
  background: linear-gradient(135deg, #061b38 0%, #082a55 58%, #1f9ad4 100%);
}

.pp-topbar-inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pp-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.pp-phone:hover {
  color: #fff;
}

.pp-phone-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(47, 179, 236, 0.16);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
}

.pp-phone-icon svg {
  width: 17px;
  height: 17px;
  fill: #36bdf2;
}

.pp-quote-btn {
  min-height: 58px;
  padding: 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #31b7ee, #1687c8);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.pp-quote-btn:hover {
  color: #fff;
}

/* NAV DESKTOP */

.pp-navbar {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(18px);
}

.pp-navbar-inner {
  min-height: 128px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pp-logo img {
  width: 300px;
  height: auto;
  display: block;
}

.pp-desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pp-desktop-nav li {
  margin: 0;
  padding: 0;
}

.pp-desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #061b38;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.045em;
  padding: 18px 0;
}

.pp-desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #1c95d0, #38c4f5);
  border-radius: 999px;
  transition: width 0.28s ease;
}

.pp-desktop-nav a:hover,
.pp-desktop-nav a.active {
  color: #1687c8;
}

.pp-desktop-nav a:hover::after,
.pp-desktop-nav a.active::after {
  width: 100%;
}

/* BURGER */

.pp-menu-btn {
  display: none;
  width: 58px;
  height: 54px;
  border: 1px solid rgba(6,27,56,0.12);
  background: linear-gradient(180deg, #fff, #f5fbff);
  box-shadow: 0 14px 34px rgba(6,27,56,0.10);
  padding: 14px;
}

.pp-menu-btn span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: #061b38;
  border-radius: 99px;
}

/* OVERLAY MOBILE */

.pp-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(2, 16, 36, 0.58);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

body.pp-menu-open .pp-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* MENU MOBILE */

.pp-mobile-menu {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 10001;
  width: min(90vw, 430px);
  background: linear-gradient(180deg, #ffffff, #f6fbff);
  transform: translateX(-105%);
  transition: transform 0.42s cubic-bezier(.22,.61,.36,1);
  box-shadow: 30px 0 80px rgba(0,0,0,0.28);
  display: flex;
  flex-direction: column;
}

body.pp-menu-open .pp-mobile-menu {
  transform: translateX(0);
}

.pp-mobile-head {
  min-height: 125px;
  padding: 26px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pp-mobile-head img {
  width: 255px;
  height: auto;
  display: block;
}

.pp-mobile-head button {
  width: 44px;
  height: 44px;
  border: none;
  background: #285593;
  color: #fff;
  font-size: 32px;
  line-height: 1;
}

.pp-mobile-nav {
  width: 100%;
  padding: 10px 30px 30px;
  overflow-y: auto;
}

.pp-mobile-nav ul {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pp-mobile-nav li {
  width: 100%;
  margin: 0;
  padding: 0;
}

.pp-mobile-nav a {
  position: relative;
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #061b38;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(6,27,56,0.09);
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.pp-mobile-nav a::after {
  content: "›";
  color: #1687c8;
  font-size: 25px;
  font-weight: 300;
  opacity: 0.65;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.pp-mobile-nav a:hover,
.pp-mobile-nav a.active {
  color: #1687c8;
  padding-left: 8px;
}

.pp-mobile-nav a:hover::after,
.pp-mobile-nav a.active::after {
  opacity: 1;
  transform: translateX(4px);
}

/* LIEN LANGUE MOBILE */

.pp-mobile-nav li:last-child a {
  width: 58px;
  min-height: 42px;
  margin-top: 22px;
  padding: 0;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #31b7ee, #1687c8);
  border-bottom: none;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.pp-mobile-nav li:last-child a::after {
  display: none;
}

.pp-mobile-nav li:last-child a:hover {
  padding-left: 0;
  color: #fff;
  transform: translateY(-2px);
}

/* BAS DU MENU MOBILE */

.pp-mobile-bottom {
  margin-top: auto;
  padding: 30px;
  background: linear-gradient(135deg, #061b38, #0a315e);
}

.pp-mobile-phone,
.pp-mobile-cta {
  display: block;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.pp-mobile-phone {
  font-size: 22px;
  margin-bottom: 18px;
}

.pp-mobile-cta {
  padding: 16px 20px;
  background: linear-gradient(135deg, #31b7ee, #1687c8);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pp-mobile-phone:hover,
.pp-mobile-cta:hover {
  color: #fff;
}

/* RESPONSIVE */

@media (max-width: 1280px) {
  .pp-logo img {
    width: 285px;
  }

  .pp-desktop-nav ul {
    gap: 22px;
  }

  .pp-desktop-nav a {
    font-size: 13px;
  }
}

@media (max-width: 1100px) {
  .pp-desktop-nav {
    display: none;
  }

  .pp-menu-btn {
    display: block;
  }

  .pp-navbar-inner {
    min-height: 104px;
  }

  .pp-logo img {
    width: 255px;
  }
}

@media (max-width: 575px) {
  .pp-container {
    padding-left: 22px;
    padding-right: 22px;
  }

  .pp-topbar-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .pp-phone {
    justify-content: center;
    padding: 12px 0;
  }

  .pp-quote-btn {
    display: none;
  }

  .pp-logo img {
    width: 215px;
  }

  .pp-mobile-head img {
    width: 215px;
  }

  .pp-mobile-head {
    min-height: 108px;
    padding: 22px;
  }

  .pp-mobile-nav {
    padding: 8px 24px 28px;
  }

  .pp-mobile-nav a {
    min-height: 54px;
    font-size: 14px;
  }

  .pp-mobile-bottom {
    padding: 24px;
  }
}











/* FOOTER */
.pp-footer {
  position: relative;
  overflow: hidden;
  color: #dceeff;
  background:
    radial-gradient(circle at 12% 15%, rgba(49, 183, 238, 0.18), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(56, 196, 245, 0.12), transparent 30%),
    linear-gradient(135deg, #041225 0%, #061b38 48%, #082a55 100%);
}

.pp-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), transparent 24%),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.025) 0,
      rgba(255,255,255,0.025) 1px,
      transparent 1px,
      transparent 120px
    );
  pointer-events: none;
}

.pp-footer::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 86px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56,196,245,0.55), transparent);
}

.pp-footer-main {
  position: relative;
  z-index: 1;
  padding: 92px 0 72px;
}

.pp-footer-logo {
  display: inline-block;
  margin-bottom: 28px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 24px 70px rgba(0,0,0,0.24);
}

.pp-footer-logo img {
  width: 285px;
  max-width: 100%;
  height: auto;
  display: block;
}

.pp-footer-brand p {
  max-width: 520px;
  margin: 0;
  color: rgba(220, 238, 255, 0.82);
  font-size: 16px;
  line-height: 1.8;
}

.pp-footer-col h3 {
  position: relative;
  margin: 0 0 28px;
  color: #fff;
  font-size: 17px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.pp-footer-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 46px;
  height: 3px;
  background: linear-gradient(90deg, #31b7ee, #38c4f5);
  border-radius: 999px;
}

.pp-footer-col nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.pp-footer-col nav a,
.pp-footer-col nav span,
.pp-contact-item span,
.pp-contact-item a {
  color: rgba(220, 238, 255, 0.78);
  font-size: 15px;
  line-height: 1.55;
  text-decoration: none;
}

.pp-footer-col nav a {
  position: relative;
  width: fit-content;
  transition: color 0.25s ease, transform 0.25s ease;
}

.pp-footer-col nav a:hover,
.pp-contact-item a:hover {
  color: #38c4f5;
}

.pp-footer-col nav a:hover {
  transform: translateX(5px);
}

.pp-footer-contact {
  padding: 34px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.11);
  box-shadow: 0 24px 70px rgba(0,0,0,0.18);
  backdrop-filter: blur(14px);
}

.pp-contact-item {
  margin-bottom: 18px;
}

.pp-contact-item:last-child {
  margin-bottom: 0;
}

.pp-contact-item strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.065em;
}

.pp-footer-bottom {
  position: relative;
  z-index: 1;
  padding: 24px 0;
  background: rgba(2, 13, 30, 0.52);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.pp-footer-bottom p {
  margin: 0;
  color: rgba(220, 238, 255, 0.72);
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}

.pp-footer-bottom a,
.footer-links {
  color: #38c4f5;
  text-decoration: none;
  font-weight: 700;
}

.pp-footer-bottom a:hover,
.footer-links:hover {
  color: #fff;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .pp-footer-main {
    padding: 72px 0 56px;
  }

  .pp-footer-contact {
    padding: 28px;
  }
}

@media (max-width: 575px) {
  .pp-footer-main {
    padding: 58px 0 44px;
  }

  .pp-footer-logo {
    padding: 16px 18px;
  }

  .pp-footer-logo img {
    width: 235px;
  }

  .pp-footer-brand p {
    font-size: 15px;
  }

  .pp-footer-bottom p {
    font-size: 13px;
  }
}
/* HOVER PREMIUM FOOTER */

.pp-footer-col nav a,
.pp-contact-item a,
.footer-links {
  position: relative;
  transition:
    color 0.28s ease,
    transform 0.28s ease,
    text-shadow 0.28s ease;
}

.pp-footer-col nav a::before,
.pp-contact-item a::before,
.footer-links::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #31b7ee, #38c4f5);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(56,196,245,.45);
  transition: width .3s ease;
}

.pp-footer-col nav a:hover,
.pp-contact-item a:hover,
.footer-links:hover {
  color: #ffffff;
  transform: translateX(6px);
  text-shadow: 0 0 18px rgba(56,196,245,.45);
}

.pp-footer-col nav a:hover::before,
.pp-contact-item a:hover::before,
.footer-links:hover::before {
  width: 100%;
}

/* BACK TO TOP */

.pp-back-top {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 99999;

  width: 72px;
  height: 72px;

  border: none;
  border-radius: 50%;

  background:
    linear-gradient(135deg, #061b38, #1687c8);

  box-shadow:
    0 22px 55px rgba(6,27,56,.28),
    0 0 26px rgba(56,196,245,.20);

  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);

  cursor: pointer;

  transition:
    opacity .3s ease,
    visibility .3s ease,
    transform .3s ease,
    box-shadow .3s ease;
}

.pp-back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.pp-back-top:hover {
  transform: translateY(-4px);
  box-shadow:
    0 30px 70px rgba(6,27,56,.34),
    0 0 34px rgba(56,196,245,.28);
}

.pp-back-progress {
  position: absolute;
  inset: 0;
  width: 72px;
  height: 72px;
  transform: rotate(-90deg);
}

.pp-back-progress-bg,
.pp-back-progress-line {
  fill: none;
  stroke-width: 3;
}

.pp-back-progress-bg {
  stroke: rgba(255,255,255,.16);
}

.pp-back-progress-line {
  stroke: #38c4f5;
  stroke-linecap: round;
  stroke-dasharray: 188.5;
  stroke-dashoffset: 188.5;
}

.pp-back-arrow {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 100%;

  color: #fff;

  font-size: 25px;
  font-weight: 300;
  line-height: 1;
}

@media (max-width: 575px) {
  .pp-back-top {
    right: 18px;
    bottom: 18px;
    width: 62px;
    height: 62px;
  }

  .pp-back-progress {
    width: 62px;
    height: 62px;
  }
}
