/* Bonvoyage — travel agency landing */
:root {
  --bv-green: #4caf50;
  --bv-green-dark: #43a047;
  --bv-green-light: #e8f5e9;
  --bv-navy: #003366;
  --bv-navy-deep: #002244;
  --bv-white: #ffffff;
  --bv-bg: #f5f8fa;
  --bv-bg-soft: #eef3f7;
  --bv-text: #003366;
  --bv-muted: #5a6f7d;
  --bv-border: rgba(0, 51, 102, 0.1);
  --bv-font: 'Poppins', system-ui, sans-serif;
  --bv-script: 'Dancing Script', cursive;
  --bv-display: 'Poppins', system-ui, sans-serif;
  --bv-radius: 12px;
  --bv-container: 1180px;
  --bv-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body.bv-page {
  margin: 0;
  overflow-x: hidden;
  max-width: 100%;
  font-family: var(--bv-font);
  color: var(--bv-text);
  background: var(--bv-white);
  -webkit-font-smoothing: antialiased;
}
body.bv-nav-open { overflow: hidden; }
body.bv-nav-open .bv-header { z-index: 220; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

.bv-container {
  width: 100%;
  max-width: var(--bv-container);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Header */
.bv-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--bv-white);
  border-bottom: 1px solid var(--bv-border);
}
.bv-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  max-width: var(--bv-container);
  margin: 0 auto;
  padding: 12px 20px;
}
.bv-brand { display: flex; align-items: center; flex-shrink: 0; min-width: 0; }
.bv-brand__logo { height: 58px; width: auto; max-width: 200px; }
.bv-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}
.bv-nav > a.is-active { color: var(--bv-green); font-weight: 600; }
.bv-nav > a, .bv-nav__drop > button {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--bv-text);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}
.bv-nav > a:hover, .bv-nav__drop > button:hover { color: var(--bv-green); }
.bv-nav__drop { position: relative; }
.bv-nav__drop-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  min-width: 200px;
  background: var(--bv-white);
  border: 1px solid var(--bv-border);
  border-radius: var(--bv-radius);
  box-shadow: 0 8px 24px rgba(10, 45, 77, 0.1);
  padding: 8px 0;
  z-index: 50;
}
.bv-nav__drop:hover .bv-nav__drop-menu { display: block; }
.bv-nav__drop-menu a {
  display: block;
  padding: 8px 16px;
  font-size: 0.78rem;
}
.bv-nav__drop-menu a:hover { background: var(--bv-green-light); color: var(--bv-green-dark); }
.bv-header__right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.bv-header__phone { text-align: right; }
.bv-header__phone a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--bv-navy);
}
.bv-header__phone svg { flex-shrink: 0; color: var(--bv-green); }
.bv-header__phone span {
  display: block;
  font-size: 0.65rem;
  color: var(--bv-muted);
}
.bv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 24px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.22s var(--bv-ease);
  font-family: inherit;
  white-space: nowrap;
}
.bv-btn--green {
  background: var(--bv-green);
  color: var(--bv-white);
  border-color: var(--bv-green);
}
.bv-btn--green:hover { background: var(--bv-green-dark); border-color: var(--bv-green-dark); }
.bv-btn--outline {
  background: var(--bv-white);
  color: var(--bv-navy);
  border-color: var(--bv-navy);
}
.bv-btn--outline:hover { background: var(--bv-bg); }
.bv-btn--white {
  background: var(--bv-white);
  color: var(--bv-navy);
  border-color: var(--bv-white);
}
.bv-btn--lg { padding: 13px 26px; font-size: 0.85rem; }
.bv-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border: none;
  background: none;
  cursor: pointer;
}
.bv-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bv-navy);
  border-radius: 2px;
}
.bv-nav a.bv-nav__signin { display: none; }
.bv-header__login { display: inline-flex; }

