   /* =========================
   BOUTON DIMENSIONS
  ========================= */  
.met-footer-btn-secondary{
    position: relative;
    overflow: hidden;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 12px;

    min-height: 54px;
    padding: 14px 32px;

    background: transparent;

    border: 1px solid rgba(255,255,255,.28);
    border-radius: 5px;

    color: #ffffff;

    text-decoration: none;
    text-transform: uppercase;

    font-size: 13px!important;
    font-weight: 800;
    letter-spacing: .05em;
    line-height: 1;

    transition:
        background .35s ease,
        border-color .35s ease,
        transform .35s ease,
        box-shadow .35s ease;
}

.met-footer-btn-secondary::after{
    content: "";

    position: absolute;
    top: 0;
    left: -80%;

    width: 50%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.20),
        transparent
    );

    transform: skewX(-20deg);
    transition: .7s ease;
}

.met-footer-btn-secondary:hover{
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.55);

    transform: translateY(-2px);

    box-shadow:
        0 10px 30px rgba(0,0,0,.15);
}

.met-footer-btn-secondary:hover::after{
    left: 140%;
}
/* =========================
   404
  ========================= */    

.met-404 {
    background: #f7f9fb;
    padding: 100px 0;
}

.met-404-inner {
    max-width: 1200px;
    margin: 0 auto;

    background: #fff;

    box-shadow:
        0 30px 90px rgba(16,20,24,.08);

    overflow: hidden;
}

.met-404-image {
    height: 340px;
}

.met-404-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.met-404-content {
    text-align: center;
    padding: 60px;
}

.met-404-kicker {
    display: inline-block;

    margin-bottom: 15px;

    color: #1D6C91;

    font-size: 12px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: .18em;
}

.met-404-content h1 {
    margin: 0 0 22px;

    color: #101418;

    font-size: clamp(32px,4vw,56px);

    line-height: 1;
    letter-spacing: -.03em;
	font-weight:700;
}

.met-404-content p {
    max-width: 700px;
    margin: 0 auto 12px;

    color: rgba(16,20,24,.75);

    font-size: 17px;

    line-height: 1.3;
}

.met-404-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;

    margin-top: 35px;
}

.met-404-btn {
    padding: 18px 30px;

    text-decoration: none;

    text-transform: uppercase;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: .05em;

    transition: .35s;
	border-radius:5px;
}

.met-404-btn-primary {
    background: linear-gradient(
        135deg,
        #1D6C91,
        #267EA8
    );

    color: #fff;
}

.met-404-btn-secondary {
    border: 1px solid rgba(16,20,24,.12);
    color: #101418;
}

.met-404-btn:hover {
    transform: translateY(-3px);
}

.met-404-contact {
    margin-top: 30px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    flex-wrap: wrap;
}

.met-404-contact span {
    color: rgba(16,20,24,.65);
}

.met-404-contact a {
    color: #1D6C91;

    font-weight: 800;

    text-decoration: none;
}

@media (max-width: 767px) {

    .met-404 {
        padding: 60px 0;
    }

    .met-404-image {
        height: 220px;
    }

    .met-404-content {
        padding: 40px 25px;
    }

    .met-404-buttons {
        flex-direction: column;
    }

}

/* =========================
    HERO
  ========================= */      
.met-hero {
  position: relative;
  min-height: calc(100vh - 150px);
  overflow: hidden;
  background: #101418;
}

.met-hero-slider,
.met-hero-slide,
.met-hero-overlay {
  position: absolute;
  inset: 0;
}

.met-hero-slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 6s ease;
}

.met-hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.met-hero-overlay {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(5,8,12,.92) 0%, rgba(5,8,12,.76) 34%, rgba(5,8,12,.22) 68%, rgba(5,8,12,.12) 100%),
    linear-gradient(180deg, rgba(5,8,12,.18), rgba(5,8,12,.35));
}

.met-hero-inner {
  position: relative;
  z-index: 3;
  min-height: calc(100vh - 150px);
  display: flex;
  align-items: center;
}

.met-hero-content {
  max-width: 650px;
  padding: 80px 0;
  color: #fff;
}

.met-hero-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: #58A9CF;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.met-hero h2 {
  max-width: 660px;
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(26px, 2.2vw, 42px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.03em;
}

.met-hero p {
  max-width: 560px;
  margin: 0 0 34px;
  color: rgba(255,255,255,.86);
  font-size: 17px;
  line-height: 1.35;
}

.met-hero-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 38px;
}

.met-hero-feature {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.met-hero-feature i {
  width: 48px;
  height: 48px;
  background: #1D6C91;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 19px;
  box-shadow: 0 12px 30px rgba(29,108,145,.28);
}

.met-hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.met-hero-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 30px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .05em;
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
	    border-radius: 5px;
}

.met-hero-btn-primary {
  background: linear-gradient(135deg, #1D6C91, #267EA8);
  color: #fff;
  box-shadow: 0 18px 42px rgba(29,108,145,.28);
}

.met-hero-btn-outline {
  color: #fff;
  border: 1px solid rgba(255,255,255,.48);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(6px);
}

.met-hero-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.34), transparent);
  transform: skewX(-20deg);
  transition: .7s ease;
}

.met-hero-btn:hover {
  transform: translateY(-3px);
}

.met-hero-btn-primary:hover {
  box-shadow: 0 24px 54px rgba(29,108,145,.36);
}

.met-hero-btn-outline:hover {
  background: rgba(255,255,255,.12);
}

.met-hero-btn:hover::after {
  left: 140%;
}

.met-hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 52px;
  height: 52px;
  border: 0;
  background: rgba(255,255,255,.08);
  color: #fff;
  backdrop-filter: blur(8px);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background .3s ease, transform .3s ease;
}

.met-hero-arrow:hover {
  background: rgba(29,108,145,.75);
}

.met-hero-prev {
  left: 28px;
}

.met-hero-next {
  right: 28px;
}

