/* =====================================================
   UmrahService.pk — Global Styles
   Palette: Deep Green #0b3d2e  •  Gold #c99a3b
   ===================================================== */

:root {
    --green-900: #082e22;
    --green-800: #0b3d2e;
    --green-700: #14532d;
    --green-600: #1c6b45;
    --gold-500:  #c99a3b;
    --gold-400:  #d8b45f;
    --gold-300:  #e7cf93;
    --cream:     #faf7ef;
    --sand:      #f3ecdd;
    --ink:       #1e2621;
    --muted:     #5c665f;
    --white:     #ffffff;
    --line:      #e6ddc9;
    --shadow:    0 10px 30px rgba(11, 61, 46, .12);
    --shadow-lg: 0 20px 50px rgba(11, 61, 46, .18);
    --radius:    16px;
    --radius-sm: 10px;
    --ease:      cubic-bezier(.16, .84, .44, 1);
    --wrap:      1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', system-ui, sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Cormorant Garamond', Georgia, serif; line-height: 1.15; color: var(--green-800); font-weight: 700; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }
.accent { color: var(--gold-500); }
section { position: relative; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .85rem 1.6rem; border-radius: 50px;
    font-weight: 600; font-size: .95rem; letter-spacing: .2px;
    cursor: pointer; border: 2px solid transparent;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
}
.btn:hover { transform: translateY(-3px); }
.btn--gold { background: linear-gradient(135deg, var(--gold-500), var(--gold-400)); color: #3d2c07; box-shadow: 0 8px 22px rgba(201,154,59,.4); }
.btn--gold:hover { box-shadow: 0 12px 28px rgba(201,154,59,.55); }
.btn--green { background: var(--green-800); color: #fff; }
.btn--green:hover { background: var(--green-700); box-shadow: var(--shadow); }
.btn--outline { border-color: var(--green-800); color: var(--green-800); background: transparent; }
.btn--outline:hover { background: var(--green-800); color: #fff; }
.btn--outline-light { border-color: rgba(255,255,255,.7); color: #fff; background: transparent; }
.btn--outline-light:hover { background: #fff; color: var(--green-800); }

/* ---------- Topbar ---------- */
.topbar { background: var(--green-900); color: #d9e6df; font-size: .82rem; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-block: .5rem; flex-wrap: wrap; }
.topbar__contact { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.topbar__contact a:hover { color: var(--gold-400); }
.topbar__meta { display: flex; align-items: center; gap: 1rem; }
.badge-verified { color: var(--gold-300); font-weight: 500; }
.topbar__social { width: 24px; height: 24px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; font-family: Georgia, serif; font-weight: 700; transition: .25s; }
.topbar__social:hover { background: var(--gold-500); color: #082e22; border-color: var(--gold-500); }
.ic { display: inline-block; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); transition: box-shadow .3s; }
.site-header.scrolled { box-shadow: var(--shadow); }
.header__inner { display: flex; align-items: center; justify-content: space-between; padding-block: .6rem; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .7rem; }
.brand__logo { border-radius: 50%; }
.brand__text strong { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--green-800); display: block; line-height: 1; }
.brand__text strong small { font-size: .75rem; color: var(--gold-500); }
.brand__text em { font-style: normal; font-size: .68rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); }

.main-nav ul { display: flex; align-items: center; gap: .3rem; list-style: none; }
.main-nav a { padding: .55rem .9rem; border-radius: 8px; font-size: .92rem; font-weight: 500; color: var(--ink); transition: .2s; position: relative; }
.main-nav a:hover, .main-nav a.active { color: var(--green-700); }
.main-nav a.active::after { content: ""; position: absolute; left: .9rem; right: .9rem; bottom: .3rem; height: 2px; background: var(--gold-500); border-radius: 2px; }
.nav-cta a { background: var(--green-800); color: #fff !important; border-radius: 50px; padding: .6rem 1.3rem; }
.nav-cta a:hover { background: var(--gold-500); color: #082e22 !important; }
.nav-cta a::after { display: none; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--green-800); border-radius: 3px; transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; overflow: hidden; background: linear-gradient(120deg, var(--green-900) 0%, var(--green-700) 55%, var(--green-600) 100%); }
.hero::before { content: ""; position: absolute; inset: 0; z-index: 1; background:
    radial-gradient(circle at 82% 25%, rgba(201,154,59,.35), transparent 42%),
    radial-gradient(circle at 12% 85%, rgba(201,154,59,.18), transparent 45%); }
/* Background image slideshow */
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.4s var(--ease); }
.hero__bg-slide.is-active { opacity: 1; }
.hero__bg::after { content: ""; position: absolute; inset: 0; background: transparent; }
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: 2.5rem; align-items: center; padding-block: 5rem 5.5rem; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); padding: .4rem 1rem; border-radius: 50px; font-size: .8rem; letter-spacing: .5px; margin-bottom: 1.3rem; }
.hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); color: #fff; margin-bottom: 1rem; background: #0b3d2e; padding: .5rem .9rem; border-radius: 8px; }
.hero h1 .accent { color: var(--gold-400); }
.hero p.lead { font-size: 1.08rem; color: #e5efe9; max-width: 46ch; margin-bottom: 2rem; background: #0b3d2e; padding: .7rem 1rem; border-radius: 8px; }
.hero__btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.2rem; }
.hero__stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.hero__stats div { }
.hero__stats b { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; color: var(--gold-400); display: block; line-height: 1; }
.hero__stats span { font-size: .8rem; color: #cddbd3; letter-spacing: .3px; }
.hero__art { position: relative; display: grid; place-items: center; }
.hero__art .ring { width: min(360px, 80%); aspect-ratio: 1; border-radius: 50%; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.18); display: grid; place-items: center; animation: floaty 6s ease-in-out infinite; box-shadow: inset 0 0 60px rgba(201,154,59,.25); }
.hero__art .ring img { width: 68%; filter: drop-shadow(0 12px 30px rgba(0,0,0,.35)); }
@keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-14px);} }
.hero__wave { display: block; width: 100%; height: auto; margin-top: -1px; }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--sand); border-bottom: 1px solid var(--line); }
.trustbar__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding-block: 1.6rem; text-align: center; }
.trustbar__item { display: flex; flex-direction: column; align-items: center; gap: .3rem; }
.trustbar__item .emoji { font-size: 1.7rem; }
.trustbar__item b { color: var(--green-800); font-family: 'Poppins'; font-size: .95rem; }
.trustbar__item span { font-size: .8rem; color: var(--muted); }

