/* ============================================
   MILES TO SUITES — by @asktarunn
   Apple-style Design · Gold + Navy Palette
   ============================================ */

:root {
  --white:       #ffffff;
  --off-white:   #f5f5f7;
  --black:       #1d1d1f;
  --gray-1:      #6e6e73;
  --gray-2:      #86868b;
  --gray-3:      #d2d2d7;
  --gray-4:      #f5f5f7;
  --blue:        #0071e3;
  --blue-hover:  #0077ed;
  --gold:        #C9A96E;
  --gold-hover:  #b8945a;
  --wa-green:    #25D366;
  --dark-bg:     #0a0a0a;
  --dark-2:      #1d1d1f;

  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
          "Helvetica Neue", Arial, sans-serif;

  --section-pad: 120px;
  --container-w: 1200px;
  --radius-sm:   12px;
  --radius-md:   18px;
  --radius-lg:   28px;
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Container ── */
.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 48px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.022em;
  padding: 12px 22px;
  border-radius: 980px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-blue {
  background: var(--blue);
  color: var(--white);
}
.btn-blue:hover { background: var(--blue-hover); }

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--blue);
}
.btn-outline:hover { background: rgba(0,113,227,0.05); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover { border-color: rgba(255,255,255,0.8); }

.btn-full { width: 100%; justify-content: center; }

/* ── Sections ── */
.section { padding: var(--section-pad) 0; }
.section-dark  { background: var(--dark-bg); }
.section-dark2 { background: var(--dark-2); }
.section-gray  { background: var(--off-white); }

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-1);
  display: block;
  margin-bottom: 10px;
}
.section-label-blue { color: var(--blue); }

.section-title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--black);
}
.section-title-light { color: var(--white); }

.section-sub {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--gray-1);
  margin-top: 16px;
  max-width: 520px;
}
.section-sub-light { color: rgba(255,255,255,0.7); }

.section-header {
  text-align: center;
  margin-bottom: 80px;
}
.section-header .section-sub { margin: 16px auto 0; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 48px;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.8);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: background var(--transition);
}
.nav.nav-dark {
  background: rgba(22,22,23,0.9);
  border-bottom-color: rgba(255,255,255,0.08);
}
.nav-inner {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-w);
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
}
.nav-logo {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--black);
  transition: color var(--transition);
}
.nav-dark .nav-logo { color: var(--white); }

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
  opacity: 0.85;
  letter-spacing: -0.01em;
  transition: opacity var(--transition);
}
.nav-dark .nav-links a { color: var(--white); }
.nav-links a:hover { opacity: 1; }

