/* ===========================
   HIMACHAL DEV BHOOMI – CSS
   =========================== */

:root {
  --hp-green:   #1b5e20;
  --hp-green2:  #2e7d32;
  --hp-teal:    #00695c;
  --hp-amber:   #e65100;
  --hp-gold:    #f9a825;
  --hp-snow:    #e8f5e9;
  --hp-dark:    #0f2027;
  --hp-dark2:   #1a2a3a;
  --hp-mid:     #203a43;
  --hp-blue:    #2c5364;
  --text-main:  #1a1a2e;
  --text-muted: #546e7a;
  --white:      #ffffff;
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 6px 24px rgba(0,0,0,.12);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.16);
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Outfit', sans-serif;
  background: #f4f7f4;
  color: var(--text-main);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; object-fit: cover; }

/* ============ HEADER ============ */
/* .site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(15, 32, 39, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition);
} */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgb(255 255 255 / 31%);
    /* backdrop-filter: blur(10px); */
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgb(255 255 255 / 17%);
    transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(15, 32, 39, 0.75);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.header-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px;
  padding: 0 24px; height: 68px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { font-size: 28px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-main { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: #fff; }
.logo-sub { font-size: .7rem; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--hp-gold); }
.main-nav { display: flex; gap: 6px; margin-left: auto; }
.main-nav a {
  color: #00695c; font-size: 1rem; font-weight: 600;
  padding: 8px 14px; border-radius: var(--radius-sm);
  transition: var(--transition);
}
.main-nav a:hover { color: #000000; background: rgba(255,255,255,.1); }
.btn-explore {
  background: linear-gradient(135deg, var(--hp-green), var(--hp-teal));
  color: #fff; border: none; cursor: pointer;
  padding: 10px 22px; border-radius: 50px; font-size: .88rem; font-weight: 600;
  font-family: 'Outfit', sans-serif;
  box-shadow: 0 4px 16px rgba(46,125,50,.35);
  transition: var(--transition);
}
.btn-explore:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(46,125,50,.45); }
.hamburger { display: none; background: none; border: none; color: #fff; font-size: 1.4rem; cursor: pointer; margin-left: auto; }
.mobile-nav { display: none; }
.mobile-nav a {
  color: #00695c;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 1.1rem;
  font-weight: 600;
  transition: var(--transition);
}
.mobile-nav a:hover {
  color: #000000;
  padding-left: 8px;
}


/* ============ HERO ============ */
.hero {
  position: relative; width: 100%; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); animation: heroZoom 18s ease-in-out infinite alternate; }
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.12); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(15,32,39,.75) 0%, rgba(27,94,32,.55) 60%, rgba(0,0,0,.7) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 0 20px; max-width: 780px;
}
.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff; font-size: .85rem; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 8px 20px; border-radius: 50px;
  margin-bottom: 20px;
  animation: fadeUp .8s ease both;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  color: #fff; line-height: 1.15; margin-bottom: 18px;
  animation: fadeUp .9s .1s ease both;
}
.hero-title span { color: var(--hp-gold); }
.hero-subtitle {
  color: rgba(255,255,255,.85); font-size: clamp(.95rem, 2vw, 1.15rem);
  line-height: 1.7; margin-bottom: 36px;
  animation: fadeUp .9s .2s ease both;
}
.search-box { animation: fadeUp .9s .3s ease both; }

/* ============ NEW ADVANCED SEARCH CARD ============ */
.search-card-form {
  max-width: 860px;
  margin: 0 auto;
  animation: fadeUp .9s .3s ease both;
}

.search-card-inner {
  background: rgba(15, 32, 39, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.search-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.search-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffd54f;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
}

.search-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  padding: 12px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: #102a43;
  outline: none;
  resize: vertical;
  min-height: 48px;
  max-height: 120px;
  transition: all 0.25s ease;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.06);
}

.search-textarea:focus {
  background: #ffffff;
  border-color: #ffd54f;
  box-shadow: 0 0 0 3px rgba(255, 213, 79, 0.3);
}

.search-filters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.search-select {
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  color: #102a43;
  outline: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.search-select option {
  background: #0f2027;
  color: #ffffff;
}

.search-select:focus {
  background: #ffffff;
  border-color: #ffd54f;
  box-shadow: 0 0 0 3px rgba(255, 213, 79, 0.3);
}

.search-select:disabled {
  background: rgba(255, 255, 255, 0.6);
  color: #718096;
  cursor: not-allowed;
  border-color: rgba(255, 255, 255, 0.2);
}

.search-action-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 4px;
}

.search-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--hp-green, #2e7d32), var(--hp-teal, #00897b));
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 14px 28px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.35);
}