/* ---------- Section head ---------- */
.section { padding-block: 4.5rem; }
.section--tinted { background: var(--sand); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.8rem; }
.section-head .kicker { display: inline-block; color: var(--gold-500); font-weight: 600; letter-spacing: 2px; text-transform: uppercase; font-size: .78rem; margin-bottom: .6rem; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
.section-head p { color: var(--muted); margin-top: .7rem; }

/* ---------- Feature cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.7rem; transition: transform .3s var(--ease), box-shadow .3s; }
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold-300); }
.feature__icon { width: 58px; height: 58px; border-radius: 14px; display: grid; place-items: center; font-size: 1.6rem; background: linear-gradient(135deg, var(--green-700), var(--green-600)); color: var(--gold-300); margin-bottom: 1.1rem; }
.feature h3 { font-size: 1.5rem; margin-bottom: .4rem; }
.feature p { color: var(--muted); font-size: .93rem; }

/* ---------- Package cards ---------- */
.pkg { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s; position: relative; }
.pkg:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pkg--featured { border: 2px solid var(--gold-500); box-shadow: var(--shadow); }
.pkg__head { background: linear-gradient(135deg, var(--green-800), var(--green-600)); color: #fff; padding: 1.7rem 1.6rem 1.4rem; position: relative; }
.pkg--featured .pkg__head { background: linear-gradient(135deg, #0b3d2e, #1c6b45 70%); }
.pkg__badge { position: absolute; top: 1.1rem; right: 1.1rem; background: var(--gold-500); color: #3d2c07; font-size: .7rem; font-weight: 700; padding: .3rem .8rem; border-radius: 50px; letter-spacing: .5px; text-transform: uppercase; }
.pkg__head h3 { color: #fff; font-size: 1.9rem; margin-bottom: .2rem; }
.pkg__head .city { color: var(--gold-300); font-size: .9rem; }
.pkg__nights { display: inline-block; margin-top: .9rem; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25); padding: .3rem .9rem; border-radius: 50px; font-size: .82rem; }
.pkg__body { padding: 1.6rem; display: flex; flex-direction: column; flex: 1; }
.pkg__list { list-style: none; display: flex; flex-direction: column; gap: .65rem; margin-bottom: 1.5rem; flex: 1; }
.pkg__list li { display: flex; gap: .6rem; align-items: flex-start; font-size: .92rem; color: var(--ink); }
.pkg__list li::before { content: "\2713"; color: var(--green-600); font-weight: 700; margin-top: 1px; }
.pkg__foot { display: flex; flex-direction: column; gap: .7rem; }
.pkg__price { font-size: .85rem; color: var(--muted); }
.pkg__price b { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--green-800); }

/* ---------- Payment options ---------- */
.pay-options__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; max-width: 760px; margin: 0 auto; }
.pay-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2.2rem 1.8rem; text-align: center; transition: transform .3s var(--ease), box-shadow .3s; }
.pay-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pay-card--featured { border: 2px solid var(--gold-500); box-shadow: var(--shadow); }
.pay-card__badge { display: inline-block; background: var(--green-700); color: #fff; font-size: .7rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; padding: .3rem .8rem; border-radius: 50px; margin-bottom: 1rem; }
.pay-card--featured .pay-card__badge { background: var(--gold-500); color: #3d2c07; }
.pay-card__amount { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 700; line-height: 1; color: var(--green-700); }
.pay-card--featured .pay-card__amount { color: var(--gold-500); }
.pay-card h3 { font-size: 1.4rem; margin: .5rem 0 .5rem; }
.pay-card p { color: var(--muted); font-size: .92rem; }
.pay-options__note { text-align: center; margin-top: 1.8rem; color: var(--muted); font-size: .92rem; }
.pay-options__note a { color: var(--green-700); font-weight: 600; }
@media (max-width: 560px) { .pay-options__grid { grid-template-columns: 1fr; } }

/* ---------- Split / about ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.split__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; min-height: 340px; background: linear-gradient(135deg, var(--green-800), var(--green-600)); display: grid; place-items: center; }
.split__media img { width: 62%; filter: drop-shadow(0 14px 30px rgba(0,0,0,.35)); }
.split h2 { font-size: clamp(1.9rem, 3.5vw, 2.7rem); margin-bottom: 1rem; }
.split p { color: var(--muted); margin-bottom: 1rem; }
.check-list { list-style: none; display: grid; gap: .7rem; margin: 1.3rem 0; }
.check-list li { display: flex; gap: .7rem; align-items: flex-start; }
.check-list li::before { content: "\2713"; width: 22px; height: 22px; flex: 0 0 22px; background: var(--green-700); color: #fff; border-radius: 50%; display: grid; place-items: center; font-size: .75rem; margin-top: 2px; }

/* ---------- Itinerary timeline ---------- */
.timeline { max-width: 760px; margin: 0 auto; position: relative; padding-left: 2rem; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--gold-500), var(--green-600)); }
.timeline__item { position: relative; padding: 0 0 1.6rem 1.4rem; }
.timeline__item::before { content: ""; position: absolute; left: -2rem; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--gold-500); border: 3px solid var(--cream); box-shadow: 0 0 0 2px var(--gold-500); }
.timeline__day { color: var(--gold-500); font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: 1px; }
.timeline__item h4 { font-size: 1.35rem; margin: .1rem 0 .3rem; }
.timeline__item p { color: var(--muted); font-size: .92rem; }

/* ---------- Documents ---------- */
.doc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.doc-card { display: flex; gap: 1rem; align-items: center; background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--gold-500); border-radius: var(--radius-sm); padding: 1.3rem 1.4rem; transition: .25s; }
.doc-card:hover { box-shadow: var(--shadow); transform: translateX(4px); }
.doc-card .num { flex: 0 0 44px; width: 44px; height: 44px; border-radius: 50%; background: var(--green-800); color: var(--gold-300); font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; display: grid; place-items: center; }
.doc-card p { font-weight: 500; }