.nav-cta {
  font-size: 14px !important;
  font-weight: 400 !important;
  color: var(--blue) !important;
  opacity: 1 !important;
}
.nav-cta:hover { text-decoration: underline; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--black);
  transition: all 0.3s ease;
}
.nav-dark .nav-hamburger span { background: var(--white); }

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  padding: 16px 24px 24px;
  gap: 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.nav-mobile-menu a {
  font-size: 17px;
  color: var(--black);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-3);
  transition: color var(--transition);
}
.nav-mobile-menu a:last-child { border-bottom: none; }
.nav-mobile-menu a:hover { color: var(--blue); }
.nav-mobile-menu.open { display: flex; }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #080808;
  position: relative;
  overflow: hidden;
  padding-top: 48px;
}
/* Warm gold radial glow — centre */
.hero::before {
  content: '';
  position: absolute;
  width: 1000px; height: 700px;
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(201,169,110,0.12) 0%, rgba(201,169,110,0.04) 40%, transparent 70%);
  pointer-events: none;
}
/* Vignette — edges darker */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
}
.hero-overlay { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 24px;
  animation: appleHeroIn 1s cubic-bezier(0.4,0,0.2,1) both;
}
.hero-eyebrow {
  font-size: 19px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.hero-title {
  font-size: clamp(3.8rem, 9vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 32px;
}
/* "Turn Your Miles" — bright white */
.hero-title .line-1 { color: #ffffff; }
/* "Into Suites." — gold gradient */
.hero-title em {
  font-style: normal;
  display: block;
  background: linear-gradient(135deg, #e8c97a 0%, #C9A96E 40%, #a07840 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 17px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  line-height: 1.9;
  max-width: 720px;
  margin: 0 auto 10px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
@media (max-width: 780px) {
  .hero-subtitle { white-space: normal; font-size: 15px; max-width: 420px; }
  .hero-scroll-indicator { display: none; }
}
/* Gold highlight on the key words */
.hero-subtitle strong {
  color: var(--gold);
  font-weight: 600;
  -webkit-text-fill-color: initial;
}
.hero-subtitle-2 {
  font-size: 11px;
  font-weight: 600;
  color: rgba(201,169,110,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 auto 40px;
  max-width: 600px;
  white-space: nowrap;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: fadeIn 2s ease 1.2s both;
}
.hero-scroll-indicator span {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ============================================
   STATS STRIP
   ============================================ */
.stats {
  background: var(--off-white);
  padding: 60px 0;
  border-top: 1px solid var(--gray-3);
  border-bottom: 1px solid var(--gray-3);
}
.stats-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 56px;
  flex: 1;
  min-width: 160px;
}
.stat-number {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--black);
  line-height: 1;
}
.stat-prefix,
.stat-plus,
.stat-suffix {
  font-size: 36px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.04em;
}
.stat-item p {
  font-size: 13px;
  color: var(--gray-1);
  margin-top: 6px;
  letter-spacing: -0.01em;
}
.stat-divider {
  width: 1px;
  height: 44px;
  background: var(--gray-3);
  flex-shrink: 0;
}

/* ============================================
   ABOUT
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--gray-3);
}
.about-image-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portrait-placeholder {
  text-align: center;
  color: var(--gray-2);
  padding: 20px;
}
.portrait-placeholder svg { width: 90px; height: 90px; margin: 0 auto 10px; }
.portrait-placeholder p {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--gray-2);
}

.about-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--white);
  border: 1px solid var(--gray-3);
  color: var(--black);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.badge-icon { font-size: 14px; }

.about-text { padding: 10px 0; }
.about-bio {
  font-size: 17px;
  color: var(--gray-1);
  margin-bottom: 16px;
  line-height: 1.65;
  letter-spacing: -0.01em;
}
.about-highlights {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 0;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--black);
}
.highlight-icon {
  color: var(--blue);
  font-size: 10px;
  flex-shrink: 0;
  line-height: 1;
}

/* ============================================
   REWARDS FEATURE STRIP
   ============================================ */
.rewards-intro {
  max-width: 600px;
  margin-bottom: 60px;
}
.rewards-intro .section-sub { max-width: 100%; }

.rewards-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.rewards-pillar {
  background: var(--white);
  border: 1px solid var(--gray-3);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: box-shadow var(--transition), transform var(--transition);
}
.rewards-pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.08);
}
.pillar-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.rewards-pillar h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.rewards-pillar p {
  font-size: 14px;
  color: var(--gray-1);
  line-height: 1.6;
  letter-spacing: -0.01em;
}

@media (max-width: 1024px) {
  .rewards-pillars { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .rewards-pillars { grid-template-columns: 1fr; }
  .rewards-pillar { padding: 24px 20px; }
}

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: rgba(255,255,255,0.05);
  padding: 48px 36px;
  transition: background var(--transition);
  position: relative;
}
.service-card::before { display: none; }
.service-card:hover { background: rgba(255,255,255,0.09); }
.service-icon {
  font-size: 28px;
  margin-bottom: 20px;
  display: block;
}
.service-card h3 {
  font-size: 21px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.service-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  letter-spacing: -0.01em;
}
/* Override dark section icon colors */
.section-dark .service-icon { color: inherit; opacity: 1; }

/* ============================================
   DESTINATIONS
   ============================================ */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
.dest-large {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}
.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--off-white);
}
.dest-bg {
  width: 100%;
  height: 280px;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.dest-large .dest-bg { height: 100%; min-height: 500px; }
.dest-card:hover .dest-bg { transform: scale(1.04); }
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.05) 55%);
}
.dest-placeholder-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  font-size: 3.5rem;
  opacity: 0.25;
}
.dest-info {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
}
.dest-info h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.dest-info p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

