/* =========================================================
   AL FATHAH HAJ SERVICES PVT. LTD.
   Premium Islamic travel design system
   ========================================================= */

:root {
  --purple: #4b2a87;
  --purple-deep: #331c5e;
  --purple-soft: #f2eefc;
  --green: #157f4a;
  --green-deep: #0e5c35;
  --green-soft: #eaf6ef;
  --gold: #b8892f;
  --ink: #16131f;
  --body: #55506180;
  --muted: #635d72;
  --line: #e8e5ef;
  --white: #ffffff;
  --sand: #faf9f7;
  --radius: 18px;
  --shadow-sm: 0 4px 18px rgba(27, 18, 51, .06);
  --shadow-md: 0 18px 44px rgba(27, 18, 51, .10);
  --shadow-lg: 0 30px 80px rgba(27, 18, 51, .14);
  --ff-display: "Cormorant Garamond", Georgia, serif;
  --ff-body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --header-h: 84px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

html, body { max-width: 100%; }

img { max-width: 100%; height: auto; }

a { color: var(--purple); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--green); }

h1, h2, h3, h4, h5 { font-family: var(--ff-display); font-weight: 600; color: var(--ink); letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 5.2vw, 4rem); line-height: 1.08; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.9rem); line-height: 1.15; }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); line-height: 1.25; }
p { color: var(--muted); }

.section { padding: clamp(64px, 8vw, 118px) 0; }
.section-sand { background: var(--sand); }
.section-tight { padding: clamp(48px, 6vw, 84px) 0; }

.container { max-width: 1240px; }

/* ---------- Shared bits ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 700; color: var(--green); margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--green); display: inline-block; }
.eyebrow-light { color: #ffffff; }
.eyebrow-light::before { background: rgba(255,255,255,.7); }

.lead { font-size: 1.06rem; color: var(--muted); max-width: 62ch; }

.divider-motif { display: flex; align-items: center; gap: 12px; margin: 1.2rem 0; }
.divider-motif span { width: 8px; height: 8px; transform: rotate(45deg); background: var(--gold); opacity: .8; }
.divider-motif i { flex: 1; height: 1px; background: var(--line); font-style: normal; }


/* .offcanvas {
    position: relative !important;

} */