/* ---------- Payment / bank cards ---------- */
.bank-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.bank-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; position: relative; overflow: hidden; transition: .3s; }
.bank-card::after { content: ""; position: absolute; top: -30px; right: -30px; width: 90px; height: 90px; background: radial-gradient(circle, rgba(201,154,59,.18), transparent 70%); }
.bank-card:hover { box-shadow: var(--shadow); border-color: var(--gold-300); }
.bank-card__bank { font-weight: 600; color: var(--green-700); margin-bottom: .9rem; display: flex; align-items: center; gap: .5rem; }
.bank-card__bank .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold-500); }
.bank-logo { flex: 0 0 auto; display: inline-grid; place-items: center; min-width: 44px; height: 30px; padding: 0 .5rem; border-radius: 7px; color: #fff; font-family: 'Poppins'; font-weight: 700; font-size: .78rem; letter-spacing: .5px; box-shadow: 0 3px 8px rgba(0,0,0,.15); }
.bank-logo--img { width: 150px; height: auto; max-height: 70px; padding: 6px 10px; background: #fff; border: 1px solid var(--line); object-fit: contain; box-shadow: 0 2px 6px rgba(0,0,0,.1); }
.bank-logo--ubl     { background: linear-gradient(135deg, #00539f, #0a75c2); }
.bank-logo--meezan  { background: linear-gradient(135deg, #005b3f, #0a8f5b); }
.bank-logo--alfalah { background: linear-gradient(135deg, #8f1a2e, #c22740); }
.bank-logo--other   { background: linear-gradient(135deg, var(--green-700), var(--green-600)); }
.bank-row { display: flex; justify-content: space-between; gap: 1rem; padding: .55rem 0; border-bottom: 1px dashed var(--line); font-size: .9rem; }
.bank-row:last-child { border-bottom: 0; }
.bank-row span { color: var(--muted); }
.bank-row b { font-family: 'Poppins'; letter-spacing: .3px; }

/* ---------- Business card showcase ---------- */
.biz-card { max-width: 620px; margin: 0 auto; text-align: center; }
.biz-card__frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); background: #fff; line-height: 0; }
.biz-card__frame img { width: 100%; height: auto; display: block; }
.biz-card__cap { margin-top: .9rem; font-size: .88rem; color: var(--muted); letter-spacing: .3px; }
.copy-btn { background: var(--sand); border: 1px solid var(--line); border-radius: 6px; font-size: .72rem; padding: .15rem .5rem; cursor: pointer; color: var(--green-700); transition: .2s; }
.copy-btn:hover { background: var(--green-800); color: #fff; }

/* ---------- Testimonials ---------- */
.testi { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; }
.testi .stars { color: var(--gold-500); letter-spacing: 2px; margin-bottom: .8rem; }
.testi p { color: var(--ink); font-style: italic; margin-bottom: 1.1rem; }
.testi__who { display: flex; align-items: center; gap: .8rem; }
.testi__who .av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--green-700), var(--gold-500)); color: #fff; display: grid; place-items: center; font-weight: 700; }
.testi__who b { display: block; color: var(--green-800); }
.testi__who span { font-size: .82rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: .8rem; overflow: hidden; }
.faq__q { width: 100%; text-align: left; background: none; border: 0; padding: 1.15rem 1.3rem; font-size: 1rem; font-weight: 600; color: var(--green-800); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-family: inherit; }
.faq__q .plus { flex: 0 0 auto; transition: transform .3s; color: var(--gold-500); font-size: 1.3rem; }
.faq__item.open .plus { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq__a p { padding: 0 1.3rem 1.2rem; color: var(--muted); }

/* ---------- Page banner (inner pages) ---------- */
.page-banner { background: linear-gradient(120deg, var(--green-900), var(--green-700)); color: #fff; text-align: center; padding-block: 3.5rem; position: relative; overflow: hidden; }
.page-banner::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(201,154,59,.3), transparent 45%); }
.page-banner h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.2rem); position: relative; }
.page-banner .crumbs { position: relative; margin-top: .6rem; color: #cddbd3; font-size: .9rem; }
.page-banner .crumbs a:hover { color: var(--gold-400); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 2.5rem; align-items: start; }
.contact-info { display: grid; gap: 1rem; }
.contact-info__card { display: flex; gap: 1rem; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.2rem 1.3rem; }
.contact-info__card .ico { flex: 0 0 46px; width: 46px; height: 46px; border-radius: 12px; background: linear-gradient(135deg, var(--green-700), var(--green-600)); color: var(--gold-300); display: grid; place-items: center; font-size: 1.3rem; }
.contact-info__card b { color: var(--green-800); display: block; margin-bottom: .1rem; }
.contact-info__card a, .contact-info__card p { color: var(--muted); font-size: .92rem; }
.contact-info__card a:hover { color: var(--green-700); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .85rem; font-weight: 500; margin-bottom: .4rem; color: var(--green-800); }
.field input, .field select, .field textarea { width: 100%; padding: .8rem 1rem; border: 1px solid var(--line); border-radius: 10px; font-family: inherit; font-size: .95rem; background: var(--cream); transition: .2s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold-500); background: #fff; box-shadow: 0 0 0 3px rgba(201,154,59,.15); }
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: .5rem; }
.form-alert { background: #e8f5ee; border: 1px solid #b6dcc5; color: var(--green-700); padding: .9rem 1.1rem; border-radius: 10px; margin-bottom: 1.2rem; font-size: .9rem; display: none; }
.form-alert.show { display: block; }

.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); margin-top: 2.5rem; }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---------- CTA strip ---------- */
.cta-strip { background: linear-gradient(120deg, var(--gold-500), var(--gold-400)); color: #3d2c07; }
.cta-strip__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-block: 2.4rem; flex-wrap: wrap; }
.cta-strip h3 { color: #2c2000; font-size: 1.8rem; }
.cta-strip p { color: #4a3810; }
.cta-strip__btns { display: flex; gap: .8rem; flex-wrap: wrap; }
.cta-strip .btn--gold { background: var(--green-800); color: #fff; box-shadow: 0 8px 22px rgba(11,61,46,.3); }
.cta-strip .btn--outline-light { border-color: var(--green-800); color: var(--green-800); }
.cta-strip .btn--outline-light:hover { background: var(--green-800); color: #fff; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-900); color: #c3d3cb; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: 2rem; padding-block: 3.5rem; }
.brand--footer .brand__text strong { color: #fff; }
.footer__col p { font-size: .9rem; margin-top: 1rem; color: #a9bcb2; }
.footer__col h4 { color: #fff; font-size: 1.3rem; margin-bottom: 1.1rem; }
.footer__links, .footer__contact { list-style: none; display: grid; gap: .6rem; }
.footer__links a:hover { color: var(--gold-400); }
.footer__links small { display: block; margin-top: .15rem; font-size: .78rem; color: #8fa398; line-height: 1.4; }
.footer__contact li { display: flex; gap: .6rem; font-size: .9rem; align-items: flex-start; }
.footer__contact a:hover { color: var(--gold-400); }
.footer__map-pin { display: inline-block; margin-top: .2rem; font-size: .8rem; color: var(--gold-400); white-space: nowrap; }
.footer__fb { display: inline-flex; margin-top: 1rem; color: var(--gold-400); transition: color .2s ease, transform .2s ease; }
.footer__fb:hover { color: #fff; transform: translateY(-2px); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer__bottom-inner { display: flex; justify-content: space-between; gap: 1rem; padding-block: 1.2rem; font-size: .82rem; flex-wrap: wrap; color: #90a599; }

/* ---------- Floating WhatsApp ---------- */
.whatsapp-float { position: fixed; right: 20px; bottom: 20px; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 8px 24px rgba(37,211,102,.5); z-index: 200; animation: pulse 2.2s infinite; }
.whatsapp-float:hover { transform: scale(1.08); }
@keyframes pulse { 0%{ box-shadow: 0 0 0 0 rgba(37,211,102,.5);} 70%{ box-shadow: 0 0 0 16px rgba(37,211,102,0);} 100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0);} }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
    .hero__inner { grid-template-columns: 1fr; text-align: center; padding-block: 3.5rem 4rem; }
    .hero__btns, .hero__stats { justify-content: center; }
    .hero p.lead { margin-inline: auto; }
    .hero__art { order: -1; }
    .split { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
    /* backdrop-filter on the header creates a containing block that traps the
       fixed menu — disable it on mobile so the menu covers the full viewport. */
    .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: #fff; }
    .nav-toggle { display: flex; position: relative; z-index: 120; }
    .main-nav { position: fixed; inset: 0 0 0 auto; width: min(300px, 82vw); height: 100vh; height: 100dvh; background: #fff; flex-direction: column; padding: 5rem 1.4rem 2rem; transform: translateX(100%); transition: transform .35s var(--ease); box-shadow: var(--shadow-lg); z-index: 110; overflow-y: auto; }
    .main-nav.open { transform: none; }
    .main-nav ul { flex-direction: column; align-items: stretch; gap: .2rem; }
    .main-nav a { padding: .85rem 1rem; border-radius: 10px; }
    .main-nav a.active::after { display: none; }
    .main-nav a.active { background: var(--sand); }
    .nav-cta a { text-align: center; margin-top: .6rem; }
    .nav-backdrop { position: fixed; inset: 0; background: rgba(8,46,34,.45); opacity: 0; visibility: hidden; transition: .3s; z-index: 80; }
    .nav-backdrop.show { opacity: 1; visibility: visible; }
    .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
    .trustbar__inner { grid-template-columns: 1fr 1fr; gap: 1.4rem; }
}
@media (max-width: 560px) {
    .grid-3, .grid-4, .grid-2, .doc-grid, .bank-grid, .form-row { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; }
    .topbar__contact { gap: .8rem; font-size: .75rem; }
    .topbar__meta .badge-verified { display: none; }
    .cta-strip__inner { flex-direction: column; text-align: center; }
    .section { padding-block: 3rem; }
}

/* =====================================================
   Holy Cities Slider
   ===================================================== */
.slider { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--green-900); }
.slider__track { display: flex; transition: transform .6s var(--ease); }
.slide { position: relative; min-width: 100%; }
.slide img { display: block; width: 100%; height: clamp(300px, 52vw, 560px); object-fit: cover; }
.slide__cap { position: absolute; inset: auto 0 0 0; padding: 3rem 2rem 1.7rem; color: #fff; background: linear-gradient(to top, rgba(8,46,34,.88), rgba(8,46,34,0)); }
.slide__cap h3 { color: #fff; font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: .25rem; }
.slide__cap p { margin: 0; color: var(--gold-300); font-family: 'Poppins', sans-serif; font-size: .95rem; letter-spacing: .5px; }
.slider__btn { position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border: none; border-radius: 50%; background: rgba(255,255,255,.85); color: var(--green-800); font-size: 1.05rem; cursor: pointer; display: grid; place-items: center; transition: .25s; z-index: 2; }
.slider__btn:hover { background: var(--gold-500); color: var(--green-900); }
.slider__btn--prev { left: 1rem; }
.slider__btn--next { right: 1rem; }
.slider__dots { position: absolute; inset: auto 0 1.1rem 0; display: flex; justify-content: center; gap: .5rem; z-index: 2; }
.slider__dots button { width: 10px; height: 10px; padding: 0; border: none; border-radius: 50%; background: rgba(255,255,255,.5); cursor: pointer; transition: .25s; }
.slider__dots button.active { background: var(--gold-500); width: 26px; border-radius: 6px; }
@media (max-width: 600px) {
    .slider__btn { width: 38px; height: 38px; }
    .slide__cap { padding: 2rem 1.2rem 1.6rem; }
}
