/* ============================================================================
   dhakaclean.com — design system
   ----------------------------------------------------------------------------
   Leaf green + forest ink + a warm orange CTA. Bootstrap 5 supplies the grid and
   components; everything below re-skins it so the site has its own identity
   rather than the default Bootstrap look.

   Structure:  1 tokens · 2 base · 3 header/nav · 4 hero · 5 cards & sections
               6 quote widget · 7 packages · 8 before/after · 9 areas
               10 stats & steps · 11 reviews · 12 blog · 13 footer & CTAs
               14 forms · 15 motion · 16 utilities
   ============================================================================ */

/* ---------- 1. TOKENS ---------- */
:root {
  /* brand */
  --brand:        #1a7f37;   /* leaf green */
  --brand-dark:   #14652c;
  --brand-deep:   #08301c;   /* forest ink */
  --brand-light:  #eef9f1;
  --brand-tint:   #cdeed7;
  --leaf:         #3fc46a;
  --accent:       #ff7a1a;   /* orange CTA */
  --accent-dark:  #e35f00;

  /* neutrals — greened, not blue-grey, so they belong to the brand.
     Contrast on white: body 8.02:1, muted 4.85:1 (4.59:1 on --surface-2). */
  --ink:          #08301c;
  --body:         #44544c;
  --muted:        #66756d;
  --line:         #e4ebe6;
  --surface:      #ffffff;
  --surface-2:    #f5faf6;

  /* system */
  --wa:           #25d366;
  --radius:       16px;
  --radius-sm:    12px;
  --radius-lg:    24px;
  --shadow-sm:    0 1px 2px rgba(8,48,28,.06), 0 2px 8px rgba(8,48,28,.05);
  --shadow:       0 4px 12px rgba(8,48,28,.08), 0 12px 32px rgba(8,48,28,.07);
  --shadow-lg:    0 12px 24px rgba(8,48,28,.10), 0 24px 64px rgba(8,48,28,.12);
  --ring:         0 0 0 4px rgba(26,127,55,.18);
  --font:         'Plus Jakarta Sans', 'Hind Siliguri', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-bn:      'Hind Siliguri', 'Plus Jakarta Sans', system-ui, sans-serif;
}
html[lang="bn"] body { font-family: var(--font-bn); }

/* ---------- 2. BASE ---------- */
* { -webkit-tap-highlight-color: transparent; }
body {
  font-family: var(--font);
  color: var(--body);
  background: var(--surface);
  line-height: 1.65;
  padding-bottom: 68px;              /* room for the mobile action bar */
  overflow-x: hidden;
}
@media (min-width: 992px) { body { padding-bottom: 0; } }

h1, h2, h3, h4, h5, h6 { color: var(--ink); font-weight: 800; line-height: 1.22; letter-spacing: -.015em; }
h1 { font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3.2rem); }
h2 { font-size: clamp(1.4rem, 1.05rem + 1.4vw, 2.1rem); }
p  { margin-bottom: 1rem; }
a  { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); }
strong { color: var(--ink); font-weight: 700; }
/* <strong> defaults to the dark ink, which vanishes on the dark green bands
   (hero, CTA band, stat band, footer). Those surfaces get white bold text. */
