

:root {
  --mv-navy: #062f56;
  --mv-blue: #0b84bf;
  --mv-gold: #e5a018;
  --mv-green: #25d366;
  --mv-ink: #10233a;
  --mv-muted: #5b7087;
  --mv-bg: #f5fbff;
  --mv-white: #ffffff;
  --mv-shadow: 0 20px 50px rgba(6, 47, 86, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--mv-bg);
  color: var(--mv-ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 24px rgba(6, 47, 86, 0.08);
  backdrop-filter: blur(10px);
}
.site-header__inner, .section-inner {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}
.site-header__inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand { display: flex; align-items: center; color: var(--mv-navy); font-weight: 800; }
.brand__mark {
  display: block;
  width: 200px;
  height: auto;
  border: none;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}
.brand__mark img { width: 100%; height: auto; object-fit: contain; display: block; }
.main-nav, .main-nav__list { display: flex; align-items: center; gap: 18px; }
.main-nav { color: var(--mv-navy); font-size: .95rem; font-weight: 700; }
.main-nav__list { margin: 0; padding: 0; list-style: none; }
.main-nav a { padding: 10px 0; }
.phone-pill {
  letter-spacing: -.3px;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--mv-gold);
  font: inherit;
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: opacity .2s;
}
.phone-pill:hover { opacity: .65; }

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--mv-gold);
  color: var(--mv-navy);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(229, 160, 24, .26);
}
.button--blue { background: var(--mv-navy); color: var(--mv-white); box-shadow: 0 10px 24px rgba(6, 47, 86, .28); }

.hero { position: relative; min-height: calc(100svh - 76px); overflow: hidden; color: var(--mv-white); }
.hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(3, 31, 57, .88), rgba(6, 47, 86, .55) 44%, rgba(3, 31, 57, .2)),
    var(--hero-image);
  background-color: #063b67;
  background-position: center;
  background-size: cover;
}
.hero__content {
  position: relative;
  display: grid;
  min-height: calc(100svh - 76px);
  align-content: center;
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 96px;
}
.hero__copy { max-width: 640px; }
.eyebrow {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
}
.hero h1 { margin: 18px 0 16px; font-size: clamp(2.25rem, 7vw, 5.7rem); line-height: .94; }
.hero p { max-width: 560px; margin: 0 0 28px; color: rgba(255,255,255,.92); font-size: 1.14rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.quick-services { position: relative; z-index: 2; margin-top: -58px; }
.quick-services__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(6, 47, 86, .12);
  box-shadow: var(--mv-shadow);
}
.quick-service { min-height: 150px; padding: 24px 18px; background: var(--mv-white); text-align: center; }
.quick-service__icon {
  display: grid;
  width:  70px;
  height: 70px;
  margin: 0 auto 14px;
  place-items: center;
  overflow: hidden;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--mv-blue);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(6, 47, 86, .18);
}
.quick-service__icon img { width: 34px; height: 34px; object-fit: contain; }
.quick-service h3 { margin: 0 0 6px; color: var(--mv-navy); font-size: .96rem; line-height: 1.2; text-transform: uppercase; }
.quick-service p { margin: 0; color: var(--mv-muted); font-size: .9rem; line-height: 1.35; }

.section { padding: 86px 0; }
.section-title { max-width: 700px; margin: 0 0 34px; }
.section-title span { color: var(--mv-gold); font-weight: 800; text-transform: uppercase; }
.section-title h2 { margin: 6px 0 0; color: var(--mv-navy); font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.04; }
.destinations-section { padding: 86px 0; background: #f8fafc; }
.destinations-subtitle { color: #6b7a8f; font-size: 1.05rem; margin: 10px 0 0; line-height: 1.6; max-width: 520px; }

.desti-mosaic { display: grid; grid-template-columns: 1.1fr 0.9fr; grid-template-rows: 1fr 1fr; gap: 20px; min-height: 500px; }

.mosaic-card { position: relative; display: flex; align-items: flex-end; border-radius: 16px; overflow: hidden; text-decoration: none; cursor: pointer; box-shadow: 0 8px 30px rgba(6,47,86,.08); transition: transform .35s ease, box-shadow .35s ease; }
.mosaic-card:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(6,47,86,.15); }
.mosaic-card--tall { grid-row: 1 / -1; }

.mosaic-card__img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .5s ease; }
.mosaic-card:hover .mosaic-card__img { transform: scale(1.06); }