/* ============================================
   TESTIMONIALS — scrolling ticker
   ============================================ */
.reviews-ticker-wrap {
  position: relative;
  overflow: hidden;
  margin: 0 -24px; /* bleed past container padding */
}
.reviews-ticker-wrap::before,
.reviews-ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.reviews-ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--off-white), transparent);
}
.reviews-ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--off-white), transparent);
}
.reviews-ticker {
  overflow: hidden;
}
.reviews-ticker:hover .reviews-track {
  animation-play-state: paused;
}
.reviews-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: reviewsScroll 60s linear infinite;
  will-change: transform;
  padding: 16px 24px 24px;
}
@keyframes reviewsScroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
.testimonial-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-3);
  width: 360px;
  flex-shrink: 0;
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.testimonial-stars {
  color: var(--blue);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.testimonial-card blockquote {
  font-size: 17px;
  font-style: normal;
  color: var(--black);
  line-height: 1.65;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px; height: 40px;
  background: var(--off-white);
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 600;
  flex-shrink: 0;
  border: 1px solid var(--gray-3);
}
.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 2px;
}
.testimonial-author span {
  font-size: 13px;
  color: var(--gray-1);
}

/* ============================================
   PROCESS
   ============================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
}
.process-step {
  padding: 48px 36px;
  text-align: left;
  background: #0d0d0d;
  transition: background 0.2s;
  position: relative;
}
.process-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.process-step:hover { background: #111; }
.process-step:hover::before { opacity: 1; }
.step-number {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 24px;
  opacity: 0.7;
}
.process-step h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.process-step p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  letter-spacing: -0.01em;
}
.process-arrow { display: none; }

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 90px;
  align-items: start;
}
.contact-desc {
  font-size: 17px;
  color: var(--gray-1);
  margin-bottom: 36px;
  line-height: 1.65;
  letter-spacing: -0.01em;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--black);
}
.detail-icon {
  color: var(--blue);
  font-size: 16px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}
.contact-form {
  background: var(--off-white);
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-3);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 7px;
  letter-spacing: -0.01em;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--gray-3);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
  letter-spacing: -0.01em;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,113,227,0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-2); }
.form-note { font-size: 15px; }

/* ── CTA Submit Button ── */
.contact-form .btn-blue {
  background: var(--blue);
  color: var(--white);
  font-size: 17px;
  font-weight: 400;
}
.contact-form .btn-blue:hover { background: var(--blue-hover); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--off-white);
  border-top: 1px solid var(--gray-3);
  padding: 36px 0 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-3);
}
.footer-brand p {
  font-size: 13px;
  color: var(--gray-1);
  margin-top: 4px;
  letter-spacing: -0.01em;
}
.nav-logo { /* reuse logo style */
  font-size: 18px;
  color: var(--black);
}
.footer .nav-logo { color: var(--black); }
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 13px;
  color: var(--gray-1);
  transition: color var(--transition);
  letter-spacing: -0.01em;
}
.footer-links a:hover { color: var(--blue); }
.footer-social {
  display: flex;
  gap: 18px;
}
.footer-social a {
  font-size: 13px;
  color: var(--gray-1);
  transition: color var(--transition);
}
.footer-social a:hover { color: var(--blue); }
.footer-bottom {
  padding: 16px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--gray-2);
  letter-spacing: -0.01em;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1),
              transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes appleHeroIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  60%       { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  :root { --section-pad: 80px; }
  .container { padding: 0 32px; }
  .about-grid { gap: 50px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-large { grid-column: 1 / 3; grid-row: auto; }
  .dest-large .dest-bg { min-height: 340px; }
  /* testimonials now a ticker — no grid breakpoints needed */
  .contact-grid { gap: 50px; }
  .stats-inner { padding: 0 32px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 60px; }
  .container { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-badge { bottom: -12px; right: -8px; }
  .services-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; }
  .dest-large { grid-column: auto; }
  
  .process-steps { grid-template-columns: 1fr; }
  .process-step { max-width: 100%; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .stats-inner { gap: 16px; }
  .stat-divider { display: none; }
  .stat-item { padding: 8px 20px; }
  .footer-inner { flex-direction: column; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
  .footer-social { justify-content: center; }
  .hero-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 3rem; }
  .section-title { font-size: 2rem; }
}

/* ============================================
   MILES TO SUITES — Brand-specific styles
   ============================================ */

/* ── Brand logo ── */
.brand-logo {
  display: flex !important;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-icon { flex-shrink: 0; }
.brand-name-wrap {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.brand-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1.1;
}
.brand-handle {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--gold);
  opacity: 0.8;
}
.brand-handle a {
  display: inline;
  color: inherit;
  text-decoration: none;
  opacity: 1;
}
.brand-handle a:hover { text-decoration: underline; }
.nav-dark .brand-name { color: var(--white); }

/* ── Gold buttons ── */
.btn-gold {
  background: var(--gold);
  color: #1a1200;
  font-weight: 600;
}
.btn-gold:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
}

/* ── Deals callout strip ── */
.deals-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #0d1f12;
  border-top: 1px solid rgba(37,211,102,0.2);
  border-bottom: 1px solid rgba(37,211,102,0.2);
  padding: 13px 24px;
  text-decoration: none;
  transition: background 0.2s;
  flex-wrap: wrap;
}
.deals-strip:hover { background: #111f15; }
.deals-strip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(37,211,102,0.6);
  animation: pulse-green 2s ease-in-out infinite;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 6px rgba(37,211,102,0.5); }
  50%       { box-shadow: 0 0 14px rgba(37,211,102,0.9); }
}
.deals-strip-text {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.deals-strip-cta {
  font-size: 14px;
  font-weight: 600;
  color: #25d366;
  white-space: nowrap;
}

/* ── WhatsApp live dot (hero button) ── */
.wa-live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  flex-shrink: 0;
  vertical-align: middle;
  margin-right: 2px;
  box-shadow: 0 0 6px rgba(37,211,102,0.5);
  animation: pulse-green 2s ease-in-out infinite;
}

