/* ============================================================
   styles.css — Vegas Travel shared stylesheet
   Brand: #003399 (royal) · #0099FF (sky) · #FFD700 (gold)
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html   { scroll-behavior: smooth; }
body   { font-family: 'Inter', system-ui, sans-serif; -webkit-font-smoothing: antialiased; color: #1f2937; background: #fff; line-height: 1.6; }
img    { max-width: 100%; display: block; }
a      { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Variables ───────────────────────────────────────────── */
:root {
  --royal:    #003399;
  --sky:      #0099FF;
  --gold:     #FFD700;
  --navy:     #001050;
  --green:    #22c55e;
  --green-dk: #16a34a;
  --white:    #ffffff;
  --gray-50:  #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --pill:     9999px;
  --radius:   1rem;
  --radius-sm:0.75rem;
  --shadow-sm:0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.04);
  --shadow:   0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:0 20px 48px rgba(0,0,0,.12);
  --ease:     all 0.3s ease;
}

/* ── Container ───────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 640px)  { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem;   } }

/* ── Section ─────────────────────────────────────────────── */
.section      { padding: 5rem 0; }
.section--gray { background: var(--gray-50); }
.section--blue { background: linear-gradient(135deg, var(--navy) 0%, var(--royal) 50%, #0055cc 100%); }

/* ── Section header ──────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 3.5rem; }

.section-badge {
  display: inline-block;
  background: rgba(0,51,153,.1);
  color: var(--royal);
  font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .375rem 1rem;
  border-radius: var(--pill);
  margin-bottom: 1rem;
}
.section--blue .section-badge {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.25);
}

.section-divider {
  display: block; width: 48px; height: 4px;
  background: linear-gradient(90deg, var(--royal), var(--sky));
  border-radius: var(--pill);
  margin: 0 auto 1.25rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900; color: var(--royal);
  line-height: 1.2; margin-bottom: .75rem;
}
.section--blue .section-header h2 { color: var(--white); }

.section-header p {
  color: var(--gray-500);
  max-width: 560px; margin: 0 auto;
  font-size: .95rem; line-height: 1.7;
}
.section--blue .section-header p { color: rgba(255,255,255,.65); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: inherit; font-weight: 700; font-size: .9rem;
  padding: .9rem 2rem; border-radius: var(--pill);
  border: none; cursor: pointer; transition: var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: scale(1.04); }
.btn-gold  { background: var(--gold);  color: var(--royal); box-shadow: 0 4px 20px rgba(255,215,0,.3); }
.btn-gold:hover  { background: #ffe033; box-shadow: 0 8px 32px rgba(255,215,0,.4); }
.btn-wa    { background: var(--green); color: var(--white); box-shadow: 0 4px 20px rgba(34,197,94,.3); }
.btn-wa:hover    { background: var(--green-dk); box-shadow: 0 8px 32px rgba(34,197,94,.4); }
.btn-blue  { background: var(--royal); color: var(--white); }
.btn-blue:hover  { background: #0044bb; }

/* ── NAVBAR ──────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(0,51,153,.95);
  transition: background .35s ease, box-shadow .35s ease;
}
#navbar.scrolled {
  background: rgba(0,16,80,.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-brand { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.nav-logo  { height: 38px; width: auto; }
.nav-brand-text  { line-height: 1; }
.nav-brand-vegas  { font-size: 1.1rem; font-weight: 900; color: var(--white); letter-spacing: .03em; }
.nav-brand-travel { font-size: 1.1rem; font-weight: 900; color: var(--gold);  letter-spacing: .03em; }

.nav-links { display: none; align-items: center; gap: 1.75rem; }
@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-link {
  color: rgba(255,255,255,.85); font-size: .875rem; font-weight: 500;
  transition: color .2s ease; position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--gold); border-radius: var(--pill);
  transform: scaleX(0); transition: transform .2s ease;
}
.nav-link:hover, .nav-link.active           { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.btn-wa-nav {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--green); color: var(--white);
  font-size: .8rem; font-weight: 700;
  padding: .45rem 1.1rem; border-radius: var(--pill);
  transition: var(--ease);
}
.btn-wa-nav:hover { background: var(--green-dk); transform: scale(1.05); }
.btn-wa-nav svg  { width: 15px; height: 15px; }

/* ── Hamburger ───────────────────────────────────────────── */
.hamburger {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; color: var(--white);
  border-radius: .5rem; transition: background .2s ease;
}
.hamburger:hover { background: rgba(255,255,255,.1); }
.hamburger svg   { width: 24px; height: 24px; }
@media (min-width: 768px) { .hamburger { display: none; } }

/* ── Mobile menu ─────────────────────────────────────────── */
.mobile-menu { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.mobile-menu.open { max-height: 520px; }
.mobile-menu-inner {
  padding: .5rem 0 1rem;
  display: flex; flex-direction: column; gap: 2px;
  border-top: 1px solid rgba(255,255,255,.2);
}
.mobile-link {
  display: block; padding: .7rem 1rem;
  color: rgba(255,255,255,.85); font-size: .9rem; font-weight: 500;
  border-radius: .5rem; transition: var(--ease);
}
.mobile-link:hover, .mobile-link.active { color: var(--gold); background: rgba(255,255,255,.08); }
.mobile-wa {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  margin: .75rem 0 0; background: var(--green); color: var(--white);
  font-weight: 700; font-size: .875rem;
  padding: .65rem 1rem; border-radius: var(--pill);
}
.mobile-wa svg { width: 18px; height: 18px; }

/* ── Page banner (sub-pages) ─────────────────────────────── */
.page-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--royal) 50%, #0055cc 100%);
  padding: 7.5rem 0 4rem;
  text-align: center; color: var(--white);
  position: relative; overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%; background: rgba(255,255,255,.06);
  pointer-events: none;
}
.page-banner::after {
  content: ''; position: absolute;
  bottom: -50px; left: -50px;
  width: 220px; height: 220px;
  border-radius: 50%; background: rgba(255,255,255,.05);
  pointer-events: none;
}
.page-banner-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  color: var(--white); font-size: .75rem; font-weight: 600;
  padding: .4rem 1rem; border-radius: var(--pill);
  margin-bottom: 1.25rem; backdrop-filter: blur(4px);
}
.page-banner h1 {
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900;
  line-height: 1.1; margin-bottom: .75rem;
}
.page-banner h1 span { color: var(--gold); }
.page-banner p { color: rgba(255,255,255,.72); font-size: 1rem; max-width: 520px; margin: 0 auto; line-height: 1.7; }