.hero strong, .cta-band strong, .stats-band strong, .site-footer strong,
.topbar strong, .quote-result strong { color: #fff; }
::selection { background: var(--brand-tint); color: var(--brand-deep); }

.container { max-width: 1180px; }
section { scroll-margin-top: 90px; }

/* Bootstrap re-skin */
.btn { border-radius: 999px; font-weight: 700; padding: .62rem 1.4rem; border-width: 2px; transition: transform .15s ease, box-shadow .15s ease, background .15s ease; }
.btn:active { transform: translateY(1px); }
.btn-lg { padding: .85rem 1.8rem; font-size: 1rem; }
.btn-success { background: var(--brand); border-color: var(--brand); }
.btn-success:hover, .btn-success:focus { background: var(--brand-dark); border-color: var(--brand-dark); box-shadow: var(--shadow); }
.btn-outline-success { color: var(--brand); border-color: var(--brand); }
.btn-outline-success:hover { background: var(--brand); border-color: var(--brand); color: #fff; }
.btn-warning { background: var(--accent); border-color: var(--accent); color: var(--brand-deep); }
.btn-warning:hover, .btn-warning:focus { background: var(--accent-dark); border-color: var(--accent-dark); color: var(--brand-deep); box-shadow: 0 8px 24px rgba(255,122,26,.35); }
.btn-light { background: #fff; border-color: #fff; color: var(--brand-deep); }
.btn-light:hover { background: var(--brand-light); border-color: var(--brand-light); }
.btn-outline-light:hover { color: var(--brand-deep); }
.text-success { color: var(--brand) !important; }
.text-warning { color: var(--accent) !important; }
.bg-brand-light { background: var(--surface-2); }
.badge { font-weight: 600; }
.card { border-radius: var(--radius); border-color: var(--line); }
.shadow-sm { box-shadow: var(--shadow-sm) !important; }
.accordion-button { font-weight: 700; color: var(--ink); }
.accordion-button:not(.collapsed) { background: var(--brand-light); color: var(--brand-dark); box-shadow: none; }
.accordion-button:focus { box-shadow: var(--ring); }
.accordion-item { border-color: var(--line); border-radius: var(--radius-sm) !important; margin-bottom: .5rem; overflow: hidden; }
.breadcrumb-item + .breadcrumb-item::before { content: "\203A"; }

/* ---------- 3. HEADER / NAV ---------- */
.topbar { background: var(--brand-deep); color: #d2e8da; padding: 7px 0; font-size: .82rem; }
.topbar a { color: #fff; }

.site-nav { background: #fff; border-bottom: 1px solid var(--line); z-index: 1030; padding: .55rem 0; }
/* Frosted glass only where the GPU can do it cheaply; a solid bar everywhere else.
   backdrop-filter on a sticky element is a known repaint cost on low-end Android,
   which is most of our traffic. */
@supports (backdrop-filter: blur(12px)) and (min-width: 0px) {
  @media (min-width: 992px) { .site-nav { background: rgba(255,255,255,.9); backdrop-filter: saturate(180%) blur(12px); } }
}
.site-nav .nav-link { font-weight: 600; color: var(--ink); padding: .5rem .85rem; border-radius: 10px; }
.site-nav .nav-link:hover, .site-nav .nav-link.active { color: var(--brand); background: var(--brand-light); }
.navbar-brand { font-size: 1.35rem; font-weight: 800; letter-spacing: -.02em; color: var(--ink); display: inline-flex; align-items: center; }
.brand-mark { width: 34px; height: 34px; border-radius: 10px; background: linear-gradient(135deg, var(--brand) 0%, var(--leaf) 100%); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 1.05rem; margin-right: .5rem; box-shadow: 0 4px 12px rgba(26,127,55,.35); }
.brand-accent { color: var(--brand); }
.brand-logo { height: 40px; width: auto; max-width: 190px; }
.dropdown-menu { border-radius: var(--radius-sm); border-color: var(--line); box-shadow: var(--shadow); padding: .4rem; }
/* Long menus (Services has 12 items, Areas 12) must never run off the screen with
   no way to reach the bottom. Two columns on desktop so everything fits, plus a
   height cap with its own scrollbar as the fallback on short windows.
   overscroll-behavior:contain stops the scroll chaining to the page underneath. */
.site-nav .dropdown-menu {
  max-height: min(72vh, 480px);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.menu-grid { display: grid; grid-template-columns: 1fr; }
@media (min-width: 992px) {
  .site-nav .dropdown-wide { min-width: 460px; }
  .menu-grid { grid-template-columns: 1fr 1fr; gap: 0 .15rem; }
}
/* a slim, on-brand scrollbar so it is obvious the menu scrolls when it has to */
.site-nav .dropdown-menu::-webkit-scrollbar { width: 8px; }
.site-nav .dropdown-menu::-webkit-scrollbar-thumb { background: var(--brand-tint); border-radius: 999px; }
.site-nav .dropdown-menu::-webkit-scrollbar-track { background: transparent; }
.site-nav .dropdown-menu { scrollbar-width: thin; scrollbar-color: var(--brand-tint) transparent; }

/* The collapsed mobile menu holds every link and both dropdowns — it needs the
   same treatment or the last items sit below the fold. */
@media (max-width: 991.98px) {
  .site-nav .navbar-collapse {
    max-height: calc(100vh - 132px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .site-nav .dropdown-menu { max-height: none; overflow-y: visible; }  /* the collapse scrolls instead */
}
.dropdown-item { border-radius: 8px; font-weight: 500; padding: .5rem .7rem; }
.dropdown-item:hover { background: var(--brand-light); color: var(--brand-dark); }

.lang-switch { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; background: #fff; }
.lang-switch a { padding: .3rem .7rem; font-size: .8rem; font-weight: 700; color: var(--body); }
.lang-switch a.on { background: var(--brand); color: #fff; }

/* ---------- 4. HERO ---------- */
.hero {
  position: relative;
  background: linear-gradient(150deg, var(--brand-deep) 0%, var(--brand-dark) 45%, var(--brand) 100%);
  color: #fff;
  padding: 54px 0 60px;
  overflow: hidden;
}
.hero::before {   /* aqua glow */
  content: ''; position: absolute; top: -40%; right: -15%; width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(63,196,106,.35) 0%, rgba(63,196,106,0) 65%);
  pointer-events: none;
}
.hero::after {    /* dot grid */
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.13) 1px, transparent 1px);
  background-size: 22px 22px; opacity: .5; pointer-events: none;
}
.hero > .container { position: relative; z-index: 2; }
.hero h1 { color: #fff; }
.hero .lead { color: #e8f7ed; font-size: 1.05rem; }
@media (min-width: 768px) { .hero { padding: 80px 0 86px; } .hero .lead { font-size: 1.15rem; } }
.hero.hero-has-banner { background-size: cover; background-position: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: .45rem; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.22); color: #fff; border-radius: 999px; padding: .35rem .9rem; font-size: .8rem; font-weight: 600; margin-bottom: 1rem; }
.trust-badges span { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); border-radius: 999px; padding: .4rem .9rem; font-size: .82rem; display: inline-flex; align-items: center; gap: .35rem; margin: 0 .4rem .5rem 0; }

.trust-strip { background: #fff; border-bottom: 1px solid var(--line); }
.trust-strip .ts-item { display: flex; align-items: center; gap: .5rem; font-size: .86rem; font-weight: 600; color: var(--body); padding: .9rem 0; }
.trust-strip .ts-item i { color: var(--brand); font-size: 1.1rem; }

/* ---------- 5. SECTIONS & CARDS ---------- */
.section-title { font-weight: 800; margin-bottom: .35rem; }
.section-sub { color: var(--muted); margin-bottom: 2rem; }
.eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: .74rem; font-weight: 800; color: var(--brand); margin-bottom: .4rem; }

.service-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); height: 100%; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--brand-tint); }
.service-icon { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, var(--brand-light), var(--brand-tint)); color: var(--brand); display: flex; align-items: center; justify-content: center; font-size: 1.45rem; flex-shrink: 0; }
.service-img { width: 100%; height: 168px; object-fit: cover; border-radius: var(--radius-sm); background: var(--brand-light); display: block; }
.price-tag { color: var(--brand-dark); font-weight: 800; }

.usp-item { display: flex; gap: .9rem; padding: 1rem; border-radius: var(--radius-sm); transition: background .15s ease; }
.usp-item:hover { background: var(--surface-2); }
.usp-item i { color: var(--brand); font-size: 1.35rem; }

/* ---------- 6. QUOTE WIDGET ---------- */
.quote-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 1.4rem; color: var(--body); }
.quote-card h2, .quote-card h3 { font-size: 1.05rem; }
.quote-steps { display: flex; gap: .35rem; margin-bottom: 1rem; }
.quote-steps span { flex: 1; height: 4px; border-radius: 999px; background: var(--line); }
.quote-steps span.on { background: var(--brand); }
.opt-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .5rem; }
.opt {
  border: 2px solid var(--line); border-radius: var(--radius-sm); padding: .6rem .7rem; cursor: pointer;
  font-size: .86rem; font-weight: 600; color: var(--body); background: #fff; text-align: left; transition: all .15s ease;
}
.opt:hover { border-color: var(--brand-tint); background: var(--brand-light); }
.opt.on { border-color: var(--brand); background: var(--brand-light); color: var(--brand-dark); }
.opt small { display: block; font-weight: 500; color: var(--muted); font-size: .74rem; }
.quote-result { background: linear-gradient(135deg, var(--brand-deep), var(--brand-dark)); color: #fff; border-radius: var(--radius); padding: 1rem 1.1rem; }
.quote-result .amount { font-size: 1.9rem; font-weight: 800; line-height: 1.1; color: #fff; }
.quote-result .amount small { font-size: .8rem; font-weight: 600; opacity: .8; }
.quote-note { font-size: .78rem; color: var(--muted); }

/* ---------- 7. PACKAGES ---------- */
.pkg { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem 1.4rem; height: 100%; display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.pkg:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pkg-hi { border: 2px solid var(--brand); box-shadow: var(--shadow); }
.pkg-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--brand-deep); font-size: .72rem; font-weight: 800; padding: .3rem .9rem; border-radius: 999px; white-space: nowrap; box-shadow: 0 6px 16px rgba(255,122,26,.4); }
.pkg-icon { width: 46px; height: 46px; border-radius: 13px; background: var(--brand-light); color: var(--brand); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: .8rem; }
.pkg-price { font-size: 2rem; font-weight: 800; color: var(--ink); line-height: 1; }
.pkg-price small { font-size: .8rem; font-weight: 600; color: var(--muted); display: block; margin-top: .3rem; }
.pkg-feats { list-style: none; padding: 0; margin: 1.1rem 0; flex: 1; }
.pkg-feats li { display: flex; gap: .55rem; align-items: flex-start; font-size: .88rem; padding: .3rem 0; }
.pkg-feats i { color: var(--brand); margin-top: .2rem; flex-shrink: 0; }

/* ---------- 8. BEFORE / AFTER ---------- */
.ba-wrap { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--brand-light); aspect-ratio: 4 / 3; user-select: none; touch-action: pan-y; }
.ba-wrap img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-after { clip-path: inset(0 0 0 50%); }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff; box-shadow: 0 0 0 1px rgba(8,48,28,.15); cursor: ew-resize; }
.ba-handle::after { content: '\F12F'; font-family: 'bootstrap-icons'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 40px; height: 40px; border-radius: 50%; background: #fff; color: var(--brand); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); font-size: 1.1rem; }
.ba-tag { position: absolute; bottom: 12px; background: rgba(8,48,28,.78); color: #fff; font-size: .72rem; font-weight: 700; padding: .25rem .7rem; border-radius: 999px; }
.ba-tag.b { left: 12px; } .ba-tag.a { right: 12px; }

/* ---------- 9. AREAS ---------- */
.area-search-wrap { max-width: 660px; }
.area-search-wrap .input-group { border-radius: 999px; overflow: hidden; box-shadow: var(--shadow); }
.area-search-wrap .form-control, .area-search-wrap .input-group-text { border: 0; padding-top: .8rem; padding-bottom: .8rem; }
.area-search-wrap .form-control:focus { box-shadow: none; }
.area-tile { border: 1px solid var(--line); border-radius: var(--radius-sm); transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease; }
.area-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--brand-tint); }
.area-zone h3 { letter-spacing: .1em; font-size: .74rem; }
.area-zone .area-badge { background: #fff; color: var(--body); border: 1px solid var(--line); padding: .5rem .8rem; border-radius: 999px; font-weight: 600; transition: all .15s ease; }
.area-zone .area-badge:hover { background: var(--brand); border-color: var(--brand); color: #fff; transform: translateY(-2px); }
#areaCount { min-height: 1.2em; }
.footer-areas .area-badge { background: rgba(255,255,255,.08); color: #cfe3d6; margin: 0 4px 6px 0; padding: .35rem .7rem; border-radius: 999px; font-weight: 500; }
.footer-areas .area-badge:hover { background: var(--brand); color: #fff; }

/* ---------- 10. STATS & STEPS ---------- */
.stats-band { background: linear-gradient(135deg, var(--brand-deep), var(--brand-dark)); color: #fff; }
.stats-band .stat-num { font-size: 2.2rem; font-weight: 800; color: #fff; line-height: 1; }
.stats-band .stat-label { color: #e8f7ed; font-size: .86rem; margin-top: .35rem; }

.step { position: relative; padding: 1.4rem 1.1rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); height: 100%; }
.step-n { width: 38px; height: 38px; border-radius: 12px; background: var(--brand); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; margin-bottom: .8rem; }
.step h3 { font-size: 1rem; }

/* ---------- 11. REVIEWS ---------- */
.review-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; height: 100%; }
.review-card .stars { color: var(--accent); font-size: .9rem; }
.review-card blockquote { font-size: .95rem; color: var(--body); margin: .7rem 0 1rem; }
.review-av { width: 42px; height: 42px; border-radius: 50%; background: var(--brand-light); color: var(--brand); display: flex; align-items: center; justify-content: center; font-weight: 800; }
.review-slider { position: relative; }
.review-dots button { width: 8px; height: 8px; border-radius: 50%; border: 0; background: var(--line); margin: 0 3px; padding: 0; }
.review-dots button.on { background: var(--brand); width: 20px; border-radius: 999px; }

/* ---------- 12. BLOG ---------- */
.post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; height: 100%; transition: transform .2s ease, box-shadow .2s ease; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post-card img { width: 100%; height: 180px; object-fit: cover; background: var(--brand-light); }
.post-meta { font-size: .78rem; color: var(--muted); }
.blog-content { font-size: 1.02rem; color: var(--body); }
.blog-content h2 { font-size: 1.35rem; margin: 1.8rem 0 .7rem; }
.blog-content h3 { font-size: 1.12rem; margin: 1.4rem 0 .6rem; }
.blog-content ul, .blog-content ol { padding-left: 1.2rem; }
.blog-content li { margin-bottom: .45rem; }
.blog-content img { max-width: 100%; height: auto; border-radius: var(--radius-sm); margin: 1rem 0; }
.blog-content blockquote { border-left: 4px solid var(--brand); background: var(--surface-2); padding: .9rem 1.1rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.reading-time { display: inline-flex; align-items: center; gap: .3rem; }

/* ---------- 13. FOOTER, CTA BANDS, FLOATING ---------- */
.cta-band { background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand-dark) 60%, var(--brand) 100%); color: #fff; border-radius: var(--radius-lg); padding: 2.4rem 1.5rem; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; top: -50%; right: -10%; width: 420px; height: 420px; background: radial-gradient(circle, rgba(63,196,106,.3), transparent 65%); }
.cta-band h2, .cta-band h3 { color: #fff; position: relative; }
.cta-band p { color: #e8f7ed; position: relative; }
.cta-band .btn { position: relative; }

.site-footer { background: var(--brand-deep); color: #b3cdbe; }
.site-footer h5, .site-footer h6 { color: #fff; }
.site-footer a { color: #cfe3d6; }
.site-footer a:hover { color: #fff; }
.footer-links li { margin-bottom: .4rem; }
.footer-social a { display: inline-flex; width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,.08); align-items: center; justify-content: center; margin-right: .4rem; color: #fff; }
.footer-social a:hover { background: var(--brand); }

.mobile-cta { position: fixed; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: 1fr 1fr 1fr; z-index: 1040; box-shadow: 0 -4px 20px rgba(8,48,28,.16); }
.mobile-cta a { padding: .85rem 0; text-align: center; font-weight: 700; font-size: .88rem; color: #fff; }
.mobile-cta .cta-call { background: var(--brand); }
.mobile-cta .cta-book { background: var(--accent); color: var(--brand-deep); }
.mobile-cta .cta-wa   { background: var(--wa); }
/* On the green hero and dark bands, give the WhatsApp green a hairline so it
   reads as its own button rather than blending into our brand green. */
.hero .btn[style*='--wa'], .cta-band .btn[style*='--wa'] { box-shadow: 0 0 0 1px rgba(255,255,255,.45) inset; }

.wa-float { position: fixed; right: 22px; bottom: 96px; width: 56px; height: 56px; border-radius: 50%; background: var(--wa); color: #fff; align-items: center; justify-content: center; font-size: 1.6rem; box-shadow: 0 8px 24px rgba(37,211,102,.45); z-index: 1035; }
.wa-float:hover { color: #fff; }

/* sticky quote bar — slides in once the hero has scrolled away (desktop only) */
.quote-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 1039; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -6px 24px rgba(8,48,28,.10); transform: translateY(110%); transition: transform .25s ease; }
.quote-bar.on { transform: translateY(0); }
@media (max-width: 991.98px) { .quote-bar { display: none; } }

/* ---------- 14. FORMS ---------- */
.form-control, .form-select { border-radius: var(--radius-sm); border-color: var(--line); padding: .65rem .9rem; }
.form-control:focus, .form-select:focus { border-color: var(--brand); box-shadow: var(--ring); }
.form-label { font-weight: 600; color: var(--ink); font-size: .9rem; }
.min-touch { min-height: 46px; }
.estimator-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem; box-shadow: var(--shadow-sm); }
.promo-strip { background: linear-gradient(90deg, var(--accent) 0%, #ffb703 100%); color: var(--brand-deep); font-weight: 600; padding: .6rem 0; font-size: .9rem; }
.promo-code { background: rgba(8,48,28,.12); border-radius: 6px; padding: .1rem .5rem; font-weight: 800; letter-spacing: .04em; }
.promo-link { color: var(--brand-deep); font-weight: 800; text-decoration: underline; }
.qc-card { display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem; text-align: center; color: var(--ink); transition: transform .15s ease, box-shadow .15s ease; }
.qc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); color: var(--brand-dark); }
.ci-ic { width: 38px; height: 38px; border-radius: 11px; background: var(--brand-light); color: var(--brand); display: inline-flex; align-items: center; justify-content: center; margin-right: .6rem; flex-shrink: 0; }

/* chat widget */
.chat-widget { position: fixed; right: 22px; bottom: 162px; z-index: 1035; }
@media (max-width: 991.98px) { .chat-widget { bottom: 84px; right: 16px; } .wa-float { display: none !important; } }
.chat-toggle { width: 52px; height: 52px; border-radius: 50%; border: 0; background: var(--brand); color: #fff; font-size: 1.35rem; box-shadow: var(--shadow); }
.chat-box { position: fixed; right: 22px; bottom: 224px; width: 340px; max-width: calc(100vw - 32px); background: #fff; border-radius: var(--radius); overflow: hidden; z-index: 1036; border: 1px solid var(--line); box-shadow: var(--shadow-lg); }
@media (max-width: 991.98px) { .chat-box { bottom: 146px; right: 16px; } }
.chat-head { background: var(--brand-deep); color: #fff; padding: .8rem 1rem; display: flex; justify-content: space-between; align-items: center; }
.chat-messages { height: 300px; overflow-y: auto; padding: 1rem; background: var(--surface-2); }
.chat-msg { padding: .55rem .8rem; border-radius: 14px; margin-bottom: .5rem; font-size: .88rem; max-width: 85%; }
.chat-msg.bot { background: #fff; border: 1px solid var(--line); }
.chat-msg.user { background: var(--brand); color: #fff; margin-left: auto; }
.chat-input { display: flex; gap: .4rem; padding: .6rem; border-top: 1px solid var(--line); }

/* ---------- 15. MOTION ---------- */
.js-reveal [data-reveal], .js-reveal [data-reveal-group] > * { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.js-reveal [data-reveal].in-view, .js-reveal [data-reveal-group].in-view > * { opacity: 1; transform: none; }
.js-reveal [data-reveal-group].in-view > *:nth-child(2) { transition-delay: .06s; }
.js-reveal [data-reveal-group].in-view > *:nth-child(3) { transition-delay: .12s; }
.js-reveal [data-reveal-group].in-view > *:nth-child(4) { transition-delay: .18s; }
.js-reveal [data-reveal-group].in-view > *:nth-child(n+5) { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .js-reveal [data-reveal], .js-reveal [data-reveal-group] > * { opacity: 1; transform: none; }
}

/* ---------- 16. UTILITIES ---------- */
.min-w-0 { min-width: 0; }
.text-ink { color: var(--ink) !important; }
.rounded-xl { border-radius: var(--radius) !important; }
.divider { height: 1px; background: var(--line); border: 0; }

/* ============================================================================
   17. PAGE COMPONENTS
   About, Contact, NID-verify, gallery blocks, blog cards and the Google-review
   CTA — rebuilt on the same tokens as everything above so they inherit the
   ocean-blue system instead of carrying their own colours.
   ============================================================================ */

/* --- shared page hero (about / contact) --- */
.about-hero, .contact-hero {
  position: relative; overflow: hidden; text-align: center; color: #fff;
  background: linear-gradient(150deg, var(--brand-deep) 0%, var(--brand-dark) 45%, var(--brand) 100%);
  padding: 56px 0;
}
.contact-hero { padding: 52px 0 92px; }
.about-hero::after, .contact-hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.13) 1px, transparent 1px); background-size: 22px 22px; opacity: .5;
}
.about-hero > *, .contact-hero > * { position: relative; z-index: 2; }
.about-hero h1, .contact-hero h1 { color: #fff; margin-bottom: 0; }
.about-hero .lead, .contact-hero .lead { color: #e8f7ed; max-width: 660px; margin: 14px auto 0; }
.about-hero-badge, .contact-hero-badge {
  display: inline-block; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.22);
  color: #fff; font-weight: 600; padding: .35rem .9rem; border-radius: 999px; font-size: .82rem; margin-bottom: 1rem;
}

/* --- about --- */
.about-article { max-width: 860px; margin: 0 auto; }
.about-lead-img { width: 100%; height: 380px; object-fit: cover; border-radius: var(--radius-lg); display: block; box-shadow: var(--shadow-lg); }
.about-banner {
  width: 100%; height: 240px; border-radius: var(--radius-lg); color: #fff; gap: .5rem;
  background: linear-gradient(150deg, var(--brand-deep), var(--brand-dark) 60%, var(--brand));
  display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: var(--shadow-lg);
}
.about-banner i { font-size: 2.6rem; }
.about-banner span { font-weight: 800; font-size: 1.3rem; }
.about-mv { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; height: 100%; box-shadow: var(--shadow-sm); }
.about-mv-ic { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 14px; background: var(--brand-light); color: var(--brand); font-size: 1.5rem; }

/* --- contact --- */
.quick-contact { display: grid; grid-template-columns: repeat(2, 1fr); gap: .9rem; margin-top: -58px; position: relative; z-index: 3; }
@media (min-width: 768px) { .quick-contact { grid-template-columns: repeat(4, 1fr); } }
.qc-card { display: flex; flex-direction: column; align-items: center; gap: .3rem; }
.qc-icon { width: 54px; height: 54px; border-radius: 50%; background: var(--qc, var(--brand)); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: .25rem; }
.qc-label { font-size: .74rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.qc-value { font-weight: 700; color: var(--ink); font-size: .96rem; word-break: break-word; }
.qc-static { cursor: default; }
.qc-static:hover { transform: none; box-shadow: var(--shadow-sm); }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.7rem; box-shadow: var(--shadow-sm); height: 100%; }
.input-icon { position: relative; }
.input-icon > i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); font-size: 1.05rem; pointer-events: none; }
.input-icon .form-control { padding-left: 40px; }
.contact-info-list { list-style: none; padding: 0; margin: 0; }
.contact-info-list li { display: flex; align-items: center; gap: .9rem; padding: .8rem 0; border-bottom: 1px solid var(--line); }
.contact-info-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-info-list small { display: block; color: var(--muted); font-size: .74rem; text-transform: uppercase; letter-spacing: .06em; }
.contact-info-list a, .contact-info-list span { color: var(--ink); font-weight: 600; word-break: break-word; }
.contact-info-list a:hover { color: var(--brand); }
.contact-socials { display: flex; gap: .6rem; margin-top: 1.2rem; }
.contact-socials a { width: 40px; height: 40px; border-radius: 12px; background: var(--brand-light); color: var(--brand); display: inline-flex; align-items: center; justify-content: center; font-size: 1.15rem; transition: all .2s ease; }
.contact-socials a:hover { background: var(--brand); color: #fff; transform: translateY(-2px); }
.map-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.map-head { display: flex; flex-wrap: wrap; gap: .6rem; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; }
.map-frame { line-height: 0; }
.map-frame iframe { width: 100%; height: 380px; border: 0; display: block; }

/* --- Google review CTA --- */
.greview-cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.25rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem 1.9rem; box-shadow: var(--shadow-sm); }
.greview-cta-left { display: flex; align-items: center; gap: 1.1rem; }
.greview-glogo { flex: 0 0 56px; width: 56px; height: 56px; border-radius: 50%; background: #f1f5ff; color: #4285f4; display: inline-flex; align-items: center; justify-content: center; font-size: 1.7rem; }
.greview-stars { color: var(--accent); font-size: 1.05rem; letter-spacing: 2px; }
.greview-sub { color: var(--muted); font-size: .95rem; }
.btn-greview { background: #4285f4; color: #fff; font-weight: 700; padding: .75rem 1.4rem; border-radius: 999px; white-space: nowrap; display: inline-flex; align-items: center; gap: .5rem; transition: all .2s ease; }
.btn-greview:hover, .btn-greview:focus { background: #3367d6; color: #fff; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(66,133,244,.35); }

/* --- NID verification --- */
.verify-ok { border: 1.5px solid #b7e4c7; background: #f2fbf5; border-radius: var(--radius); padding: 1.25rem; }
.verify-bad { border: 1.5px solid #f5c2c7; background: #fff5f5; border-radius: var(--radius); padding: 1.1rem; color: #842029; }
.verify-photo { width: 120px; height: 120px; border-radius: var(--radius); object-fit: cover; border: 3px solid var(--brand); flex: 0 0 120px; }
.verify-photo-ph { display: inline-flex; align-items: center; justify-content: center; background: var(--brand-light); color: var(--brand); font-size: 3rem; }
.verify-badge { display: inline-flex; align-items: center; gap: .35rem; background: var(--brand); color: #fff; font-weight: 700; font-size: .78rem; padding: .2rem .75rem; border-radius: 999px; }

/* --- editable content blocks & landing imagery --- */
.block-img { width: 100%; height: 340px; object-fit: cover; border-radius: var(--radius-lg); display: block; box-shadow: var(--shadow-lg); }
.block-img-ph { background: linear-gradient(135deg, var(--brand-light), var(--brand-tint)); color: var(--brand); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.ba-card { border-radius: var(--radius-sm); overflow: hidden; position: relative; }
.ba-label { position: absolute; top: 8px; left: 8px; background: rgba(8,48,28,.72); color: #fff; font-size: .74rem; padding: .2rem .7rem; border-radius: 999px; }

/* --- blog & misc --- */
.blog-card { position: relative; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; height: 100%; background: #fff; transition: transform .2s ease, box-shadow .2s ease; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.check-list { list-style: none; padding: 0; }
.check-list li { padding: .5rem 0 .5rem 2rem; position: relative; border-bottom: 1px dashed var(--line); }
.check-list li::before { content: "\F26E"; font-family: 'bootstrap-icons'; position: absolute; left: 0; color: var(--brand); }
.step-card { text-align: center; padding: 1.25rem .75rem; }
.step-num { width: 44px; height: 44px; border-radius: 14px; background: var(--brand); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto .6rem; }
.object-cover { object-fit: cover; }
.skip-link:focus { position: fixed; top: 8px; left: 8px; z-index: 2000; background: #fff; padding: .6rem 1rem; border-radius: 10px; box-shadow: var(--shadow); }
.pagination .page-link { color: var(--brand); border-color: var(--line); border-radius: 10px; margin: 0 2px; }
.pagination .active .page-link { background: var(--brand); border-color: var(--brand); color: #fff; }

/* --- service page: at-a-glance strip & callout --- */
.glance { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem .9rem; height: 100%; text-align: center; }
.glance i { color: var(--brand); font-size: 1.35rem; }
.glance strong { display: block; color: var(--ink); font-size: 1.05rem; margin-top: .35rem; line-height: 1.2; }
.glance span { display: block; color: var(--muted); font-size: .76rem; margin-top: .15rem; }
.callout { background: var(--brand-light); border-left: 4px solid var(--brand); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 1rem 1.2rem; }
.callout h3 { color: var(--brand-dark); }
.callout i { color: var(--accent); }

/* ============================================================================
   18. SERVICES MARQUEE
   A right-to-left ticker of every service. The track holds two identical copies
   of the list and slides exactly -50%, so copy #2 lands where copy #1 began —
   a seamless loop with no JavaScript.
   ============================================================================ */
.svc-marquee {
  position: relative;
  overflow: hidden;
  background: var(--brand-light);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: .85rem 0;
}
/* soft fade at both edges so chips enter and leave instead of being chopped off */
.svc-marquee::before,
.svc-marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none;
}
.svc-marquee::before { left: 0;  background: linear-gradient(90deg,  var(--brand-light), rgba(238,249,241,0)); }
.svc-marquee::after  { right: 0; background: linear-gradient(270deg, var(--brand-light), rgba(238,249,241,0)); }

.svc-marquee-track {
  display: flex;
  width: max-content;
  animation: svc-scroll var(--mq-duration, 48s) linear infinite;
  will-change: transform;
}
/* Pause on hover, and on keyboard focus so a tabbing user can actually read and
   click the chip they landed on. */
.svc-marquee:hover .svc-marquee-track,
.svc-marquee:focus-within .svc-marquee-track { animation-play-state: paused; }

.svc-marquee-list {
  display: flex; align-items: center; gap: .55rem;
  list-style: none; margin: 0; padding: 0 .28rem;
}
.svc-marquee-list a {
  display: inline-flex; align-items: center; gap: .5rem; white-space: nowrap;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: .5rem .95rem; font-weight: 600; font-size: .9rem; color: var(--ink);
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
}
.svc-marquee-list a:hover,
.svc-marquee-list a:focus-visible {
  background: var(--brand); border-color: var(--brand); color: #fff; transform: translateY(-2px);
}
.svc-marquee-list i { color: var(--brand); font-size: 1.05rem; }
.svc-marquee-list .mq-name { font-weight: 600; }
.svc-marquee-list .mq-price {
  font-weight: 800; font-size: .82rem; color: var(--brand-dark);
  background: var(--brand-light); border-radius: 999px; padding: .1rem .5rem;
  transition: background .15s ease, color .15s ease;
}
.svc-marquee-list .mq-from { font-weight: 600; opacity: .75; }
.svc-marquee-list a:hover .mq-price,
.svc-marquee-list a:focus-visible .mq-price { background: rgba(255,255,255,.22); color: #fff; }
.svc-marquee-list a:hover i,
.svc-marquee-list a:focus-visible i { color: #fff; }

@keyframes svc-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.3333%); }   /* exactly one of three copies — seamless */
}

/* Motion off: no animation at all. The duplicate copy is hidden and the strip
   becomes a normal horizontal scroller, so the content stays reachable. */
@media (max-width: 575.98px) {
  .svc-marquee-list .mq-price { display: none; }   /* keep chips thumb-sized on phones */
}

@media (prefers-reduced-motion: reduce) {
  .svc-marquee { overflow-x: auto; }
  .svc-marquee-track { animation: none; }
  .svc-marquee-list[aria-hidden="true"] { display: none; }
  .svc-marquee::before, .svc-marquee::after { display: none; }
}

/* ============================================================================
   19. ITEMISED QUOTE BUILDER (booking page)
   ============================================================================ */
.qb { background: var(--brand-light); border: 1px solid var(--brand-tint); border-radius: var(--radius); padding: 1.1rem; }
.qb-head { margin-bottom: .9rem; }
/* One question per row: the booking column is ~550px, and two columns there
   wrap every label onto three lines. Pair them up only when there is real room. */
.qb-grid { display: grid; grid-template-columns: 1fr; gap: .5rem; }
@media (min-width: 1300px) { .qb-grid { grid-template-columns: 1fr 1fr; gap: .5rem .75rem; } }

.qb-item {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .6rem .8rem; min-height: 56px;
}
.qb-label { display: flex; flex-direction: column; min-width: 0; flex: 1; font-weight: 600; font-size: .92rem; color: var(--ink); }
.qb-ico { color: var(--brand); font-size: 1.1rem; flex-shrink: 0; line-height: 1; }
.qb-hint { font-weight: 500; font-size: .74rem; color: var(--muted); margin-top: .1rem; }

.qb-step { display: inline-flex; align-items: center; gap: .35rem; flex-shrink: 0; }
.qb-btn {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--brand-tint);
  background: var(--brand-light); color: var(--brand-dark); font-size: 1.1rem; font-weight: 700; line-height: 1;
}
.qb-btn:hover { background: var(--brand); border-color: var(--brand); color: #fff; }
.qb-qty { min-width: 26px; text-align: center; font-weight: 800; color: var(--ink); }
.qb-sqft { max-width: 120px; }

.qb-toggle { cursor: pointer; }
.qb-toggle input { width: 20px; height: 20px; accent-color: var(--brand); flex-shrink: 0; order: -1; margin-right: .1rem; }
.qb-toggle .qb-ico { order: -1; }
.qb-toggle .qb-unit { font-weight: 800; color: var(--brand-dark); font-size: .85rem; }

.qb-total { margin-top: .9rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .9rem 1rem; }
.qb-line { display: flex; justify-content: space-between; gap: 1rem; font-size: .88rem; padding: .22rem 0; color: var(--body); }
.qb-line em { color: var(--muted); font-style: normal; font-size: .8rem; }
.qb-line.qb-note { color: var(--muted); font-size: .82rem; }
.qb-sum {
  display: flex; justify-content: space-between; align-items: baseline;
  border-top: 1px dashed var(--line); margin-top: .5rem; padding-top: .55rem;
  font-weight: 600; color: var(--ink);
}
.qb-sum strong { font-size: 1.5rem; font-weight: 800; color: var(--brand-dark); }

/* ============================================================================
   20. CAREERS — job circulars and the application form
   ============================================================================ */
.badge-soft {
  display: inline-block; background: var(--brand-tint); color: var(--brand-deep);
  border-radius: 999px; padding: .3rem .85rem; font-size: .78rem; font-weight: 700;
}

.careers-hero {
  background: linear-gradient(135deg, var(--brand-light), #fff);
  border-bottom: 1px solid var(--line); padding: 2.5rem 0 3rem;
}
.careers-hero h1 { color: var(--ink); }
.careers-promise {
  background: #fff; border: 1px solid var(--brand-tint); border-radius: var(--radius);
  padding: 1.25rem; box-shadow: 0 10px 30px rgba(8, 48, 28, .06);
}
.careers-promise li { display: flex; gap: .5rem; align-items: flex-start; padding: .3rem 0; font-size: .9rem; color: var(--body); }
.careers-promise i { color: var(--brand); flex-shrink: 0; margin-top: .15rem; }

/* ---- circular cards ---- */
.job-card {
  position: relative; height: 100%; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.4rem; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.job-card:hover { transform: translateY(-4px); border-color: var(--brand-tint); box-shadow: 0 16px 40px rgba(8, 48, 28, .1); }
.job-card-featured { border-color: var(--brand-tint); background: linear-gradient(180deg, var(--brand-light), #fff 40%); }
.job-card h3 a { color: var(--ink); text-decoration: none; }
.job-card h3 a:hover { color: var(--brand-dark); }
.job-flag {
  position: absolute; top: 1rem; right: 1rem; background: var(--accent); color: #fff;
  font-size: .68rem; font-weight: 800; border-radius: 999px; padding: .2rem .6rem; letter-spacing: .02em;
}
.job-icon {
  width: 48px; height: 48px; border-radius: 14px; background: var(--brand-light); color: var(--brand);
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: .85rem;
}
.job-meta { display: flex; flex-wrap: wrap; gap: .25rem 1rem; font-size: .78rem; color: var(--muted); }
.job-facts { font-size: .85rem; color: var(--body); margin: 0; }
.job-facts li { padding: .18rem 0; }
.job-facts i { color: var(--brand); width: 1.1rem; }
.disabled-look { opacity: .65; }

.careers-help {
  background: var(--brand-deep); color: #fff; border-radius: var(--radius); padding: 1.5rem;
}
.careers-help h2, .careers-help p { color: #fff; }

/* ---- single circular ---- */
.job-hero { background: linear-gradient(135deg, var(--brand-dark), var(--brand-deep)); color: #fff; padding: 2.5rem 0; }
.job-hero h1, .job-hero .lead { color: #fff; }
.job-hero-sub { color: var(--brand-tint); font-size: .9rem; }
.job-hero-icon {
  width: 62px; height: 62px; border-radius: 18px; background: rgba(255, 255, 255, .14); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem; flex-shrink: 0;
}

.job-facts-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: .75rem;
}
.job-facts-grid > div {
  background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .75rem .9rem;
}
.jf-label { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); font-weight: 700; }
.jf-value { display: block; font-weight: 800; color: var(--ink); font-size: 1rem; margin-top: .15rem; }
.jf-note  { display: block; font-size: .72rem; color: var(--muted); }

.job-list { list-style: none; padding: 0; margin: 0 0 .5rem; }
.job-list li { position: relative; padding: .35rem 0 .35rem 1.75rem; color: var(--body); }
.job-list li::before {
  content: "\F26E"; font-family: "bootstrap-icons"; position: absolute; left: 0; top: .35rem;
  color: var(--brand); font-size: .9rem;
}
.job-list-check li::before { content: "\F26B"; }
.job-list-gift  li::before { content: "\F425"; color: var(--accent); }

.job-side {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.25rem;
  position: sticky; top: 90px;
}
.job-side-list li { border-bottom: 1px dashed var(--line); }
.job-side-list li:last-child { border-bottom: 0; }
.job-side-list a {
  display: flex; align-items: center; gap: .55rem; padding: .55rem 0;
  color: var(--ink); text-decoration: none; font-size: .9rem; font-weight: 600;
}
.job-side-list a:hover { color: var(--brand-dark); }
.job-side-list i { color: var(--brand); }
.job-side-list small { margin-left: auto; }

/* ---- application form ---- */
.apply-card {
  background: var(--brand-light); border: 1px solid var(--brand-tint);
  border-radius: var(--radius); padding: 1.5rem;
}
.apply-card .form-control, .apply-card .form-select { background: #fff; }
.form-hint { font-size: .74rem; color: var(--muted); margin-top: .3rem; }
.form-hint i { color: var(--brand); }
.file-note {
  margin-top: .4rem; font-size: .78rem; font-weight: 600; border-radius: var(--radius-sm); padding: .35rem .6rem;
}
.file-note.is-ok  { background: var(--brand-tint); color: var(--brand-deep); }
.file-note.is-bad { background: #fdecea; color: #a32118; }

@media (max-width: 767.98px) {
  .job-side { position: static; }
  .job-hero-icon { width: 52px; height: 52px; font-size: 1.5rem; }
}