/* ── Award recognition bar ── */
.award-bar {
  background: #080f18;
  padding: 32px 24px;
}
a.award-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.25s;
  max-width: 900px;
  margin: 0 auto;
}
a.award-bar-inner:hover { opacity: 0.8; }
.award-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,169,110,0.5), transparent);
  max-width: 200px;
}
.award-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.award-eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.6);
}
.award-icon {
  font-size: 26px;
  line-height: 1;
}
.award-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.03em;
}
.award-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.award-cta {
  margin-top: 4px;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
}

/* ── Banner CTA column ── */
.wa-cta-btn {
  font-size: 17px;
  padding: 16px 32px;
  white-space: nowrap;
}
.wa-follow-row {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}
.wa-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 9px 16px;
  transition: background 0.2s, color 0.2s;
}
.wa-follow-btn:hover {
  background: rgba(255,255,255,0.15);
  color: #ffffff;
}
.wa-social-divider {
  display: flex;
  align-items: center;
  gap: 12px;
}
.wa-divider-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.35);
}
.wa-divider-text {
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.wa-social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.wa-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s, transform 0.2s, opacity 0.2s;
  padding: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 42px;
  height: 42px;
}
.wa-social-link:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }
.wa-social-dot {
  color: rgba(255,255,255,0.2);
  font-size: 14px;
}

/* ── WhatsApp button ── */
.btn-wa {
  background: #111111;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-wa:hover { background: #222222; transform: translateY(-1px); }

/* ── Nav WhatsApp link ── */
.nav-wa { color: var(--wa-green) !important; font-size: 13px !important; }
.nav-wa:hover { opacity: 1 !important; }

/* ── Gold label ── */
.section-label-gold { color: var(--gold) !important; }

/* ── Hero pill ── */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,169,110,0.07);
  border: 1px solid rgba(201,169,110,0.25);
  color: rgba(201,169,110,0.8);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 980px;
  margin-bottom: 32px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.trust-dot { color: rgba(201,169,110,0.3); font-size: 10px; }

/* ── Services new layout ── */
.services-new { background: var(--dark-bg); padding: var(--section-pad) 0 48px; }
.services-new .section-header { margin-bottom: 80px; }

.service-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 100px;
  padding-bottom: 100px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.service-feature:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.service-feature-rev { direction: rtl; }
