/* ==========================================================================
   Miles & Memories — Thailand Tour Packages
   Design tokens: sky blue + orange + white, ticket/boarding-pass motif
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500;1,9..144,600&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root{
  /* --- Color tokens (sky blue / orange / white family) --- */
  --sky:        #38A6DE;
  --sky-deep:   #1C7FB3;
  --sky-mist:   #EAF7FF;
  --sky-line:   #CDEBFB;
  --orange:     #FF7A29;
  --orange-deep:#E15E10;
  --orange-mist:#FFE9DA;
  --white:      #FFFFFF;
  --ink:        #123049;   /* deep sky-blue-navy, used for text */
  --ink-soft:   #4C6B82;

  /* --- Type --- */
  --font-display: 'Fraunces', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* --- Layout --- */
  --container: 1180px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 20px 45px -20px rgba(18,48,73,.25);
  --shadow-tight: 0 8px 20px -10px rgba(18,48,73,.3);
}

/* ---------------------------------- Reset ---------------------------------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family: var(--font-display); margin:0 0 .4em; color: var(--ink); line-height:1.15; }
p{ margin:0 0 1em; }
button{ font-family:inherit; cursor:pointer; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

.container{ max-width: var(--container); margin:0 auto; padding:0 24px; }
section{ padding: 88px 0; }
.italic-accent{ font-style:italic; color: var(--orange); font-weight:500; }

.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-size:.78rem; letter-spacing:.18em; text-transform:uppercase;
  color: var(--orange-deep); font-weight:700; margin-bottom:14px;
}
.eyebrow::before{ content:""; width:26px; height:2px; background: var(--orange); display:inline-block; }

.section-head{ max-width: 640px; margin-bottom: 48px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
.section-head p{ color: var(--ink-soft); font-size:1.05rem; }

/* ---------------------------------- Buttons ---------------------------------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding: 14px 28px; border-radius: 100px; font-weight:700; font-size:.95rem;
  border:2px solid transparent; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space:nowrap;
}
.btn-primary{ background: var(--orange); color: var(--white); box-shadow: var(--shadow-tight); }
.btn-primary:hover{ background: var(--orange-deep); transform: translateY(-3px); box-shadow: 0 14px 26px -10px rgba(225,94,16,.5); }
.btn-outline{ background: transparent; border-color: rgba(255,255,255,.7); color: var(--white); }
.btn-outline:hover{ background: rgba(255,255,255,.15); transform: translateY(-3px); }
.btn-sky{ background: var(--sky); color: var(--white); box-shadow: var(--shadow-tight); }
.btn-sky:hover{ background: var(--sky-deep); transform: translateY(-3px); }
.btn-ghost{ background: var(--sky-mist); color: var(--sky-deep); border-color: var(--sky-line); }
.btn-ghost:hover{ background: var(--sky-line); }
.btn-block{ width:100%; }

/* ---------------------------------- Header ---------------------------------- */
.site-header{
  position: sticky; top:0; z-index: 500;
  background: rgba(233, 228, 228, 0.829); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--sky-line);
  transition: box-shadow .3s ease, background .3s ease;
}
.site-header.is-scrolled{ box-shadow: 0 10px 30px -20px rgba(18,48,73,.35); background: rgba(255,255,255,.97); }
.nav-wrap{ display:flex; align-items:center; justify-content:space-between; gap:24px; padding: 16px 0; }
.brand{ display:flex; align-items:center; gap:12px; font-family:var(--font-display); font-weight:700; font-size:1.3rem; color: var(--ink); }
.brand-logo{
  height:56px; width:auto; max-width:180px; object-fit:contain; flex-shrink:0;
  }
  footer-logo
{
  height:8px;
  width:15px;
  max-width:15px;
  object-fit:contain;
}

.brand-mark{
  width:30px; height:30px; border-radius:12px;
  background: linear-gradient(135deg, var(--sky), var(--sky-deep));
  display:flex; align-items:center; justify-content:center; color:var(--white);
  font-size:1.2rem; box-shadow: var(--shadow-tight);
}
.brand small{ display:block; font-family:var(--font-body); font-weight:500; font-size:.68rem; letter-spacing:.12em; text-transform:uppercase; color: var(--sky-deep); }