.met-hero-dots {
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 5;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.met-hero-dots button {
  width: 28px;
  height: 4px;
  border: 0;
  background: rgba(255,255,255,.45);
  cursor: pointer;
  transition: background .3s ease, width .3s ease;
}

.met-hero-dots button.is-active {
  width: 42px;
  background: #1D6C91;
}

@media (max-width: 991px) {
  .met-hero,
  .met-hero-inner {
    min-height: 760px;
  }

  .met-hero-content {
    max-width: 620px;
    padding: 70px 0;
  }

  .met-hero-overlay {
    background:
      linear-gradient(90deg, rgba(5,8,12,.92) 0%, rgba(5,8,12,.72) 58%, rgba(5,8,12,.35) 100%);
  }

  .met-hero-arrow {
    display: none;
  }
}

@media (max-width: 575px) {
	.met-container.met-hero-inner p {
		display:none;
}
	
  .met-hero,
  .met-hero-inner {
    min-height: 720px;
  }

  .met-hero h2 {
    font-size: 28px;
  }

  .met-hero p {
    font-size: 16px;
    line-height: 1.35;
  }

  .met-hero-feature {
    font-size: 13px;
  }

  .met-hero-feature i {
    width: 42px;
    height: 42px;
  }

  .met-hero-buttons {
    flex-direction: column;
  }

  .met-hero-btn {
    width: 100%;
  }
}


/* =========================
    SERVICES
  ========================= */      
.met-services-section {
  position: relative;
  overflow: hidden;
  background: #f7f9fb;
  padding: 95px 0;
}

.met-services-section::before {
  content: "";
  position: absolute;
  top: -220px;
  right: -180px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(29,108,145,.09), transparent 70%);
  pointer-events: none;
}

.met-services-heading {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto 52px;
  text-align: center;
}

.met-services-heading h2 {
margin: 0;
    color: #101418;
    font-size: clamp(30px, 3vw, 46px);
    line-height: 1;
    letter-spacing: -.03em;
    font-weight: 700;
}

.met-services-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
}

.met-service-card {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(16,20,24,.08);
  box-shadow: 0 24px 70px rgba(16,20,24,.07);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.met-service-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.met-service-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.met-service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(29,108,145,.18);
  box-shadow: 0 34px 90px rgba(16,20,24,.11);
}

.met-service-image {
  position: relative;
  overflow: hidden;
  height: 235px;
  background: #101418;
}

.met-service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(16,20,24,0) 45%,
    rgba(16,20,24,.24) 100%
  );
  pointer-events: none;
}

.met-service-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease, filter .55s ease;
}

.met-service-card:hover .met-service-image img {
  transform: scale(1.045);
  filter: contrast(1.05) saturate(1.04);
}

.met-service-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  padding: 34px 28px 32px;
}

.met-service-content h3 {
  margin: 0 0 16px;
  color: #101418;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.met-service-content h3::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  margin: 14px auto 0;
  background: linear-gradient(90deg, #1D6C91, #58A9CF);
  border-radius: 50px;
}

.met-service-content p {
  flex: 1;
  margin: 0;
  color: rgba(16,20,24,.74);
  font-size: 15px;
  line-height: 1.2;
}

.met-service-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
  padding: 14px 24px;
  min-width: 150px;
  background: #1D6C91;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  transition: background .35s ease, transform .35s ease, box-shadow .35s ease;    
	border-radius: 5px;
}

.met-service-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.32), transparent);
  transform: skewX(-20deg);
  transition: .7s ease;
}

.met-service-btn:hover {
  background: #1D6C91;
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(29,108,145,.25);
}

.met-service-btn:hover::after {
  left: 140%;
}

@media (max-width: 1100px) {
  .met-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .met-service-card,
  .met-service-card:nth-child(4),
  .met-service-card:nth-child(5) {
    grid-column: auto;
  }

  .met-service-card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 560px;
    justify-self: center;
  }
}

@media (max-width: 700px) {
  .met-services-section {
    padding: 65px 0;
  }

  .met-services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .met-service-card:nth-child(5) {
    grid-column: auto;
    max-width: none;
  }

  .met-service-image {
    height: 220px;
  }

  .met-service-content {
    padding: 30px 24px;
  }
}

/* =========================
    MAP ACCUEIL
  ========================= */   
.met-home-map {
    background: #f6f8fa;
    padding: 100px 0 0;
}

.met-home-map-header {
    text-align: center;
    margin-bottom: 50px;
}

.met-home-map-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: #1D6C91;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .18em;
}

.met-home-map-header h2 {
    margin: 0 0 16px;
    color: #101418;
    font-size: clamp(34px,3vw,54px);
    line-height: 1.2;
}

.met-home-map-header p {
    max-width: 850px;
    margin: 0 auto;
    color: #000;
    line-height: 1.2;
}

.met-home-map-full {
    width: 100%;
}

.met-home-map-wrapper {
    position: relative;
    width: 100%;
    padding: 20px;
    background: #ffffff;
    box-shadow:
        0 25px 80px rgba(16,20,24,.08);
}

.met-home-map-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 20px solid #ffffff;
    pointer-events: none;
    z-index: 2;
}

.met-home-map-wrapper iframe {
    display: block;
    width: 100%;
    height: 350px;
    border: 0;
}

@media (max-width: 991px) {

    .met-home-map {
        padding: 70px 0 0;
    }

    .met-home-map-wrapper iframe {
        height: 300px;
    }

}

@media (max-width: 575px) {

    .met-home-map {
        padding: 56px 0 0;
    }

    .met-home-map-wrapper {
        padding: 10px;
    }

    .met-home-map-wrapper::before {
        border-width: 10px;
    }

    .met-home-map-wrapper iframe {
        height: 250px;
    }

}
/* =========================
    TABLEAU DIMENSIONS
  ========================= */  

.met-size-table-section {
  background: #f6f8fa;
  padding: 95px 0;
}

.met-size-table-heading {
  text-align: center;
  margin-bottom: 48px;
}

.met-size-table-heading h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  padding-bottom: 18px;
  color: #101418;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.2;
  letter-spacing: -.03em;
}

.met-size-table-heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, #1D6C91, #58A9CF);
  transform: translateX(-50%);
  border-radius: 50px;
}
.met-size-table-heading h1 {
  position: relative;
  display: inline-block;
  margin: 0;
  padding-bottom: 18px;
  color: #101418;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.2;
  letter-spacing: -.03em;
}

.met-size-table-heading h1::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, #1D6C91, #58A9CF);
  transform: translateX(-50%);
  border-radius: 50px;
}
.met-size-table-grid {
  display: grid;
  grid-template-columns: 370px 1fr;
  gap: 28px;
  align-items: start;
}

.met-size-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(16,20,24,.08);
  box-shadow: 0 24px 70px rgba(16,20,24,.08);
}

.met-size-card-header {
  width: 100%;
  min-height: 82px;
  padding: 22px 28px;
  border: 0;
  background: linear-gradient(135deg,#0d3f5d,#1D6C91);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
}

.met-size-card-header span {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.met-size-card-header small {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.85);
  font-size: 13px;
}

.met-size-card-header i {
  display: none;
  transition: .3s;
}

.met-size-card-body {
  background: #fff;
}

.met-size-card table {
  width: 100%;
  border-collapse: collapse;
}

.met-size-card th,
.met-size-card td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(16,20,24,.08);
  text-align: center;
  line-height: 1.2;
}