.service-feature-rev > * { direction: ltr; }

.service-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.service-feature-text h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.service-feature-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 28px;
}
.service-feature-text p strong {
  color: var(--gold);
  font-weight: 600;
}
.service-perks-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.service-perks-label strong {
  color: var(--gold);
}
.service-perks {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.service-perks li {
  font-size: 14.5px;
  color: rgba(255,255,255,0.7);
  letter-spacing: -0.01em;
}
.service-perks li::before { display: none; }
.service-perks .perk-highlight-item {
  color: var(--gold);
  font-size: 14.5px;
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 6px;
  padding: 10px 14px;
  margin-bottom: 4px;
}
.service-perks .perk-highlight-item strong {
  color: var(--gold);
}
.service-no-fee {
  font-size: 14.5px;
  color: var(--white);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
  line-height: 1.6;
}
.service-no-fee strong { color: var(--gold); }

/* ── Service visual card ── */
.service-visual-card {
  background: #141414;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.visual-header {
  background: #1c1c1e;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.visual-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.visual-dot.red    { background: #ff5f57; }
.visual-dot.yellow { background: #febc2e; }
.visual-dot.green  { background: #28c840; }
.visual-title {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-left: 8px;
  letter-spacing: 0.02em;
}
.visual-body { padding: 24px; }

/* Hotel booking card */
.visual-hotel-img {
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-align: center;
}
.visual-hotel-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.visual-perks-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.visual-perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.vp-check {
  color: #28c840;
  font-weight: 700;
  font-size: 12px;
}
.visual-perk.vp-gold {
  color: var(--gold);
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.18);
  border-radius: 6px;
  padding: 5px 8px;
  margin-bottom: 2px;
}
.visual-perk.vp-gold .vp-check { color: var(--gold); }
.visual-perk.vp-gold strong { color: var(--gold); }
.visual-savings {
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-align: center;
}
.visual-savings strong { color: var(--gold); }

/* Points card */
.points-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.points-row:last-child { border-bottom: none; }
.points-label { font-size: 13px; color: rgba(255,255,255,0.6); }
.points-value { font-size: 14px; font-weight: 600; color: var(--white); }
.points-value.gold { color: var(--gold); font-size: 16px; }
.points-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 8px 0; }
.points-total .points-label { font-weight: 600; color: var(--white); font-size: 14px; }

/* Flight card */
.flight-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.flight-city {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.flight-line {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  position: relative;
}
.flight-line::before, .flight-line::after {
  content: '';
  position: absolute;
  top: 50%;
  width: calc(50% - 18px);
  height: 1px;
  background: rgba(201,169,110,0.3);
}
.flight-line::before { left: 0; }
.flight-line::after { right: 0; }
.flight-class {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.flight-details-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.flight-detail {
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 12px 14px;
}
.flight-detail-gold { background: rgba(201,169,110,0.1); border: 1px solid rgba(201,169,110,0.2); }
.flight-detail span {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.flight-detail strong { font-size: 15px; color: var(--white); }
.flight-detail-gold strong { color: var(--gold); }

/* ── Perks strip ── */
.perks-strip {
  background: var(--off-white);
  padding: 70px 0;
  border-top: 1px solid var(--gray-3);
  border-bottom: 1px solid var(--gray-3);
}
.perks-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.perk-item {
  text-align: center;
  padding: 24px 12px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-3);
  transition: transform var(--transition), box-shadow var(--transition);
}
.perk-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.07);
}
.perk-emoji { font-size: 24px; display: block; margin-bottom: 10px; }
.perk-item strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.perk-item span {
  font-size: 12px;
  color: var(--gray-1);
  line-height: 1.4;
}

/* ── Partners inline (under Hotel Bookings) ── */
.service-feature--hotel {
  padding-bottom: 32px !important;
  margin-bottom: 0 !important;
  border-bottom: none !important;
}
.partners-inline {
  margin: 0 0 56px;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
.partners-inline .partners-label {
  color: rgba(255,255,255,0.35);
}
.partners-inline .partners-ticker::before {
  background: linear-gradient(to right, var(--dark-bg), transparent);
}
.partners-inline .partners-ticker::after {
  background: linear-gradient(to left, var(--dark-bg), transparent);
}
/* Logo ticker overrides */
.partners-inline .partners-track {
  gap: 48px;
  animation-duration: 50s;
  align-items: center;
  will-change: transform;         /* GPU layer */
}
.partners-inline .logo-item {
  position: relative;
  /* width set per-logo via inline style */
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.partners-inline .logo-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0;                      /* starts invisible; JS sets to 1 on load */
  transition: opacity 0.6s ease;
  display: block;
}
.partners-inline .logo-img--svg {
  padding: 4px 0;
}
.partners-inline .logo-name {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
  text-align: center;
  transition: opacity 0.6s ease;
  line-height: 1.3;
  padding: 0 6px;
  max-width: 100%;
}

/* ── Partners ticker ── */
.partners-section {
  padding: 40px 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-3);
  overflow: hidden;
}
.partners-label {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-2);
  margin-bottom: 24px;
}
.partners-ticker {
  overflow: hidden;
  position: relative;
}
.partners-ticker::before,
.partners-ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
}
.partners-ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}
.partners-ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}
.partners-track {
  display: flex;
  gap: 32px;
  animation: tickerScroll 25s linear infinite;
  width: max-content;
  align-items: center;
}
.partners-track span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-3);
  white-space: nowrap;
}
@keyframes tickerScroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
.partners-inline .partners-ticker:hover .partners-track {
  animation-play-state: paused;
}

