/* ─────────────────────────────────────────────────────────────────
   AKAL Group of Institutions, Mastuana Sahib — site stylesheet
   Palette: navy #0a2463 / #123a8f, gold #f5b301 (Amity-inspired)
   ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #0a2463;
  --navy-2:  #123a8f;
  --navy-d:  #061737;
  --gold:    #f5b301;
  --gold-d:  #d99a00;
  --gold-l:  #fff4d6;
  --ink:     #1f2937;
  --muted:   #6b7280;
  --line:    #e5e7eb;
  --bg:      #f6f7fb;
  --radius:  12px;
  --shadow:  0 3px 14px rgba(6, 23, 55, .1);
  --shadow-lg: 0 14px 34px rgba(6, 23, 55, .18);
}

html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink); background: #fff; min-height: 100dvh;
}
img { max-width: 100%; display: block; }
a { color: var(--navy-2); }

/* ── Top utility bar (Amity-style) ───────────────────────────── */
.topbar {
  background: var(--navy-d); color: #c7d4f2; font-size: .72rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.topbar-inner {
  max-width: 1250px; margin: 0 auto; padding: 0 1.2rem;
  display: flex; align-items: stretch; gap: 1rem; flex-wrap: wrap; min-height: 34px;
}
.topbar a { color: #c7d4f2; text-decoration: none; transition: color .15s; }
.topbar a:hover { color: var(--gold); }
.topbar .spacer { flex: 1; }
.topbar .item { display: inline-flex; align-items: center; gap: .35rem; }
.topbar .helpline strong { color: var(--gold); font-weight: 800; }

.topbar .quick { display: flex; align-items: stretch; }
.topbar .quick a {
  display: flex; align-items: center; padding: 0 .85rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  border-right: 1px solid rgba(255, 255, 255, .12);
}
.topbar .quick a:first-child { border-left: 1px solid rgba(255, 255, 255, .12); }
.topbar .quick a:hover { background: rgba(245, 179, 1, .12); color: var(--gold); }

.topbar .socials { display: flex; align-items: center; gap: .4rem; padding: .3rem 0; }
.topbar .socials a {
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .14);
  color: #dbe4f8; transition: background .15s, color .15s, transform .12s;
}
.topbar .socials a:hover {
  background: var(--gold); border-color: var(--gold);
  color: var(--navy-d); transform: translateY(-1px);
}