.met-size-card th {
  background: #f1f5f8;
  color: #0d3f5d;
  font-size: 13px;
  font-weight: 800;
}

.met-size-card td {
  font-size: 15px;
  font-weight: 600;
}

.met-size-card tbody tr:hover {
  background: rgba(29,108,145,.05);
}

.met-size-card-image {
  padding: 18px;
}

.met-size-card-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center center;
  border-radius: 4px;
  box-shadow: 0 15px 40px rgba(0,0,0,.10);
  transition: .4s;
}

.met-size-card-image:hover img {
  transform: scale(1.02);
}

@media (max-width: 991px) {

  .met-size-table-section {
    padding: 70px 0;
  }

  .met-size-table-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .met-size-card-header {
    cursor: pointer;
  }

  .met-size-card-header i {
    display: block;
  }

  .met-size-card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
  }

  .met-size-card.is-open .met-size-card-body {
    max-height: 2500px;
  }

  .met-size-card.is-open .met-size-card-header i {
    transform: rotate(180deg);
  }

  .met-size-card-image img {
    aspect-ratio: 16 / 7;
  }
}

@media (max-width: 767px) {

  .met-size-card-header span {
    font-size: 20px;
  }

  .met-size-card-large table {
    font-size: 14px;
  }

  .met-size-card-large th,
  .met-size-card-large td {
    padding: 12px 8px;
  }
}

@media (max-width: 575px) {

  .met-size-table-section {
    padding: 56px 0;
  }

  .met-size-table-heading {
    margin-bottom: 34px;
  }

  .met-size-card-header {
    min-height: 70px;
    padding: 18px 20px;
  }

  .met-size-card-header span {
    font-size: 18px;
  }

  .met-size-card-header small {
    font-size: 12px;
  }

  .met-size-card-image {
    padding: 14px;
  }

  .met-size-card-image img {
    aspect-ratio: 16 / 9;
  }

  .met-size-card-large th,
  .met-size-card-large td {
    padding: 10px 6px;
    font-size: 12px;
  }

  .met-size-card-large th {
    font-size: 11px;
  }
}

/* =========================
   CTA
  ========================= */  

.met-storage-cta {
    background: #ffffff;
    padding: 90px 0;
}

.met-storage-cta-box {
    text-align: center;
    padding: 70px;
    background: linear-gradient(
        180deg,
        #ffffff,
        #f7f9fb
    );
    border: 1px solid rgba(16,20,24,.08);
    box-shadow: 0 30px 80px rgba(16,20,24,.08);
}

.met-storage-cta-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: #1D6C91;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.met-storage-cta-box h2 {
    margin: 0 0 25px;
    color: #101418;
    font-size: clamp(32px,3vw,46px);
    line-height: 1.2;
}

.met-storage-cta-box p {
    max-width: 900px;
    margin: 0 auto 12px;
    color: rgba(16,20,24,.78);
    font-size: 16px;
    line-height: 1.2;
}

.met-storage-cta-box p a {
    position: relative;
    color: #1D6C91;
    font-weight: 800;
    text-decoration: none;
}

.met-storage-cta-box p a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    background: linear-gradient(
        90deg,
        #1D6C91,
        #58A9CF
    );
    transform: scaleX(.35);
    transform-origin: left;
    opacity: .55;
    transition: .35s;
}

.met-storage-cta-box p a:hover::after {
    transform: scaleX(1);
    opacity: 1;
}

.met-storage-cta-phone {
    margin-top: 35px;
}

.met-storage-cta-phone a {
    color: #101418;
    text-decoration: none;
    font-size: clamp(34px,4vw,52px);
    font-weight: 700;
    letter-spacing: -.03em;
    transition: .3s;
}

.met-storage-cta-phone a:hover {
    color: #1D6C91;
}

.met-storage-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 35px;
}

.met-storage-btn-primary,
.met-storage-btn-secondary {
    padding: 18px 32px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .05em;
    transition: .35s;
	    border-radius: 5px;
}

.met-storage-btn-primary {
    background: linear-gradient(
        135deg,
        #1D6C91,
        #267ea8
    );
    color: #fff;
}

.met-storage-btn-secondary {
    border: 1px solid rgba(16,20,24,.12);
    color: #101418;
    background: #fff;
}

.met-storage-btn-primary:hover,
.met-storage-btn-secondary:hover {
    transform: translateY(-3px);
}

@media (max-width: 768px) {

    .met-storage-cta-box {
        padding: 40px 25px;
    }

    .met-storage-cta-buttons {
        flex-direction: column;
    }

}



/* =========================
    BLOCK 5
  ========================= */   

.met-dimensions-block {
  position: relative;
  overflow: hidden;
  background: linear-gradient( 135deg,rgba(12,40,62,.98),rgba(29,108,145,.95));
  padding: 95px 0;
}

.met-dimensions-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 25%, rgba(29,108,145,.24), transparent 32%),
    repeating-linear-gradient(
      -45deg,
      rgba(255,255,255,.025) 0,
      rgba(255,255,255,.025) 2px,
      transparent 2px,
      transparent 18px
    );
  pointer-events: none;
}

.met-dimensions-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 70px;
  align-items: center;
}

.met-dimensions-image {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
}

.met-dimensions-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(16,20,24,.05) 0%,
    rgba(16,20,24,.32) 100%
  );
  pointer-events: none;
}

.met-dimensions-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  display: block;
  transition: transform .6s ease, filter .6s ease;
}

.met-dimensions-image:hover img {
  transform: scale(1.025);
  filter: contrast(1.05) saturate(1.04);
}

.met-dimensions-content {
  background: rgba(255,255,255,.96);
  padding: 58px;
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 28px 80px rgba(0,0,0,.20);
	    border-radius: 10px;
}

.met-dimensions-content h2 {
  margin: 0 0 26px;
  color: #101418;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  letter-spacing: -.03em;
	font-weight:700;
}

.met-dimensions-content p {
  margin: 0 0 10px;
  color: rgba(16,20,24,.78);
  font-size: 16px;
  line-height: 1.2;
  text-align: justify;
}

.met-dimensions-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .met-dimensions-block {
    padding: 70px 0;
  }

  .met-dimensions-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .met-dimensions-image {
    min-height: 380px;
  }

  .met-dimensions-image img {
    min-height: 380px;
  }

  .met-dimensions-content {
    padding: 42px;
  }
}

@media (max-width: 600px) {
  .met-dimensions-content p {
    text-align: left;
  }
}

@media (max-width: 575px) {
  .met-dimensions-block {
    padding: 56px 0;
  }

  .met-dimensions-content {
    padding: 30px 22px;
  }

  .met-dimensions-content h2 {
    font-size: 28px;
  }

  .met-dimensions-image {
    min-height: 300px;
  }

  .met-dimensions-image img {
    min-height: 300px;
  }
}