/* ── HERO (index.html) ───────────────────────────────────── */
.hero {
  background:
    linear-gradient(135deg, rgba(0,16,80,.78) 0%, rgba(0,51,153,.68) 45%, rgba(0,85,204,.55) 100%),
    url('../saint-amable-la-boussole-atelier-autour-du-monde.jpg') center / cover no-repeat;
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 64px;
}
.hero-deco {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.05); pointer-events: none;
}
.hero-deco-1 { width: 500px; height: 500px; top: -100px; right: -100px; }
.hero-deco-2 { width: 320px; height: 320px; bottom: -60px;  left: -60px; }
.hero-deco-3 { width: 160px; height: 160px; top: 50%; right: 3rem; background: transparent; border: 1px solid rgba(255,255,255,.12); }
.hero-deco-4 { width: 100px; height: 100px; top: 30%; left: 2rem;  background: transparent; border: 1px solid rgba(255,255,255,.10); }

.hero-content { position: relative; z-index: 1; text-align: center; max-width: 900px; margin: 0 auto; padding: 3rem 1.25rem 5rem; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  color: var(--white); font-size: .8rem; font-weight: 500;
  padding: .5rem 1.25rem; border-radius: var(--pill);
  margin-bottom: 2rem; backdrop-filter: blur(4px);
}
.hero-badge .gold { color: var(--gold); }

.hero h1 {
  font-size: clamp(3rem, 9vw, 7rem); font-weight: 900;
  color: var(--white); line-height: 1; letter-spacing: -.02em;
  margin-bottom: 1.25rem;
}
.hero h1 .gold { color: var(--gold); }

.hero-tagline {
  font-size: clamp(1.05rem, 2.5vw, 1.45rem);
  color: rgba(255,255,255,.88); font-style: italic; font-weight: 300;
  margin-bottom: 1.25rem;
}
.hero-sub {
  color: rgba(255,255,255,.65); font-size: .97rem;
  max-width: 560px; margin: 0 auto 2.5rem; line-height: 1.8;
}
.hero-btns  { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 4rem; }
.hero-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; max-width: 360px; margin: 0 auto; }
.hero-stat  { text-align: center; }
.hero-stat:not(:last-child) { border-right: 1px solid rgba(255,255,255,.2); }
.hero-stat-num { font-size: 2rem; font-weight: 900; color: var(--gold); display: block; }
.hero-stat-lbl { font-size: .7rem; color: rgba(255,255,255,.6); display: block; margin-top: .2rem; line-height: 1.4; }