.nav-links{ display:flex; align-items:center; gap:34px; }
.nav-links a{
  font-weight:600; font-size:.95rem; color: var(--ink); position:relative; padding: 6px 0;
}
.nav-links a::after{
  content:""; position:absolute; left:0; bottom:0; width:0; height:2px; background: var(--orange);
  transition: width .25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after{ width:100%; }
.nav-links a.active{ color: var(--sky-deep); }

.nav-actions{ display:flex; align-items:center; gap:18px; }
.nav-toggle{
  display:none; flex-direction:column; gap:5px; background:none; border:none; padding:6px;
}
.nav-toggle span{ width:26px; height:2px; background: var(--ink); border-radius:2px; }

/* ---------------------------------- Hero + Slideshow ---------------------------------- */
.hero{ position:relative; min-height: 92vh; display:flex; align-items:center; overflow:hidden; color: var(--white); }
.hero-slides{ position:absolute; inset:0; z-index:0; }
.hero-slide{
  position:absolute; inset:0; background-size:cover; background-position:center;
  opacity:0; transform: scale(1.08); transition: opacity 1.6s ease, transform 8s ease;
}
.hero-slide.is-active{ opacity:1; transform: scale(1); z-index:1; }
.hero::before{
  content:""; position:absolute; inset:0; z-index:2;
  background: linear-gradient(180deg, rgba(18,48,73,.55) 0%, rgba(18,48,73,.35) 45%, rgba(18,48,73,.75) 100%);
}
.hero-content{ position:relative; z-index:3; max-width:720px; }
.hero-badge{
  display:inline-flex; align-items:center; gap:8px; padding:8px 18px; border-radius:100px;
  background: rgba(255,255,255,.15); border:1px solid rgba(255,255,255,.35);
  font-size:.82rem; font-weight:600; margin-bottom:22px; backdrop-filter: blur(6px);
}
.hero-badge .dot{ width:7px; height:7px; border-radius:50%; background: var(--orange); }
.hero h1{ color:var(--white); font-size: clamp(2.4rem, 5.4vw, 4.2rem); margin-bottom:20px; }
.hero p{ font-size:1.15rem; color: rgba(255,255,255,.9); max-width:560px; margin-bottom:32px; }
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; }

.hero-dots{ position:absolute; z-index:3; bottom: 34px; left:50%; transform:translateX(-50%); display:flex; gap:10px; }
.hero-dots button{
  width:10px; height:10px; border-radius:50%; background: rgba(255,255,255,.4); border:none; padding:0;
  transition: background .3s ease, transform .3s ease;
}
.hero-dots button.is-active{ background: var(--orange); transform: scale(1.25); }

.hero-scroll{
  position:absolute; z-index:3; right:34px; bottom:40px; writing-mode:vertical-rl; letter-spacing:.2em;
  font-size:.72rem; text-transform:uppercase; font-weight:600; display:flex; align-items:center; gap:10px;
  color: rgba(255,255,255,.85);
}
.hero-scroll::after{ content:""; width:1px; height:46px; background: rgba(255,255,255,.6); display:block; }

/* ---------------------------------- Stats strip ---------------------------------- */
.stats-strip{ background: var(--sky-mist); border-bottom:1px solid var(--sky-line); padding: 40px 0; }
.stats-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:24px; text-align:center; }
.stats-grid .stat b{ display:block; font-family:var(--font-display); font-size:2.1rem; color: var(--sky-deep); }
.stats-grid .stat span{ font-size:.85rem; color: var(--ink-soft); font-weight:600; }
@media (max-width:760px){ .stats-grid{ grid-template-columns: repeat(2,1fr); } }

/* ---------------------------------- Ticket / boarding-pass package cards (signature element) ---------------------------------- */
.tickets-wrap{ display:grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap:34px; }