/* =========================
    BLOCK 4
  ========================= */   
.met-dimensions-image {
  position: relative;
  z-index: 2;
}

.met-dimensions-image::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 24px;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(29,108,145,.75);
  z-index: 1;
}

.met-dimensions-image img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 620px;
  object-fit: cover;
  background: #fff;
  padding: 12px;
  box-shadow: 0 25px 70px rgba(0,0,0,.18);
	    border-radius: 10px;
}

.met-dimensions-badge {
  position: absolute;
  right: 25px;
  bottom: 38px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: 240px;
  padding: 18px 22px;
  background: #fff;
  color: #101418;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  border-left: 4px solid #1D6C91;
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
  transition: transform .35s ease, box-shadow .35s ease;
	border-radius: 5px;
}

.met-dimensions-badge i {
  color: #1D6C91;
  font-size: 14px;
  transition: transform .35s ease;
}

.met-dimensions-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(0,0,0,.24);
}

.met-dimensions-badge:hover i {
  transform: translateY(4px);
}

@media (max-width: 991px) {
  .met-dimensions-image img {
    height: 420px;
  }

  .met-dimensions-badge {
    right: 18px;
    bottom: 24px;
  }
}

@media (max-width: 575px) {
  .met-dimensions-image::before {
    top: 14px;
    left: 14px;
  }

  .met-dimensions-image img {
    height: 300px;
    padding: 8px;
  }

  .met-dimensions-badge {
    right: 12px;
    bottom: 18px;
    max-width: 210px;
    padding: 15px 18px;
    font-size: 13px;
  }
}

.met-heated-storage {
  background: #f7f9fb;
  padding: 90px 0;
}

.met-heated-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 470px;
  gap: 58px;
  align-items: center;
  background: #ffffff;
  padding: 58px;
  border: 1px solid rgba(16,20,24,.08);
  box-shadow: 0 28px 80px rgba(16,20,24,.08);
  overflow: hidden;
}

.met-heated-card::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -160px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(29,108,145,.10), transparent 70%);
  pointer-events: none;
}

.met-heated-content {
  position: relative;
  z-index: 2;
}

.met-heated-content h2 {
margin: 0 0 24px;
    color: #101418;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1;
    letter-spacing: -.03em;
    font-weight: 700;
}

.met-heated-content p {
  margin: 0 0 10px;
  color: rgba(16,20,24,.78);
  font-size: 16px;
  line-height: 1.2;
  text-align: justify;
}

.met-heated-content p:last-child {
  margin-bottom: 0;
}

.met-heated-image {
  position: relative;
  z-index: 2;
  padding: 12px;
  background: #ffffff;
  border: 1px solid rgba(16,20,24,.08);
  box-shadow:
    0 22px 60px rgba(16,20,24,.10),
    0 0 0 8px rgba(29,108,145,.035);
}

.met-heated-image::after {
  content: "";
  position: absolute;
  right: -14px;
  bottom: -14px;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(29,108,145,.16) 0 2px, transparent 3px);
  background-size: 14px 14px;
  opacity: .55;
  z-index: -1;
}

.met-heated-image img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
  filter: contrast(1.02) saturate(1.02);
  transition: transform .5s ease, filter .5s ease;
}

.met-heated-image:hover img {
  transform: scale(1.014);
  filter: contrast(1.05) saturate(1.04);
}

@media (max-width: 991px) {
  .met-heated-storage {
    padding: 70px 0;
  }

  .met-heated-card {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 42px;
  }

  .met-heated-image {
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
  }

  .met-heated-image img {
    height: 400px;
  }
}

@media (max-width: 600px) {
  .met-heated-content p {
    text-align: left;
  }

  .met-heated-card {
    padding: 30px 22px;
  }

  .met-heated-image {
    padding: 10px;
  }

  .met-heated-image::after {
    right: -6px;
    bottom: -6px;
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 575px) {
  .met-heated-storage {
    padding: 56px 0;
  }

  .met-heated-content h2 {
    font-size: 28px;
  }

  .met-heated-image img {
    height: 300px;
  }
}


  /* =========================
    LIENS CONTACT
  ========================= */   

.met-contact-intro p a {
  position: relative;
  display: inline;
  color: #1D6C91;
  font-weight: 800;
  text-decoration: none;
  padding: 0 2px;

  background: linear-gradient(
    180deg,
    transparent 58%,
    rgba(29,108,145,.16) 58%
  );

  transition:
    color .3s ease,
    background .3s ease;
}

.met-contact-intro p a::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: -2px;

  height: 2px;

  background: linear-gradient(
    90deg,
    #1D6C91,
    #58A9CF
  );

  transform: scaleX(.35);
  transform-origin: left;
  opacity: .55;

  transition:
    transform .35s ease,
    opacity .35s ease;
}

.met-contact-intro p a:hover {
  color: #101418;

  background: linear-gradient(
    180deg,
    transparent 54%,
    rgba(29,108,145,.24) 54%
  );
}

.met-contact-intro p a:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

  /* =========================
    BLOCK 3
  ========================= */   
.met-indoor-contact-content p a {
  position: relative;
  display: inline;
  color: #1D6C91;
  font-weight: 800;
  text-decoration: none;
  padding: 0 2px;
  background: linear-gradient(180deg, transparent 58%, rgba(29,108,145,.16) 58%);
  transition: color .3s ease, background .3s ease;
}

.met-indoor-contact-content p a::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: -2px;
  height: 2px;
  background: linear-gradient(90deg, #1D6C91, #58a9cf);
  transform: scaleX(.35);
  transform-origin: left;
  opacity: .55;
  transition: transform .35s ease, opacity .35s ease;
}

.met-indoor-contact-content p a:hover {
  color: #101418;
  background: linear-gradient(180deg, transparent 54%, rgba(29,108,145,.24) 54%);
}

.met-indoor-contact-content p a:hover::after {
  transform: scaleX(1);
  opacity: 1;
}
.met-indoor-contact {
    background: #fff;
    padding: 90px 0;
}

.met-indoor-contact-grid {
    display: grid;
    grid-template-columns: 540px 1fr;
    gap: 70px;
    align-items: center;
}

.met-indoor-contact-content h2 {
    margin: 0 0 24px;
    color: #101418;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.03em;
}

.met-indoor-contact-content p {
    margin: 0;
    color: #000;
    font-size: 16px;
    line-height: 1.2;
    text-align: justify;
	margin-bottom:15px;
}

.met-indoor-contact-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    padding: 18px 30px;
    background: linear-gradient(135deg,#1D6C91,#267ea8);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .05em;
    border-radius: 4px;
    box-shadow: 0 14px 36px rgba(29,108,145,.24);
    transition: .35s;
}