.search-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(46, 125, 50, 0.5);
  background: linear-gradient(135deg, #388e3c, #009688);
}

@media (max-width: 768px) {
  .search-card-inner {
    padding: 16px;
    gap: 12px;
  }
  .search-filters-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .search-submit-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}

.search-inner {
  display: flex; align-items: center; gap: 0;
  background: rgba(255,255,255,.96); backdrop-filter: blur(12px);
  border-radius: 60px; padding: 6px 6px 6px 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
  max-width: 580px; margin: 0 auto 16px;
}
.search-icon { font-size: 1.1rem; margin-right: 4px; }
.search-inner input {
  flex: 1; border: none; outline: none; background: transparent;
  font-family: 'Outfit', sans-serif; font-size: .95rem; color: var(--text-main);
}
.search-btn {
  background: linear-gradient(135deg, var(--hp-green), var(--hp-teal));
  color: #fff; border: none; cursor: pointer;
  padding: 12px 28px; border-radius: 50px; font-size: .9rem; font-weight: 600;
  font-family: 'Outfit', sans-serif;
  transition: var(--transition);
}
.search-btn:hover { transform: scale(1.04); box-shadow: 0 6px 20px rgba(46,125,50,.4); }
.search-tags { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.search-tags span {
  background: rgba(255,255,255,.18); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3); color: #fff;
  font-size: .78rem; font-weight: 500; padding: 5px 14px; border-radius: 50px;
  cursor: pointer; transition: var(--transition);
}
.search-tags span:hover { background: rgba(255,255,255,.3); }
.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.7); text-align: center; font-size: .78rem; letter-spacing: 1px;
}
.scroll-arrow { font-size: 1.2rem; animation: bounce 1.6s infinite; margin-top: 4px; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

/* ============ PAGE WRAPPER ============ */
.page-wrapper {
  max-width: 1400px; margin: 0 auto; padding: 48px 24px;
  display: grid; grid-template-columns: 1fr 300px; gap: 32px;
  align-items: start;
}
.main-content { min-width: 0; }

/* ============ SECTION COMMON ============ */
.section { margin-bottom: 64px; }
.section-header { margin-bottom: 32px; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--hp-dark);
  position: relative; display: inline-block; padding-bottom: 10px;
}
.section-title::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 52px; height: 3px;
  background: linear-gradient(90deg, var(--hp-green), var(--hp-teal));
  border-radius: 2px;
}
.section-sub { margin-top: 10px; color: var(--text-muted); font-size: .95rem; }

/* ============ DISTRICTS GRID ============ */
.districts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.district-card {
  background: #fff; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}
.district-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.district-img-wrap { position: relative; height: 180px; overflow: hidden; }
.district-img-wrap img { height: 100%; width: 100%; object-fit: cover; transition: transform .55s ease; }
.district-card:hover .district-img-wrap img { transform: scale(1.1); }
.district-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,32,39,.75), transparent);
  display: flex; align-items: flex-end; padding: 16px;
  opacity: 0; transition: var(--transition);
}
.district-card:hover .district-overlay { opacity: 1; }
.district-overlay span { color: #fff; font-size: .85rem; font-weight: 600; }
.district-info { padding: 16px; }
.district-info h3 { font-size: 1rem; font-weight: 700; color: var(--hp-dark); margin-bottom: 4px; }
.district-info p { font-size: .78rem; color: var(--text-muted); margin-bottom: 10px; }
.district-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.district-tags span {
  background: var(--hp-snow); color: var(--hp-green2);
  font-size: .7rem; font-weight: 600; padding: 3px 10px; border-radius: 50px;
}

/* ============ CATEGORIES GRID ============ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 18px;
}
.cat-card {
  background: #fff; border-radius: var(--radius-lg); padding: 22px 18px;
  box-shadow: var(--shadow-sm); text-align: center;
  transition: var(--transition); cursor: pointer;
  border: 1px solid rgba(0,0,0,.04);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.cat-icon-wrap {
  width: 60px; height: 60px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; box-shadow: 0 6px 20px rgba(0,0,0,.2);
}
.cat-icon { font-size: 1.7rem; }
.cat-card h4 { font-size: .9rem; font-weight: 700; color: var(--hp-dark); margin-bottom: 6px; }
.cat-card p { font-size: .75rem; color: var(--text-muted); margin-bottom: 12px; line-height: 1.5; }
.cat-count {
  display: inline-block; font-size: .72rem; font-weight: 700;
  color: var(--hp-green2); background: var(--hp-snow);
  padding: 4px 12px; border-radius: 50px;
}

/* ============ POPULAR PLACES ============ */
.places-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.place-card {
  background: #fff; border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: var(--transition); cursor: pointer;
  display: flex; flex-direction: column;
}
.place-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.place-card img { height: 220px; object-fit: cover; transition: transform .55s ease; }
.place-card:hover img { transform: scale(1.07); }
.place-large { grid-column: 1 / -1; flex-direction: row; }
.place-large img { height: 340px; width: 55%; flex-shrink: 0; }
.place-card-body { padding: 24px 22px; display: flex; flex-direction: column; justify-content: center; gap: 8px; }
.place-badge {
  display: inline-block;
  background: var(--hp-snow); color: var(--hp-green2);
  font-size: .72rem; font-weight: 700; padding: 4px 12px; border-radius: 50px;
  width: fit-content;
}
.place-card-body h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--hp-dark); }
.place-card-body p { color: var(--text-muted); font-size: .85rem; line-height: 1.65; }
.place-meta { display: flex; gap: 16px; font-size: .8rem; color: var(--text-muted); font-weight: 500; }
.btn-place {
  display: inline-block; margin-top: 6px;
  background: linear-gradient(135deg, var(--hp-green), var(--hp-teal));
  color: #fff; font-size: .82rem; font-weight: 600; padding: 10px 22px;
  border-radius: 50px; width: fit-content;
  transition: var(--transition);
}
.btn-place:hover { transform: scale(1.04); box-shadow: 0 6px 18px rgba(46,125,50,.35); }