/* ── Header / navigation ─────────────────────────────────────── */
header.site {
  position: sticky; top: 0; z-index: 1000;
  background: var(--navy);
  border-bottom: 3px solid var(--gold);
  box-shadow: var(--shadow);
}
.nav-wrap {
  max-width: 1250px; margin: 0 auto; padding: 0 1.2rem;
  display: flex; align-items: center; gap: 1rem; min-height: 74px;
}
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; padding: .5rem 0; }
.brand img { width: 52px; height: 52px; }
.brand .t1 { color: #fff; font-weight: 800; font-size: 1.06rem; letter-spacing: .5px; line-height: 1.15; }
.brand .t1 span { color: var(--gold); }
.brand .t2 { color: #b7c6ea; font-size: .64rem; letter-spacing: .4px; }
.nav-spacer { flex: 1; }

nav.main > ul { display: flex; list-style: none; align-items: center; gap: .1rem; }
nav.main li { position: relative; }
nav.main a.top,
nav.main button.top {
  display: flex; align-items: center; gap: .3rem;
  color: #e4eaf8; text-decoration: none; font-size: .86rem; font-weight: 600;
  padding: 1.55rem .8rem; background: none; border: none; cursor: pointer; font-family: inherit;
  border-bottom: 3px solid transparent; margin-bottom: -3px;
  white-space: nowrap;
}
nav.main a.top:hover, nav.main li:hover > a.top,
nav.main button.top:hover, nav.main li:hover > button.top,
nav.main a.top.active { color: var(--gold); border-bottom-color: var(--gold); }
nav.main .caret { border: solid currentColor; border-width: 0 1.6px 1.6px 0; padding: 2.4px; transform: rotate(45deg) translateY(-2px); }

nav.main .drop {
  position: absolute; top: 100%; left: 0; min-width: 250px;
  background: #fff; border-radius: 0 0 10px 10px; box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--gold);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: .18s ease; z-index: 1001;
}
nav.main li:hover > .drop, nav.main li:focus-within > .drop {
  opacity: 1; visibility: visible; transform: translateY(0);
}
nav.main .drop a {
  display: block; padding: .65rem .95rem; font-size: .82rem; font-weight: 600;
  color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line);
}
nav.main .drop a:last-child { border-bottom: none; }
nav.main .drop a:hover { background: var(--gold-l); color: var(--navy); padding-left: 1.15rem; }

.btn-apply {
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  color: var(--navy-d); font-weight: 800; font-size: .84rem;
  padding: .62rem 1.25rem; border-radius: 8px; text-decoration: none; white-space: nowrap;
  box-shadow: 0 4px 14px rgba(245, 179, 1, .35);
  transition: transform .12s;
}
.btn-apply:hover { transform: translateY(-2px); }

.burger {
  display: none; background: none; border: none; cursor: pointer; padding: .4rem;
  color: #fff;
}
.burger svg { display: block; }

/* ── Hero slider ─────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; background: var(--navy-d); }
.slide {
  display: none; position: relative; min-height: 460px;
  background: linear-gradient(115deg, var(--navy-d) 0%, var(--navy) 55%, var(--navy-2) 100%);
}
.slide.on { display: block; animation: fadein .7s ease; }
@keyframes fadein { from { opacity: .35; } to { opacity: 1; } }
.slide .inner {
  max-width: 1250px; margin: 0 auto; padding: 4.5rem 1.2rem 5rem;
  display: grid; grid-template-columns: 1.25fr .75fr; gap: 2rem; align-items: center;
}
.slide .kicker {
  display: inline-block; background: rgba(245, 179, 1, .15); color: var(--gold);
  border: 1px solid rgba(245, 179, 1, .45);
  font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: .35rem .8rem; border-radius: 99px; margin-bottom: 1.1rem;
}
.slide h1 { color: #fff; font-size: clamp(1.7rem, 4vw, 2.7rem); font-weight: 800; line-height: 1.16; }
.slide h1 em { color: var(--gold); font-style: normal; }
.slide p.lead { color: #c9d6f3; font-size: .98rem; margin-top: 1rem; max-width: 560px; line-height: 1.65; }
.slide .cta-row { display: flex; gap: .8rem; margin-top: 1.7rem; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .75rem 1.5rem; border-radius: 9px; text-decoration: none;
  font-size: .9rem; font-weight: 700; border: none; cursor: pointer; transition: transform .12s;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-d)); color: var(--navy-d); }
.btn-line { background: transparent; color: #fff; border: 1.6px solid rgba(255, 255, 255, .55); }
.btn-line:hover { border-color: var(--gold); color: var(--gold); }
.btn-navy { background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: #fff; }
.slide .art { display: flex; justify-content: center; }
.slide .art svg { width: min(320px, 80%); height: auto; filter: drop-shadow(0 18px 40px rgba(0, 0, 0, .45)); }

.dots {
  position: absolute; bottom: 1.1rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: .5rem; z-index: 5;
}
.dots button {
  width: 26px; height: 5px; border-radius: 4px; border: none; cursor: pointer;
  background: rgba(255, 255, 255, .35); transition: background .2s;
}
.dots button.on { background: var(--gold); }

/* ── Accreditation strip ─────────────────────────────────────── */
.strip {
  background: var(--gold);
  padding: .9rem 1.2rem;
}
.strip .inner {
  max-width: 1250px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: .4rem 2.2rem; justify-content: center;
}
.strip .item {
  display: flex; align-items: center; gap: .5rem;
  color: var(--navy-d); font-size: .8rem; font-weight: 800;
}

/* ── Sections ────────────────────────────────────────────────── */
section.block { padding: 3.6rem 1.2rem; }
section.block.alt { background: var(--bg); }
section.block.navy { background: linear-gradient(120deg, var(--navy-d), var(--navy) 70%); }
.container { max-width: 1250px; margin: 0 auto; }
.sec-head { text-align: center; max-width: 700px; margin: 0 auto 2.4rem; }
.sec-head .eyebrow {
  color: var(--gold-d); font-size: .74rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
}
.sec-head h2 { color: var(--navy); font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 800; margin-top: .4rem; }
.sec-head h2::after {
  content: ""; display: block; width: 64px; height: 4px; border-radius: 3px;
  background: var(--gold); margin: .8rem auto 0;
}
.sec-head p { color: var(--muted); font-size: .9rem; margin-top: .9rem; line-height: 1.6; }
section.navy .sec-head h2 { color: #fff; }
section.navy .sec-head p { color: #c9d6f3; }

/* ── Stats counters ──────────────────────────────────────────── */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; }
.stat-box {
  text-align: center; padding: 1.6rem 1rem; border-radius: var(--radius);
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .14);
}
.stat-box .n { font-size: 2rem; font-weight: 800; color: var(--gold); }
.stat-box .l { font-size: .8rem; color: #c9d6f3; font-weight: 600; margin-top: .3rem; }

/* ── Cards ───────────────────────────────────────────────────── */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: 1.2rem; }
.card {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 1.5rem 1.4rem; border-top: 4px solid var(--gold);
  transition: transform .16s, box-shadow .16s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card .ic {
  width: 52px; height: 52px; border-radius: 12px; margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.card h3 { color: var(--navy); font-size: 1.02rem; font-weight: 800; line-height: 1.3; }
.card .sub { color: var(--gold-d); font-size: .72rem; font-weight: 800; margin-top: .3rem; text-transform: uppercase; letter-spacing: .05em; }
.card p { color: var(--muted); font-size: .84rem; line-height: 1.6; margin-top: .7rem; flex: 1; }
.card .more { margin-top: 1rem; font-size: .8rem; font-weight: 800; color: var(--navy-2); text-decoration: none; }
.card .more:hover { color: var(--gold-d); }

/* ── Programs table ──────────────────────────────────────────── */
.table-wrap { overflow-x: auto; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); }
table.list { width: 100%; border-collapse: collapse; font-size: .85rem; min-width: 660px; }
table.list thead th {
  background: var(--navy); color: #fff; text-align: left;
  font-size: .72rem; text-transform: uppercase; letter-spacing: .06em;
  padding: .75rem 1rem; border-bottom: 3px solid var(--gold); white-space: nowrap;
}
table.list td { padding: .7rem 1rem; border-bottom: 1px solid var(--line); vertical-align: middle; }
table.list tbody tr:nth-child(even) { background: #fafbfe; }
table.list tbody tr:hover { background: var(--gold-l); }
.tag {
  display: inline-block; padding: .2rem .65rem; border-radius: 99px;
  font-size: .68rem; font-weight: 800;
}
.tag-ug  { background: #e8edfb; color: var(--navy); }
.tag-pg  { background: var(--gold-l); color: var(--gold-d); }
.tag-dip { background: #ecfdf5; color: #059669; }

/* ── News & events ───────────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.panel { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.panel-head {
  background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: #fff;
  border-bottom: 3px solid var(--gold);
  padding: .85rem 1.2rem; font-size: .92rem; font-weight: 800;
  display: flex; align-items: center; gap: .5rem;
}
.panel-body { padding: .4rem 0; }
.item-row { display: flex; gap: .95rem; padding: .9rem 1.2rem; border-bottom: 1px solid var(--line); }
.item-row:last-child { border-bottom: none; }
.date-chip {
  flex-shrink: 0; width: 54px; height: 58px; border-radius: 10px;
  background: var(--gold-l); border: 1px solid #f3dfa0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.date-chip .d { font-size: 1.15rem; font-weight: 800; color: var(--navy); line-height: 1; }
.date-chip .m { font-size: .62rem; font-weight: 800; color: var(--gold-d); text-transform: uppercase; margin-top: .2rem; }
.item-row h4 { font-size: .88rem; font-weight: 700; color: var(--navy); line-height: 1.35; }
.item-row .meta { font-size: .72rem; color: var(--gold-d); font-weight: 700; margin-top: .2rem; }
.item-row p { font-size: .78rem; color: var(--muted); margin-top: .35rem; line-height: 1.55; }
.badge-kind {
  display: inline-block; font-size: .62rem; font-weight: 800; text-transform: uppercase;
  padding: .14rem .5rem; border-radius: 99px; margin-bottom: .3rem;
}
.badge-news { background: #e8edfb; color: var(--navy); }
.badge-ann  { background: var(--gold-l); color: var(--gold-d); }

/* ── Heritage / founder ──────────────────────────────────────── */
.heritage { display: grid; grid-template-columns: .9fr 1.1fr; gap: 2.4rem; align-items: center; }
.founder-card {
  background: linear-gradient(150deg, var(--navy-d), var(--navy-2));
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 2.2rem; text-align: center; color: #fff;
  border-bottom: 5px solid var(--gold);
}
.founder-card svg { width: 130px; height: 130px; margin: 0 auto 1.2rem; }
.founder-card img {
  display: block; width: 130px; height: 130px; margin: 0 auto 1.2rem;
  border-radius: 50%; object-fit: cover; object-position: top;
  border: 2.5px solid var(--gold);
}
.founder-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--gold); }
.founder-card .yrs { font-size: .78rem; color: #c9d6f3; margin-top: .3rem; }
.founder-card p { font-size: .84rem; color: #dbe4f8; line-height: 1.7; margin-top: 1rem; font-style: italic; }
.college-link { color: inherit; text-decoration: none; }
.college-link:hover { color: var(--gold-d); text-decoration: underline; }
.heritage .txt h2 { color: var(--navy); font-size: 1.6rem; font-weight: 800; line-height: 1.25; }
.heritage .txt h2 span { color: var(--gold-d); }
.heritage .txt p { color: var(--muted); font-size: .9rem; line-height: 1.75; margin-top: 1rem; }
.check-list { list-style: none; margin-top: 1.2rem; }
.check-list li {
  display: flex; gap: .6rem; align-items: flex-start;
  font-size: .87rem; color: var(--ink); padding: .32rem 0; font-weight: 600;
}
.check-list li::before { content: "✔"; color: var(--gold-d); font-weight: 800; }

/* ── Campus life icons ───────────────────────────────────────── */
.life-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 1rem; }
.life {
  text-align: center; background: #fff; border-radius: var(--radius);
  padding: 1.4rem .8rem; box-shadow: var(--shadow);
  transition: transform .15s;
}
.life:hover { transform: translateY(-4px); }
.life .ic {
  width: 48px; height: 48px; margin: 0 auto .7rem; border-radius: 50%;
  background: var(--gold-l); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.life .l { font-size: .8rem; font-weight: 700; color: var(--navy); }

/* ── CTA band ────────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(120deg, var(--gold), var(--gold-d));
  border-radius: var(--radius); padding: 2.2rem;
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
}
.cta-band h3 { color: var(--navy-d); font-size: 1.35rem; font-weight: 800; flex: 1; min-width: 260px; }
.cta-band p { color: #4a3800; font-size: .86rem; margin-top: .3rem; }

/* ── Forms ───────────────────────────────────────────────────── */
.form-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.8rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: .76rem; font-weight: 700; color: var(--ink); margin-bottom: .35rem; }
.field .req { color: var(--gold-d); }
input, select, textarea {
  width: 100%; font: inherit; font-size: .88rem; color: var(--ink);
  padding: .62rem .8rem; border: 1.5px solid var(--line); border-radius: 8px;
  background: #fff; outline: none; transition: border-color .15s, box-shadow .15s;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-l); }
textarea { resize: vertical; min-height: 90px; }
.flash { padding: .8rem 1rem; border-radius: 9px; font-size: .87rem; font-weight: 600; margin-bottom: 1.2rem; }
.flash-ok  { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; border-left: 4px solid #059669; }
.flash-err { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; border-left: 4px solid #dc2626; }

/* ── Page hero (inner pages) ─────────────────────────────────── */
.page-hero {
  background: linear-gradient(115deg, var(--navy-d), var(--navy) 60%, var(--navy-2));
  border-bottom: 4px solid var(--gold);
  padding: 3rem 1.2rem;
}
.page-hero h1 { color: #fff; font-size: clamp(1.5rem, 3.4vw, 2.1rem); font-weight: 800; }
.page-hero .crumb { color: #b7c6ea; font-size: .78rem; margin-top: .5rem; }
.page-hero .crumb a { color: var(--gold); text-decoration: none; }

/* ── Contact ─────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 1.6rem; }
.info-tile {
  display: flex; gap: .9rem; align-items: flex-start;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 1.1rem 1.2rem; margin-bottom: 1rem;
}
.info-tile .ic {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.info-tile h4 { color: var(--navy); font-size: .88rem; font-weight: 800; }
.info-tile p { color: var(--muted); font-size: .82rem; margin-top: .25rem; line-height: 1.55; }

/* ── Footer ──────────────────────────────────────────────────── */
footer.site { background: var(--navy-d); color: #b7c6ea; margin-top: 0; }
.foot-main {
  max-width: 1250px; margin: 0 auto; padding: 3rem 1.2rem 2rem;
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 2rem;
}
.foot-main h4 {
  color: #fff; font-size: .85rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .08em; margin-bottom: 1rem;
}
.foot-main h4::after { content: ""; display: block; width: 34px; height: 3px; background: var(--gold); margin-top: .5rem; border-radius: 2px; }
.foot-brand { display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }
.foot-brand img { width: 46px; height: 46px; }
.foot-brand .t { color: #fff; font-weight: 800; font-size: .95rem; }
.foot-brand .t span { color: var(--gold); }
.foot-main p { font-size: .8rem; line-height: 1.7; }
.foot-main ul { list-style: none; }
.foot-main ul li { padding: .26rem 0; }
.foot-main ul a { color: #b7c6ea; text-decoration: none; font-size: .8rem; }
.foot-main ul a:hover { color: var(--gold); }
.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 1rem 1.2rem; text-align: center; font-size: .72rem; color: #8b9cc7;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1080px) {
  nav.main a.top, nav.main button.top { padding: 1.55rem .55rem; font-size: .8rem; }
}
@media (max-width: 940px) {
  .burger { display: block; }
  nav.main {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 85vw); z-index: 1200;
    background: var(--navy-d); overflow-y: auto; padding: 4.6rem 1rem 2rem;
    transform: translateX(100%); transition: transform .25s ease;
  }
  nav.main.open { transform: translateX(0); box-shadow: -12px 0 40px rgba(0,0,0,.45); }
  nav.main > ul { flex-direction: column; align-items: stretch; gap: 0; }
  nav.main a.top, nav.main button.top {
    padding: .85rem .6rem; border-bottom: 1px solid rgba(255,255,255,.09); margin: 0; width: 100%;
    justify-content: space-between;
  }
  nav.main .drop {
    position: static; min-width: 0; opacity: 1; visibility: visible; transform: none;
    display: none; border-radius: 8px; margin: .3rem 0 .6rem; border-top: none;
  }
  nav.main li.open-sub > .drop { display: block; }
  .nav-overlay { position: fixed; inset: 0; background: rgba(4, 12, 30, .6); z-index: 1150; display: none; }
  body.nav-open .nav-overlay { display: block; }
  .slide .inner { grid-template-columns: 1fr; padding: 3.2rem 1.2rem 4rem; text-align: center; }
  .slide p.lead { margin-inline: auto; }
  .slide .cta-row { justify-content: center; }
  .slide .art { display: none; }
  .split { grid-template-columns: 1fr; }
  .heritage { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .foot-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .topbar-inner { justify-content: center; gap: .4rem; }
  .topbar .hide-sm, .topbar .quick a.hide-sm { display: none; }
  .topbar .quick { justify-content: center; }
  .topbar .helpline { font-size: .68rem; }
  .form-grid { grid-template-columns: 1fr; }
  .foot-main { grid-template-columns: 1fr; }
  .brand .t1 { font-size: .9rem; }
  .btn-apply { padding: .5rem .8rem; font-size: .74rem; }
}

/* ── Visitor counter (footer) ────────────────────────────────── */
.visit-count { margin-top: .6rem; font-size: .78rem; color: #9fb0d6; }
.visit-count strong { color: var(--gold); }

/* ── WhatsApp chat box (floating, bottom-right) ──────────────── */
.wa-widget {
  position: fixed; right: 18px; bottom: 18px; z-index: 999;
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
}
.wa-fab {
  width: 58px; height: 58px; border: none; border-radius: 50%;
  background: #25d366; color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
  transition: transform .15s ease;
}
.wa-fab:hover { transform: scale(1.08); }
.wa-box {
  width: 300px; max-width: calc(100vw - 36px);
  background: #fff; border-radius: 14px; overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .35);
}
.wa-head {
  display: flex; gap: .7rem; align-items: center;
  background: #075e54; color: #fff; padding: .9rem 1rem;
}
.wa-head strong { display: block; font-size: .88rem; }
.wa-head span { display: block; font-size: .7rem; opacity: .8; margin-top: .1rem; }
.wa-body { background: #ece5dd; padding: 1rem; }
.wa-bubble {
  background: #fff; border-radius: 0 10px 10px 10px;
  padding: .7rem .9rem; font-size: .83rem; color: #303030; line-height: 1.55;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .12);
}
.wa-start {
  display: block; text-align: center; background: #25d366; color: #fff;
  font-weight: 800; font-size: .9rem; padding: .8rem; text-decoration: none;
}
.wa-start:hover { background: #1fb958; }