/* Hero slider */
.bv-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}
.bv-hero__slides { position: relative; height: 100%; min-height: 520px; }
.bv-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s var(--bv-ease);
  pointer-events: none;
}
.bv-hero__slide.is-active { opacity: 1; pointer-events: auto; z-index: 1; }
.bv-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.bv-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.88) 42%, rgba(255,255,255,0.45) 62%, rgba(255,255,255,0.15) 78%, transparent 100%);
}
.bv-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 520px;
  padding: 48px 0;
}
.bv-hero__text { max-width: 560px; min-width: 0; }
.bv-hero__logo {
  display: block;
  width: min(300px, 78vw);
  height: auto;
  margin: 0 0 22px;
}
.bv-hero__text h1 {
  font-family: var(--bv-display);
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--bv-navy);
  margin: 0 0 16px;
}
.bv-hero__text h1 .bv-script {
  display: block;
  font-family: var(--bv-script);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 700;
  color: var(--bv-green);
  line-height: 1.15;
  margin-top: 4px;
}
.bv-hero__text p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--bv-muted);
  margin: 0 0 22px;
}
.bv-hero__ctas { display: flex; flex-wrap: wrap; gap: 10px; }
.bv-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  color: var(--bv-navy);
  cursor: pointer;
  font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.bv-hero__arrow--prev { left: 16px; }
.bv-hero__arrow--next { right: 16px; }
.bv-hero__dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 8px;
}
.bv-hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(10, 45, 77, 0.25);
  cursor: pointer;
  padding: 0;
}
.bv-hero__dot.is-active { background: var(--bv-green); }

/* Services */
.bv-services { padding: 48px 0 64px; background: var(--bv-white); }
.bv-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.bv-scard {
  background: var(--bv-white);
  border-radius: var(--bv-radius);
  overflow: hidden;
  border: 1px solid var(--bv-border);
  box-shadow: 0 4px 20px rgba(0, 51, 102, 0.08);
  padding: 18px 18px 22px;
  transition: transform 0.25s var(--bv-ease), box-shadow 0.25s;
}
.bv-scard:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 51, 102, 0.12);
}
.bv-scard__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.bv-scard__icon--blue { background: #e3f0fa; color: #003366; }
.bv-scard__icon--green { background: var(--bv-green-light); color: var(--bv-green); }
.bv-scard__icon svg { width: 20px; height: 20px; }
.bv-scard__img {
  height: 160px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  margin-bottom: 14px;
}
.bv-scard h3 {
  margin: 0 0 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--bv-navy);
}
.bv-scard p {
  margin: 0 0 12px;
  font-size: 0.78rem;
  line-height: 1.65;
  color: var(--bv-muted);
}
.bv-scard__link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--bv-navy);
}
.bv-scard:nth-child(2) .bv-scard__link,
.bv-scard:nth-child(3) .bv-scard__link { color: var(--bv-green); }
.bv-scard__link:hover { opacity: 0.8; }

/* Promo */
.bv-promo { padding: 56px 0 72px; background: var(--bv-bg-soft); }
.bv-promo__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}
.bv-promo__logo { text-align: center; }
.bv-promo__logo img { width: 280px; height: auto; margin: 0 auto; }
.bv-promo__center h2 {
  font-family: var(--bv-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--bv-navy);
  margin: 0 0 20px;
  line-height: 1.5;
}
.bv-promo__center h2 strong { color: var(--bv-green); font-weight: 700; }
.bv-promo__features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.bv-promo__feat { text-align: center; }
.bv-promo__feat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bv-green);
}
.bv-promo__feat-icon svg { width: 32px; height: 32px; }
.bv-promo__feat strong {
  display: block;
  font-size: 0.68rem;
  color: var(--bv-navy);
  line-height: 1.35;
  font-weight: 600;
}
.bv-promo__photo {
  border-radius: var(--bv-radius);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(10, 45, 77, 0.12);
}
.bv-promo__photo img { width: 100%; height: 320px; object-fit: cover; }

/* Destinations */
.bv-dest { padding: 56px 0 64px; background: var(--bv-white); }
.bv-section-head { text-align: center; margin-bottom: 32px; }
.bv-section-head h2 {
  font-family: var(--bv-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--bv-navy);
  margin: 0;
}
.bv-section-head p { display: none; }
.bv-dest__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}
.bv-dcard { display: block; text-align: center; }
.bv-dcard__img {
  border-radius: var(--bv-radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  margin-bottom: 8px;
  box-shadow: 0 4px 14px rgba(0, 51, 102, 0.08);
}
.bv-dcard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s var(--bv-ease);
}
.bv-dcard:hover .bv-dcard__img img { transform: scale(1.04); }
.bv-dcard span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--bv-navy);
}