.met-indoor-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 46px rgba(29,108,145,.34);
}

.met-indoor-contact-image {
    position: relative;
    padding: 14px;
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(16,20,24,.08);
    border-radius: 10px;
    box-shadow:
        0 24px 70px rgba(16,20,24,.10),
        0 0 0 8px rgba(29,108,145,.035);
}

.met-indoor-contact-image::before {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 7px;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0) 45%,
        rgba(16,20,24,.18) 100%
    );
    z-index: 3;
    pointer-events: none;
}

.met-indoor-contact-image img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 620px;
    object-fit: cover;
    border-radius: 7px;
    transition: .5s ease;
}

.met-indoor-contact-image:hover img {
    transform: scale(1.015);
}

@media (max-width: 991px) {

    .met-indoor-contact {
        padding: 70px 0;
    }

    .met-indoor-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .met-indoor-contact-image {
        order: 2;
        max-width: 680px;
        margin: 0 auto;
    }

    .met-indoor-contact-image img {
        height: 420px;
    }

}

@media (max-width: 600px) {

    .met-indoor-contact-content p {
        text-align: left;
    }

}

@media (max-width: 575px) {

    .met-indoor-contact {
        padding: 56px 0;
    }

    .met-indoor-contact-content h2 {
        font-size: 30px;
    }

    .met-indoor-contact-image img {
        height: 300px;
    }

}
  /* =========================
    BLOCK 2
  ========================= */   
.met-security-box p a {
  position: relative;
  display: inline;
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  padding: 0 3px;
  background: linear-gradient(
    180deg,
    transparent 58%,
    rgba(255,255,255,.18) 58%
  );
  transition: color .3s ease, background .3s ease;
}

.met-security-box p a::after {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  bottom: -2px;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,.95),
    rgba(255,255,255,.45)
  );
  transform: scaleX(.35);
  transform-origin: left;
  opacity: .65;
  transition: transform .35s ease, opacity .35s ease;
}

.met-security-box p a:hover {
  color: #ffffff;
  background: linear-gradient(
    180deg,
    transparent 52%,
    rgba(255,255,255,.28) 52%
  );
}

.met-security-box p a:hover::after {
  transform: scaleX(1);
  opacity: 1;
}
.met-security-highlight {
    background: #fff;
}

.met-security-box {
    position: relative;
    overflow: hidden;

    padding: 90px 0;

    background:
        linear-gradient(
            135deg,
            rgba(12,40,62,.98),
            rgba(29,108,145,.95)
        );
}

.met-security-box::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        repeating-linear-gradient(
            -45deg,
            rgba(255,255,255,.02) 0,
            rgba(255,255,255,.02) 2px,
            transparent 2px,
            transparent 18px
        );

    pointer-events: none;
}

.met-security-box::after {
    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    top: -350px;
    right: -350px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,.08),
            transparent 70%
        );
}

.met-security-box h2 {
    position: relative;
    z-index: 2;

    max-width: 900px;

    margin: 0 auto 25px;

    text-align: center;

    color: #fff;

    font-size: clamp(30px, 3vw, 48px);
    font-weight: 700;

    line-height: 1;
    letter-spacing: -.03em;
}

.met-security-box p {
    position: relative;
    z-index: 2;

    max-width: 1000px;

    margin: 0 auto;
	margin-bottom:15px;

    text-align: center;

    color: rgba(255,255,255,.88);

    font-size: 17px;
    line-height: 1.2;
}

@media (max-width: 991px) {

    .met-security-box {
        padding: 70px 0;
    }

}

@media (max-width: 600px) {

    .met-security-box {
        padding: 55px 0;
    }

    .met-security-box h2 {
        font-size: 28px;
    }

    .met-security-box p {
        font-size: 16px;
    }

}

/* =========================
    BLOCK 1
  ========================= */   

.met-indoor-intro {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding: 90px 0;
}

.met-indoor-intro::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -180px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(29,108,145,.08), transparent 70%);
  pointer-events: none;
}

.met-indoor-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 540px;
  gap: 70px;
  align-items: center;
}

.met-indoor-content {
  max-width: 700px;
}

.met-indoor-content h1 {
  margin: 0 0 24px;
  color: #101418;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.03em;
}

.met-indoor-content p {
  margin: 0;
  color: #000;
  font-size: 16px;
  line-height: 1.2;
  text-align: justify;margin-bottom:15px;
}

.met-indoor-content p strong,
.met-indoor-content p em {
  color: #101418;
}

.met-indoor-content p a {
  position: relative;
  display: inline;
  color: #1D6C91;
  font-weight: 800;
  text-decoration: none;
  padding: 0 2px;
  background: linear-gradient(180deg, transparent 58%, rgba(29,108,145,.16) 58%);
  transition: color .3s ease, background .3s ease;
}

.met-indoor-content p a::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: -2px;
  height: 2px;
  background: linear-gradient(90deg, #1D6C91, #58a9cf);
  transform: scaleX(.35);
  transform-origin: left;
  opacity: .55;
  transition: transform .35s ease, opacity .35s ease;
}

.met-indoor-content p a:hover {
  color: #101418;
  background: linear-gradient(180deg, transparent 54%, rgba(29,108,145,.24) 54%);
}

.met-indoor-content p a:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.met-indoor-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  padding: 18px 30px;
  background: linear-gradient(135deg, #1D6C91, #267ea8);
  color: #fff !important;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .05em;
  border-radius: 4px;
  box-shadow: 0 14px 36px rgba(29,108,145,.24);
  transition: transform .35s ease, box-shadow .35s ease;
}

.met-indoor-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 46px rgba(29,108,145,.34);
}

.met-indoor-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg);
  transition: .7s ease;
}

.met-indoor-btn:hover::after {
  left: 140%;
}

.met-indoor-image {
  position: relative;
  padding: 14px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(16,20,24,.08);
  border-radius: 10px;
  box-shadow:
    0 24px 70px rgba(16,20,24,.10),
    0 0 0 8px rgba(29,108,145,.035);
}

.met-indoor-image::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 7px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0) 45%,
    rgba(16,20,24,.18) 100%
  );
  z-index: 3;
  pointer-events: none;
}

.met-indoor-image::after {
  content: "";
  position: absolute;
  right: -14px;
  bottom: -14px;
  width: 150px;
  height: 150px;
  background:
    radial-gradient(circle, rgba(29,108,145,.16) 0 2px, transparent 3px);
  background-size: 14px 14px;
  opacity: .55;
  z-index: -1;
}

.met-indoor-image img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 7px;
  filter: contrast(1.02) saturate(1.02);
  transition: transform .5s ease, filter .5s ease;
}