.ticket{
  position:relative; display:flex; background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft); overflow:hidden; border:1px solid var(--sky-line);
}
.ticket-main{ flex:1; padding: 26px 24px; display:flex; flex-direction:column; gap:14px; }
.ticket-route{ display:flex; align-items:center; justify-content:space-between; gap:12px; }
.ticket-route .code{ font-family:var(--font-display); font-size:1.9rem; font-weight:700; color:var(--ink); }
.ticket-route .plane{
  flex:1; height:1px; background-image: repeating-linear-gradient(90deg, var(--sky-line) 0 8px, transparent 8px 14px);
  position:relative;
}
.ticket-route .plane::after{ content:"✈"; position:absolute; right:0; top:-11px; color: var(--sky); font-size:1.1rem; }
.ticket-title{ font-size:1.25rem; margin:0; }
.ticket-tags{ display:flex; gap:8px; flex-wrap:wrap; }
.ticket-tags span{ background: var(--sky-mist); color: var(--sky-deep); font-size:.74rem; font-weight:700; padding:5px 11px; border-radius:100px; }
.ticket-meta{ display:flex; gap:22px; padding-top:10px; border-top:1px dashed var(--sky-line); }
.ticket-meta div{ font-size:.78rem; color: var(--ink-soft); font-weight:600; text-transform:uppercase; letter-spacing:.04em; }
.ticket-meta div b{ display:block; font-family:var(--font-display); font-size:1.1rem; color: var(--ink); text-transform:none; letter-spacing:0; }

/* Full-width booking button pinned to the bottom of the card (grid rows stretch to equal height) */
.ticket-book-btn{ margin-top:auto; width:100%; }

/* Legacy price-stub styles kept in case any older markup still references them */
.ticket-stub{
  width: 148px; flex-shrink:0; background: var(--sky-mist); border-left: 2px dashed var(--sky-line);
  padding: 24px 18px; display:flex; flex-direction:column; align-items:center; justify-content:space-between;
  text-align:center; position:relative;
}
.ticket-stub::before, .ticket-stub::after{
  content:""; position:absolute; left:-11px; width:22px; height:22px; border-radius:50%; background: var(--white);
  border: 1px solid var(--sky-line);
}
.ticket-stub::before{ top:-11px; }
.ticket-stub::after{ bottom:-11px; }
.ticket-stub .price-label{ font-size:.68rem; text-transform:uppercase; letter-spacing:.1em; color: var(--sky-deep); font-weight:700; }
.ticket-stub .price{ font-family:var(--font-display); font-size:1.6rem; color: var(--orange-deep); font-weight:700; margin:6px 0; }
.ticket-stub .barcode{
  width:100%; height:30px; background-image: repeating-linear-gradient(90deg, var(--ink) 0 2px, transparent 2px 5px);
  opacity:.55; margin: 8px 0 12px;
}
.ticket-stub .btn{ width:100%; padding:10px 8px; font-size:.82rem; }

@media (max-width:560px){
  .ticket{ flex-direction:column; }
  .ticket-stub{ width:100%; border-left:none; border-top:2px dashed var(--sky-line); flex-direction:row; flex-wrap:wrap; }
  .ticket-stub::before, .ticket-stub::after{ display:none; }
  .ticket-stub .barcode{ display:none; }
}

/* ---------------------------------- Destination cards ---------------------------------- */
.dest-grid{ display:grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap:30px; }
.dest-card{
  border-radius: var(--radius-md); overflow:hidden; background: var(--white); box-shadow: var(--shadow-tight);
  border:1px solid var(--sky-line); transition: transform .35s ease, box-shadow .35s ease;
}
.dest-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-soft); }
.dest-media{ position:relative; height:210px; overflow:hidden; }
.dest-media img{ width:100%; height:100%; object-fit:cover; }
.dest-media .tag{
  position:absolute; top:14px; left:14px; background: rgba(255,122,41,.92); color:var(--white);
  font-size:.7rem; font-weight:700; padding:5px 12px; border-radius:100px; text-transform:uppercase; letter-spacing:.05em;
}
.dest-body{ padding: 20px 22px 24px; }
.dest-body h3{ font-size:1.25rem; }
.dest-body p{ color: var(--ink-soft); font-size:.94rem; margin-bottom:14px; }
.dest-highlights{ display:flex; gap:7px; flex-wrap:wrap; margin-bottom:16px; }
.dest-highlights span{ font-size:.72rem; color: var(--sky-deep); background: var(--sky-mist); padding:4px 10px; border-radius:100px; font-weight:600; }
.dest-link{ font-weight:700; color: var(--orange-deep); display:inline-flex; align-items:center; gap:6px; font-size:.9rem; }
.dest-link::after{ content:"→"; transition: transform .25s ease; }
.dest-link:hover::after{ transform: translateX(4px); }

