.elementor-316 .elementor-element.elementor-element-6d1b09c{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-95c0c76 */@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700&family=Dancing+Script:wght@600&display=swap');

/* ═══════════════════════════════════════════════════════════
   SEERAH AIR TRAVEL — LANDING PAGE CSS
   This file also carries the shared design tokens, reset, and
   base utility classes (.container, grids, buttons, typography)
   used across the whole site. Load it on every page, alongside
   header.css and footer.css.
   ═══════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --navy:        #1a1a1a;
  --navy-dark:   #111111;
  --red:         #E0263C;
  --red-dark:    #b81e30;
  --gold:        #C9A84C;
  --gold-light:  #F5D78E;
  --white:       #ffffff;
  --off-white:   #f8f9fc;
  --text:        #111111;
  --muted:       #6b7280;
  --border:      #e5e7eb;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.06);
  --shadow:      0 8px 30px rgba(0,0,0,.09);
  --shadow-lg:   0 20px 60px rgba(0,0,0,.14);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  0.3s ease;
  --header-h-desktop: 90px;
  --header-h-mobile:  62px;
}

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; margin:0; padding:0; }
body { font-family:'Poppins', sans-serif; color:var(--text); background:var(--white); line-height:1.7; overflow-x:hidden; width:100%; margin:0; padding:0; }
img, svg, video { max-width:100%; }
a { text-decoration:none; color:inherit; transition:color var(--transition); }
ul { list-style:none; }
img { display:block; }
.container { max-width:1200px; margin:0 auto; padding:0 24px; }
section { padding:64px 0; }
.bg-light { background:var(--off-white); }
.overflow-hidden { overflow:hidden; }
.align-center { align-items:center; }
.text-center { text-align:center; }

/* ── FULL-BLEED FIX ──────────────────────────────────────── */
.seerah-wrap {
  width:100vw;
  max-width:100vw;
  position:relative;
  left:50%;
  right:50%;
  margin-left:-50vw;
  margin-right:-50vw;
}

/* ── GRIDS ───────────────────────────────────────────────── */
.grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:48px; }
.grid-3 { display:grid; grid-template-columns:repeat(auto-fit, minmax(280px, 1fr)); gap:28px; }
.grid-4 { display:grid; grid-template-columns:repeat(auto-fit, minmax(220px, 1fr)); gap:24px; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3 { font-family:'Playfair Display', serif; line-height:1.25; }
h4, h5     { font-family:'Poppins', sans-serif; }
.section-title { font-size:clamp(1.9rem, 4vw, 2.8rem); color:var(--navy); margin-bottom:14px; }
.section-subtitle { color:var(--muted); font-size:1rem; max-width:560px; margin:0 auto 52px; }
.script-title { font-family:'Dancing Script', cursive; font-size:clamp(1.6rem, 3vw, 2.2rem); color:var(--gold); display:block; margin-bottom:6px; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:13px 30px; border-radius:50px;
  font-weight:600; font-size:.88rem; letter-spacing:.04em;
  cursor:pointer; border:2px solid transparent;
  transition:all var(--transition);
  position:relative; overflow:hidden;
}
.btn::before {
  content:''; position:absolute; top:0; left:-100%;
  width:60%; height:100%;
  background:linear-gradient(120deg,transparent,rgba(255,255,255,.22),transparent);
  transition:left .5s ease;
}
.btn:hover::before { left:150%; }
.btn-gold       { background:var(--gold); color:var(--navy); box-shadow:0 4px 18px rgba(201,168,76,.35); }
.btn-gold:hover { background:#b89235; box-shadow:0 6px 24px rgba(201,168,76,.5); transform:translateY(-2px); }
.btn-red        { background:var(--red); color:var(--white); box-shadow:0 4px 18px rgba(224,38,60,.3); }
.btn-red:hover  { background:var(--red-dark); transform:translateY(-2px); box-shadow:0 6px 24px rgba(224,38,60,.45); }
.btn-navy       { background:var(--navy); color:var(--white); }
.btn-navy:hover { background:var(--navy-dark); transform:translateY(-2px); }
.btn-outline-white { border-color:rgba(255,255,255,.7); color:var(--white); background:transparent; }
.btn-outline-white:hover { background:var(--white); color:var(--navy); }
.btn-sm { padding:9px 20px; font-size:.78rem; }
.btn-lg { padding:16px 38px; font-size:.95rem; }



/* ── HERO ────────────────────────────────────────────────── */
.hero {
  --hero-min-h: 900px;
  --trust-bar-radius: 999px;
  position: relative;
  min-height: var(--hero-min-h);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* full-bleed background image */
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-image {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 65%;
  display: block;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(255,255,255,.75) 0%,
    rgba(255,255,255,.55) 18%,
    rgba(255,255,255,.15) 38%,
    rgba(255,255,255,0) 55%);
}

/* nav overlaid on the image */
.hero-nav { position: relative; z-index: 3; padding: 26px 0; }
.hero-nav-inner { display: flex; align-items: center; justify-content: space-between; }
.hero-logo {
  font-family: inherit; font-weight: 800; font-size: 1.4rem;
  color: var(--red); text-decoration: none; line-height: 1;
  display: flex; flex-direction: column;
}
.hero-logo i { font-size: .8em; margin-left: 4px; }
.hero-logo span { font-size: .5rem; font-weight: 600; letter-spacing: .12em; color: var(--muted); margin-top: 2px; }
.hero-nav-links { display: flex; list-style: none; gap: 36px; margin: 0; padding: 0; }
.hero-nav-links a {
  color: var(--navy); text-decoration: none; font-weight: 500; font-size: .98rem;
  padding-bottom: 6px; border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.hero-nav-links a.active,
.hero-nav-links a:hover { color: var(--red); border-color: var(--red); }
.hero-login-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: #fff; text-decoration: none;
  font-weight: 600; font-size: .92rem;
  padding: 12px 22px; border-radius: 999px;
  transition: background var(--transition);
}
.hero-login-btn:hover { background: var(--red); }

/* content overlaid on the image */
.hero .container {
  position: relative; z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.hero-content {
  max-width: var(--hero-content-max-w, 800px);
  margin: 0 auto;
  text-align: center;
  width: 100%;
  padding-top: 2vh; /* moved up from 6vh */
}
.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800; line-height: 1.15; color: var(--navy);
}
.hero-content h1 span {
  display: block;
  background-image: linear-gradient(135deg, var(--red), #eb4238);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.hero-subtext {
  max-width: 640px; margin: 22px auto 0;
  font-size: 1.05rem; line-height: 1.6; color: var(--navy);
  opacity: .85;
}

/* CTA button — reduced size */
.hero-cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 24px;
  background: var(--red); color: #fff; text-decoration: none;
  font-weight: 700; font-size: .85rem; letter-spacing: .02em;
  padding: 13px 26px; border-radius: 999px;
  box-shadow: 0 8px 20px rgba(224,38,60,.35);
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(224,38,60,.45); }
.hero-cta i { font-size: .9em; }

/* trust bar — floats over the image on desktop only.
   On smaller screens it flows normally below the CTA, so it can
   never overlap the button text. No negative margins anywhere. */
.trust-float {
  position: absolute; left: 0; right: 0; bottom: 34px;
  z-index: 3; padding: 0 24px;
}
.trust-float-inner {
  max-width: 1150px; margin: 0 auto;
  background: var(--white); border-radius: var(--trust-bar-radius);
  box-shadow: var(--shadow-lg); padding: 22px 44px;
  display: flex; align-items: center; justify-content: space-between; gap: 15px; flex-wrap: wrap;
}
.trust-float .trust-item { display: flex; align-items: center; gap: 14px; flex: 0 0 auto; transition: transform var(--transition); }
.trust-float .trust-item:hover { transform: translateY(-2px); }
.trust-float .trust-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(224,38,60,.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 1.25rem; flex-shrink: 0;
  transition: transform var(--transition), background var(--transition), color var(--transition);
}
.trust-float .trust-item:hover .trust-icon { background: var(--red); color: var(--white); transform: scale(1.08); }
.trust-float .trust-item h4 { font-size: .9rem; font-weight: 700; color: var(--navy); white-space: nowrap; }
.trust-float .trust-item p { font-size: .78rem; color: var(--muted); white-space: nowrap; }

/* ── Responsive ─────────────────────────────────────────── */

@media (max-width: 992px) {
  .hero { --hero-min-h: 620px; }
  .hero .container { padding-top: 40px; padding-bottom: 40px; }
  .hero-content { padding-top: 1vh; }
  .hero-nav-links { display: none; }
  .trust-float {
    position: static;
    margin-top: 32px;
    padding: 0 24px 40px;
  }
  .trust-float-inner { border-radius: 40px; padding: 22px 30px; }
}

@media (max-width: 768px) {
  .hero { --hero-min-h: 640px; }
  .hero .container { padding-top: 16px; padding-bottom: 24px; }
  .hero-content { padding-top: 0; }
  .hero-content h1 { font-size: 1.9rem; }
  .hero-subtext { font-size: .95rem; }
  .hero-cta { margin-top: 18px; padding: 12px 22px; font-size: .8rem; }
  .hero-overlay {
    background: linear-gradient(180deg,
      rgba(255,255,255,.7) 0%,
      rgba(255,255,255,.45) 14%,
      rgba(255,255,255,.1) 30%,
      rgba(255,255,255,0) 45%);
  }
  .trust-float { margin-top: 20px; padding: 0 16px 32px; }
  .trust-float-inner {
    border-radius: 24px; padding: 22px 20px;
    flex-direction: column; align-items: flex-start; text-align: left; gap: 18px;
  }
  .trust-float .trust-item { width: 100%; justify-content: flex-start; gap: 14px; transform: none; }
  .trust-float .trust-item h4, .trust-float .trust-item p { white-space: normal; word-break: break-word; }
  .trust-float .trust-item:hover { transform: none; }
}

@media (max-width: 480px) {
  .hero { --hero-min-h: 560px; }
  .hero .container { padding-top: 20px; }
  .hero-content { padding-top: 0; }
  .hero-content h1 { font-size: 1.55rem; }
  .hero-login-btn span { display: none; }
  .hero-cta { margin-top: 14px; padding: 10px 20px; font-size: .78rem; }
  .trust-float-inner { padding: 18px; gap: 15px; }
  .trust-float .trust-icon { width: 48px; height: 48px; font-size: 1.1rem; }
}
/* ── WELCOME SECTION ─────────────────────────────────────── */
.welcome-section { position:relative; padding:0; display:flex; align-items:center; justify-content:center; background-size:cover; background-position:center; background-repeat:no-repeat; overflow:hidden; }
.welcome-overlay { position:absolute; inset:0; background:linear-gradient(rgba(255,255,255,.10), rgba(255,255,255,.15)); pointer-events:none; }
.welcome-wrapper { position:relative; z-index:2; width:100%; display:flex; justify-content:center; align-items:center; text-align:center; padding:90px 20px; }
.welcome-content { max-width:820px; display:flex; flex-direction:column; align-items:center; }
.welcome-content h2 { font-family:'Playfair Display',serif; font-size:clamp(3rem,5vw,5.5rem); font-weight:700; line-height:1.05; color:#111; letter-spacing:-2px; margin-bottom:34px; }
.welcome-desc { max-width:760px; font-family:'Inter',sans-serif; font-size:1.35rem; line-height:1.85; color:#444; margin:0 auto; }
.welcome-slogan { margin-top:45px; margin-bottom:40px; font-family:'Dancing Script',cursive; font-size:3rem; color:#d8245d; font-weight:600; }
.welcome-btn {
  display:inline-flex; align-items:center; justify-content:center; gap:12px;
  padding:18px 42px; border-radius:60px; color:#fff;
  text-decoration:none; font-weight:600; font-size:18px;
  background:linear-gradient(135deg, #d8245d, #eb4238);
  box-shadow:0 20px 45px rgba(216,36,93,.25);
  transition:.35s;
}
.welcome-btn:hover { transform:translateY(-5px); box-shadow:0 28px 55px rgba(216,36,93,.35); }

@media(max-width:992px){
  .welcome-content { max-width:720px; }
  .welcome-content h2 { font-size:4rem; }
  .welcome-desc { font-size:1.15rem; }
}
@media(max-width:768px){
  .welcome-wrapper { padding:70px 20px; }
  .welcome-content h2 { font-size:2.6rem; line-height:1.15; letter-spacing:-1px; margin-bottom:25px; }
  .welcome-desc { font-size:1rem; line-height:1.8; }
  .welcome-slogan { font-size:2rem; margin-top:30px; margin-bottom:30px; }
  .welcome-btn { padding:15px 34px; font-size:16px; }
}
@media(max-width:480px){
  .welcome-content h2 { font-size:2.2rem; }
  .welcome-slogan { font-size:1.8rem; }
}

/* ── POPULAR SERVICES ────────────────────────────────────── */
.popular-services { padding:64px 0; background:#f7f8fb; }
.pkg-featured { display:grid; grid-template-columns:1.1fr .9fr; gap:28px; margin-top:50px; align-items:start; }
.pkg-stack { display:flex; flex-direction:column; gap:18px; }
.pkg-card-large, .pkg-card-sm { background:#fff; border-radius:24px; overflow:hidden; border:1px solid #ececec; box-shadow:0 16px 45px rgba(0,0,0,.08); transition:.35s; }
.pkg-card-large:hover, .pkg-card-sm:hover { transform:translateY(-8px); }
.pkg-card-large { display:flex; flex-direction:column; }
.pkg-card-large img { width:100%; height:300px; object-fit:cover; }
.pkg-card-sm { display:grid; grid-template-columns:145px 1fr; min-height:155px; }
.pkg-card-sm img { width:100%; height:100%; object-fit:cover; }
.card-body { display:flex; flex-direction:column; padding:18px 20px; height:100%; }
.card-tag { font-size:10px; font-weight:700; letter-spacing:.14em; color:#E3263C; margin-bottom:8px; text-transform:uppercase; }
.card-body h3 { margin:0 0 8px; font-size:18px; line-height:1.25; font-weight:700; color:#1B1B1B; }
.pkg-card-large h3 { font-size:36px; }
.card-desc { color:#666; font-size:15px; line-height:1.6; margin-bottom:14px; flex:1; }
.card-cta { display:flex; justify-content:flex-end; margin-top:auto; }
.card-cta a, .services-main-btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 22px; background:#E3263C; color:#fff;
  border-radius:999px; font-size:15px; font-weight:600;
  text-decoration:none; transition:.3s;
}
.card-cta a:hover, .services-main-btn:hover { background:#1B1B1B; }
.services-btn-wrap { margin-top:45px; }

/* Mobile swipeable card stack — hidden by default, shown ≤768px */
.pkg-mobile-stack { display:none; }

@media(max-width:991px){
  .pkg-featured { grid-template-columns:1fr; }
  .pkg-card-sm { grid-template-columns:140px 1fr; }
}
@media(max-width:767px){
  .pkg-featured { display:block; }
  .pkg-card-large { margin-bottom:22px; }
  .pkg-card-sm { grid-template-columns:115px 1fr; min-height:140px; margin-bottom:18px; }
  .pkg-card-large img { height:240px; }
  .pkg-card-large h3 { font-size:28px; }
  .card-body { padding:16px; }
  .card-body h3 { font-size:17px; }
  .card-desc { font-size:14px; line-height:1.5; }
  .card-cta a { padding:9px 18px; font-size:14px; }
}

/* ── ABOUT STRIP ─────────────────────────────────────────── */
.about-images { position:relative; height:500px; }
.img-back {
  position:absolute; top:0; right:0; width:78%; height:350px;
  object-fit:cover; border-radius:22px; box-shadow:var(--shadow-lg);
  transform:rotate(3deg); transition:.45s ease; overflow:hidden;
}
.img-front {
  position:absolute; left:0; bottom:15px; width:70%; height:300px;
  object-fit:cover; border-radius:22px; border:8px solid #fff;
  box-shadow:var(--shadow-lg); z-index:2; transform:rotate(-3deg); transition:.45s ease;
}
.about-images:hover .img-back  { transform:rotate(1deg) scale(1.03); }
.about-images:hover .img-front { transform:rotate(-1deg) scale(1.05); }
.experience-badge {
  position:absolute; top:14%; left:-10px; width:135px; height:135px;
  border-radius:50%; background:linear-gradient(135deg,#2ECC71,#27AE60); color:#fff;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; z-index:5;
  box-shadow:0 12px 35px rgba(46,204,113,.35);
  animation:badgePulse 2.8s infinite;
  font-size:.82rem; font-weight:600; letter-spacing:.02em;
}
.experience-badge span { font-size:2rem; font-weight:700; line-height:1; margin-bottom:6px; }
@keyframes badgePulse {
  0%,100% { box-shadow:0 0 0 0 rgba(46,204,113,.35), 0 12px 35px rgba(46,204,113,.35); }
  50%      { box-shadow:0 0 0 18px rgba(46,204,113,0), 0 12px 35px rgba(46,204,113,.35); }
}
.feature-list { margin-top:24px; }
.feature-list li { display:flex; align-items:flex-start; gap:12px; margin-bottom:16px; color:var(--muted); font-size:16px; line-height:1.7; }
.feature-list i { color:var(--red); margin-top:5px; font-size:16px; flex-shrink:0; }
.btn.btn-navy { margin-top:32px; display:inline-flex; align-items:center; gap:10px; }
.btn.btn-navy i { transition:.3s; }
.btn.btn-navy:hover i { transform:translateX(6px); }

@media(max-width:991px) {
  .about-images { height:420px; }
  .img-back { height:290px; }
  .img-front { height:250px; }
  .experience-badge { width:115px; height:115px; font-size:.75rem; }
  .experience-badge span { font-size:1.7rem; }
}
@media(max-width:768px) {
  .about-images { height:360px; margin-bottom:50px; }
  .img-back { width:78%; height:230px; }
  .img-front { width:70%; height:190px; bottom:0; }
  .experience-badge { width:95px; height:95px; left:-5px; top:10%; }
  .experience-badge span { font-size:1.4rem; }
  .script-title { font-size:1.8rem; }
  .feature-list li { font-size:14px; line-height:1.6; margin-bottom:12px; }
}
@media(max-width:480px) {
  .about-images { height:300px; }
  .img-back { height:190px; }
  .img-front { height:160px; }
  .experience-badge { width:80px; height:80px; font-size:11px; }
  .experience-badge span { font-size:1.2rem; }
  .script-title { font-size:1.6rem; }
}

/* ── EXPERIENCE SECTION ──────────────────────────────────── */
:root { --exp-red:#E3263C; --exp-dark:#1B1B1B; --exp-text:#666; --exp-border:#E9E9E9; --exp-shadow:0 20px 45px rgba(0,0,0,.12); }
.experience-section { background:#fff; padding:64px 0; overflow:hidden; }
.experience-section .container { max-width:1200px; margin:auto; padding:0 20px; }
.experience-grid { display:grid; grid-template-columns:350px 520px; justify-content:space-between; align-items:center; column-gap:55px; position:relative; }
.gallery { display:flex; gap:20px; align-items:center; }
.mask { width:165px; height:280px; overflow:hidden; box-shadow:var(--exp-shadow); background:#f2f2f2; transition:.35s ease; }
.mask:hover { transform:translateY(-8px); }
.mask img { width:100%; height:100%; object-fit:cover; display:block; }
.left-mask  { clip-path:path("M165 0 L165 280 L82 280 A82 140 0 0 1 82 0 Z"); }
.right-mask { clip-path:path("M0 0 L82 0 A82 140 0 0 1 82 280 L0 280 Z"); }
.content h2 { font-size:48px; line-height:1.15; color:var(--exp-dark); margin-bottom:18px; }
.content h2 span { display:block; color:var(--exp-red); }
.content p { color:var(--exp-text); line-height:1.9; margin-bottom:24px; }
.content ul { list-style:none; padding:0; margin:0 0 28px; }
.content li { display:flex; align-items:center; gap:10px; margin-bottom:12px; font-weight:500; }
.content li i { color:var(--exp-red); }
.features { margin-top:70px; display:grid; grid-template-columns:repeat(3,1fr); }
.features article { display:flex; gap:18px; padding:0 28px; }
.features article:not(:last-child) { border-right:1px solid var(--exp-border); }
.icon { width:58px; height:58px; border:2px solid var(--exp-red); border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--exp-red); flex-shrink:0; }
.features h4 { margin:0 0 10px; font-size:22px; color:var(--exp-dark); }
.features p { margin:0; color:var(--exp-text); line-height:1.8; }

@media(max-width:991px) {
  .experience-grid { grid-template-columns:1fr; row-gap:50px; justify-items:center; }
  .content { text-align:center; max-width:700px; }
  .content ul { display:inline-block; text-align:left; }
  .gallery { justify-content:center; }
  .waves { display:none; }
  .features { grid-template-columns:1fr; gap:35px; }
  .features article { border-right:none !important; padding:0; }
}
@media(max-width:576px) {
  .gallery { gap:16px; }
  .mask { width:140px; height:235px; }
  .content h2 { font-size:34px; }
  .features article { flex-direction:column; text-align:center; align-items:center; }
}

/* ── TESTIMONIALS ────────────────────────────────────────── */
.swipe-hint { display:none; }
.testimonial-card { background:var(--white); border-radius:var(--radius-lg); padding:32px; box-shadow:var(--shadow); border:1px solid var(--border); position:relative; transition:transform var(--transition), box-shadow var(--transition); }
.testimonial-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.quote-icon { font-family:'Playfair Display', serif; font-size:5rem; line-height:1; color:rgba(224,38,60,.12); position:absolute; top:8px; left:20px; }
.testimonial-stars { margin-bottom:14px; }
.testimonial-stars i { color:#FBBC04; font-size:.9rem; }
.testimonial-card p { font-style:italic; color:var(--muted); font-size:.92rem; margin-bottom:22px; position:relative; z-index:1; }
.client-info { display:flex; align-items:center; gap:12px; }
.client-avatar { width:42px; height:42px; border-radius:50%; background:linear-gradient(135deg, var(--red-dark), var(--red)); color:var(--white); display:flex; align-items:center; justify-content:center; font-weight:700; font-size:1rem; }
.client-info h5 { font-size:.92rem; font-weight:600; color:var(--navy); }
.client-info small { color:var(--muted); font-size:.75rem; }

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal       { opacity:0; transform:translateY(28px); transition:opacity .65s ease, transform .65s ease; }
.reveal.revealed { opacity:1; transform:translateY(0); }
.reveal-left  { opacity:0; transform:translateX(-44px); transition:opacity .65s ease, transform .65s ease; }
.reveal-left.revealed { opacity:1; transform:translateX(0); }
.reveal-right { opacity:0; transform:translateX(44px); transition:opacity .65s ease, transform .65s ease; }
.reveal-right.revealed { opacity:1; transform:translateX(0); }
.delay-1 { transition-delay:.1s !important; }
.delay-2 { transition-delay:.2s !important; }
.delay-3 { transition-delay:.3s !important; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
}

/* ══════════════════════ MOBILE (≤768px) ═══════════════════ */
@media (max-width:768px) {
  section { padding:56px 0; }
  .hero { margin-top:0; }
  .grid-2 { grid-template-columns:1fr; gap:32px; }
  .grid-3 { grid-template-columns:1fr; }
  .grid-4 { grid-template-columns:repeat(2, 1fr); gap:16px; }
  .hero-content { text-align:center; }

  .pkg-featured { display:none; }
  .pkg-mobile-stack { display:block; position:relative; padding-bottom:8px; }
  .pkg-stack-card {
    position:sticky; top:calc(var(--header-h-mobile) + 14px);
    height:440px; border-radius:var(--radius-lg); overflow:hidden;
    box-shadow:var(--shadow-lg); margin-bottom:22px; background:#1a0608;
  }
  .pkg-stack-card:nth-child(1) { z-index:1; }
  .pkg-stack-card:nth-child(2) { z-index:2; }
  .pkg-stack-card:nth-child(3) { z-index:3; }
  .pkg-stack-card:nth-child(4) { z-index:4; }
  .pkg-stack-img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
  .pkg-stack-overlay { position:absolute; inset:0; background:linear-gradient(180deg, rgba(50,0,8,0) 0%, rgba(50,0,8,.35) 45%, rgba(50,0,8,.95) 100%); }
  .pkg-stack-body { position:absolute; left:0; right:0; bottom:0; padding:26px 22px 24px; color:var(--white); }
  .pkg-stack-tag {
    display:inline-block; font-size:.66rem; font-weight:700; letter-spacing:.09em; text-transform:uppercase;
    color:var(--gold-light); background:rgba(255,255,255,.14); border:1px solid rgba(255,255,255,.25);
    padding:4px 12px; border-radius:50px; margin-bottom:12px; backdrop-filter:blur(4px);
  }
  .pkg-stack-body h3 { font-size:1.35rem; color:var(--white); margin-bottom:8px; }
  .pkg-stack-desc { font-size:.85rem; color:rgba(255,255,255,.82); line-height:1.6; margin-bottom:16px; }
  .pkg-stack-footer { display:flex; align-items:center; }

  .swipe-hint { display:flex; align-items:center; gap:6px; justify-content:center; font-size:.78rem; color:var(--muted); margin:-30px 0 24px; }
  .testimonial-grid { display:flex; overflow-x:auto; scroll-snap-type:x mandatory; gap:16px; margin:0 -24px; padding:4px 24px 12px; -webkit-overflow-scrolling:touch; scrollbar-width:none; }
  .testimonial-grid::-webkit-scrollbar { display:none; }
  .testimonial-grid .testimonial-card { flex:0 0 82%; scroll-snap-align:center; }

  .about-images { height:380px; margin-bottom:16px; }
  .cta-content { flex-direction:column; text-align:center; gap:28px; }
}

/* ── SMALL PHONES (≤480px) ───────────────────────────────── */
@media (max-width:480px) {
  .grid-4 { grid-template-columns:1fr; }
  .pkg-stack-card { height:400px; }
  .testimonial-grid .testimonial-card { flex-basis:88%; }
}/* End custom CSS */