.met-indoor-image:hover img {
  transform: scale(1.014);
  filter: contrast(1.05) saturate(1.04);
}

@media (max-width: 991px) {
  .met-indoor-intro {
    padding: 70px 0;
  }

  .met-indoor-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .met-indoor-image {
    order: 2;
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
  }

  .met-indoor-image img {
    height: 420px;
  }
}

@media (max-width: 600px) {
  .met-indoor-content p {
    text-align: left;
  }

  .met-indoor-image {
    padding: 10px;
    box-shadow:
      0 18px 50px rgba(16,20,24,.10),
      0 0 0 6px rgba(29,108,145,.03);
  }

  .met-indoor-image::before {
    inset: 10px;
  }

  .met-indoor-image::after {
    right: -6px;
    bottom: -6px;
    width: 105px;
    height: 105px;
  }
}

@media (max-width: 575px) {
  .met-indoor-intro {
    padding: 56px 0;
  }

  .met-indoor-content h1 {
    font-size: 30px;
  }

  .met-indoor-image img {
    height: 300px;
  }
}


/* =========================
    CONTACT
  ========================= */ 

.met-contact-page {
  background: #f5f7f9;
}

.met-contact-page p,
.met-contact-page li,
.met-contact-page a,
.met-contact-page span {
  line-height: 1.2;
}

.met-contact-intro {
  padding: 72px 0 36px;
  text-align: center;
}

.met-section-kicker {
  display: inline-block;
  margin-bottom: 16px;
  color: #1D6C91;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.met-contact-intro h1 {
  max-width: 760px;
  margin: 0 auto 18px;
  color: #101418;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
  letter-spacing: -.03em;
}

.met-contact-intro p {
  max-width: 850px;
  margin: 0 auto;
  color: #000;
  font-size: 17px;
}

.met-contact-content {
  padding: 34px 0 76px;
}

.met-contact-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 34px;
  align-items: stretch;
}

.met-contact-sidebar {
  display: grid;
  gap: 24px;
}

.met-contact-card,
.met-contact-form,
.met-hours-card {
  background: #fff;
  border: 1px solid rgba(16,20,24,.08);
  box-shadow: 0 24px 70px rgba(16,20,24,.08);
}

.met-contact-card {
  position: relative;
  overflow: hidden;
  padding: 38px;
}

.met-contact-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #1D6C91, #58a9cf);
}

.met-contact-card h2,
.met-contact-form h2,
.met-hours-card h2,
.met-map-header h2 {
  margin: 0 0 26px;
  color: #101418;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -.03em;
}

.met-contact-list,
.met-location-notes ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.met-contact-list li {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(16,20,24,.09);
}

.met-contact-list li:first-child {
  padding-top: 0;
}

.met-contact-list i {
  width: 46px;
  height: 46px;
  background: #101418;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.met-contact-list strong {
  display: block;
  margin-bottom: 6px;
  color: #101418;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.met-contact-list a {
  color: rgba(16,20,24,.74);
  text-decoration: none;
  transition: color .3s ease;
}

.met-contact-list a:hover {
  color: #1D6C91;
}

.met-location-notes {
  margin-top: 28px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(29,108,145,.08), rgba(16,20,24,.03));
  border: 1px solid rgba(29,108,145,.18);
}

.met-location-notes h3 {
  margin: 0 0 18px;
  color: #101418;
  font-size: 20px;
  line-height: 1.2;
}

.met-location-notes li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
  color: rgba(16,20,24,.74);
  font-size: 15px;
  transition: color .3s ease, transform .3s ease;
}

.met-location-notes li:last-child {
  margin-bottom: 0;
}

.met-location-notes li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: -1px;
  width: 21px;
  height: 21px;
  background: #1D6C91;
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
}

.met-location-notes li:hover {
  color: #101418;
  transform: translateX(4px);
}

.met-location-notes li:hover::before {
  transform: scale(1.12) rotate(8deg);
  background: #267ea8;
  box-shadow: 0 8px 18px rgba(29,108,145,.26);
}

.met-contact-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  padding: 18px 30px;
  background: linear-gradient(135deg, #1D6C91, #267ea8);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .05em;
  border-radius: 4px;
  box-shadow: 0 14px 36px rgba(29,108,145,.24);
  transition: all .35s ease;
}

.met-contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 46px rgba(29,108,145,.34);
}

.met-contact-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.34), transparent);
  transform: skewX(-20deg);
  transition: .7s ease;
}

.met-contact-btn:hover::after {
  left: 140%;
}

.met-hours-card {
  padding: 38px;
  background: #101418;
}

.met-hours-card h2 {
  color: #fff;
}

.met-hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.met-hours-row:last-child {
  border-bottom: 0;
}

.met-hours-row span {
  color: rgba(255,255,255,.72);
}

.met-hours-row strong {
  color: #fff;
  font-weight: 800;
}

.met-contact-form {
  height: 100%;
  padding: 48px;
  background:
    radial-gradient(circle at top right, rgba(29,108,145,.12), transparent 34%),
    #fff;
}

.met-contact-form p {
  max-width: 590px;
  margin: 0 0 32px;
  color: rgba(16,20,24,.68);
  font-size: 17px;
}

.met-google-form-placeholder {
  min-height: 500px;
  border: 1px dashed rgba(29,108,145,.42);
  background: linear-gradient(135deg, rgba(29,108,145,.08), rgba(16,20,24,.03));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5px;
}

.met-google-form-placeholder i {
  margin-bottom: 18px;
  color: #1D6C91;
  font-size: 44px;
}

.met-google-form-placeholder strong {
  margin-bottom: 8px;
  color: #101418;
  font-size: 20px;
}

.met-google-form-placeholder span {
  color: rgba(16,20,24,.62);
}

.met-map-section {
  padding: 0 0 86px;
}

.met-map-header {
  margin-bottom: 28px;
  text-align: center;
}

.met-map-header h2 {
  margin-bottom: 0;
}

.met-map-wrapper {
  height: 520px;
  overflow: hidden;
  background: #101418;
  border: 1px solid rgba(16,20,24,.08);
  box-shadow: 0 28px 80px rgba(16,20,24,.13);
}

.met-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(100%) contrast(1.08);
}

@media (max-width: 991px) {
  .met-contact-intro {
    padding: 56px 0 28px;
  }

  .met-contact-grid {
    grid-template-columns: 1fr;
  }

  .met-google-form-placeholder {
    min-height: 420px;
  }

  .met-map-wrapper {
    height: 430px;
  }
}