/* ============ ADS SIDEBAR ============ */
.ads-sidebar { position: relative; }
.sidebar-sticky { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 18px; }
.ads-heading { margin-bottom: 4px; }
.ads-label {
  font-size: .7rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-muted);
  padding: 4px 0; border-bottom: 1px solid #e0e0e0; display: block;
}
.ad-card {
  background: #fff; border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.06);
  position: relative; transition: var(--transition);
}
.ad-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.ad-badge {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  background: rgba(0,0,0,.6); color: #fff; font-size: .62rem;
  font-weight: 600; padding: 3px 8px; border-radius: 50px;
  letter-spacing: .5px;
}
.ad-img-wrap { height: 140px; overflow: hidden; }
.ad-img-wrap img { height: 100%; object-fit: cover; transition: transform .4s ease; }
.ad-card:hover .ad-img-wrap img { transform: scale(1.06); }
.ad-body { padding: 14px 16px; }
.ad-body h5 { font-size: .9rem; font-weight: 700; color: var(--hp-dark); margin-bottom: 5px; }
.ad-body p { font-size: .75rem; color: var(--text-muted); margin-bottom: 12px; line-height: 1.5; }
.ad-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--hp-green), var(--hp-teal));
  color: #fff; font-size: .78rem; font-weight: 700;
  padding: 8px 18px; border-radius: 50px;
  transition: var(--transition);
}
.ad-btn:hover { box-shadow: 0 4px 14px rgba(46,125,50,.4); transform: scale(1.03); }
.ad-btn-outline {
  background: transparent; border: 2px solid var(--hp-green); color: var(--hp-green);
}
.ad-btn-outline:hover { background: var(--hp-green); color: #fff; }
.ad-promo-box {
  padding: 22px 18px; text-align: center;
  background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
}
.ad-promo-dark {
  background: linear-gradient(135deg, var(--hp-dark), var(--hp-mid));
}
.ad-promo-dark h5 { color: #fff !important; }
.ad-promo-dark p { color: rgba(255,255,255,.75) !important; }
.ad-promo-icon { font-size: 2rem; margin-bottom: 10px; }
.ad-promo-box h5 { font-size: .9rem; font-weight: 700; color: var(--hp-dark); margin-bottom: 8px; }
.ad-promo-box p { font-size: .75rem; color: var(--text-muted); margin-bottom: 14px; line-height: 1.55; }
.google-ad-placeholder {
  height: 160px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}
.google-ad-inner {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-muted);
}
.google-ad-inner span { font-size: .85rem; font-weight: 600; }
.google-ad-inner small { font-size: .7rem; opacity: .7; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--hp-dark);
  color: rgba(255,255,255,.8);
  margin-top: 16px;
}
.footer-waves { line-height: 0; }
.footer-waves svg { width: 100%; height: 60px; display: block; }
.footer-inner { max-width: 1400px; margin: 0 auto; padding: 48px 24px 0; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-logo span { font-size: 2rem; }
.footer-logo strong { display: block; font-size: 1.05rem; font-weight: 700; color: #fff; }
.footer-logo small { font-size: .72rem; color: var(--hp-gold); letter-spacing: 1px; }
.footer-tagline { font-size: .83rem; line-height: 1.7; color: rgba(255,255,255,.6); margin-bottom: 20px; }
.social-icons { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); transition: var(--transition);
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover { background: var(--hp-green2); color: #fff; border-color: var(--hp-green2); transform: translateY(-3px); }
.footer-links-group h4 { font-size: .85rem; font-weight: 700; color: var(--hp-gold); letter-spacing: .5px; margin-bottom: 16px; text-transform: uppercase; }
.footer-links-group ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links-group a { font-size: .82rem; color: rgba(255,255,255,.6); transition: var(--transition); }
.footer-links-group a:hover { color: #fff; padding-left: 4px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; flex-wrap: wrap; gap: 14px;
}
.footer-bottom-left p { font-size: .78rem; color: rgba(255,255,255,.5); }
.footer-credit { margin-top: 4px; }
.footer-credit a { color: var(--hp-gold); }
.footer-bottom-right { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-right a { font-size: .78rem; color: rgba(255,255,255,.5); transition: var(--transition); }
.footer-bottom-right a:hover { color: #fff; }

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .page-wrapper { grid-template-columns: 1fr; }
  .sidebar-sticky {
    position: static; flex-direction: row; flex-wrap: wrap; gap: 14px;
  }
  .ad-card { flex: 1 1 220px; }
  .main-nav, .btn-explore { display: none; }
  .hamburger { display: block; }
  .hero-title { font-size: 2.2rem; }
  .places-grid { grid-template-columns: 1fr; }
  .place-large { flex-direction: column; }
  .place-large img { width: 100%; height: 240px; }
  .districts-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-right { justify-content: center; }

  /* Mobile Drawer Sidebar Styles */
  .mobile-nav {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 80%;
    background: var(--hp-dark);
    padding: 80px 32px 32px;
    flex-direction: column;
    gap: 12px;
    z-index: 1005;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
  }
  .mobile-nav.open {
    transform: translateX(0);
  }
  .close-btn {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 2.2rem;
    cursor: pointer;
    transition: color var(--transition);
    line-height: 1;
  }
  .close-btn:hover {
    color: #fff;
  }
}
@media (max-width: 460px) {
  .districts-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr; }
  .search-btn { padding: 10px 16px; font-size: .8rem; }
}

/* ============ BLOG ============ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.blog-card {
  background: #fff; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-img-wrap {
  position: relative; height: 200px; overflow: hidden;
  background: var(--hp-dark2);
}
.blog-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.blog-card:hover .blog-img-wrap img { transform: scale(1.08); }
.blog-img-placeholder {
  height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 3rem; background: linear-gradient(135deg, var(--hp-dark), var(--hp-mid));
}
.blog-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,32,39,.55), transparent);
  pointer-events: none;
}
.blog-body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.blog-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.blog-tag {
  background: var(--hp-snow); color: var(--hp-green2);
  font-size: .68rem; font-weight: 700; padding: 3px 10px;
  border-radius: 50px; text-transform: uppercase; letter-spacing: .4px;
}
.blog-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700; color: var(--hp-dark);
  line-height: 1.4;
}
.blog-excerpt {
  font-size: .82rem; color: var(--text-muted); line-height: 1.6; flex: 1;
}
.blog-meta {
  display: flex; gap: 14px; flex-wrap: wrap;
  font-size: .75rem; color: var(--text-muted); font-weight: 500;
  padding-top: 8px; border-top: 1px solid #f0f0f0; margin-top: auto;
}

/* Blog list page (standalone) */
.blog-hero {
  background: linear-gradient(135deg, var(--hp-dark) 0%, var(--hp-mid) 100%);
  padding: 100px 24px 60px; text-align: center;
}
.blog-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,4vw,3rem); color: #fff; margin-bottom: 12px; }
.blog-hero p { color: rgba(255,255,255,.7); font-size: 1rem; }

/* Blog detail page */
.blog-detail-hero { position: relative; height: 420px; overflow: hidden; background: var(--hp-dark2); }
.blog-detail-hero img { width: 100%; height: 100%; object-fit: cover; }
.blog-detail-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,32,39,.85) 30%, transparent);
}
.blog-detail-hero-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  max-width: 900px; margin: 0 auto; padding: 32px 24px;
}
.blog-detail-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem); color: #fff; line-height: 1.3; margin-bottom: 12px;
}
.blog-detail-body {
  max-width: 900px; margin: 0 auto; padding: 40px 24px;
  font-size: .97rem; line-height: 1.85; color: var(--text-main);
}
.blog-detail-body p { margin-bottom: 1.2em; }
.blog-detail-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-detail-hero { height: 280px; }
}
