/* ============================================================
   Park Management System — Public Site CSS
   Playful-but-trustworthy park / leisure / nature theme.
   Canopy green + sunset orange on a warm paper background.
   --primary / --accent / --dark are overridden inline by _Layout
   (from SiteSettings). The brand neutrals below are stable.
   Signature motifs: organic leaf/blob shapes, dotted "trail"
   dividers, notched ticket-stub corners on package cards.
   ============================================================ */

:root {
    --bg: #FBFAF4;          /* warm paper page bg */
    --surface: #FFFFFF;     /* cards / panels */
    --ink: #15211C;         /* primary text — deep forest ink */
    --muted: #6E7B73;       /* secondary text — sage grey */
    --hairline: #E7EDE6;    /* hairline rules — pale leaf grey */
    --rule: #E7EDE6;        /* alias used across components */

    /* support palette tokens */
    --sky: #3FA7D6;
    --sunshine: #FFD23F;

    /* Injected inline by _Layout from SiteSettings (fallbacks here): */
    --primary: #1E8E5A;     /* canopy green */
    --primary-dark: #166E45;
    --accent: #FF8A3D;      /* sunset orange */
    --accent-dark: #E8702A;
    --dark: #0E2A22;        /* deep forest (dark sections) */

    --head: 'Baloo 2', 'Hind Siliguri', system-ui, sans-serif;
    --sans: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --bengali: 'Hind Siliguri', 'Noto Sans Bengali', var(--sans);

    --radius: 18px;         /* friendly rounded corners */
    --radius-sm: 12px;
    --shadow-sm: 0 4px 14px rgba(14, 42, 34, .06);
    --shadow-md: 0 14px 38px rgba(14, 42, 34, .10);
    --shadow-lg: 0 26px 60px rgba(14, 42, 34, .16);
}

/* ===== Base ===== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.7;
    font-size: 16px;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip; /* clip ≠ hidden: keeps sticky header working, no scroll container */
}
:lang(bn), :lang(bn) body { font-family: var(--bengali); }

a { color: var(--ink); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--primary); }

h1, h2, h3, h4, h5, .display-head { font-family: var(--head); color: var(--ink); font-weight: 700; line-height: 1.12; letter-spacing: -.2px; }
:lang(bn) h1, :lang(bn) h2, :lang(bn) h3, :lang(bn) h4, :lang(bn) h5, :lang(bn) .display-head { font-family: var(--bengali); font-weight: 600; letter-spacing: 0; }

.display-head { font-size: clamp(1.9rem, 3.6vw, 3rem); margin: .25rem 0 0; }
.lead-text { font-size: 1.25rem; color: var(--ink); line-height: 1.55; margin: 1rem 0; font-weight: 500; }
:lang(bn) .lead-text { font-size: 1.15rem; }
.body-text { color: var(--muted); font-size: 1.02rem; }

/* ===== §12.1 mobile safety-net ===== */
img, svg, video, iframe { max-width: 100%; }
img { height: auto; }
table { max-width: 100%; }
pre, code { white-space: pre-wrap; word-break: break-word; }
.container, .container-fluid { overflow-wrap: break-word; }
h1, h2, h3, h4, p, a, span, li { overflow-wrap: break-word; }
.page-hero h1 { font-size: clamp(1.7rem, 4vw, 2.8rem); }

/* ===== Shared bits ===== */
.eyebrow {
    display: inline-block; font-family: var(--sans);
    text-transform: uppercase; letter-spacing: 2.5px;
    font-size: .74rem; font-weight: 700; color: var(--primary);
}
:lang(bn) .eyebrow { letter-spacing: .8px; }