.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; pointer-events: none; }
.hero-wave svg { display: block; width: 100%; }

/* Animated planes */
.plane-fly {
  position: absolute; pointer-events: none;
  font-size: 2rem; opacity: 0;
  animation: flyAcross 14s linear infinite;
}
.plane-fly.small { font-size: 1.3rem; animation-delay: 7s; animation-duration: 18s; }
@keyframes flyAcross {
  0%  { transform: translateX(-120px) translateY(10px); opacity: 0; }
  4%  { opacity: 1; }
  96% { opacity: 1; }
  100%{ transform: translateX(calc(100vw + 140px)) translateY(-30px); opacity: 0; }
}

/* ── ABOUT (index.html) ──────────────────────────────────── */
.about { padding: 5.5rem 0; background: var(--white); }
.about-grid { display: grid; gap: 3.5rem; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }

.about-badge {
  display: inline-block;
  background: rgba(0,51,153,.1); color: var(--royal);
  font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .375rem 1rem; border-radius: var(--pill); margin-bottom: 1rem;
}
.about-divider {
  display: block; width: 48px; height: 4px;
  background: linear-gradient(90deg, var(--royal), var(--sky));
  border-radius: var(--pill); margin-bottom: 1.25rem;
}
.about-text h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 900;
  color: var(--royal); line-height: 1.2; margin-bottom: 1.25rem;
}
.about-text h2 span { color: var(--sky); }
.about-text p { color: var(--gray-600); line-height: 1.8; margin-bottom: 1rem; font-size: .95rem; }
.about-text strong { color: var(--royal); }

.value-pills { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.value-pill  {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 700; font-size: .85rem;
  padding: .6rem 1.25rem; border-radius: var(--pill);
}
.pill-royal { background: var(--royal); color: var(--white); }
.pill-sky   { background: var(--sky);   color: var(--white); }
.pill-gold  { background: var(--gold);  color: var(--royal); }

.about-visual  { display: flex; justify-content: center; }
.founder-wrap  { position: relative; width: 100%; max-width: 360px; margin: 1.5rem; }
.founder-card  {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,51,153,.15);
  border: 4px solid rgba(0,51,153,.08);
  animation: globeFloat 5s ease-in-out infinite;
}
@keyframes globeFloat {
  0%,100% { transform: translateY(0)    rotate(-1deg); }
  50%     { transform: translateY(-14px) rotate(1deg); }
}
.founder-card img {
  width: 100%; height: 320px;
  object-fit: cover; object-position: top;
}
.founder-caption {
  background: linear-gradient(90deg, var(--royal), var(--sky));
  padding: 1rem 1.5rem; color: var(--white);
}
.founder-caption strong { display: block; font-size: 1.05rem; font-weight: 900; }
.founder-caption span   { font-size: .8rem; opacity: .75; }

.founder-badge {
  position: absolute; top: -14px; right: -14px;
  background: var(--gold); color: var(--royal);
  font-size: .78rem; font-weight: 900;
  padding: .5rem 1rem; border-radius: .75rem;
  box-shadow: 0 4px 16px rgba(255,215,0,.4);
  transform: rotate(3deg); white-space: nowrap;
}
.founder-stat {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--white); border-radius: .875rem;
  padding: .75rem 1.25rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  border: 1px solid var(--gray-100);
}
.founder-stat strong { display: block; font-size: 1.5rem; font-weight: 900; color: var(--royal); }
.founder-stat strong em { color: var(--sky); font-style: normal; }
.founder-stat span   { font-size: .72rem; color: var(--gray-500); font-weight: 500; }

/* ── SERVICES ────────────────────────────────────────────── */
.services-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px)  { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3,1fr); } }

.service-card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.5rem; border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(0,51,153,.12); }

