/* ═══════════════════════════════════════
   PorbandarOnline — components.css
   All reusable components
   ═══════════════════════════════════════ */

/* ── TOPBAR ── */
.topbar { background: var(--dark); padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.tb { display: flex; justify-content: space-between; align-items: center; }
.tb-left, .tb-right { display: flex; align-items: center; gap: 16px; flex-wrap: nowrap; }
.tb a, .tb span { font-size: 11.5px; color: rgba(255,255,255,.5); font-family: 'Poppins', sans-serif; display: flex; align-items: center; gap: 5px; transition: color var(--t); }
.tb a:hover { color: var(--yellow); }
.tb i { font-size: 10px; color: var(--yellow); }
.tb-sep { width: 1px; height: 12px; background: rgba(255,255,255,.12); }
.since-badge { display: flex; align-items: center; gap: 5px; background: rgba(255,184,0,.1); border: 1px solid rgba(255,184,0,.25); border-radius: 100px; padding: 3px 11px; font-size: 10.5px; color: var(--yellow); font-family: 'Poppins', sans-serif; font-weight: 600; white-space: nowrap; flex-shrink: 0; }
.weather-pill { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 100px; padding: 3px 12px; }
.w-temp { font-family: 'Poppins', sans-serif; font-size: 12px; font-weight: 600; color: #fff; }
.w-cond { font-size: 11px; color: rgba(255,255,255,.5); }

/* ── NAVBAR ── */
.navbar { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 900; box-shadow: 0 2px 16px rgba(0,0,0,.05); }
.nav-inner { display: flex; align-items: center; height: 68px; gap: 6px; }
.nav-logo { margin-right: 24px; flex-shrink: 0; display: flex; flex-direction: column; text-decoration: none; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--text); font-weight: 700; line-height: 1; }
.logo-text span { color: var(--blue); }
.logo-since { font-size: 9px; color: var(--light); font-family: 'Poppins', sans-serif; letter-spacing: .1em; text-transform: uppercase; margin-top: 1px; }
.nav-list { display: flex; align-items: center; flex: 1; gap: 1px; }
.nav-item { position: relative; }
.nav-link { display: flex; align-items: center; gap: 5px; padding: 8px 12px; font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 500; color: var(--text); border-radius: 9px; transition: all var(--t); cursor: pointer; white-space: nowrap; user-select: none; text-decoration: none; }
.nav-link:hover, .nav-item:hover > .nav-link, .nav-link.active { background: var(--blue-l); color: var(--blue); }
.nav-caret { font-size: 9px; color: var(--light); transition: transform var(--t); }
.nav-item:hover > .nav-link .nav-caret { transform: rotate(180deg); color: var(--blue); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 9px; flex-shrink: 0; }

/* ── MEGA MENU ── */
.mega { position: absolute; top: 100%; left: 0; transform: translateX(0); background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); box-shadow: var(--sh-xl); padding: 0; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .18s ease, visibility .18s ease; min-width: 860px; overflow: hidden; display: grid; grid-template-columns: 1fr 200px; margin-top: 0; padding-top: 12px; }
.mega::before { content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px; background: transparent; }
.mega-links { padding: 18px 20px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.mega-col-hd { font-family: 'Poppins', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--yellow-d); padding: 0 6px 7px; border-bottom: 1px solid var(--border); margin-bottom: 3px; grid-column: 1/-1; }
.mega-lnk { display: flex; align-items: center; gap: 7px; padding: 6px 7px; border-radius: 8px; font-size: 12px; color: var(--text); transition: all var(--t); white-space: nowrap; text-decoration: none; }
.mega-lnk:hover { background: var(--blue-l); color: var(--blue); }
.mega-lnk i { width: 22px; height: 22px; background: var(--sand); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 10px; color: var(--muted); flex-shrink: 0; transition: all var(--t); }
.mega-lnk:hover i { background: var(--blue-l); color: var(--blue); }
.mega-preview { background: linear-gradient(150deg, var(--dark) 0%, var(--blue-dd) 100%); padding: 20px 16px; display: flex; flex-direction: column; justify-content: space-between; min-width: 200px; }
.mp-label { font-size: 9.5px; font-family: 'Poppins', sans-serif; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 8px; }
.mp-stars { display: flex; gap: 2px; margin-bottom: 5px; }
.mp-stars i { color: var(--yellow); font-size: 11px; }
.mp-name { font-family: 'Playfair Display', serif; font-size: 17px; color: #fff; line-height: 1.25; margin-bottom: 6px; }
.mp-meta { font-size: 11.5px; color: rgba(255,255,255,.55); margin-bottom: 12px; display: flex; flex-direction: column; gap: 4px; }
.mp-meta span { display: flex; align-items: center; gap: 5px; }
.mp-meta i { color: var(--yellow); font-size: 10px; width: 12px; }
.mp-btn { display: inline-flex; align-items: center; gap: 6px; background: var(--yellow); color: var(--dark); font-family: 'Poppins', sans-serif; font-size: 11px; font-weight: 700; padding: 7px 14px; border-radius: 100px; transition: all var(--t); width: fit-content; text-decoration: none; }
.mp-btn:hover { background: var(--yellow-d); transform: translateY(-1px); }
.drop { position: absolute; top: 100%; left: 0; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--sh-xl); padding-top: 20px; padding-bottom: 8px; padding-left: 8px; padding-right: 8px; min-width: 210px; opacity: 0; visibility: hidden; transition: opacity .18s ease, visibility .18s ease; margin-top: 0; }
.drop::before { content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px; background: transparent; }
.drop a { display: flex; align-items: center; gap: 9px; padding: 9px 12px; font-size: 13px; border-radius: 9px; color: var(--text); transition: background var(--t); text-decoration: none; }
.drop a:hover { background: var(--blue-l); color: var(--blue); }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 7px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 13px; padding: 11px 22px; border-radius: 100px; border: none; cursor: pointer; transition: all var(--t); white-space: nowrap; text-decoration: none; }
.btn-blue   { background: var(--blue); color: #fff; box-shadow: 0 3px 16px rgba(0,130,200,.3); }
.btn-blue:hover { background: var(--blue-d); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(0,130,200,.38); }
.btn-yellow { background: var(--yellow); color: var(--dark); font-weight: 700; box-shadow: 0 3px 16px rgba(255,184,0,.35); }
.btn-yellow:hover { background: var(--yellow-d); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--blue); border: 1.5px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-ghost  { background: rgba(255,255,255,.1); color: #fff; border: 1.5px solid rgba(255,255,255,.25); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,.22); }
.btn-sm { padding: 8px 16px; font-size: 12px; }
.btn-lg { padding: 14px 28px; font-size: 14px; }
.btn-green { background: var(--green); color: #fff; }

/* ── TAGS & BADGES ── */
.tag { display: inline-flex; align-items: center; gap: 4px; font-family: 'Poppins', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 3px 10px; border-radius: 100px; }
.tag-blue   { background: var(--blue-l); color: var(--blue-dd); }
.tag-yellow { background: var(--yellow-l); color: var(--yellow-d); }
.tag-green  { background: var(--green-l); color: var(--green); }
.tag-red    { background: var(--red-l); color: var(--red); }
.tag-teal   { background: var(--teal-l); color: var(--teal); }

/* ── BREADCRUMB ── */
.breadcrumb { background: var(--white); border-bottom: 1px solid var(--border-l); padding: 12px 0; }
.bc-list { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.bc-list li { font-size: 12.5px; color: var(--muted); display: flex; align-items: center; gap: 7px; }
.bc-list li a { color: var(--blue); }
.bc-list li a:hover { text-decoration: underline; }
.bc-list li i { font-size: 9px; color: var(--light); }
.bc-list li:last-child { color: var(--text); font-weight: 500; }

/* ── CATEGORY CARDS ── */
.cat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.cat-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r-lg); padding: 20px 14px 18px; text-align: center; cursor: pointer; transition: all var(--t); display: block; position: relative; overflow: hidden; text-decoration: none; }
.cat-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--blue), var(--blue-dd)); opacity: 0; transition: opacity var(--t); }
.cat-card:hover { border-color: var(--blue); box-shadow: var(--sh-lg); transform: translateY(-4px); }
.cat-card:hover::before { opacity: 1; }
.cat-card:hover .cat-ico { background: rgba(255,255,255,.15); }
.cat-card:hover .cat-ico i, .cat-card:hover .cat-name, .cat-card:hover .cat-count { color: #fff; position: relative; z-index: 1; }
.cat-ico { width: 52px; height: 52px; border-radius: 14px; background: var(--sand); display: flex; align-items: center; justify-content: center; margin: 0 auto 11px; transition: all var(--t); position: relative; z-index: 1; }
.cat-ico i { font-size: 21px; color: var(--blue); transition: color var(--t); }
.cat-name { font-family: 'Poppins', sans-serif; font-size: 12.5px; font-weight: 600; color: var(--text); margin-bottom: 2px; transition: color var(--t); position: relative; z-index: 1; }
.cat-count { font-size: 11px; color: var(--light); transition: color var(--t); position: relative; z-index: 1; }

/* ── LISTING CARDS ── */
.lc { background: var(--white); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); transition: all var(--t); }
.lc:hover { box-shadow: var(--sh-lg); transform: translateY(-4px); }
.lc-head { height: 150px; position: relative; display: flex; align-items: flex-end; padding: 14px; }
.lc-ico { width: 44px; height: 44px; border-radius: 11px; background: rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; backdrop-filter: blur(6px); }
.lc-ico i { font-size: 19px; color: rgba(255,255,255,.9); }
.lc-body { padding: 15px; }
.lc-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 5px; gap: 8px; }
.lc-name { font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.3; }
.lc-addr { font-size: 11.5px; color: var(--muted); margin-bottom: 5px; display: flex; align-items: center; gap: 5px; }
.lc-addr i { color: var(--blue); font-size: 10px; }
.lc-dist { font-size: 11px; color: var(--light); display: flex; align-items: center; gap: 5px; margin-bottom: 9px; }
.lc-dist i { color: var(--yellow-d); font-size: 10px; }
.lc-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 12px; }
.lc-tag { background: var(--sand); color: var(--text); font-size: 10.5px; font-family: 'Poppins', sans-serif; font-weight: 500; padding: 2px 9px; border-radius: 100px; }
.lc-foot { display: flex; justify-content: space-between; align-items: center; padding-top: 10px; border-top: 1px solid var(--border); gap: 8px; }
.status-open { font-size: 11.5px; font-weight: 600; color: var(--green); display: flex; align-items: center; gap: 4px; }
.status-open::before { content: ''; width: 5px; height: 5px; background: var(--green); border-radius: 50%; display: inline-block; }
.lc-phone { font-size: 11.5px; color: var(--blue); font-weight: 600; display: flex; align-items: center; gap: 4px; text-decoration: none; }
.lc-wa { width: 30px; height: 30px; background: #25D366; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 14px; flex-shrink: 0; transition: opacity var(--t); text-decoration: none; }
.lc-wa:hover { opacity: .85; }

/* ── STARS ── */
.stars { display: flex; align-items: center; gap: 2px; }
.stars i { color: var(--yellow); font-size: 11px; }
.rn { font-family: 'Poppins', sans-serif; font-size: 12.5px; font-weight: 700; margin-left: 3px; }
.rc { font-size: 11px; color: var(--light); margin-left: 2px; }

/* ── HOSPITAL CARDS ── */
.hosp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.hosp-card { display: flex; gap: 14px; align-items: flex-start; background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r-lg); padding: 18px; transition: all var(--t); cursor: pointer; text-decoration: none; min-height: 90px; }
.hosp-card > div:last-child { flex: 1; min-width: 0; }
.hosp-card:hover { border-color: var(--blue); box-shadow: var(--sh); }
.hosp-ico { width: 48px; height: 48px; border-radius: 12px; background: var(--blue-l); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hosp-ico i { font-size: 20px; color: var(--blue); }
.hosp-name { font-family: 'Poppins', sans-serif; font-size: 13.5px; font-weight: 600; color: var(--text); margin-bottom: 3px; line-height: 1.3; }
.hosp-spec { font-size: 11.5px; color: var(--muted); margin-bottom: 6px; }
.hosp-foot { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.hosp-phone { font-size: 12px; color: var(--blue); font-weight: 600; display: flex; align-items: center; gap: 4px; text-decoration: none; }
.hosp-dist { font-size: 11px; color: var(--light); display: flex; align-items: center; gap: 4px; }
.hosp-dist i { color: var(--yellow-d); font-size: 9.5px; }

/* ── EMERGENCY ── */
.emrg-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.ec { border-radius: var(--r-lg); padding: 20px 14px; text-align: center; cursor: pointer; transition: all var(--t); text-decoration: none; display: block; }
.ec:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }
.ec-red { background: var(--red); } .ec-red:hover { background: #BB1E1E; }
.ec-blue { background: var(--blue); } .ec-blue:hover { background: var(--blue-d); }
.ec i { font-size: 28px; color: rgba(255,255,255,.82); margin-bottom: 10px; display: block; }
.ec-name { font-family: 'Poppins', sans-serif; font-size: 11.5px; font-weight: 600; color: rgba(255,255,255,.82); margin-bottom: 5px; }
.ec-num { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--yellow); font-weight: 700; line-height: 1; }

/* ── BLOG CARDS ── */
.blog-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 18px; }
.blog-card { background: var(--white); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); transition: all var(--t); cursor: pointer; text-decoration: none; display: block; }
.blog-card:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); }
.blog-img { display: flex; align-items: center; justify-content: center; }
.blog-img i { font-size: 48px; color: rgba(255,255,255,.1); }
.blog-card.feat .blog-img { height: 230px; }
.blog-card:not(.feat) .blog-img { height: 180px; }
.blog-body { padding: 18px; }
.blog-cat { font-family: 'Poppins', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--blue-dd); margin-bottom: 7px; display: flex; align-items: center; gap: 5px; }
.blog-title { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--text); line-height: 1.35; margin-bottom: 7px; }
.blog-card.feat .blog-title { font-size: 19px; }
.blog-exc { font-size: 12.5px; color: var(--muted); line-height: 1.62; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-meta { display: flex; justify-content: space-between; font-size: 11.5px; color: var(--light); }

/* ── TESTIMONIAL CARDS ── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testi-card { background: var(--white); border-radius: var(--r-lg); padding: 26px; border: 1px solid var(--border); transition: box-shadow var(--t); }
.testi-card:hover { box-shadow: var(--sh); }
.testi-stars { display: flex; gap: 2px; margin-bottom: 14px; }
.testi-stars i { color: var(--yellow); font-size: 14px; }
.testi-text { font-size: 13.5px; color: var(--muted); line-height: 1.72; margin-bottom: 18px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 11px; }
.testi-av { width: 42px; height: 42px; border-radius: 50%; background: var(--blue-l); display: flex; align-items: center; justify-content: center; }
.testi-av i { font-size: 17px; color: var(--blue); }
.testi-name { font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 600; color: var(--text); }
.testi-role { font-size: 11.5px; color: var(--muted); }

/* ── FEATURED HOTEL ── */
.featured-wrap { background: linear-gradient(135deg, var(--dark) 0%, var(--blue-dd) 100%); border-radius: var(--r-xl); overflow: hidden; display: grid; grid-template-columns: 1fr 340px; }
.fw-left { padding: 40px 44px; }
.fw-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,184,0,.15); border: 1px solid rgba(255,184,0,.3); border-radius: 100px; padding: 4px 13px; font-family: 'Poppins', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--yellow); margin-bottom: 16px; }
.fw-name { font-family: 'Playfair Display', serif; font-size: 32px; color: #fff; margin-bottom: 8px; line-height: 1.1; }
.fw-sub { font-size: 14px; color: rgba(255,255,255,.6); margin-bottom: 20px; line-height: 1.65; }
.fw-meta { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.fw-row { display: flex; align-items: center; gap: 9px; font-size: 13px; color: rgba(255,255,255,.7); }
.fw-row i { color: var(--yellow); font-size: 12px; width: 14px; }
.fw-tags { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 28px; }
.fw-tag { background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); font-size: 11.5px; font-family: 'Poppins', sans-serif; font-weight: 500; padding: 4px 12px; border-radius: 100px; }
.fw-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.fw-right { position: relative; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.03); border-left: 1px solid rgba(255,255,255,.07); }
.fw-visual { text-align: center; padding: 32px; }
.fw-stars { display: flex; gap: 4px; justify-content: center; margin-bottom: 12px; }
.fw-stars i { color: var(--yellow); font-size: 18px; }
.fw-rating-n { font-family: 'Playfair Display', serif; font-size: 52px; color: #fff; line-height: 1; }
.fw-rating-l { font-size: 13px; color: rgba(255,255,255,.45); margin-top: 4px; font-family: 'Poppins', sans-serif; }
.fw-divider { width: 48px; height: 2px; background: rgba(255,184,0,.3); border-radius: 1px; margin: 16px auto; }
.fw-amenities { display: flex; flex-direction: column; gap: 8px; }
.fw-am { display: flex; align-items: center; gap: 9px; font-size: 12.5px; color: rgba(255,255,255,.65); }
.fw-am i { color: var(--yellow); font-size: 12px; width: 14px; }
.fw-dist { margin-top: 16px; padding: 12px 16px; background: rgba(255,255,255,.06); border-radius: 10px; font-size: 12px; color: rgba(255,255,255,.5); display: flex; flex-direction: column; gap: 5px; }
.fw-dist span { display: flex; align-items: center; gap: 7px; }
.fw-dist i { color: var(--yellow); font-size: 10px; }

/* ── TOURISM MOSAIC ── */
.tour-mosaic { display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-template-rows: 220px 220px; gap: 14px; }
.place-card { border-radius: var(--r-lg); overflow: hidden; position: relative; cursor: pointer; transition: transform var(--t); text-decoration: none; display: block; }
.place-card:hover { transform: scale(1.013); }
.place-card.hero-place { grid-row: 1/3; }
.place-bg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.place-bg i { font-size: 80px; color: rgba(255,255,255,.06); }
.place-card.hero-place .place-bg i { font-size: 130px; }
.place-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.06) 60%, transparent 100%); }
.place-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 18px; }
.place-card.hero-place .place-body { padding: 26px; }
.place-pill { display: inline-flex; align-items: center; gap: 5px; background: rgba(255,184,0,.15); backdrop-filter: blur(8px); border: 1px solid rgba(255,184,0,.3); padding: 3px 10px; border-radius: 100px; font-size: 10px; color: var(--yellow); font-family: 'Poppins', sans-serif; font-weight: 700; margin-bottom: 8px; }
.place-name { font-family: 'Playfair Display', serif; font-size: 17px; color: #fff; margin-bottom: 4px; }
.place-card.hero-place .place-name { font-size: 26px; margin-bottom: 8px; }
.place-desc { font-size: 12.5px; color: rgba(255,255,255,.72); line-height: 1.55; margin-bottom: 8px; }
.place-meta { display: flex; gap: 12px; flex-wrap: wrap; }
.place-meta span { font-size: 11.5px; color: rgba(255,255,255,.65); display: flex; align-items: center; gap: 4px; }
.place-meta i { font-size: 9.5px; color: var(--yellow); }
.place-dist { font-size: 11px; color: rgba(255,255,255,.5); display: flex; align-items: center; gap: 4px; margin-top: 5px; }
.place-dist i { font-size: 9px; color: var(--yellow); }

/* ── CTA BAND ── */
.cta-inner { background: linear-gradient(130deg, var(--dark) 0%, var(--blue-dd) 60%, var(--teal) 100%); border-radius: var(--r-xl); padding: 44px 52px; display: flex; justify-content: space-between; align-items: center; gap: 32px; position: relative; overflow: hidden; }
.cta-inner::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px); background-size: 24px 24px; }
.cta-content { position: relative; z-index: 1; }
.cta-lbl { font-family: 'Poppins', sans-serif; font-size: 10.5px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--yellow); margin-bottom: 7px; }
.cta-title { font-family: 'Playfair Display', serif; font-size: 28px; color: #fff; margin-bottom: 6px; }
.cta-sub { font-size: 13.5px; color: rgba(255,255,255,.6); }
.cta-btns { display: flex; gap: 10px; flex-shrink: 0; position: relative; z-index: 1; flex-wrap: wrap; }

/* ── WEATHER BAND ── */
.weather-band { background: linear-gradient(130deg, var(--dark), #003F7A); padding: 44px 0; }
.wb-inner { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.wb-left .wl-lbl { font-family: 'Poppins', sans-serif; font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--yellow); margin-bottom: 5px; }
.wb-left .wl-city { font-family: 'Playfair Display', serif; font-size: 26px; color: #fff; margin-bottom: 3px; }
.wb-left .wl-desc { font-size: 13px; color: rgba(255,255,255,.45); }
.wb-right { display: flex; gap: 40px; align-items: center; }
.wb-main { text-align: center; }
.wb-main .wm-ico { font-size: 52px; color: var(--yellow); line-height: 1; margin-bottom: 4px; }
.wb-main .wm-temp { font-family: 'Playfair Display', serif; font-size: 52px; color: #fff; line-height: 1; }
.wb-main .wm-temp sup { font-size: 20px; color: rgba(255,255,255,.5); }
.wb-main .wm-cond { font-size: 12.5px; color: rgba(255,255,255,.45); margin-top: 4px; }
.wb-stats { display: flex; flex-direction: column; gap: 10px; }
.wb-stat { font-size: 12.5px; color: rgba(255,255,255,.58); display: flex; align-items: center; gap: 9px; }
.wb-stat i { color: var(--yellow); font-size: 11px; width: 14px; text-align: center; }
.wb-stat strong { color: rgba(255,255,255,.88); }

/* ── MARQUEE ── */
.mq-wrap { background: var(--blue); padding: 11px 0; overflow: hidden; }
.mq-track { display: flex; animation: mq 36s linear infinite; width: max-content; white-space: nowrap; }
.mq-item { display: inline-flex; align-items: center; gap: 9px; padding: 0 28px; font-family: 'Poppins', sans-serif; font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,.88); }
.mq-item i { font-size: 11px; color: var(--yellow); }
.mq-dot { width: 4px; height: 4px; background: rgba(255,255,255,.28); border-radius: 50%; flex-shrink: 0; }
@keyframes mq { to { transform: translateX(-50%); } }

/* ── CLASSIFIEDS PREVIEW ── */
.cls-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cls-box { background: var(--white); border-radius: var(--r-lg); border: 1px solid var(--border); overflow: hidden; }
.cls-hd { padding: 14px 18px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.cls-hd-t { font-family: 'Poppins', sans-serif; font-size: 13.5px; font-weight: 600; color: var(--text); display: flex; align-items: center; gap: 8px; }
.cls-hd-t i { color: var(--blue); }
.cls-view { font-size: 12px; color: var(--blue); font-weight: 600; font-family: 'Poppins', sans-serif; text-decoration: none; }
.cls-item { display: flex; gap: 11px; align-items: center; padding: 9px 12px; border-radius: 9px; transition: background var(--t); cursor: pointer; margin: 4px 6px; }
.cls-item:hover { background: var(--blue-l); }
.cls-thumb { width: 50px; height: 50px; border-radius: 10px; background: var(--sand); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cls-thumb i { font-size: 20px; color: var(--blue); }
.cls-title { font-family: 'Poppins', sans-serif; font-size: 12.5px; font-weight: 500; color: var(--text); margin-bottom: 2px; line-height: 1.3; }
.cls-meta { font-size: 11px; color: var(--light); }
.cls-price { font-family: 'Poppins', sans-serif; font-size: 13.5px; font-weight: 700; color: var(--blue-dd); margin-left: auto; flex-shrink: 0; }

/* ── GOVT GRID ── */
.govt-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.govt-card { background: var(--white); border-radius: var(--r-lg); padding: 20px 14px; text-align: center; border: 1px solid var(--border); cursor: pointer; transition: all var(--t); text-decoration: none; display: block; }
.govt-card:hover { border-color: var(--teal); box-shadow: var(--sh); transform: translateY(-2px); }
.govt-ico { width: 48px; height: 48px; border-radius: 13px; background: var(--teal-l); display: flex; align-items: center; justify-content: center; margin: 0 auto 11px; }
.govt-ico i { font-size: 19px; color: var(--teal); }
.govt-name { font-family: 'Poppins', sans-serif; font-size: 12px; font-weight: 600; color: var(--text); }

/* ── FORMS ── */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-family: 'Poppins', sans-serif; font-size: 12.5px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: var(--r); font-family: 'Inter', sans-serif; font-size: 14px; color: var(--text); background: var(--bg); outline: none; transition: all var(--t); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px rgba(0,130,200,.08); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-select { appearance: none; cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ── PAGINATION ── */
.pagination { display: flex; align-items: center; gap: 6px; justify-content: center; margin-top: 40px; }
.pg-btn { width: 36px; height: 36px; border-radius: 9px; border: 1.5px solid var(--border); background: var(--white); display: flex; align-items: center; justify-content: center; font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 600; color: var(--text); cursor: pointer; transition: all var(--t); text-decoration: none; }
.pg-btn:hover { border-color: var(--blue); color: var(--blue); }
.pg-btn.active { background: var(--blue); border-color: var(--blue); color: #fff; }

/* ── SCROLL TOP ── */
.scroll-top { position: fixed; bottom: 26px; right: 26px; width: 44px; height: 44px; background: var(--blue); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 16px; cursor: pointer; box-shadow: 0 4px 18px rgba(0,130,200,.42); z-index: 999; opacity: 0; transition: all var(--t); pointer-events: none; border: none; }
.scroll-top.show { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-2px); background: var(--blue-d); }

/* ── WA FLOAT ── */
.wa-float { position: fixed; bottom: 80px; right: 26px; width: 44px; height: 44px; background: #25D366; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 22px; cursor: pointer; box-shadow: 0 4px 18px rgba(37,211,102,.42); z-index: 998; transition: all var(--t); text-decoration: none; }
.wa-float:hover { transform: translateY(-2px); }

/* ── FOOTER ── */
footer { background: var(--dark); padding: 60px 0 0; }
.foot-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 48px; }
.foot-logo { font-family: 'Playfair Display', serif; font-size: 23px; color: #fff; margin-bottom: 3px; text-decoration: none; display: block; }
.foot-logo span { color: var(--yellow); }
.foot-since { font-size: 11px; color: rgba(255,255,255,.3); font-family: 'Poppins', sans-serif; margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
.foot-since i { color: var(--yellow); font-size: 10px; }
.foot-tag { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.72; margin-bottom: 18px; }
.foot-socials { display: flex; gap: 8px; }
.soc { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; font-size: 14px; color: rgba(255,255,255,.5); transition: all var(--t); cursor: pointer; text-decoration: none; }
.soc:hover { background: var(--blue); color: #fff; }
.foot-col-hd { font-family: 'Poppins', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 14px; }
.foot-links { display: flex; flex-direction: column; gap: 9px; }
.foot-links a { font-size: 12.5px; color: rgba(255,255,255,.5); transition: color var(--t); display: flex; align-items: center; gap: 7px; text-decoration: none; }
.foot-links a i { font-size: 9px; color: rgba(255,255,255,.18); }
.foot-links a:hover { color: var(--yellow); }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 18px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.foot-copy { font-size: 11.5px; color: rgba(255,255,255,.28); }
.foot-copy strong { color: rgba(255,255,255,.5); }
.foot-legal { display: flex; gap: 18px; }
.foot-legal a { font-size: 11.5px; color: rgba(255,255,255,.28); transition: color var(--t); text-decoration: none; }
.foot-legal a:hover { color: rgba(255,255,255,.6); }

/* ── FILTER BAR ── */
.filter-bar { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 24px; }
.filter-tab { padding: 8px 18px; border-radius: 100px; border: 1.5px solid var(--border); background: var(--white); font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 600; color: var(--muted); cursor: pointer; transition: all var(--t); }
.filter-tab:hover, .filter-tab.active { background: var(--blue); border-color: var(--blue); color: #fff; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .cat-grid { grid-template-columns: repeat(4, 1fr); }
  .hosp-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-wrap { grid-template-columns: 1fr; }
  .fw-right { border-left: none; border-top: 1px solid rgba(255,255,255,.07); }
  .tour-mosaic { grid-template-columns: 1fr 1fr; }
  .place-card.hero-place { grid-row: auto; grid-column: 1/3; }
  .blog-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .emrg-grid { grid-template-columns: repeat(3, 1fr); }
  .govt-grid { grid-template-columns: repeat(3, 1fr); }
  .cls-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .wb-inner { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; padding: 32px 24px; }
}
@media (max-width: 600px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .hosp-grid { grid-template-columns: 1fr; }
  .emrg-grid { grid-template-columns: repeat(2, 1fr); }
  .govt-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── HOMEPAGE HERO ── */
.home-hero { position:relative; min-height:88vh; display:flex; align-items:center; overflow:hidden; }
.hh-bg { position:absolute; inset:0; background:linear-gradient(135deg,#041824 0%,#006AAA 45%,#0082C8 72%,#0E7C7B 100%); }
.hh-pattern { position:absolute; inset:0; background-image:radial-gradient(rgba(255,255,255,.04) 1px,transparent 1px); background-size:32px 32px; pointer-events:none; }
.hh-glow { position:absolute; top:-120px; right:-80px; width:560px; height:560px; background:radial-gradient(circle,rgba(255,184,0,.12),transparent 65%); border-radius:50%; pointer-events:none; }
.hh-glow2 { position:absolute; bottom:-100px; left:-80px; width:420px; height:420px; background:radial-gradient(circle,rgba(0,130,200,.18),transparent 65%); border-radius:50%; pointer-events:none; }
.hh-wave { position:absolute; bottom:-1px; left:0; right:0; pointer-events:none; }
.hh-wave svg { display:block; width:100%; height:56px; }
.hh-container { position:relative; z-index:2; width:100%; padding-top:80px; padding-bottom:120px; }
.hh-grid { display:grid; grid-template-columns:1fr 430px; gap:56px; align-items:center; }
/* left */
.hh-badge { display:inline-flex; align-items:center; gap:8px; background:rgba(255,184,0,.12); border:1px solid rgba(255,184,0,.25); border-radius:100px; padding:5px 14px; margin-bottom:22px; font-family:'Poppins',sans-serif; font-size:11px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--yellow); }
.hh-dot { width:6px; height:6px; background:var(--yellow); border-radius:50%; flex-shrink:0; animation:hh-pulse 2s infinite; }
@keyframes hh-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.75)} }
.hh-title { font-family:'Playfair Display',serif; font-size:clamp(38px,5.5vw,68px); color:#fff; line-height:1.05; margin-bottom:18px; font-weight:700; }
.hh-title em { font-style:italic; color:var(--yellow); }
.hh-sub { font-size:15px; color:rgba(255,255,255,.65); line-height:1.78; margin-bottom:30px; max-width:460px; }
.hh-btns { display:flex; gap:10px; flex-wrap:wrap; margin-bottom:44px; }
.hh-stats { display:flex; gap:0; }
.hh-stat { padding:0 28px 0 0; }
.hh-stat-sep { padding-left:28px; border-left:1px solid rgba(255,255,255,.13); }
.hh-stat-num { font-family:'Playfair Display',serif; font-size:28px; color:#fff; line-height:1; }
.hh-stat-lbl { font-size:11px; color:rgba(255,255,255,.45); margin-top:3px; font-family:'Poppins',sans-serif; letter-spacing:.04em; }
/* right — search card */
.search-card { background:#fff; border-radius:var(--r-xl); padding:28px; box-shadow:0 24px 64px rgba(0,0,0,.22); }
.sc-title { font-family:'Playfair Display',serif; font-size:19px; color:var(--text); margin-bottom:3px; }
.sc-sub { font-size:12.5px; color:var(--muted); margin-bottom:16px; }
.sc-tabs { display:flex; gap:3px; background:var(--sand); border-radius:10px; padding:3px; margin-bottom:14px; }
.sc-tab { flex:1; text-align:center; padding:8px 6px; border-radius:8px; font-family:'Poppins',sans-serif; font-size:12px; font-weight:600; cursor:pointer; color:var(--muted); transition:all var(--t); }
.sc-tab.on { background:#fff; color:var(--blue); box-shadow:0 1px 6px rgba(0,0,0,.1); }
.sc-field-wrap { position:relative; margin-bottom:10px; }
.sc-search-ico { position:absolute; left:13px; top:50%; transform:translateY(-50%); color:var(--light); font-size:13px; pointer-events:none; }
.sc-input { padding-left:38px !important; }
.sc-select { margin-bottom:10px; }
.sc-btn { width:100%; justify-content:center; }
.sc-trending { margin-top:14px; }
.sc-trend-lbl { font-size:10px; color:var(--light); margin-bottom:6px; font-family:'Poppins',sans-serif; font-weight:700; text-transform:uppercase; letter-spacing:.06em; }
.sc-tags { display:flex; flex-wrap:wrap; gap:5px; }
.pop-tag { padding:4px 11px; background:var(--sand); border-radius:100px; font-size:11.5px; color:var(--text); cursor:pointer; font-family:'Poppins',sans-serif; font-weight:500; border:1px solid transparent; transition:all var(--t); }
.pop-tag:hover { background:var(--blue-l); border-color:var(--blue-m); color:var(--blue); }
/* responsive */
@media(max-width:900px) { .hh-grid { grid-template-columns:1fr; padding-top:60px; padding-bottom:80px; } .hh-right { display:none; } }
.tag-xs { font-size:9px !important; margin-left:4px; padding:2px 7px; }

/* ── FULL WIDTH PAGE OVERRIDE ──
   Neutralises any host/plugin wrapper on homepage and CPT pages */
body.page-template-page-home,
body.page-template-front-page,
body.home,
body.is-tourism-single,
body.is-hotel-single,
body.is-hospital-single {
	background: var(--bg);
}

/* Kill any injected content wrappers */
body.page-template-page-home .entry-content,
body.page-template-page-home .post-content,
body.page-template-page-home .page-content,
body.page-template-page-home .site-content,
body.page-template-page-home #content,
body.page-template-page-home #primary,
body.page-template-page-home main,
body.home .entry-content,
body.home .post-content,
body.home .page-content,
body.home .site-content,
body.home #content,
body.home #primary,
body.home main {
	width: 100% !important;
	max-width: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
	float: none !important;
}

/* Kill any injected sidebar on homepage */
body.page-template-page-home #secondary,
body.home #secondary {
	display: none !important;
}

/* Ensure full-width sections */
.home-hero,
.mq-wrap,
.weather-band {
	width: 100% !important;
	max-width: 100% !important;
}

/* ── TOPBAR RESPONSIVE ── */
@media (max-width: 1024px) {
	.since-badge { display: none; }
	.tb-left .tb-sep:first-of-type { display: none; }
}
@media (max-width: 768px) {
	.topbar .tb-right .tb-sep,
	.topbar .tb-right a:not(:last-child) { display: none; }
	.topbar .tb-left gap { gap: 10px; }
}

/* ── HERO FULL WIDTH ── */
.home-hero { width: 100%; max-width: 100%; overflow: hidden; }
.hh-container { max-width: 1240px; margin: 0 auto; padding: 0 22px; }
@media (max-width: 1080px) {
	.hh-grid { grid-template-columns: 1fr; }
	.hh-right { display: none; }
	.hh-container { padding-top: 60px; padding-bottom: 80px; }
}

/* ── FOOTER BOTTOM INNER ── */
.foot-bottom-inner { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; }