@media (max-width: 575px) {
  .met-contact-intro h1 {
    font-size: 28px;
  }

  .met-contact-card,
  .met-contact-form,
  .met-hours-card {
    padding: 30px 24px;
  }

  .met-contact-card h2,
  .met-contact-form h2,
  .met-hours-card h2,
  .met-map-header h2 {
    font-size: 26px;
  }

  .met-contact-list li {
    gap: 14px;
  }

  .met-contact-list i {
    width: 40px;
    height: 40px;
  }

  .met-location-notes {
    padding: 22px;
  }

  .met-hours-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .met-google-form-placeholder {
    min-height: 320px;
  }

  .met-map-wrapper {
    height: 360px;
  }
}
/* =========================
    BANNER TOP
  ========================= */ 

.met-page-banner {
  position: relative;
  min-height: 320px;
  background-image: var(--banner-image);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.met-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 8, 12, .25) 0%, rgb(5 8 12 / 0%) 55%, rgb(5 8 12 / 0%) 100%);
}

.met-banner-inner {
  position: relative;
  z-index: 2;
  min-height: 260px;
}

.met-breadcrumb {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
}

.met-breadcrumb ul {
  list-style: none;
  margin: 0;
  padding: 13px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(8,12,16,.72);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
}

.met-breadcrumb li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  font-weight: 700;
}

.met-breadcrumb li:not(:last-child)::after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #1D6C91;
}

.met-breadcrumb a,
.met-breadcrumb span {
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.met-breadcrumb a {
  transition: color .3s ease;
}

.met-breadcrumb a:hover {
  color: #2d9bd1;
}

.met-breadcrumb i {
  margin-right: 8px;
}

@media (max-width: 991px) {
  .met-page-banner,
  .met-banner-inner {
    min-height: 190px;
  }

  .met-breadcrumb ul {
    padding: 11px 18px;
  }
}

@media (max-width: 575px) {
  .met-page-banner,
  .met-banner-inner {
    min-height: 145px;
  }

  .met-breadcrumb {
    width: calc(100% - 24px);
  }

  .met-breadcrumb ul {
    justify-content: center;
    gap: 10px;
    padding: 10px 14px;
  }

  .met-breadcrumb li {
    font-size: 13px;
    gap: 10px;
  }
}

/* =========================
    BACK TO THE TOP
  ========================= */
.met-backtotop {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 68px;
    height: 68px;
    border: 0;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);

    background: #0d1318;

    border: 2px solid #1D6C91;
    border-radius: 10px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.25),
        0 0 0 rgba(29,108,145,0);

    transition:
        opacity .3s ease,
        visibility .3s ease,
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}

.met-backtotop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.met-backtotop:hover {
    background: #1D6C91;

    box-shadow:
        0 20px 40px rgba(0,0,0,.35),
        0 0 25px rgba(29,108,145,.45);
}

.met-backtotop-icon {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;
}

.met-backtotop i {
    color: #ffffff;
    font-size: 22px;
    transition: transform .3s ease;
}

.met-backtotop:hover i {
    transform: translateY(-5px);
}

@media(max-width:767px){

    .met-backtotop{
        width:58px;
        height:58px;
        right:20px;
        bottom:80px;
    }

    .met-backtotop i{
        font-size:18px;
    }

}

@media(max-width:575px){

    .met-backtotop{
        bottom:100px;
    }


}
/* =========================
    FOOTER
  ========================= */
.met-footer p a,
.met-footer-about p a {
    position: relative;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    padding-bottom: 2px;
    transition: color .35s ease;
}

.met-footer p a::before,
.met-footer-about p a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,.25);
}

.met-footer p a::after,
.met-footer-about p a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #1D6C91;
    transition: width .35s ease;
}

.met-footer p a:hover,
.met-footer-about p a:hover {
    color: #1D6C91;
}

.met-footer p a:hover::after,
.met-footer-about p a:hover::after {
    width: 100%;
}

.met-container.met-footer-bottom {
    margin-top: 25px;
}
.met-footer {
  background: #101418;
  color: #fff;
}

.met-security-strip {
  background: linear-gradient(90deg, #05080c 0%, #07111d 50%, #05080c 100%);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.met-security-inner {
  display: flex;
  align-items: center;
}

.met-security-item {
  flex: 1;
  min-height: 120px;
  padding: 0 34px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-right: 1px solid rgba(255,255,255,.12);
}

.met-security-item:last-child {
  border-right: 0;
}

.met-security-item i {
  color: #fff;
  font-size: 36px;
  flex-shrink: 0;
}

.met-security-item strong {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.3;
}

.met-footer-main {
  background:
    radial-gradient(circle at top left, rgba(29,108,145,.18), transparent 34%),
    linear-gradient(135deg, #11171d 0%, #171e24 55%, #101418 100%);
  padding: 68px 0 24px;
}

.met-footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.35fr;
  gap: 70px;
}

.met-footer-logo {
  max-width: 275px;
  filter: brightness(0) invert(1);
  margin-bottom: 34px;
}

.met-footer h3,
.met-footer h4 {
    position: relative;
    display: inline-block;
    margin: 0 0 32px;
    padding-bottom: 16px;

    font-size: 20px;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: none;
    line-height: 1.2;

    color: #ffffff;
}

.met-footer h4 {
    margin-top: 32px;
    margin-bottom: 20px;
    font-size: 18px;
}

.met-footer h3::before,
.met-footer h4::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 70px;
    height: 3px;

    background: linear-gradient(
        90deg,
        #1D6C91,
        #58a9cf
    );

    border-radius: 50px;
}

.met-footer h3::after,
.met-footer h4::after {
    content: "";
    position: absolute;
    left: 80px;
    bottom: 1px;

    width: 25px;
    height: 1px;

    background: rgba(255,255,255,.25);
}

.met-footer h4 {
  margin-top: 26px;
  margin-bottom: 14px;
}

.met-footer p,
.met-footer a,
.met-footer li {
  color: rgba(255,255,255,.84);
  font-size: 15px;
  line-height: 1.3;
}

.met-footer p {
  margin: 0 0 10px;
}

.met-footer-about p {
  max-width: 360px;
}

.met-footer-links-list,
.met-footer-zones-list,
.met-footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.met-footer-links-list li,
.met-footer-zones-list li {
  min-height: 54px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  display: flex;
  align-items: center;
}

.met-footer-links-list a {
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  color: rgba(255,255,255,.84);
  text-decoration: none;
  transition: all .35s cubic-bezier(.4,0,.2,1);
}

.met-footer-links-list a i {
  font-size: 11px;
  color: rgba(255,255,255,.45);
  transition: all .35s cubic-bezier(.4,0,.2,1);
}

.met-footer-links-list a::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  width: 6px;
  height: 6px;
  background: #1D6C91;
  border-radius: 50%;
  opacity: 0;
  transform: translateY(-50%);
  transition: all .35s ease;
}