/* ---------------------------------- Itineraries ---------------------------------- */
.itin-tabs{ display:flex; gap:12px; flex-wrap:wrap; margin-bottom: 36px; }
.itin-tab{
  padding: 11px 20px; border-radius:100px; background: var(--sky-mist); border:1px solid var(--sky-line);
  font-weight:700; font-size:.88rem; color: var(--sky-deep); transition: all .25s ease;
}
.itin-tab.is-active, .itin-tab:hover{ background: var(--sky); color: var(--white); border-color: var(--sky); }

.itin-panel{ display:none; }
.itin-panel.is-active{ display:block; animation: fadeUp .5s ease; }
.itin-head{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:16px; align-items:flex-end; margin-bottom:28px; padding-bottom:22px; border-bottom:1px solid var(--sky-line); }
.itin-head h3{ font-size:1.6rem; margin-bottom:6px; }
.itin-head .itin-tags span{ background: var(--orange-mist); color: var(--orange-deep); font-size:.74rem; font-weight:700; padding:5px 12px; border-radius:100px; margin-right:6px; }

.timeline{ position:relative; padding-left: 44px; }
.timeline::before{ content:""; position:absolute; left:15px; top:8px; bottom:8px; width:2px; background: var(--sky-line); }
.timeline-item{ position:relative; padding-bottom: 30px; }
.timeline-item:last-child{ padding-bottom:0; }
.timeline-item::before{
  content: attr(data-day); position:absolute; left:-44px; top:0; width:32px; height:32px; border-radius:50%;
  background: var(--sky); color:var(--white); font-family:var(--font-display); font-weight:700; font-size:.85rem;
  display:flex; align-items:center; justify-content:center; box-shadow: 0 0 0 5px var(--white);
}
.timeline-item h4{ font-size:1.05rem; margin-bottom:6px; }
.timeline-item p{ color: var(--ink-soft); font-size:.94rem; margin-bottom:0; }