/* Stats */
.bv-stats {
  padding: 32px 0;
  background: var(--bv-bg-soft);
  border-top: 1px solid var(--bv-border);
  border-bottom: 1px solid var(--bv-border);
}
.bv-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.bv-stats__item {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.bv-stats__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--bv-green);
}
.bv-stats__icon svg { width: 28px; height: 28px; }
.bv-stats__val {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--bv-navy);
  line-height: 1.2;
}
.bv-stats__lbl {
  font-size: 0.68rem;
  color: var(--bv-muted);
}

/* CTA */
.bv-cta { padding: 48px 0 64px; background: var(--bv-white); }
.bv-cta__box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bv-navy);
  box-shadow: 0 12px 40px rgba(0, 51, 102, 0.15);
  min-height: 220px;
}
.bv-cta__content {
  padding: 40px 36px;
  color: var(--bv-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bv-cta h2 {
  font-family: var(--bv-display);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 700;
  margin: 0 0 10px;
}
.bv-cta p {
  font-size: 0.82rem;
  line-height: 1.65;
  opacity: 0.88;
  margin: 0 0 20px;
}
.bv-cta__photo {
  background-size: cover;
  background-position: center;
  min-height: 220px;
}
.bv-cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--bv-white);
}
.bv-cta__phone svg { color: var(--bv-green); flex-shrink: 0; }
.bv-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* Contact */
.bv-contact { padding: 56px 0; background: var(--bv-bg-soft); }
.bv-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.bv-contact h2 {
  font-family: var(--bv-display);
  font-size: 1.6rem;
  color: var(--bv-navy);
  margin: 0 0 12px;
}
.bv-contact > .bv-container > .bv-contact__grid > div > p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--bv-muted);
  margin: 0 0 20px;
}
.bv-form {
  background: var(--bv-white);
  border: 1px solid var(--bv-border);
  border-radius: var(--bv-radius);
  padding: 28px;
  box-shadow: 0 8px 28px rgba(10, 45, 77, 0.06);
}
.bv-form h3 { margin: 0 0 6px; font-size: 1.05rem; color: var(--bv-navy); }
.bv-form > p { margin: 0 0 20px; font-size: 0.8rem; color: var(--bv-muted); }
.bv-field { margin-bottom: 12px; }
.bv-field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--bv-navy);
}
.bv-field input,
.bv-field textarea,
.bv-field select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--bv-border);
  border-radius: 8px;
  font-size: 0.85rem;
  font-family: inherit;
}
.bv-field input:focus,
.bv-field textarea:focus { outline: none; border-color: var(--bv-green); }
.bv-field textarea { min-height: 90px; resize: vertical; }
.bv-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bv-form-submit {
  width: 100%;
  margin-top: 6px;
  padding: 13px;
  border: none;
  border-radius: var(--bv-radius);
  background: var(--bv-green);
  color: var(--bv-white);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: inherit;
}
.bv-form-submit:hover { background: var(--bv-green-dark); }
.bv-form-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.bv-form-alert {
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  margin-bottom: 14px;
}
.bv-form-alert--success { background: #e8f7f0; border: 1px solid #b8e6cf; color: #1a6b45; }
.bv-form-alert--error { background: #fef2f2; border: 1px solid #fecaca; color: #b42318; }

/* Footer */
.bv-footer {
  background: var(--bv-navy-deep);
  color: rgba(255, 255, 255, 0.85);
  padding: 48px 0 0;
}
.bv-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 28px;
}
.bv-footer__brand img { height: 40px; width: auto; margin-bottom: 12px; }
.bv-footer__brand p {
  font-size: 0.78rem;
  line-height: 1.65;
  opacity: 0.75;
  margin: 0 0 16px;
}
.bv-footer__social { display: flex; gap: 10px; }
.bv-footer__social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}
.bv-footer h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 0 0 14px;
  color: var(--bv-white);
}
.bv-footer li { margin-bottom: 8px; }
.bv-footer a {
  font-size: 0.78rem;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.bv-footer a:hover { opacity: 1; color: var(--bv-green); }
.bv-newsletter {
  display: flex;
  gap: 0;
  margin-top: 8px;
}
.bv-newsletter input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  border-radius: 8px 0 0 8px;
  background: rgba(255,255,255,0.08);
  color: var(--bv-white);
  font-size: 0.8rem;
  font-family: inherit;
}
.bv-newsletter input::placeholder { color: rgba(255,255,255,0.45); }
.bv-newsletter button {
  padding: 10px 14px;
  border: none;
  border-radius: 0 8px 8px 0;
  background: var(--bv-green);
  color: var(--bv-white);
  cursor: pointer;
  font-size: 1rem;
}
.bv-footer__bottom {
  margin-top: 36px;
  padding: 16px 0 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.7rem;
  opacity: 0.6;
}
.bv-footer__legal { display: flex; gap: 16px; flex-wrap: wrap; }