.service-icon {
  width: 56px; height: 56px; border-radius: .875rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.25rem;
}
.icon-royal { background: rgba(0,51,153,.1);   color: var(--royal);    }
.icon-sky   { background: rgba(0,153,255,.12); color: var(--sky);      }
.icon-gold  { background: rgba(255,215,0,.2);  color: #b8860b;         }
.icon-green { background: #f0fdf4;             color: var(--green-dk); }
.icon-red   { background: #fef2f2;             color: #ef4444;         }

.service-card h3 { font-size: 1rem; font-weight: 800; color: var(--royal); margin-bottom: .5rem; }
.service-card p  { font-size: .84rem; color: var(--gray-500); line-height: 1.7; }

/* ── PARTNERS ────────────────────────────────────────────── */
.partners-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; }
@media (min-width: 480px)  { .partners-grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 768px)  { .partners-grid { grid-template-columns: repeat(4,1fr); } }
@media (min-width: 1024px) { .partners-grid { grid-template-columns: repeat(6,1fr); } }

.partner-logo-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--gray-100); box-shadow: var(--shadow-sm);
  padding: 1.5rem .75rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .75rem;
  min-height: 110px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.partner-logo-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,51,153,.12); }
.partner-logo-card img {
  max-height: 56px; width: auto; max-width: 100%;
  object-fit: contain;
}
.partner-logo-card span {
  font-size: .68rem; font-weight: 700; color: var(--gray-500);
  text-align: center; text-transform: uppercase; letter-spacing: .05em;
  line-height: 1.3;
}

/* ── WHY CHOOSE US ───────────────────────────────────────── */
.why-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(3,1fr); } }

.why-block { text-align: center; }
.why-icon-wrap {
  width: 80px; height: 80px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem; margin: 0 auto 1.5rem;
  transition: transform .3s ease;
}
.why-block:hover .why-icon-wrap { transform: scale(1.1); }
.why-icon-white { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); color: var(--white); }
.why-icon-gold  { background: rgba(255,215,0,.18);   border: 1px solid rgba(255,215,0,.3);   color: var(--gold);  }