/* ---------------------------------- Testimonials ---------------------------------- */
.story-grid{ display:grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap:28px; }
.story-card{
  background: var(--white); border:1px solid var(--sky-line); border-radius: var(--radius-md);
  padding: 26px; box-shadow: var(--shadow-tight); display:flex; flex-direction:column; gap:14px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.story-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.stars{ color: var(--orange); letter-spacing:3px; font-size:.95rem; }
.story-quote{ color: var(--ink); font-size:.98rem; }
.story-person{ display:flex; align-items:center; gap:12px; margin-top:auto; }
.story-avatar{ width:48px; height:48px; border-radius:50%; object-fit:cover; border:2px solid var(--sky-mist); }
.story-person b{ display:block; font-size:.92rem; }
.story-person span{ font-size:.78rem; color: var(--ink-soft); }

/* ---------------------------------- About page ---------------------------------- */
.page-hero{
  position:relative; padding: 150px 0 90px; color: var(--white); text-align:center;
  background: linear-gradient(160deg, var(--sky-deep), var(--sky) 70%);
  overflow:hidden;
}
.page-hero::before{
  content:""; position:absolute; inset:0; opacity:.5;
  background-image: repeating-linear-gradient(120deg, rgba(255,255,255,.06) 0 2px, transparent 2px 40px);
}
.page-hero .container{ position:relative; z-index:2; }
.page-hero h1{ color: var(--white); font-size: clamp(2.1rem, 4.4vw, 3.2rem); }
.page-hero p{ color: rgba(255,255,255,.9); max-width:600px; margin:0 auto; }
.breadcrumb{ display:inline-flex; gap:8px; font-size:.85rem; color: rgba(255,255,255,.8); margin-bottom:16px; }

.split{ display:grid; grid-template-columns: 1fr 1fr; gap:56px; align-items:center; }
.split img{ border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
@media (max-width:860px){ .split{ grid-template-columns:1fr; } }

.value-grid{ display:grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap:26px; }
.value-card{ background: var(--sky-mist); border-radius: var(--radius-md); padding: 28px 24px; border:1px solid var(--sky-line); transition: transform .3s ease; }
.value-card:hover{ transform: translateY(-6px); }
.value-icon{
  width:52px; height:52px; border-radius:14px; background: var(--white); display:flex; align-items:center;
  justify-content:center; font-size:1.4rem; margin-bottom:16px; box-shadow: var(--shadow-tight);
}
.team-grid{ display:grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap:28px; }
.team-card{ text-align:center; }
.team-card img{ border-radius: var(--radius-md); margin-bottom:16px; aspect-ratio:1/1; object-fit:cover; }
.team-card span{ color: var(--sky-deep); font-weight:600; font-size:.88rem; }

/* ---------------------------------- Contact ---------------------------------- */
.contact-wrap{ display:grid; grid-template-columns: 1.1fr .9fr; gap:50px; align-items:flex-start; }
@media (max-width:900px){ .contact-wrap{ grid-template-columns:1fr; } }
.contact-info-card{
  background: var(--ink); color: var(--white); border-radius: var(--radius-lg); padding: 36px 30px;
  display:flex; flex-direction:column; gap:22px; position:relative; overflow:hidden;
}
.contact-info-card::before{
  content:""; position:absolute; right:-60px; top:-60px; width:200px; height:200px; border-radius:50%;
  background: radial-gradient(circle, var(--sky) 0%, transparent 70%); opacity:.5;
}
.contact-item{ display:flex; gap:14px; position:relative; z-index:1; }
.contact-item .ic{
  width:42px; height:42px; border-radius:12px; background: rgba(255,255,255,.12); flex-shrink:0;
  display:flex; align-items:center; justify-content:center; font-size:1.1rem;
}
.contact-item b{ display:block; font-size:.95rem; }
.contact-item span{ font-size:.85rem; color: rgba(255,255,255,.75); }
.social-row{ display:flex; gap:10px; position:relative; z-index:1; }
.social-row a{ width:38px; height:38px; border-radius:50%; background: rgba(255,255,255,.12); display:flex; align-items:center; justify-content:center; transition: background .25s ease; }
.social-row a:hover{ background: var(--orange); }

.form-card{ background: var(--white); border:1px solid var(--sky-line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-soft); }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
@media (max-width:560px){ .form-row{ grid-template-columns:1fr; } }
.field{ margin-bottom:18px; }
.field label{ display:block; font-size:.85rem; font-weight:700; margin-bottom:7px; color: var(--ink); }
.field input, .field select, .field textarea{
  width:100%; padding: 13px 15px; border-radius: var(--radius-sm); border:1.5px solid var(--sky-line);
  font-family:inherit; font-size:.95rem; color: var(--ink); background: var(--sky-mist);
  transition: border-color .25s ease, background .25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color: var(--sky); background: var(--white); }
.field textarea{ resize:vertical; min-height:120px; }
.form-success{
  display:flex; gap:14px; align-items:flex-start; background: var(--sky-mist); border:1px solid var(--sky-line);
  border-radius: var(--radius-md); padding:20px; margin-bottom:22px; animation: fadeUp .5s ease;
}
.form-success .ic{ font-size:1.4rem; }

.map-embed{ border-radius: var(--radius-lg); overflow:hidden; border:1px solid var(--sky-line); box-shadow: var(--shadow-tight); }
.map-embed iframe{ width:100%; height:340px; border:0; display:block; }

/* ---------------------------------- Shared booking modal ---------------------------------- */
.modal{
  position:fixed; inset:0; z-index:1000; display:flex; align-items:center; justify-content:center;
  padding:20px; opacity:0; visibility:hidden; transition: opacity .3s ease, visibility .3s ease;
}
.modal.is-open{ opacity:1; visibility:visible; }
.modal-overlay{
  position:absolute; inset:0; background: rgba(18,48,73,.55); backdrop-filter: blur(3px);
}
.modal-box{
  position:relative; z-index:1; width:100%; max-width:520px; max-height:90vh; overflow-y:auto;
  transform: translateY(24px) scale(.98); transition: transform .3s ease;
}
.modal.is-open .modal-box{ transform: translateY(0) scale(1); }
.modal-close{
  position:absolute; top:18px; right:18px; width:34px; height:34px; border-radius:50%; border:none;
  background: var(--sky-mist); color: var(--ink); font-size:1.4rem; line-height:1; display:flex;
  align-items:center; justify-content:center; transition: background .2s ease;
}
.modal-close:hover{ background: var(--sky-line); }

.form-status{
  display:flex; gap:10px; align-items:flex-start; border-radius: var(--radius-md); padding:14px 16px;
  margin-bottom:18px; font-size:.9rem; font-weight:600;
}
.form-status.is-success{ background: var(--sky-mist); color: var(--sky-deep); border:1px solid var(--sky-line); }
.form-status.is-error{ background: var(--orange-mist); color: var(--orange-deep); border:1px solid var(--orange); }

/* ---------------------------------- CTA banner ---------------------------------- */
.cta-banner{
  background: linear-gradient(120deg, var(--sky-deep), var(--sky)); color: var(--white);
  border-radius: var(--radius-lg); padding: 56px; display:flex; align-items:center; justify-content:space-between;
  gap:30px; flex-wrap:wrap; position:relative; overflow:hidden;
}
.cta-banner::after{
  content:"✈"; position:absolute; right:-10px; bottom:-40px; font-size:9rem; opacity:.12; transform:rotate(-18deg);
}
.cta-banner h2{ color:var(--white); font-size: clamp(1.6rem,3vw,2.2rem); margin-bottom:8px; }
.cta-banner p{ color: rgba(255,255,255,.9); margin-bottom:0; }
.cta-banner .actions{ position:relative; z-index:2; }

/* ---------------------------------- Footer ---------------------------------- */
footer{ background: var(--ink); color: rgba(255,255,255,.82); padding: 64px 0 26px; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap:40px; margin-bottom:44px; }
@media (max-width:800px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width:520px){ .footer-grid{ grid-template-columns: 1fr; } }
.footer-grid h4{ color: var(--white); font-size:1rem; margin-bottom:18px; }
.footer-grid ul li{ margin-bottom:10px; }
.footer-grid ul a{ color: rgba(255,255,255,.72); font-size:.92rem; transition: color .2s ease; }
.footer-grid ul a:hover{ color: var(--orange); }
.footer-brand p{ color: rgba(255,255,255,.68); font-size:.92rem; max-width:280px; }
.footer-bottom{ border-top:1px solid rgba(255,255,255,.12); padding-top:22px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; font-size:.82rem; color: rgba(255,255,255,.55); }

.whatsapp-float{
  position:fixed; right:26px; bottom:26px; width:58px; height:58px; border-radius:50%;
  background:#25D366; display:flex; align-items:center; justify-content:center; color:var(--white);
  font-size:1.6rem; box-shadow: 0 12px 26px -8px rgba(0,0,0,.4); z-index:600; animation: pulse 2.4s infinite;
}

/* ---------------------------------- Animations ---------------------------------- */
@keyframes fadeUp{ from{ opacity:0; transform: translateY(18px);} to{ opacity:1; transform:translateY(0);} }
@keyframes pulse{ 0%,100%{ box-shadow:0 0 0 0 rgba(37,211,102,.5);} 50%{ box-shadow:0 0 0 12px rgba(37,211,102,0);} }

.reveal{ opacity:0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible{ opacity:1; transform:translateY(0); }
.reveal-stagger.is-visible > *{ animation: fadeUp .6s ease both; }
.reveal-stagger.is-visible > *:nth-child(1){ animation-delay:.05s; }
.reveal-stagger.is-visible > *:nth-child(2){ animation-delay:.15s; }
.reveal-stagger.is-visible > *:nth-child(3){ animation-delay:.25s; }
.reveal-stagger.is-visible > *:nth-child(4){ animation-delay:.35s; }
.reveal-stagger.is-visible > *:nth-child(5){ animation-delay:.45s; }
.reveal-stagger.is-visible > *:nth-child(6){ animation-delay:.55s; }

.page-fade{ animation: pageFade .6s ease; }
@keyframes pageFade{ from{ opacity:0; transform: translateY(10px);} to{ opacity:1; transform:translateY(0);} }

@media (max-width: 760px){
  section{ padding: 60px 0; }
  .cta-banner{ padding: 36px 26px; }
}

/* ---------------------------------- Mobile nav toggle (hamburger → X) ---------------------------------- */
.nav-toggle span{
  transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px){
  .nav-toggle{ display:flex; }
  .nav-actions .btn{ display:none; }
}