/* Pill badge — a brand signature */
.pill {
    display: inline-flex; align-items: center; gap: .4rem;
    padding: .32rem .85rem; border-radius: 999px;
    font-size: .76rem; font-weight: 700; letter-spacing: .3px;
    background: rgba(30, 142, 90, .12); color: var(--primary-dark);
}
.pill-accent { background: rgba(255, 138, 61, .15); color: var(--accent-dark); }
.pill-sky { background: rgba(63, 167, 214, .15); color: #2073a0; }
.pill-soft { background: var(--surface); color: var(--ink); border: 1px solid var(--hairline); }

/* Leaf rule — short organic underline under section heads */
.leaf-rule { display: block; width: 64px; height: 4px; border-radius: 999px; background: linear-gradient(90deg, var(--primary), var(--accent)); margin: 1rem auto 0; }
.section-head-split .leaf-rule { margin-left: 0; }

.link-arrow {
    display: inline-flex; align-items: center; gap: .5rem;
    font-weight: 700; font-size: .95rem; color: var(--primary);
}
.link-arrow i { transition: transform .25s ease; }
.link-arrow:hover { color: var(--accent); }
.link-arrow:hover i { transform: translateX(4px); }

.section { padding: 92px 0; position: relative; }
.section-tint { background: var(--surface); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.section-head-split { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; text-align: left; max-width: none; }

/* ===== Dotted "trail" divider (signature) ===== */
.trail-divider {
    height: 28px; width: 100%;
    background-image: radial-gradient(circle, var(--hairline) 2px, transparent 2.5px);
    background-size: 22px 22px; background-position: center;
    background-repeat: repeat-x; opacity: .9;
}
.trail-divider--brand {
    background-image: radial-gradient(circle, rgba(30,142,90,.35) 2px, transparent 2.5px);
}

/* Organic blob — decorative shape behind sections */
.blob { position: absolute; z-index: 0; pointer-events: none; border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%; filter: blur(2px); opacity: .5; }

/* ===== Buttons ===== */
.btn { border-radius: 999px; font-family: var(--sans); font-weight: 700; letter-spacing: .2px; padding: .68rem 1.5rem; transition: all .2s ease; }
.btn-cta {
    background: var(--accent); color: #fff; border: 1px solid var(--accent);
    box-shadow: 0 8px 18px rgba(255, 138, 61, .28);
}
.btn-cta:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #fff; transform: translateY(-2px); }
.btn-lg { padding: .9rem 2.1rem; font-size: 1.02rem; }
.btn-primary { background: var(--primary); border-color: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; }
.btn-outline-primary { border: 1.5px solid var(--primary); color: var(--primary); background: transparent; }
.btn-outline-primary:hover { background: var(--primary); color: #fff; }
.btn-outline-dark { border: 1.5px solid var(--ink); color: var(--ink); background: transparent; }
.btn-outline-dark:hover { background: var(--ink); color: #fff; }
.btn-outline-light { border: 1.5px solid rgba(255,255,255,.65); color: #fff; background: transparent; }
.btn-outline-light:hover { background: #fff; color: var(--ink); }

.form-control, .form-select { border-radius: var(--radius-sm); border-color: var(--hairline); padding: .65rem .9rem; }
.form-control:focus, .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 .2rem rgba(30, 142, 90, .16); }

/* ===== Notice bar ===== */
.notice-bar { font-size: .88rem; text-align: center; padding: .55rem 1rem; line-height: 1.4; }
.notice-bar a { color: inherit; text-decoration: underline; font-weight: 600; }

/* ===== Top utility bar ===== */
.utility-bar { background: var(--dark); color: rgba(255,255,255,.82); font-size: .82rem; }
.utility-bar .container { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem 1.4rem; padding-top: .45rem; padding-bottom: .45rem; }
.utility-bar a { color: rgba(255,255,255,.82); }
.utility-bar a:hover { color: var(--accent); }
.utility-bar .ub-item { display: inline-flex; align-items: center; gap: .4rem; }
.utility-bar .ub-item i { color: var(--accent); }
.utility-bar .ub-right { margin-left: auto; display: inline-flex; align-items: center; gap: .9rem; }
.open-badge { display: inline-flex; align-items: center; gap: .35rem; padding: .15rem .6rem; border-radius: 999px; font-weight: 700; font-size: .74rem; }
.open-badge.is-open { background: rgba(63, 167, 214, .2); color: #bfe6f7; }
.open-badge.is-open .dot { width: 7px; height: 7px; border-radius: 50%; background: #6ddf8e; box-shadow: 0 0 0 3px rgba(109,223,142,.25); }
.open-badge.is-closed { background: rgba(255, 138, 61, .2); color: #ffd0ad; }
.open-badge.is-closed .dot { width: 7px; height: 7px; border-radius: 50%; background: #ff8a3d; }
.ub-link { display: inline-flex; align-items: center; gap: .3rem; }

/* ===== Header ===== */
.site-header {
    position: sticky; top: 0; z-index: 1020;
    background: rgba(251, 250, 244, .92); backdrop-filter: saturate(150%) blur(9px);
    border-bottom: 1px solid var(--hairline);
    transition: box-shadow .25s ease, background .25s ease, padding .25s ease;
}
.site-header.scrolled { box-shadow: 0 8px 26px rgba(14, 42, 34, .08); background: rgba(251, 250, 244, .98); }
.site-header .navbar { padding: .8rem 0; transition: padding .25s ease; }
.site-header.scrolled .navbar { padding: .5rem 0; }
.navbar-brand { display: flex; align-items: center; gap: .6rem; min-width: 0; max-width: 100%; }
.brand-logo { height: 44px; width: auto; }
.brand-mark { width: 42px; height: 42px; border-radius: 14px; background: linear-gradient(135deg, var(--primary), var(--accent)); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 1.3rem; box-shadow: 0 6px 16px rgba(30,142,90,.3); flex: 0 0 auto; }
.brand-name { font-family: var(--head); font-size: 1.5rem; font-weight: 800; color: var(--ink); letter-spacing: -.3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
:lang(bn) .brand-name { font-family: var(--bengali); font-weight: 700; }
.site-header .nav-link {
    color: var(--ink); font-weight: 600; font-size: .95rem;
    padding: .5rem .85rem; border-radius: 999px; position: relative;
}
.site-header .nav-link:hover, .site-header .nav-link.active { color: var(--primary); background: rgba(30,142,90,.08); }
.lang-toggle { color: var(--muted); font-size: .86rem; font-weight: 700; }
.lang-toggle:hover { color: var(--primary); }
.header-icon-link { color: var(--ink); position: relative; display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--hairline); transition: color .2s, border-color .2s; }
.header-icon-link:hover { color: var(--primary); border-color: var(--primary); }
.header-icon-link .count-badge { position: absolute; top: -3px; right: -3px; min-width: 18px; height: 18px; padding: 0 4px; border-radius: 999px; background: var(--accent); color: #fff; font-size: .66rem; font-weight: 700; line-height: 18px; text-align: center; }
.header-icon-link .count-badge.is-empty { display: none; }

/* ===== Hero ===== */
.hero { position: relative; min-height: 88vh; background: var(--dark); color: #fff; overflow: hidden; display: flex; align-items: center; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.1s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide .hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,42,34,.35) 0%, rgba(14,42,34,.32) 40%, rgba(14,42,34,.82) 100%); z-index: 1; }
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 780px; padding: 7rem 0 5rem; }
.hero-eyebrow { display: inline-block; color: #fff; background: rgba(255,138,61,.22); border: 1px solid rgba(255,138,61,.5); padding: .35rem .9rem; border-radius: 999px; text-transform: uppercase; letter-spacing: 2px; font-size: .76rem; font-weight: 700; margin-bottom: 1.2rem; }
:lang(bn) .hero-eyebrow { letter-spacing: .8px; }
.hero-content h1 { color: #fff; font-size: clamp(2.4rem, 6vw, 4.6rem); font-weight: 800; line-height: 1.06; margin-bottom: 1.2rem; }
.hero-sub { color: rgba(255,255,255,.88); font-size: clamp(1.05rem, 2vw, 1.4rem); font-weight: 400; max-width: 580px; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }

/* ===== Generic page hero (interior pages) ===== */
.page-hero { background: var(--dark); color: #fff; padding: 96px 0 60px; position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 24px; background-image: radial-gradient(circle, rgba(255,255,255,.18) 2px, transparent 2.5px); background-size: 22px 22px; background-repeat: repeat-x; }
.page-hero h1 { color: #fff; margin: .4rem 0 .6rem; }
.page-hero .eyebrow { color: var(--accent); }
.page-hero p { color: rgba(255,255,255,.8); max-width: 640px; }

/* ===== Cards: shared ===== */
.card { border: 1px solid var(--hairline); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-sm); }
.card-figure { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #e6ece4; }
.card-figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.card-figure .ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: #b6c2b4; font-size: 2.5rem; }

/* ---- Attraction card ---- */
.attr-card { display: block; color: var(--ink); background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .35s cubic-bezier(.22,.8,.3,1), box-shadow .35s ease; }
.attr-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); color: var(--ink); }
.attr-fig { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #e6ece4; }
.attr-fig img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.attr-card:hover .attr-fig img { transform: scale(1.06); }
.attr-fig .ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: #b6c2b4; font-size: 2.6rem; }
.attr-badge { position: absolute; top: .8rem; left: .8rem; z-index: 2; }
.attr-body { padding: 1.15rem 1.25rem 1.35rem; }
.attr-meta { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: .5rem; }
.attr-title { font-size: 1.3rem; margin: 0 0 .35rem; transition: color .2s ease; }
.attr-card:hover .attr-title { color: var(--primary); }
.attr-desc { color: var(--muted); font-size: .94rem; margin: 0 0 .8rem; }
.attr-facts { display: flex; flex-wrap: wrap; gap: 1rem; color: var(--muted); font-size: .86rem; }
.attr-facts i { color: var(--primary); margin-right: .35rem; }

/* ---- Zone card ---- */
.zone-card { display: block; color: var(--ink); background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .35s cubic-bezier(.22,.8,.3,1), box-shadow .35s ease; }
.zone-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); color: var(--ink); }
.zone-fig { position: relative; aspect-ratio: 3/2; overflow: hidden; background: #e6ece4; }
.zone-fig img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.zone-card:hover .zone-fig img { transform: scale(1.06); }
.zone-fig .ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: #b6c2b4; font-size: 2.6rem; }
.zone-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(14,42,34,.78) 100%); }
.zone-cap { position: absolute; left: 1rem; right: 1rem; bottom: .9rem; color: #fff; z-index: 2; }
.zone-cap h4 { color: #fff; margin: 0 0 .2rem; font-size: 1.35rem; }
.zone-cap span { font-size: .85rem; color: rgba(255,255,255,.85); }

/* ---- Package card: NOTCHED ticket-stub corners (signature) ---- */
.pkg-card {
    position: relative; display: flex; flex-direction: column;
    background: var(--surface); border: 1px solid var(--hairline);
    border-radius: var(--radius); padding: 1.6rem 1.5rem 1.7rem;
    box-shadow: var(--shadow-sm);
    transition: transform .35s cubic-bezier(.22,.8,.3,1), box-shadow .35s ease;
}
/* §9.21 — equal-height only inside a grid column, never on the lone base card */
.row > [class*="col"] > .pkg-card { height: 100%; }
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
/* The two notches that make it read as a torn ticket stub */
.pkg-card::before, .pkg-card::after {
    content: ""; position: absolute; top: 50%; transform: translateY(-50%);
    width: 26px; height: 26px; background: var(--bg); border: 1px solid var(--hairline);
    border-radius: 50%;
}
.pkg-card::before { left: -14px; }
.pkg-card::after { right: -14px; }
.pkg-featured { border: 2px solid var(--accent); box-shadow: var(--shadow-md); }
.pkg-ribbon { position: absolute; top: 1rem; right: -1px; background: var(--accent); color: #fff; font-size: .7rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; padding: .3rem .8rem; border-radius: 999px 0 0 999px; }
.pkg-name { font-size: 1.45rem; margin: 0 0 .25rem; }
.pkg-tagline { color: var(--muted); font-size: .9rem; margin: 0 0 1rem; }
.pkg-price { display: flex; align-items: baseline; gap: .35rem; margin: 0 0 .2rem; }
.pkg-amount { font-family: var(--head); font-size: 2.4rem; font-weight: 800; color: var(--primary); line-height: 1; }
.pkg-per { color: var(--muted); font-size: .85rem; }
.pkg-stub { border-top: 2px dashed var(--hairline); margin: 1.1rem -1.5rem; }
.pkg-feature-list { list-style: none; padding: 0; margin: 0 0 1.4rem; flex: 1 1 auto; }
.pkg-feature-list li { display: flex; gap: .6rem; align-items: flex-start; padding: .35rem 0; color: var(--ink); font-size: .94rem; }
.pkg-feature-list li i { color: var(--primary); margin-top: .15rem; flex: 0 0 auto; }
.pkg-feature-list li.is-off { color: var(--muted); }
.pkg-feature-list li.is-off i { color: #c7cfc6; }

/* ---- Event card ---- */
.event-card { display: flex; gap: 1rem; background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .35s ease, box-shadow .35s ease; }
.row > [class*="col"] > .event-card { height: 100%; }
.event-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.event-date { flex: 0 0 auto; width: 84px; background: linear-gradient(160deg, var(--primary), var(--primary-dark)); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: .8rem .4rem; }
.event-date .d { font-family: var(--head); font-size: 1.9rem; font-weight: 800; line-height: 1; }
.event-date .m { font-size: .78rem; text-transform: uppercase; letter-spacing: 1px; margin-top: .2rem; }
.event-body { padding: 1rem 1.1rem 1.1rem; min-width: 0; }
.event-body h4 { font-size: 1.2rem; margin: 0 0 .3rem; }
.event-body .meta { color: var(--muted); font-size: .85rem; display: flex; flex-wrap: wrap; gap: .9rem; }
.event-body .meta i { color: var(--accent); margin-right: .3rem; }

/* ===== Facility / feature tiles ===== */
.facility-tile { text-align: center; padding: 1.6rem 1.2rem; background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease; }
.row > [class*="col"] > .facility-tile { height: 100%; }
.facility-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.facility-ic { width: 64px; height: 64px; margin: 0 auto .9rem; border-radius: 20px; display: inline-flex; align-items: center; justify-content: center; font-size: 1.7rem; color: var(--primary); background: rgba(30,142,90,.1); transition: background .25s ease, color .25s ease; }
.facility-tile:hover .facility-ic { background: var(--primary); color: #fff; }
.facility-tile h4 { font-size: 1.12rem; margin: 0 0 .35rem; }
.facility-tile p { color: var(--muted); font-size: .9rem; margin: 0; }

/* ===== Stats band ===== */
.stats-band { background: var(--primary); color: #fff; padding: 70px 0; position: relative; overflow: hidden; }
.stats-band::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,.08) 2px, transparent 2.5px); background-size: 26px 26px; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; position: relative; }
.stat-item { padding: .5rem; }
.stat-num { font-family: var(--head); font-size: 3.1rem; font-weight: 800; line-height: 1; color: #fff; }
.stat-suffix { color: var(--sunshine); }
.stat-label { color: rgba(255,255,255,.85); font-size: .9rem; margin-top: .6rem; }

/* ===== Testimonials / reviews ===== */
.testi-card { background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--radius); padding: 1.8rem; margin: 0; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); }
.row > [class*="col"] > .testi-card { height: 100%; }
.testi-stars { color: var(--sunshine); font-size: .9rem; margin-bottom: .9rem; }
.testi-msg { font-size: 1.08rem; line-height: 1.6; color: var(--ink); margin: 0 0 1.3rem; flex: 1 1 auto; }
.testi-author { display: flex; align-items: center; gap: .85rem; margin: 0; }
.testi-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testi-avatar-ph { width: 48px; height: 48px; border-radius: 50%; background: rgba(30,142,90,.12); color: var(--primary); display: inline-flex; align-items: center; justify-content: center; font-weight: 700; }
.testi-name { display: block; font-weight: 700; color: var(--ink); }
.testi-role { display: block; color: var(--muted); font-size: .85rem; }

/* ===== Blog / journal ===== */
.blog-card { display: block; color: var(--ink); background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .35s ease, box-shadow .35s ease; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); color: var(--ink); }
.blog-fig { aspect-ratio: 3/2; overflow: hidden; background: #e6ece4; }
.blog-fig img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.blog-card:hover .blog-fig img { transform: scale(1.05); }
.blog-body { padding: 1.1rem 1.25rem 1.3rem; }
.blog-cat { display: inline-block; font-size: .72rem; text-transform: uppercase; letter-spacing: 1.2px; color: var(--accent); font-weight: 700; margin-bottom: .4rem; }
.blog-title { font-size: 1.25rem; margin: 0 0 .4rem; transition: color .2s ease; }
.blog-card:hover .blog-title { color: var(--primary); }
.blog-date { color: var(--muted); font-size: .84rem; }

/* ===== Gallery ===== */
.gallery-item { display: block; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 1/1; background: #e6ece4; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.gallery-item:hover img { transform: scale(1.07); }

/* ===== Partners strip ===== */
.partners-strip { background: var(--surface); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); padding: 38px 0; }
.partners-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 2.2rem 3.2rem; }
.partner-logo { opacity: .6; filter: grayscale(100%); transition: opacity .25s ease, filter .25s ease; }
.partner-logo:hover { opacity: 1; filter: grayscale(0); }
.partner-logo img { max-height: 48px; max-width: 140px; width: auto; }

/* ===== FAQ ===== */
.faq-item { background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--radius-sm); margin-bottom: .8rem; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: transparent; border: 0; padding: 1.1rem 1.25rem; font-weight: 700; color: var(--ink); display: flex; justify-content: space-between; gap: 1rem; align-items: center; cursor: pointer; font-family: var(--head); }
:lang(bn) .faq-q { font-family: var(--bengali); }
.faq-q i { color: var(--primary); transition: transform .25s ease; flex: 0 0 auto; }
.faq-q[aria-expanded="true"] i { transform: rotate(180deg); }
.faq-a { padding: 0 1.25rem 1.1rem; color: var(--muted); }

/* ===== CTA ===== */
.section-cta { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; position: relative; overflow: hidden; }
.section-cta::before { content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%; background: rgba(255,255,255,.07); }
.cta-inner { text-align: center; max-width: 740px; margin: 0 auto; position: relative; }
.cta-inner .display-head { color: #fff; margin: .5rem 0 1rem; }
.cta-inner .eyebrow { color: var(--sunshine); }
.cta-inner .body-text { color: rgba(255,255,255,.85); }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* ===== Footer ===== */
.site-footer { background: var(--dark); color: rgba(255,255,255,.68); padding: 0 0 28px; position: relative; }
.footer-trail { height: 18px; background-image: radial-gradient(circle, var(--accent) 2.5px, transparent 3px); background-size: 24px 18px; background-repeat: repeat-x; background-position: center; }
.site-footer .container { padding-top: 68px; }
.site-footer h5 { color: #fff; font-family: var(--head); font-size: 1.05rem; font-weight: 700; margin-bottom: 1.2rem; }
:lang(bn) .site-footer h5 { font-family: var(--bengali); }
.footer-brand { margin-bottom: 1rem; display: flex; align-items: center; gap: .6rem; }
.footer-logo { max-height: 46px; width: auto; }
.footer-brand-name { font-family: var(--head); font-size: 1.6rem; color: #fff; font-weight: 800; }
:lang(bn) .footer-brand-name { font-family: var(--bengali); }
.footer-about { font-size: .92rem; line-height: 1.7; color: rgba(255,255,255,.62); }
.footer-social { display: flex; gap: .8rem; margin-top: 1.1rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 12px; border: 1px solid rgba(255,255,255,.18); display: inline-flex; align-items: center; justify-content: center; color: rgba(255,255,255,.78); font-size: 1rem; transition: all .2s ease; }
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-3px); }
.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .55rem; }
.footer-links a { color: rgba(255,255,255,.68); font-size: .94rem; }
.footer-links a:hover { color: var(--accent); }
.footer-contact li { display: flex; gap: .7rem; margin-bottom: .8rem; font-size: .92rem; color: rgba(255,255,255,.68); min-width: 0; }
.footer-contact li i { color: var(--accent); margin-top: .15rem; flex: 0 0 auto; }
.footer-contact a { color: rgba(255,255,255,.68); }
.footer-contact a:hover { color: var(--accent); }
.footer-contact li > a, .footer-contact li > span { min-width: 0; overflow-wrap: anywhere; }
.newsletter-form { display: flex; gap: .5rem; margin-top: 1rem; }
.newsletter-form .form-control { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16); color: #fff; }
.newsletter-form .form-control::placeholder { color: rgba(255,255,255,.42); }
.newsletter-form .form-control:focus { background: rgba(255,255,255,.1); border-color: var(--accent); box-shadow: none; }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 52px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: .85rem; }
.footer-bottom a { color: var(--accent); font-weight: 700; }
.footer-bottom a:hover { color: #fff; }
.developed-by a { display: inline-block; }
.admin-link a { color: rgba(255,255,255,.5); font-weight: 600; }
.admin-link a:hover { color: var(--accent); }

/* ===== Floating actions ===== */
.float-actions { position: fixed; right: 20px; bottom: 20px; z-index: 1030; display: flex; flex-direction: column; gap: 12px; }
.float-actions a { width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.4rem; box-shadow: 0 10px 24px rgba(0,0,0,.22); transition: transform .2s ease; }
.float-actions a:hover { transform: translateY(-3px); color: #fff; }
.float-actions .fa-whatsapp { background: #25D366; }
.float-actions .fa-call { background: var(--primary); }

/* ===== Back to top ===== */
.back-to-top { position: fixed; right: 20px; bottom: 90px; z-index: 1029; width: 48px; height: 48px; border: 1px solid var(--hairline); background: var(--surface); color: var(--ink); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.15rem; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .25s ease; cursor: pointer; box-shadow: var(--shadow-sm); }
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ===== Breadcrumbs ===== */
.breadcrumbs { background: var(--surface); border-bottom: 1px solid var(--hairline); }
.breadcrumbs .breadcrumb { padding: .7rem 0; font-size: .88rem; margin: 0; }
.breadcrumbs .breadcrumb-item a { color: var(--muted); }
.breadcrumbs .breadcrumb-item a:hover { color: var(--primary); }
.breadcrumbs .breadcrumb-item.active { color: var(--ink); font-weight: 600; }
.breadcrumbs .breadcrumb-item + .breadcrumb-item::before { color: var(--primary); content: "›"; }

/* ===== Error / standalone ===== */
.error-page { min-height: 70vh; display: flex; align-items: center; }
.error-code { font-family: var(--head); font-size: clamp(4.5rem, 13vw, 9rem); font-weight: 800; line-height: 1; background: linear-gradient(135deg, var(--primary), var(--accent)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: .5rem; }
.error-page .leaf-rule { margin-left: auto; margin-right: auto; }

/* ============================================================
   COMPARE (cards + /compare page)
   ============================================================ */
.pc-compare {
    position: absolute; top: .8rem; left: 3.2rem; z-index: 3;
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; padding: 0;
    border: 1px solid rgba(255,255,255,.7); border-radius: 50%;
    background: rgba(14,42,34,.42); color: #fff; font-size: 1rem; line-height: 1; cursor: pointer;
    backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
}
.pc-compare:hover { background: rgba(14,42,34,.72); color: #fff; transform: translateY(-1px); }
.pc-compare:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.pc-compare.is-compare { background: #fff; border-color: #fff; color: var(--primary); }
.pc-compare.cmp-full { animation: cmpShake .4s ease; }
@keyframes cmpShake { 0%,100% { transform: translateX(0); } 25% { transform: translateX(-3px); } 75% { transform: translateX(3px); } }

/* Favorite heart on cards */
.pc-fav {
    position: absolute; top: .8rem; left: .8rem; z-index: 3;
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; padding: 0;
    border: 1px solid rgba(255,255,255,.7); border-radius: 50%;
    background: rgba(14,42,34,.42); color: #fff; font-size: 1rem; line-height: 1; cursor: pointer;
    backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
    transition: background .2s ease, color .2s ease, transform .15s ease;
}
.pc-fav:hover { background: rgba(14,42,34,.72); color: #fff; transform: translateY(-1px); }
.pc-fav.is-fav { background: #fff; border-color: #fff; color: var(--accent); }

.cmp-head { padding: 60px 0 0; background: var(--bg); }
.cmp-section { background: var(--bg); }
.cmp-loading { text-align: center; padding: 4rem 1rem; color: var(--muted); }
.cmp-loading .spinner-border { color: var(--primary); }
.cmp-empty { text-align: center; padding: 4rem 1rem; }
.cmp-empty i { font-size: 2.6rem; color: var(--primary); }
.cmp-table-wrap { overflow-x: auto; border: 1px solid var(--hairline); border-radius: var(--radius-sm); background: var(--surface); }
.cmp-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.cmp-table th, .cmp-table td { padding: .85rem 1rem; text-align: left; vertical-align: middle; border-bottom: 1px solid var(--hairline); }
.cmp-table tbody tr:nth-child(odd) td, .cmp-table tbody tr:nth-child(odd) .cmp-rowhead { background: var(--bg); }
.cmp-rowhead { font-size: .78rem; font-weight: 700; letter-spacing: .3px; text-transform: uppercase; color: var(--muted); width: 150px; white-space: nowrap; }
:lang(bn) .cmp-rowhead { text-transform: none; letter-spacing: 0; }
.cmp-table thead th { vertical-align: top; position: relative; border-bottom: 2px solid var(--primary); }
.cmp-remove { position: absolute; top: .4rem; right: .4rem; z-index: 2; width: 28px; height: 28px; border: 1px solid var(--hairline); border-radius: 50%; background: var(--surface); color: var(--muted); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; font-size: .8rem; }
.cmp-remove:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ============================================================
   PARK MAP HOTSPOTS
   ============================================================ */
.map-stage { position: relative; display: inline-block; max-width: 100%; border: 1px solid var(--hairline); border-radius: var(--radius-sm); background: var(--surface); overflow: hidden; }
.map-stage img { display: block; max-width: 100%; height: auto; }
.map-hotspot { position: absolute; transform: translate(-50%, -50%); width: 32px; height: 32px; border-radius: 50%; border: 2px solid #fff; background: var(--accent); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: .8rem; cursor: pointer; padding: 0; line-height: 1; box-shadow: 0 2px 8px rgba(14,42,34,.35); animation: hsPulse 2s infinite; }
.map-hotspot:hover, .map-hotspot:focus-visible { background: var(--accent-dark); outline: none; transform: translate(-50%,-50%) scale(1.12); }
.map-hotspot .hs-tip { position: absolute; bottom: 130%; left: 50%; transform: translateX(-50%); white-space: nowrap; background: var(--dark); color: #fff; font-size: .75rem; padding: .25rem .55rem; border-radius: 6px; pointer-events: none; opacity: 0; transition: opacity .15s ease; }
.map-hotspot:hover .hs-tip, .map-hotspot:focus-visible .hs-tip { opacity: 1; }
@keyframes hsPulse { 0% { box-shadow: 0 0 0 0 rgba(255,138,61,.5); } 70% { box-shadow: 0 0 0 10px rgba(255,138,61,0); } 100% { box-shadow: 0 0 0 0 rgba(255,138,61,0); } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    .section { padding: 68px 0; }
    .section-head { margin-bottom: 40px; }
    .stats-row { grid-template-columns: repeat(2, 1fr); gap: 2.4rem 1rem; }
    .hero { min-height: 76vh; }
    .hero-content { padding: 6rem 0 4rem; }
    .utility-bar { display: none; } /* utilities collapse into header on mobile */
    /* Gutter cap so no g-5/gx-5 row overflows the container on tablet/mobile */
    .row.g-5, .row.gx-5 { --bs-gutter-x: 1.5rem; }
    .brand-name { font-size: 1.25rem; max-width: calc(100vw - 150px); }
    .site-header .navbar-collapse .nav-link { padding: .6rem .4rem; }
}

/* Header collapses to hamburger below 1200px (navbar-expand-xl). */
@media (max-width: 1199.98px) {
    .site-header .navbar-collapse { background: var(--bg); border-top: 1px solid var(--hairline); margin-top: .8rem; padding: 1rem 0; border-radius: 0 0 var(--radius-sm) var(--radius-sm); }
    .header-search { margin: .5rem 0; width: 100%; }
    .header-search .form-control { max-width: 100%; }
}

@media (min-width: 1200px) {
    .header-search .form-control { max-width: 180px; }
}

@media (max-width: 767.98px) {
    .section { padding: 54px 0; }
    .section-head { margin-bottom: 34px; }
    .section-head-split { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .display-head { font-size: clamp(1.6rem, 7vw, 2.2rem); }
    .lead-text { font-size: 1.15rem; }
    .hero { min-height: 82vh; }
    .hero-content { padding: 5rem 0 3.5rem; }
    .event-card { flex-direction: column; }
    .event-date { width: 100%; flex-direction: row; gap: .5rem; padding: .6rem; }
}

@media (max-width: 575.98px) {
    .cmp-head { padding-top: 40px; }
    .pc-compare { left: 3rem; }
    .stats-row { grid-template-columns: 1fr 1fr; }
    .stat-num { font-size: 2.6rem; }
    .cta-actions .btn { width: 100%; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: .6rem; }
    .float-actions { right: 14px; bottom: 14px; }
    .float-actions a { width: 48px; height: 48px; font-size: 1.25rem; }
    .back-to-top { right: 14px; bottom: 76px; width: 44px; height: 44px; }
    .brand-name { font-size: 1.1rem; max-width: calc(100vw - 120px); }
}

@media (max-width: 480px) {
    .stats-row { grid-template-columns: 1fr; }
    .partners-row { gap: 1.4rem 2rem; }
    .partner-logo img { max-height: 38px; max-width: 110px; }
    .newsletter-form { flex-wrap: wrap; }
    .newsletter-form .form-control, .newsletter-form .btn { flex: 1 1 100%; }
    .cmp-table-wrap { max-width: 100%; }
}

@media (max-width: 375px) {
    .container, .container-fluid { padding-left: 12px; padding-right: 12px; }
}

/* ===== PRINT ===== */
@media print {
    .site-header, .site-footer, .float-actions, .back-to-top, .hero-overlay, .utility-bar, .notice-bar { display: none !important; }
    body { background: #fff; color: #000; }
    .section { padding: 16px 0; }
    a { color: #000; text-decoration: underline; }
    .hero { min-height: auto; }
}