/* ── Community Banner ── */
.community-banner {
  background: #060606;
  padding: 100px 0 110px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.community-banner-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(201,169,110,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.community-inner {
  position: relative;
  z-index: 2;
}
.community-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.6);
  margin-bottom: 32px;
}
.community-stat {
  font-size: clamp(5rem, 14vw, 11rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 8px;
}
.community-stat-plus {
  color: var(--gold);
}
.community-stat-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.4);
  letter-spacing: -0.01em;
  margin-bottom: 40px;
}
.community-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.community-pills span {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 980px;
  padding: 7px 16px;
  letter-spacing: -0.01em;
}
.community-copy {
  font-size: 16px;
  color: rgba(255,255,255,0.38);
  line-height: 1.75;
  margin-bottom: 44px;
  letter-spacing: -0.01em;
}
.community-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── WhatsApp / X Banner ── */
.wa-banner {
  background: var(--dark-bg);
  padding: var(--section-pad) 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.wa-banner-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.wa-banner-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}
.wa-banner-text h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  margin-top: 10px;
  line-height: 1.15;
}
.wa-banner-text em { color: var(--gold); font-style: italic; }
.wa-banner-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-top: 16px;
  max-width: 460px;
}
.wa-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
  flex-shrink: 0;
  min-width: 240px;
  min-width: 220px;
}