.whatsapp-float {
  position: fixed;
  left: max(20px, env(safe-area-inset-left));
  bottom: calc(24px + env(safe-area-inset-bottom));
  z-index: 190;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.bv-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 205;
  background: rgba(6, 30, 53, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--bv-ease), visibility 0.3s;
}
.bv-nav-overlay.is-visible { opacity: 1; visibility: visible; }

@media (max-width: 1024px) {
  .bv-header__inner { grid-template-columns: auto 1fr; }
  .bv-nav { display: none; }
  .bv-header__phone { display: none; }
  .bv-services__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .bv-promo__grid { grid-template-columns: 1fr; }
  .bv-promo__features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bv-dest__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .bv-stats__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bv-contact__grid { grid-template-columns: 1fr; }
  .bv-footer__grid { grid-template-columns: 1fr 1fr; }
  .bv-cta__box { grid-template-columns: 1fr; }
  .bv-cta__photo { min-height: 180px; }
}

@media (max-width: 768px) {
  .bv-header__inner { grid-template-columns: 1fr auto; padding: 10px 16px; }
  .bv-brand__logo { height: 48px; max-width: 160px; }
  .bv-hero__logo { width: min(240px, 85vw); margin-bottom: 16px; }
  .bv-nav {
    display: flex;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(300px, 86vw);
    flex-direction: column;
    align-items: stretch;
    padding: 88px 24px calc(28px + env(safe-area-inset-bottom));
    background: var(--bv-white);
    box-shadow: -4px 0 30px rgba(0,0,0,0.12);
    transform: translateX(100%);
    transition: transform 0.35s var(--bv-ease);
    z-index: 210;
    overflow-y: auto;
    gap: 0;
  }
  .bv-nav.open { transform: translateX(0); }
  .bv-nav > a, .bv-nav__drop { padding: 10px 0; border-bottom: 1px solid var(--bv-border); }
  .bv-nav__drop-menu {
    position: static;
    display: block;
    box-shadow: none;
    border: none;
    padding: 0 0 0 12px;
    margin: 0;
  }
  .bv-nav a.bv-nav__signin {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    margin-top: auto;
    padding: 11px 18px;
    border: 2px solid var(--bv-navy);
    border-radius: var(--bv-radius);
    font-weight: 600;
  }
  .bv-burger { display: flex; z-index: 220; }
  .bv-header__right .bv-header__login,
  .bv-header__right .bv-btn--green { display: none; }
  .bv-hero__overlay {
    background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%);
  }
  .bv-hero__ctas { flex-direction: column; }
  .bv-hero__ctas .bv-btn { width: 100%; justify-content: center; white-space: normal; }
  .bv-hero__arrow { display: none; }
  .bv-promo__features { grid-template-columns: 1fr; }
  .bv-dest__grid { grid-template-columns: 1fr 1fr; }
  .bv-stats__grid { grid-template-columns: 1fr; }
  .bv-form-row { grid-template-columns: 1fr; }
  .bv-footer__grid { grid-template-columns: 1fr; }
  .bv-container { padding-left: 16px; padding-right: 16px; }
}

@media (max-width: 480px) {
  .bv-dest__grid { grid-template-columns: 1fr; }
}