/* ---------- Buttons ---------- */
.btn {
  --bs-btn-focus-box-shadow: none;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: .93rem;
  letter-spacing: .01em;
  border-radius: 999px;
  padding: .82rem 1.7rem;
  border: 1px solid transparent;
  transition: transform .25s ease, background-color .25s ease, color .25s ease, box-shadow .25s ease;
}
.btn:active { transform: translateY(1px); }
.btn-brand { background: var(--purple); color: #fff; box-shadow: 0 10px 26px rgba(75,42,135,.24); }
.btn-brand:hover { background: var(--purple-deep); color: #fff; transform: translateY(-2px); }
.btn-green { background: var(--green); color: #fff; box-shadow: 0 10px 26px rgba(21,127,74,.22); }
.btn-green:hover { background: var(--green-deep); color: #fff; transform: translateY(-2px); }
.btn-outline-brand { border-color: var(--purple); color: var(--purple); background: transparent; }
.btn-outline-brand:hover { background: var(--purple); color: #fff; transform: translateY(-2px); }
.btn-ghost-light { border-color: rgba(255,255,255,.7); color: #fff; background: rgba(255,255,255,.08); backdrop-filter: blur(6px); }
.btn-ghost-light:hover { background: #fff; color: var(--purple); transform: translateY(-2px); }
.btn-lg-brand { padding: 1rem 2.1rem; font-size: 1rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
   inset: 0 0 auto 0; z-index: 1030;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s ease, border-color .3s ease, padding .3s ease;
}
.site-header.is-stuck { box-shadow: 0 8px 30px rgba(27,18,51,.08); border-color: var(--line); }
.site-header .navbar { padding-top: .7rem !important; padding-bottom: .7rem !important; }
.brand-logo { display: flex; align-items: center; gap: .65rem; }
.brand-logo img { height: 92px; width: auto; }
.brand-logo span { display: none; }

.site-nav .nav-link {
  font-size: .93rem; font-weight: 600; color: var(--ink);
  padding: .55rem .85rem !important; position: relative;
}
.site-nav .nav-link::after {
  content: ""; position: absolute; left: .85rem; right: .85rem; bottom: .32rem; height: 2px;
  background: var(--green); transform: scaleX(0); transform-origin: right; transition: transform .3s ease;
}
.site-nav .nav-link:hover::after, .site-nav .nav-link.active::after { transform: scaleX(1); transform-origin: left; }
.site-nav .nav-link.active { color: var(--purple); }

.site-nav .dropdown-menu {
  border: 1px solid var(--line); border-radius: 14px; padding: .5rem;
  box-shadow: var(--shadow-md); min-width: 232px; margin-top: .4rem;
}
.site-nav .dropdown-item {
  border-radius: 10px; font-size: .92rem; font-weight: 600; color: var(--ink); padding: .6rem .8rem;
}
.site-nav .dropdown-item:hover, .site-nav .dropdown-item.active {
  background: var(--purple-soft); color: var(--purple);
}
@media (min-width: 992px) {
  .site-nav .dropdown:hover > .dropdown-menu { display: block; }
}

.nav-toggle {
  border: 1px solid var(--line); border-radius: 12px; width: 46px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center; background: #fff;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); position: relative; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--ink);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

#mobileNav { width: min(88vw, 340px); width: 88vw !important;
    height: 100vh !important; }
.offcanvas-nav .nav-link { font-size: 1rem; padding: .7rem 0 !important; border-bottom: 1px solid var(--line); font-weight: 600; }
.offcanvas-nav .sub-link { font-size: .92rem; padding: .45rem 0 .45rem 1rem; display: block; color: var(--muted); font-weight: 600; }

/* ---------- Hero slider ---------- */
.hero { position: relative; height: min(94vh, 860px); min-height: 560px; margin-top: 0; }
.hero .carousel, .hero .carousel-inner, .hero .carousel-item { height: 100%; }
.hero .carousel-item { overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); }
.carousel-item.active .hero-media img { animation: heroZoom 9s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.09); } to { transform: scale(1); } }

.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(22,15,38,.62) 0%, rgba(22,15,38,.34) 38%, rgba(22,15,38,.05) 66%, rgba(22,15,38,0) 100%);
}
@media (max-width: 767.98px) {
  .hero-veil { background: linear-gradient(180deg, rgba(22,15,38,.30) 0%, rgba(22,15,38,.52) 60%, rgba(22,15,38,.62) 100%); }
}

.hero-inner { position: relative; z-index: 3; height: 100%; display: flex; align-items: center; }
.hero-copy { max-width: 660px; color: #fff; padding-top: var(--header-h); }
.hero-copy h1 { color: #fff; text-shadow: 0 2px 26px rgba(0,0,0,.28); }
.hero-copy p { color: rgba(255,255,255,.92); font-size: 1.05rem; max-width: 52ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.7rem; }

.hero-dots { position: absolute; z-index: 4; bottom: 34px; left: 0; right: 0; }
.hero-dots .carousel-indicators { position: static; margin: 0; justify-content: flex-start; }
.hero-dots .carousel-indicators [data-bs-target] {
  width: 42px; height: 3px; border: 0; border-radius: 3px; background: rgba(255,255,255,.45); opacity: 1; margin-right: 10px;
}
.hero-dots .carousel-indicators .active { background: #fff; }

.hero-scroll {
  position: absolute; right: 26px; bottom: 34px; z-index: 4; color: #fff; font-size: .72rem;
  letter-spacing: .2em; text-transform: uppercase; display: flex; align-items: center; gap: .6rem;
}
.hero-scroll i { display: block; width: 44px; height: 1px; background: rgba(255,255,255,.7); font-style: normal; }
@media (max-width: 767.98px) { .hero-scroll { display: none; } }

/* ---------- Page banner (inner pages) ---------- */
.page-banner { position: relative; padding: calc(var(--header-h) + 74px) 0 74px; overflow: hidden; }
.page-banner img.banner-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-banner .veil { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(22,15,38,.66), rgba(22,15,38,.28)); }
.page-banner .container { position: relative; z-index: 2; }
.page-banner h1 { color: #fff; }
.page-banner p { color: rgba(255,255,255,.9); max-width: 60ch; }
.breadcrumb-bar { --bs-breadcrumb-divider-color: rgba(255,255,255,.6); margin-bottom: .8rem; }
.breadcrumb-bar .breadcrumb { margin: 0; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.breadcrumb-bar a { color: rgba(255,255,255,.82); }
.breadcrumb-bar a:hover { color: #fff; }
.breadcrumb-bar .breadcrumb-item.active { color: #fff; }
.breadcrumb-bar .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.55); }

/* ---------- Cards ---------- */
.card-soft {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.8rem; height: 100%; transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.card-soft:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card-icon {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  background: var(--purple-soft); color: var(--purple); font-size: 1.35rem; margin-bottom: 1.1rem;
}
.card-icon.green { background: var(--green-soft); color: var(--green); }

.pkg-card {
  position: relative; border-radius: 22px; overflow: hidden; background: #fff;
  border: 1px solid var(--line); height: 100%; display: flex; flex-direction: column;
  transition: transform .4s ease, box-shadow .4s ease;
}
.pkg-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pkg-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.pkg-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.pkg-card:hover .pkg-media img { transform: scale(1.07); }
.pkg-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2; background: rgba(255,255,255,.94);
  color: var(--purple); font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: .38rem .8rem; border-radius: 999px;
}
.pkg-body { padding: 1.6rem 1.5rem 1.7rem; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.pkg-body p { margin: 0; font-size: .95rem; }
.pkg-link { margin-top: auto; font-weight: 700; font-size: .9rem; display: inline-flex; align-items: center; gap: .45rem; }
.pkg-link svg { transition: transform .3s ease; }
.pkg-card:hover .pkg-link svg { transform: translateX(5px); }

/* ---------- Stats ---------- */
.stat-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.stat { text-align: center; padding: 2.2rem .5rem; }
.stat .num { font-family: var(--ff-display); font-size: clamp(2.1rem, 4vw, 3.1rem); font-weight: 600; color: var(--purple); line-height: 1; }
.stat .num sup { font-size: .5em; color: var(--green); top: -.7em; }
.stat .lbl { font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: .6rem; font-weight: 600; }

/* ---------- Media frames ---------- */
.frame { position: relative; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-md); }
.frame img { width: 100%; display: block; transition: transform .9s cubic-bezier(.2,.7,.2,1); }
.frame:hover img { transform: scale(1.05); }
.frame-accent::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 5px;
  background: linear-gradient(90deg, var(--purple), var(--green));
}
.frame-tall { aspect-ratio: 4/5; }
.frame-tall img { height: 100%; object-fit: cover; }

.badge-float {
  position: absolute; right: -14px; bottom: -18px; background: #fff; border-radius: 18px;
  padding: 1.1rem 1.3rem; box-shadow: var(--shadow-md); border: 1px solid var(--line); max-width: 220px;
}
.badge-float strong { font-family: var(--ff-display); font-size: 1.6rem; color: var(--green); display: block; line-height: 1; }
.badge-float span { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
@media (max-width: 575.98px) { .badge-float { position: static; margin-top: 1rem; max-width: none; } }

/* ---------- Journey steps ---------- */
.journey { counter-reset: step; }
.journey-item { position: relative; padding: 1.6rem 1.4rem; border-radius: 18px; background: #fff; border: 1px solid var(--line); height: 100%; }
.journey-item::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--ff-display); font-size: 1.5rem; color: var(--green); font-weight: 600; display: block; margin-bottom: .5rem;
}
.journey-item h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.journey-item p { font-size: .92rem; margin: 0; }

/* ---------- Team ---------- */
.team-card { border-radius: 20px; overflow: hidden; border: 1px solid var(--line); background: #fff; height: 100%; transition: transform .35s ease, box-shadow .35s ease; }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-media { aspect-ratio: 4/5; overflow: hidden; background: var(--sand); }
.team-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.team-card:hover .team-media img { transform: scale(1.06); }
.team-body { padding: 1.3rem 1.3rem 1.5rem; }
.team-role { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--green); font-weight: 700; }
.team-body h3 { font-size: 1.25rem; margin: .35rem 0 .25rem; }
.team-body .qual { font-size: .82rem; color: var(--muted); margin-bottom: .6rem; }
.team-phone { font-weight: 700; font-size: .95rem; display: inline-flex; align-items: center; gap: .45rem; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.gallery-tile { position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 1/1; display: block; }
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s cubic-bezier(.2,.7,.2,1); }
.gallery-tile:hover img { transform: scale(1.08); }
.gallery-tile figcaption {
  position: absolute; inset: auto 0 0 0; padding: 1.4rem 1.1rem .9rem; color: #fff; font-size: .88rem; font-weight: 600;
  background: linear-gradient(to top, rgba(22,15,38,.72), rgba(22,15,38,0));
}
.gallery-tile.wide { grid-column: span 2; aspect-ratio: 2/1; }
@media (max-width: 575.98px) { .gallery-tile.wide { grid-column: span 1; aspect-ratio: 1/1; } }

/* ---------- Video ---------- */
.video-card { border-radius: 20px; overflow: hidden; border: 1px solid var(--line); background: #fff; height: 100%; }
.video-frame { position: relative; aspect-ratio: 16/9; background: #0d0a16; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-body { padding: 1.1rem 1.2rem 1.4rem; }
.video-body h3 { font-size: 1.12rem; margin-bottom: .3rem; }
.video-body p { font-size: .9rem; margin: 0; }

/* ---------- Testimonials ---------- */
.quote-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 2rem 1.8rem; height: 100%; }
.quote-card .mark { font-family: var(--ff-display); font-size: 3rem; line-height: .6; color: var(--green); display: block; margin-bottom: .8rem; }
.quote-card p { font-size: .97rem; color: var(--ink); }
.quote-meta { margin-top: 1.2rem; font-size: .82rem; color: var(--muted); font-weight: 600; }
.quote-meta strong { display: block; color: var(--ink); font-size: .95rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: 26px; padding: clamp(2.4rem, 5vw, 4rem); color: #fff; }
.cta-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-band .veil { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(51,28,94,.88), rgba(21,127,74,.62)); }
.cta-band .inner { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); }

/* ---------- Forms ---------- */
.form-panel { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: clamp(1.6rem, 3vw, 2.6rem); box-shadow: var(--shadow-sm); }
.form-label { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; color: var(--muted); margin-bottom: .4rem; }
.form-control, .form-select {
  border: 1px solid var(--line); border-radius: 12px; padding: .78rem 1rem; font-size: .95rem; background: #fff; color: var(--ink);
}
.form-control:focus, .form-select:focus { border-color: var(--purple); box-shadow: 0 0 0 4px rgba(75,42,135,.10); }
.form-note { font-size: .82rem; color: var(--muted); }
.form-status { display: none; border-radius: 12px; padding: .8rem 1rem; font-size: .9rem; font-weight: 600; margin-top: 1rem; }
.form-status.ok { display: block; background: var(--green-soft); color: var(--green-deep); }
.form-status.err { display: block; background: #fdeeee; color: #a12626; }

/* ---------- Contact info ---------- */
.info-row { display: flex; gap: 1rem; padding: 1.2rem 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: 0; }
.info-ico { width: 44px; height: 44px; flex: 0 0 44px; border-radius: 14px; background: var(--purple-soft); color: var(--purple); display: grid; place-items: center; }
.info-row h3 { font-size: 1.02rem; margin: 0 0 .15rem; font-family: var(--ff-body); font-weight: 700; }
.info-row p, .info-row a { margin: 0; font-size: .95rem; }

/* ---------- Footer ---------- */
.site-footer { background: #14101f; color: rgba(255,255,255,.72); padding: clamp(3rem, 6vw, 5rem) 0 0; }
.site-footer h4 { color: #fff; font-family: var(--ff-body); font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; margin-bottom: 1.1rem; }
.site-footer a { color: rgba(255,255,255,.72); font-size: .94rem; }
.site-footer a:hover { color: #fff; }
.site-footer .footer-logo { background: #fff; border-radius: 14px; padding: .7rem .9rem; display: inline-block; }
.site-footer .footer-logo img { height: auto; }
.footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.footer-bottom { margin-top: 3rem; border-top: 1px solid rgba(255,255,255,.12); padding: 1.3rem 0; font-size: .85rem; }

/* ---------- Floating action buttons ---------- */
.floaties { position: fixed; right: 14px; bottom: 16px; z-index: 1040; display: grid; gap: 10px; }
.floaty {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; color: #fff;
  box-shadow: 0 8px 22px rgba(0,0,0,.18); border: 0; transition: transform .25s ease, filter .25s ease;
}
.floaty:hover { transform: translateY(-3px) scale(1.05); color: #fff; filter: brightness(1.06); }
.floaty.wa { background: #25d366; }
.floaty.tel { background: var(--green); }
.floaty.rev { background: var(--gold); }
.floaty.enq { background: var(--purple); }
.floaty svg { width: 20px; height: 20px; }



.team-phone svg{
  font-size: 12px;
    width: 20px;
}
.team-phone{

  width: 100%;
}





/* =========================================
   SPECIAL OFFERS & ANNOUNCEMENTS
========================================= */

.special-offers {
  background: #fff;
}

.special-offers-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.special-offers-head h2 {
  margin-bottom: 0;
}

.special-offers-intro {
  max-width: 390px;
  text-align: right;
}

.special-offers-intro p {
  margin: 0;
  color: var(--text-muted, #777286);
  line-height: 1.8;
}


/* CARD */

.offer-card {
  height: 100%;
  background: #fff;
  border: 1px solid rgba(75, 42, 135, .12);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(28, 18, 48, .06);
  transition:
    transform .45s ease,
    box-shadow .45s ease,
    border-color .45s ease;
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(28, 18, 48, .12);
  border-color: rgba(75, 42, 135, .22);
}


/* IMAGE */

.offer-media {
  position: relative;
  aspect-ratio: 4 / 4.7;
  overflow: hidden;
  background: #f4f1f6;
}

.offer-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}

.offer-card:hover .offer-media img {
  transform: scale(1.045);
}


/* BADGE */

.offer-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;

  display: inline-flex;
  align-items: center;

  padding: 8px 13px;

  border-radius: 999px;

  background: rgba(255,255,255,.94);
  color: #4b2a87;

  font-family: var(--ff-body);
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;

  box-shadow: 0 7px 20px rgba(0,0,0,.12);
}

.offer-badge-gold {
  color: #765b16;
}

.offer-badge-green {
  color: #14764f;
}


/* IMAGE HOVER OVERLAY */

.offer-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;

  display: flex;
  align-items: flex-end;
  justify-content: flex-end;

  padding: 20px;

  background: linear-gradient(
    to top,
    rgba(25,18,38,.62),
    rgba(25,18,38,0) 45%
  );

  opacity: 0;
  transition: opacity .4s ease;
}

.offer-card:hover .offer-overlay {
  opacity: 1;
}

.offer-view {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 15px;

  border-radius: 999px;

  background: #fff;
  color: #4b2a87;

  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;

  transform: translateY(10px);
  transition: transform .4s ease;
}

.offer-card:hover .offer-view {
  transform: translateY(0);
}

.offer-view svg {
  transition: transform .3s ease;
}

.offer-view:hover svg {
  transform: translateX(3px);
}


/* CONTENT */

.offer-body {
  padding: 27px 27px 29px;
}

.offer-label {
  display: block;
  margin-bottom: 8px;

  color: #4b2a87;

  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.offer-body h3 {
  margin: 0 0 12px;

  font-family: var(--ff-display, "Cormorant Garamond", serif);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.15;
  color: #201c29;
}

.offer-body p {
  margin: 0 0 20px;

  color: var(--text-muted, #777286);
  font-size: .91rem;
  line-height: 1.75;
}

.offer-body .pkg-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.offer-body .pkg-link svg {
  transition: transform .3s ease;
}

.offer-body .pkg-link:hover svg {
  transform: translateX(4px);
}








@media (max-width: 575.98px) {
  .floaties { right: 10px; bottom: 10px; gap: 8px; }
  .floaty { width: 42px; height: 42px; }
}

/* ---------- Animation helpers ---------- */
.reveal { opacity: 0; }
.no-anim .reveal { opacity: 1; }

/* ---------- Responsive tune ---------- */
@media (max-width: 991.98px) {
  :root { --header-h: 74px; }
  .brand-logo img { height: 74px; }
  .hero { height: auto; min-height: 0; }
  .hero .carousel-item { height: min(88vh, 700px); min-height: 520px; }
  .hero-copy { padding-top: calc(var(--header-h) + 10px); }


 .special-offers-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 38px;
  }

  .special-offers-intro {
    max-width: 600px;
    text-align: left;
  }



}
@media (max-width: 575.98px) {
  body { font-size: 15.5px; }
  .hero .carousel-item { height: 86vh; min-height: 480px; }
  .hero-actions .btn { flex: 1 1 100%; text-align: center; }
  .card-soft { padding: 1.5rem 1.3rem; }
  .page-banner { padding: calc(var(--header-h) + 52px) 0 52px; }


  .special-offers {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .special-offers-head {
    margin-bottom: 30px;
  }

  .offer-media {
    aspect-ratio: 4 / 4.8;
  }

  .offer-body {
    padding: 23px 22px 25px;
  }

  .offer-body h3 {
    font-size: 1.42rem;
  }

  .offer-body p {
    font-size: .88rem;
  }

  /* Always show CTA slightly on mobile */
  .offer-overlay {
    opacity: 1;
    background: linear-gradient(
      to top,
      rgba(25,18,38,.45),
      transparent 35%
    );
  }

  .offer-view {
    transform: translateY(0);
    font-size: .72rem;
  }

 .offcanvas {
        width: 88vw !important;
    }

    

}



/* Bootstrap g-5 rows use a 3rem gutter while .container keeps a 1.5rem
   padding — that mismatch pushes 12px past the viewport. Keep the generous
   vertical rhythm, normalise the horizontal gutter. No horizontal scroll. */
.row.g-5 { --bs-gutter-x: 1.5rem; }
html { overflow-x: hidden; }