/* ── Responsive additions ── */
@media (max-width: 1024px) {
  .perks-grid { grid-template-columns: repeat(3, 1fr); }
  .service-feature { grid-template-columns: 1fr; gap: 40px; }
  .service-feature-rev { direction: ltr; }
  .wa-banner-inner { grid-template-columns: 1fr; gap: 40px; }
  .wa-banner-actions { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 768px) {
  .perks-grid { grid-template-columns: repeat(2, 1fr); }
  .wa-banner-actions { flex-direction: column; }
  .hero-trust { flex-wrap: wrap; gap: 8px; }
}
@media (max-width: 480px) {
  .perks-grid { grid-template-columns: 1fr 1fr; }
}

/* ── X (Twitter) button ── */
.btn-x {
  background: #000000;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-x:hover { background: #1a1a1a; transform: translateY(-1px); }

/* ── Instagram button ── */
.btn-insta {
  background: #111111;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-insta:hover { background: #222222; transform: translateY(-1px); }

/* ── X nav link ── */
.nav-x-link {
  font-size: 13px !important;
  color: rgba(255,255,255,0.85) !important;
  opacity: 1 !important;
  font-weight: 500 !important;
}
.nav-x-link:hover { color: var(--white) !important; opacity: 1 !important; }

/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVE
   ============================================ */

/* ── Nav dark mobile menu ── */
.nav-dark .nav-mobile-menu {
  background: rgba(10,10,10,0.97);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nav-dark .nav-mobile-menu a {
  color: rgba(255,255,255,0.85);
  border-bottom-color: rgba(255,255,255,0.08);
}
.nav-dark .nav-mobile-menu a:hover { color: var(--gold); }
.nav-dark .nav-mobile-menu a:last-child {
  color: var(--gold);
  font-weight: 600;
}

@media (max-width: 900px) {
  /* Hero */
  .hero-subtitle-2 {
    white-space: normal;
    font-size: 10px;
    letter-spacing: 0.06em;
    padding: 0 12px;
  }
  .hero-pill { font-size: 10px; padding: 6px 16px; margin-bottom: 24px; }
  .hero-title { margin-bottom: 24px; }

  /* Services deep layout */
  .service-feature {
    gap: 48px;
    margin-bottom: 64px;
    padding-bottom: 64px;
  }
  .service-feature-visual {
    display: flex;
    justify-content: center;
  }
  .service-visual-card {
    max-width: 480px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  /* Hero */
  .hero-content { padding: 0 20px; }
  .hero-trust { font-size: 11px; gap: 6px; }
  .trust-dot { display: none; }
  .hero-trust span { padding: 4px 10px; background: rgba(255,255,255,0.04); border-radius: 20px; }

  /* Stats — 3-col wrap */
  .stats-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    padding: 0 20px;
  }
  .stat-item {
    flex: 0 0 33.33%;
    text-align: center;
    padding: 16px 8px;
  }
  .stat-number { font-size: 38px; }
  .stat-prefix, .stat-plus, .stat-suffix { font-size: 26px; }
  .stat-item p { font-size: 11px; }

  /* Services */
  .service-feature { gap: 36px; margin-bottom: 56px; padding-bottom: 56px; }
  .service-feature-text h3 { font-size: 2rem; }
  .service-feature-text p { font-size: 15px; }
  .service-visual-card { max-width: 100%; }

  /* How it works — already 1-col, tighten spacing */
  .process-step { padding: 28px 24px; }

  /* WA Banner */
  .wa-banner-text h2 { font-size: clamp(1.8rem, 6vw, 2.8rem); }
  .wa-banner-actions .btn { width: 100%; justify-content: center; }

  /* Community banner */
  .community-inner .btn { width: 100%; max-width: 320px; }
}

@media (max-width: 480px) {
  /* Nav */
  .brand-name { font-size: 12px; letter-spacing: 0.04em; }
  .brand-handle { font-size: 9px; }
  .brand-icon { width: 28px; height: 28px; }

  /* Hero */
  .hero-title { font-size: 2.8rem; letter-spacing: -0.04em; }
  .hero-subtitle { font-size: 14px; line-height: 1.75; }
  .hero-subtitle-2 { font-size: 9.5px; }
  .hero-actions .btn { font-size: 15px; padding: 11px 20px; }

  /* Stats — 1 row, centred */
  .stat-item { flex: 0 0 100%; border-bottom: 1px solid rgba(0,0,0,0.06); padding: 14px 8px; }
  .stat-item:last-child { border-bottom: none; }
  .stat-number { font-size: 42px; }

  /* Section titles */
  .section-title { font-size: 1.9rem; }
  .section-subtitle { font-size: 15px; }

  /* Services */
  .service-feature { gap: 28px; margin-bottom: 48px; padding-bottom: 48px; }
  .service-feature-text h3 { font-size: 1.8rem; }
  .service-perks li { font-size: 13.5px; }
  .btn-gold, .btn-wa, .btn-x, .btn-insta { font-size: 15px; padding: 11px 20px; }

  /* Process steps */
  .step-number { font-size: 2.5rem; }
  .process-step h3 { font-size: 1.1rem; }
  .process-step p { font-size: 14px; }

  /* Flight card */
  .flight-city { font-size: 1.8rem; }
  .flight-class { font-size: 12px; }
  .flight-detail strong { font-size: 1.1rem; }

  /* Footer */
  .footer-logo-text { font-size: 13px; }

  /* Container */
  .container { padding: 0 16px; }
  .stats-inner { padding: 0 16px; }
}