.met-footer-links-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #1D6C91, #2d9bd1);
  transition: width .35s ease;
}

.met-footer-links-list a:hover {
  color: #fff;
  padding-left: 18px;
}

.met-footer-links-list a:hover::before {
  left: 0;
  opacity: 1;
}

.met-footer-links-list a:hover::after {
  width: 100%;
}

.met-footer-links-list a:hover i {
  transform: translateX(8px);
  color: #1D6C91;
}

.met-footer-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding: 18px 32px;
    background: linear-gradient(135deg, #1D6C91, #267ea8);
    color: #fff !important;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px !important;
    letter-spacing: 0;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(29, 108, 145, .25);
    transition: all .35s ease;
}

.met-footer-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(29,108,145,.35);
}

.met-footer-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg);
  transition: .7s ease;
}

.met-footer-btn:hover::after {
  left: 140%;
}

.met-footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.met-footer-contact-list i {
  color: #fff;
  width: 18px;
  margin-top: 2px;
}

.met-footer-contact-list a {
  text-decoration: none;
  transition: color .3s ease;
}

.met-footer-contact-list a:hover,
.footer-links:hover {
  color: #2d9bd1;
}

.met-footer-bottom {
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.18);
  text-align: center;
}

.met-footer-bottom p,
.met-footer-bottom a {
  font-size: 13px;
  color: rgba(255,255,255,.72);
}

.footer-links {
  text-decoration: none;
  transition: color .3s ease;
}

@media (max-width: 991px) {
  .met-security-inner {
    flex-direction: column;
  }

  .met-security-item {
    width: 100%;
    min-height: auto;
    padding: 25px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .met-security-item:last-child {
    border-bottom: 0;
  }

  .met-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

@media (max-width: 575px) {
  .met-footer-main {
    padding-top: 48px;
  }

  .met-footer-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .met-footer-logo {
    max-width: 235px;
  }
}

/* =========================================================
   HEADER
========================================================= */
:root {
  --met-blue: #1D6C91;
  --met-black: #101418;
  --met-white: #ffffff;
  --met-border: rgba(0,0,0,.09);
}

.met-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.met-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  box-shadow: 0 10px 35px rgba(0,0,0,.08);
}

.met-topbar {
  background: var(--met-black);
}

.met-topbar-inner {
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.met-topbar-actions {
  height: 100%;
  display: flex;
  align-items: center;
}

.met-phone,
.met-lang,
.met-reservation {
  height: 46px;
  display: flex;
  align-items: center;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.met-phone {
  color: #fff;
  gap: 10px;
  transition: .3s ease;
}

.met-phone i {
  color: #fff;
  transition: .35s ease;
}

.met-phone:hover,
.met-phone:hover i {
  color: var(--met-blue);
}

.met-phone:hover i {
  transform: rotate(-12deg) scale(1.15);
}

.met-reservation {
  position: relative;
  overflow: hidden;
  background: var(--met-blue);
  color: #fff;
  gap: 10px;
  padding: 0 32px;
}

.met-reservation i {
  color: #fff;
  transition: .35s ease;
}

.met-reservation:hover i {
  transform: translateY(-2px) scale(1.1);
}

.met-reservation::after,
.met-side-reservation::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.32), transparent);
  transform: skewX(-20deg);
  transition: .65s ease;
}

.met-reservation:hover::after,
.met-side-reservation:hover::after {
  left: 130%;
}

.met-lang {
  color: #fff;
  padding-left: 26px;
}

.met-navbar {
  background: #fff;
}

.met-navbar-inner {
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.met-logo img {
  height: 82px;
  width: auto;
  display: block;
}

.met-menu ul,
.met-side-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.met-menu ul {
  display: flex;
  align-items: center;
  gap: 26px;
}

.met-menu li {
  margin: 0;
  padding: 0;
}

.met-menu a {
  color: var(--met-black);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .035em;
  position: relative;
  white-space: nowrap;
  transition: color .3s ease;
}

.met-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  background: var(--met-blue);
  transition: width .3s ease;
}

.met-menu a:hover {
  color: var(--met-blue);
}

.met-menu a:hover::after {
  width: 100%;
}

.met-burger {
  display: none;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,.12);
  cursor: pointer;
}

.met-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--met-black);
  margin: 5px auto;
}

.met-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,.28);
  opacity: 0;
  pointer-events: none;
  transition: .35s ease;
}

.met-side {
  position: fixed;
  top: 0;
  right: 0;
  width: 390px;
  max-width: 88vw;
  height: 100vh;
  background: #fff;
  z-index: 1001;
  padding: 34px 28px;
  transform: translateX(100%);
  transition: .4s cubic-bezier(.77,0,.18,1);
  box-shadow: -20px 0 60px rgba(0,0,0,.16);
  overflow-y: auto;
}

.met-close {
  position: absolute;
  top: 24px;
  right: 26px;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  color: #000;
  font-size: 26px;
  cursor: pointer;
}

.met-side-logo {
  text-align: center;
  margin-top: 34px;
  margin-bottom: 28px;
}

.met-side-logo img {
  max-width: 245px;
  height: auto;
}

.met-side-phone,
.met-side-reservation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

.met-side-phone {
  color: #000;
  font-size: 17px;
  margin-bottom: 16px;
}

.met-side-reservation {
  position: relative;
  overflow: hidden;
  height: 48px;
  background: var(--met-blue);
  color: #fff;
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .03em;
  margin-bottom: 28px;
}

.met-side-menu li {
  margin: 0;
  padding: 0;
}

.met-side-menu a {
  height: 56px;
  border-bottom: 1px solid var(--met-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 14px;
}

.met-side-menu a i {
  font-size: 12px;
}

body.met-menu-open {
  overflow: hidden;
}

body.met-menu-open .met-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.met-menu-open .met-side {
  transform: translateX(0);
}

@media (max-width: 991px) {
  .met-topbar {
  
  }
.met-container.met-topbar-inner {
    padding-right: 0px !important;
}
.met-lang {
    display: none;
}	
  .met-menu {
    display: none;
  }
  .met-burger {
    display: block;
  }

  .met-navbar-inner {
    height: 92px;
  }

  .met-logo img {
    height: 70px;
  }
}

@media (max-width: 575px) {
  .met-container {
    padding-left: 18px;
    padding-right: 18px;
  }
.met-container.met-topbar-inner {
    padding-right: 0px !important;
}
  .met-side {
    width: 100%;
    max-width: 100%;
  }

  .met-side-logo img {
    max-width: 220px;
  }
	.met-phone, .met-lang, .met-reservation {
    font-size: 11px;
    letter-spacing: 0;
}
}