.why-block h3   { font-size: 1.2rem; font-weight: 900; color: var(--white); margin-bottom: .75rem; }
.why-block h3.gold { color: var(--gold); }
.why-block p    { font-size: .875rem; color: rgba(255,255,255,.65); line-height: 1.75; max-width: 280px; margin: 0 auto; }
.why-cta        { text-align: center; margin-top: 3.5rem; }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-grid { display: grid; gap: 2.5rem; margin-bottom: 2.5rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-cards { display: flex; flex-direction: column; gap: 1rem; }

.contact-card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.25rem 1.5rem; border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  display: flex; align-items: flex-start; gap: 1rem;
}
.contact-icon {
  width: 48px; height: 48px; border-radius: .75rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.ci-royal { background: rgba(0,51,153,.1);   color: var(--royal);    }
.ci-sky   { background: rgba(0,153,255,.1);  color: var(--sky);      }
.ci-gold  { background: rgba(255,215,0,.2);  color: #b8860b;         }
.ci-green { background: #f0fdf4;             color: var(--green-dk); }

.contact-body h4 {
  font-size: .75rem; font-weight: 700; color: var(--royal);
  margin-bottom: .375rem; text-transform: uppercase; letter-spacing: .05em;
}
.contact-body p, .contact-body address { font-size: .875rem; color: var(--gray-600); line-height: 1.65; font-style: normal; }
.contact-body a { font-size: .875rem; color: var(--sky); font-weight: 600; display: block; transition: color .2s; }
.contact-body a:hover { color: var(--royal); }
.contact-social { display: flex; gap: .625rem; margin-top: .875rem; flex-wrap: wrap; }
.social-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .82rem; font-weight: 700;
  padding: .4rem .9rem; border-radius: var(--pill);
  transition: var(--ease);
}
.social-link--ig { background: rgba(225,48,108,.1); color: #e1306c; }
.social-link--ig:hover { background: #e1306c; color: var(--white); }
.social-link--fb { background: rgba(24,119,242,.1); color: #1877F2; }
.social-link--fb:hover { background: #1877F2; color: var(--white); }

/* ── FORM ────────────────────────────────────────────────── */
.form-wrap {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}
.form-wrap h3 { font-size: 1.2rem; font-weight: 900; color: var(--royal); margin-bottom: 1.5rem; }

.form-fields { display: flex; flex-direction: column; gap: 1rem; }
.form-group  { display: flex; flex-direction: column; gap: .375rem; }
.form-label  { font-size: .7rem; font-weight: 700; color: var(--gray-700); text-transform: uppercase; letter-spacing: .07em; }

.form-input, .form-textarea {
  width: 100%; border: 1.5px solid var(--gray-200); border-radius: .75rem;
  padding: .75rem 1rem; font-size: .875rem; font-family: inherit;
  color: var(--gray-800); background: var(--gray-50);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.form-input:focus, .form-textarea:focus {
  outline: none; border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(0,153,255,.15); background: var(--white);
}
.form-input.err, .form-textarea.err { border-color: #ef4444; }
.form-textarea { resize: none; }

.form-err       { font-size: .73rem; color: #ef4444; display: none; }
.form-err.show  { display: block; }

.form-ok {
  background: #f0fdf4; border: 1px solid #bbf7d0; color: #15803d;
  border-radius: .75rem; padding: .75rem 1rem;
  font-size: .875rem; font-weight: 600; text-align: center; display: none;
}
.form-ok.show { display: block; }

.btn-submit {
  width: 100%; background: var(--royal); color: var(--white);
  font-family: inherit; font-weight: 900; font-size: .9rem;
  padding: .9rem; border-radius: .875rem; border: none; cursor: pointer;
  transition: var(--ease);
}
.btn-submit:hover { background: #0044bb; transform: scale(1.02); }

/* ── MAP ─────────────────────────────────────────────────── */
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm); height: 300px; }
.map-wrap iframe { width: 100%; height: 100%; display: block; border: 0; }

/* ── FOOTER ──────────────────────────────────────────────── */
#site-footer { background: var(--navy); color: var(--white); padding: 4rem 0 1.5rem; }

.footer-grid { display: grid; gap: 2.5rem; margin-bottom: 3rem; }
@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2,1fr);         } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr;         } }

.footer-logo-row { display: flex; align-items: center; gap: .625rem; margin-bottom: 1.25rem; }
.footer-logo-row img { height: 38px; width: auto; }
.footer-logo-vegas  { font-size: 1.1rem; font-weight: 900; color: var(--white); }
.footer-logo-travel { font-size: 1.1rem; font-weight: 900; color: var(--gold);  }
.footer-tagline { font-size: .84rem; color: rgba(255,255,255,.5); line-height: 1.7; margin-bottom: 1.5rem; }

.footer-socials { display: flex; gap: .625rem; }
.footer-social-btn {
  width: 38px; height: 38px; background: rgba(255,255,255,.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: var(--ease); color: var(--white);
}
.footer-social-btn:hover               { transform: translateY(-2px); }
.footer-social-ig:hover { background: #e1306c; }
.footer-social-fb:hover { background: #1877F2; }
.footer-social-wa:hover { background: #25D366; }

.footer-col h4 {
  font-size: .68rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .12em; color: var(--white); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .625rem; }
.footer-col a  { font-size: .84rem; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-col a:hover { color: var(--gold); }

.footer-contact-row { display: flex; align-items: flex-start; gap: .625rem; font-size: .82rem; color: rgba(255,255,255,.5); }
.footer-contact-row > i { flex-shrink: 0; margin-top: .2rem; color: rgba(255,255,255,.4); width: 14px; text-align: center; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: .5rem; font-size: .73rem; color: rgba(255,255,255,.3);
}

/* ── Floating WhatsApp ───────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  width: 56px; height: 56px;
  background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); box-shadow: 0 4px 20px rgba(34,197,94,.4);
  transition: background .2s ease, transform .2s ease;
  animation: waPulse 2.2s ease-in-out infinite;
}
.wa-float:hover { background: var(--green-dk); transform: scale(1.12); }
.wa-float svg   { width: 28px; height: 28px; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 0 0 0   rgba(34,197,94,.55); }
  50%     { box-shadow: 0 0 0 14px rgba(34,197,94,0);   }
}

/* ── Scroll reveal ───────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .05s; }
.d2 { transition-delay: .12s; }
.d3 { transition-delay: .19s; }
.d4 { transition-delay: .26s; }
.d5 { transition-delay: .33s; }
.d6 { transition-delay: .40s; }
.d7 { transition-delay: .47s; }
.d8 { transition-delay: .54s; }
.d9 { transition-delay: .61s; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 639px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 280px; }
}