.mosaic-card__gradient { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 20%, rgba(6,47,86,.75) 75%, rgba(3,31,57,.92) 100%); z-index: 1; }

.mosaic-card__inner { position: relative; z-index: 2; padding: 28px; width: 100%; }
.mosaic-card__tag { display: inline-block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.2px; color: rgba(255,255,255,.5); margin-bottom: 6px; }
.mosaic-card h3 { color: #fff; font-size: 1.4rem; font-weight: 700; margin: 0 0 6px; font-family: inherit; letter-spacing: -.02em; }
.mosaic-card p { color: rgba(255,255,255,.65); font-size: 14px; margin: 0; line-height: 1.5; max-width: 240px; }

@media (max-width: 768px) {
  .desti-mosaic { grid-template-columns: 1fr; grid-template-rows: auto; min-height: auto; }
  .mosaic-card { min-height: 240px; }
  .mosaic-card--tall { grid-row: auto; min-height: 300px; }
}

@media (max-width: 768px) {
  .desti-mosaic { grid-template-columns: 1fr; grid-template-rows: auto; min-height: auto; }
  .mosaic-card { min-height: 240px; }
  .mosaic-card--tall { grid-row: auto; min-height: 300px; }
}

.contact-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(3,31,57,.97), rgba(6,47,86,.94) 58%, rgba(8,88,124,.96)), var(--hero-image);
  background-position: center;
  background-size: cover;
}
.contact-band .section-inner { position: relative; z-index: 1; }
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(320px, .97fr); gap: 26px; align-items: stretch; }
.contact-grid > * { min-width: 0; }
.contact-card { border: 1px solid rgba(255,255,255,.2); border-radius: 8px; background: rgba(255,255,255,.94); box-shadow: 0 24px 60px rgba(0,0,0,.22); overflow: hidden; }
.contact-info-panel, .booking-panel { padding: 28px; }
.contact-band .section-title { margin-bottom: 18px; }
.contact-band .section-title h2 { color: var(--mv-navy); font-size: clamp(1.75rem, 3vw, 2.65rem); }
.contact-lead { max-width: 560px; margin: -4px 0 22px; color: var(--mv-muted); }
.contact-list { display: grid; gap: 12px; margin: 0; }
.contact-item { display: flex; min-height: 74px; gap: 13px; align-items: center; padding: 14px 15px; border: 1px solid #d6e6f2; border-radius: 8px; background: #f3f9fd; color: var(--mv-navy); font-weight: 700; }
.contact-item strong { display: block; color: var(--mv-gold); font-size: .82rem; text-transform: uppercase; }
.contact-item__icon { display: grid; flex: 0 0 38px; width: 38px; height: 38px; place-items: center; border-radius: 50%; background: var(--mv-gold); color: var(--mv-navy); }
.contact-item__icon svg { width: 19px; height: 19px; fill: currentColor; }
.contact-item__icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.social-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.social-button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 10px; padding: 0 18px; border-radius: 999px; color: #fff; font-weight: 800; box-shadow: 0 14px 28px rgba(0,0,0,.18); }
.social-button--whatsapp { background: var(--mv-green); }
.social-button--facebook { background: #1877f2; }
.social-button--maps { background: #4285f4; }

.form-eyebrow { display: inline-flex; margin-bottom: 8px; color: var(--mv-gold); font-size: .78rem; font-weight: 900; text-transform: uppercase; }
.booking-panel h3 { margin: 0 0 18px; color: var(--mv-navy); font-size: 1.85rem; line-height: 1.1; }
.booking-panel {
  display: flex;
  flex-direction: column;
}

.booking-panel input[type="hidden"] {
  display: none;
}

.booking-panel input:not([type="hidden"]),
.booking-panel select,
.booking-panel textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 50px;
  margin: 0 0 13px;
  padding: 12px 14px;
  border: 1px solid #c8d8e5;
  border-radius: 6px;
  background: #f8fcff;
  color: var(--mv-ink);
  font: inherit;
  appearance: none;
}

.booking-panel textarea {
  min-height: 112px;
  resize: vertical;
  flex: 1;
}

.booking-panel button {
  width: 100%;
  margin-top: 2px;
}


.booking-panel input:focus,
.booking-panel select:focus,
.booking-panel textarea:focus {
  outline: 3px solid rgba(11, 132, 191, 0.16);
  border-color: var(--mv-blue);
}
.site-footer { padding: 28px 0; background: #031f39; color: rgba(255,255,255,.82); text-align: center; }

@media (max-width: 980px) {
  .site-header__inner { flex-wrap: wrap; padding: 12px 0; gap: 12px; }
  .main-nav { order: 3; width: 100%; overflow-x: auto; padding-bottom: 4px; }
  .main-nav__list { min-width: max-content; }
  .quick-services__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .desti-mosaic, .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .site-header { position: relative; }
  .site-header__inner, .section-inner, .hero__content { width: min(100% - 24px, 1140px); }
  .brand { width: 100%; }
  .brand__mark { width: 140px; }
  .phone-pill, .hero__actions .button, .social-button { width: 100%; }
  .hero { min-height: 640px; }
  .hero__bg { background-image: linear-gradient(180deg, rgba(3,31,57,.88), rgba(6,47,86,.66) 52%, rgba(3,31,57,.58)), var(--hero-image); background-position: 60% center; }
  .hero__content { min-height: 640px; padding: 46px 0 76px; }
  .hero h1 { max-width: 9ch; font-size: clamp(2.15rem, 13vw, 3.7rem); line-height: .98; }
  .hero p { font-size: 1rem; }
  .quick-services { margin-top: -34px; }
  .quick-services__grid { grid-template-columns: 1fr; }
  .quick-service { min-height: auto; padding: 20px 16px; }
  .section { padding: 54px 0; }
  .section-title { margin-bottom: 24px; }
  .section-title h2 { font-size: clamp(1.75rem, 9vw, 2.4rem); line-height: 1.08; }
  .mosaic-card { min-height: 220px; }
  .mosaic-card--tall { min-height: 260px; }
  .contact-info-panel, .booking-panel { padding: 20px; }
  .contact-item { align-items: flex-start; min-height: auto; padding: 13px; font-size: .95rem; overflow-wrap: anywhere; }
  .booking-panel h3 { font-size: 1.55rem; }
  .booking-panel input, .booking-panel select, .booking-panel textarea { min-height: 52px; font-size: 16px; }
}
/* ===== OFFERS SECTION ===== */
.offers-section{
  padding: 60px 20px;
  background: #f7f9fc;
}

/* CARTES OFFRES */
.offer-card{
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s;
}
.offer-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,.1);
}

.offer-card .card-img{
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.offer-card .card-head{
  padding: 18px 20px 0;
}
.offer-card .card-head .badge{
  display: inline-block;
  background: #e8f4fd;
  color: #0b84bf;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .3px;
  margin-bottom: 8px;
}
.offer-card .card-head h3{
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 4px;
  color: #062f56;
}
.offer-card .card-head .meta{
  font-size: 13px;
  color: #6b7a8f;
  margin-bottom: 4px;
}
.offer-card .card-head .desc{
  font-size: 13px;
  color: #4a5a72;
  line-height: 1.5;
  margin-bottom: 0;
}

.card-img-wrap { position: relative; }
.card-img-price { position: absolute; bottom: 10px; left: 10px; background: #fff; padding: 4px 12px; border-radius: 4px; font-size: 11px; color: #6b7a8f; box-shadow: 0 2px 8px rgba(0,0,0,.1); line-height: 1.4; }
.card-img-price strong { color: #062f56; font-size: 14px; font-weight: 700; }

/* bouton découvrir l'offre */
.card-footer-link { padding: 0 20px 18px; }
.card-footer-link a { display: block; text-align: center; padding: 10px; border-radius: 8px; background: #f0f4f8; color: #0b84bf; font-size: 13px; font-weight: 600; text-decoration: none; transition: background .2s; }
.card-footer-link a:hover { background: #e0e8f0; }

.tag{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #f0f4f8;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  margin: 0 4px 6px 0;
}
.tag .icon{color: #059669; font-weight: 700;}

.price{font-size: 22px; font-weight: 800; color: #062f56;}
.price small{font-size: 13px; font-weight: 400; color: #6b7a8f;}

/* dates list */
.dates-list{list-style: none; padding: 0; margin: 0;}
.dates-list li{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 13px;
  border-bottom: 1px solid #f5f7fa;
}
.dates-list li:last-child{border-bottom: none;}
.dates-list .status{
  font-size: 11px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 20px;
}
.dates-list .ok{background: #dff6e8; color: #059669;}
.dates-list .full{background: #fde8e8; color: #dc2626;}

/* V2 grid */
.offer-card.v2 .card-body{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.offer-card.v2 .card-body .full-col{grid-column: 1 / -1;}
@media(max-width:500px){
  .offer-card.v2 .card-body{grid-template-columns: 1fr;}
}

/* heberg */
.heberg-item{
  margin-bottom: 10px;
  padding: 10px 12px;
  background: #f8faff;
  border-radius: 8px;
}
.heberg-item:last-child{margin-bottom: 0;}
.heberg-item strong{font-size: 13px; color: #062f56;}
.heberg-item .stars{color: #f59e0b; font-size: 12px; letter-spacing: 1px;}
.heberg-item .feat{font-size: 12px; color: #4a5a72; margin-top: 2px;}

/* tarif group */
.tarif-group{margin-bottom: 10px;}
.tarif-group:last-child{margin-bottom: 0;}
.tarif-group h5{font-size: 12px; font-weight: 600; color: #062f56; margin: 0 0 4px;}
.tarif-group p{margin: 0; font-size: 13px; color: #4a5a72; line-height: 1.6;}

/* timeline */
.timeline-item{
  margin-bottom: 10px;
  padding: 10px 12px;
  background: #f8faff;
  border-radius: 8px;
  border-left: 3px solid #0b84bf;
}
.timeline-item:last-child{margin-bottom: 0;}
.timeline-item .day{
  font-size: 11px;
  font-weight: 700;
  color: #0b84bf;
  text-transform: uppercase;
  letter-spacing: .3px;
}
.timeline-item h4{font-size: 13px; font-weight: 600; margin: 2px 0; color: #062f56;}
.timeline-item p{font-size: 12px; color: #4a5a72; line-height: 1.5; margin: 0;}

/* extras */
.offer-card .enfants{
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #f0f2f5;
  font-size: 13px;
  color: #062f56;
}
.offer-card .conclusion{
  margin-top: 8px;
  font-size: 13px;
  color: #4a5a72;
  font-style: italic;
}

/* RESPONSIVE */
@media (max-width: 900px){
  .offer-card .card-img{height: 160px;}
  .offer-card .card-head{padding: 14px 16px 0;}
  .offer-card .card-head h3{font-size: 15px;}
  .offer-card .card-footer-link a{font-size:12px;padding:9px;}
  .grid-offres{grid-template-columns: 1fr;}
}

.grid-offres{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 20px;
  padding: 0;
}
@media(max-width:380px){
  .grid-offres{grid-template-columns: 1fr;}
}

.menu-offres{
  color: var(--mv-gold) !important;
  animation: pulseText 1.8s infinite ease-in-out;
}

@keyframes pulseText{
  0%   { opacity: 1; }
  50%  { opacity: 0.6; }
  100% { opacity: 1; }
}

/* ===== TESTIMONIALS ===== */
.testimonials{
  background: #fff;
  padding: 86px 0;
  overflow: hidden;
}
.testimonials-track{
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 10px 0 20px;
  scrollbar-width: none;
}
.testimonials-track::-webkit-scrollbar{ display: none; }
.testimonial-card{
  flex: 0 0 340px;
  scroll-snap-align: start;
  padding: 28px 24px;
  border-radius: 12px;
  background: var(--mv-bg);
  border: 1px solid #dde9f3;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.testimonial-card__author{
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__avatar{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--mv-gold);
  display: grid;
  place-items: center;
  color: var(--mv-navy);
  font-weight: 900;
  font-size: 1.2rem;
}
.testimonial-card__name{
  font-weight: 800;
  color: var(--mv-navy);
  font-size: 0.95rem;
}
.testimonial-card__role{
  color: var(--mv-muted);
  font-size: 0.82rem;
}
.testimonial-card__text{
  color: var(--mv-ink);
  font-size: 0.95rem;
  line-height: 1.55;
  font-style: italic;
}
.testimonial-card__stars{
  color: var(--mv-gold);
  font-size: 1.1rem;
}

/* ===== FAQ ===== */
.faq-section{
  background: var(--mv-bg);
  padding: 86px 0;
}
.faq-list{
  display: grid;
  gap: 8px;
  max-width: 800px;
}
.faq-item{
  background: #fff;
  border-radius: 8px;
  border: 1px solid #dde9f3;
  overflow: hidden;
}
.faq-item__question{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 22px;
  background: none;
  border: 0;
  font: inherit;
  font-weight: 700;
  color: var(--mv-navy);
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
}
.faq-item__icon{
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq-item.open .faq-item__icon{
  transform: rotate(45deg);
}
.faq-item__answer{
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 22px;
  color: var(--mv-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.faq-item.open .faq-item__answer{
  max-height: 300px;
  padding: 0 22px 18px;
}

/* ===== BLOG ===== */
.blog-section{
  padding: 86px 0;
  background: #fff;
}
.blog-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.blog-card{
  border-radius: 8px;
  overflow: hidden;
  background: var(--mv-bg);
  border: 1px solid #dde9f3;
  box-shadow: 0 6px 16px rgba(6,47,86,.08);
  transition: transform .2s;
}
.blog-card:hover{
  transform: translateY(-3px);
}
.blog-card__media{
  min-height: 180px;
  background-position: center;
  background-size: cover;
}
.blog-card__body{
  padding: 18px 20px;
}
.blog-card__tag{
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  background: var(--mv-gold);
  color: var(--mv-navy);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}
.blog-card h3{
  margin: 10px 0 6px;
  color: var(--mv-navy);
  font-size: 1.1rem;
  line-height: 1.25;
}
.blog-card p{
  margin: 0;
  color: var(--mv-muted);
  font-size: 0.88rem;
}

/* ===== NEWSLETTER ===== */
.newsletter-band{
  background: var(--mv-navy);
  padding: 60px 0;
  color: #fff;
  text-align: center;
}
.newsletter-band h2{
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}
.newsletter-band p{
  max-width: 500px;
  margin: 0 auto 24px;
  color: rgba(255,255,255,.8);
}
.newsletter-form{
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto;
}
.newsletter-form input{
  flex: 1;
  min-height: 50px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 1rem;
}
.newsletter-form button{
  min-height: 50px;
  white-space: nowrap;
}

/* ===== WHATSAPP FLOATING ===== */
.whatsapp-float{
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 6px 24px rgba(37,211,102,.42);
  transition: transform .2s, box-shadow .2s;
  color: #fff;
}
.whatsapp-float:hover{
  transform: scale(1.08);
  box-shadow: 0 10px 32px rgba(37,211,102,.5);
}
.whatsapp-float img{
  width: 28px;
  height: 28px;
}

/* ===== SEO TEXT ===== */
.seo-text {
  padding: 20px 0 30px;
  border-top: 1px solid #eef2f6;
  margin-top: 10px;
}
.seo-text .section-inner p {
  font-size: 13px;
  color: #8899aa;
  line-height: 1.6;
  margin: 0;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.seo-text .section-inner strong {
  color: #4a5a72;
  font-weight: 600;
}

/* ===== OFFERS SECTION ===== */
.offers-head{
  text-align: center;
  margin-bottom: 28px;
}
.offers-tag{
  display: inline-block;
  padding: 4px 16px;
  border-radius: 999px;
  background: rgba(229, 160, 24, 0.15);
  color: var(--mv-gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.offers-head h2{
  margin: 10px 0 8px;
  color: var(--mv-navy);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.05;
}
.offers-head p{
  max-width: 520px;
  margin: 0 auto 20px;
  color: var(--mv-muted);
  font-size: 0.95rem;
}
.offers-pills{
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.pill{
  display: inline-flex;
  padding: 7px 20px;
  border-radius: 999px;
  border: 1px solid #c8d8e5;
  background: #fff;
  color: var(--mv-muted);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: .2s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.pill:hover{
  border-color: var(--mv-gold);
  color: var(--mv-navy);
}
.pill:active{
  background: var(--mv-navy);
  border-color: var(--mv-navy);
  color: #fff;
}
.pill--active{
  background: var(--mv-navy) !important;
  border-color: var(--mv-navy) !important;
  color: #fff !important;
}

@media (max-width: 980px){
  .blog-grid{
    grid-template-columns: 1fr;
  }
  .newsletter-form{
    flex-direction: column;
  }
  .testimonial-card{
    flex: 0 0 280px;
  }
}

@media (max-width: 640px){
  .testimonials{ padding: 54px 0; }
  .faq-section{ padding: 54px 0; }
  .blog-section{ padding: 54px 0; }
  .newsletter-band{ padding: 40px 0; }
  .whatsapp-float{
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float img{
    width: 24px;
    height: 24px;
  }
}